  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;800&display=swap');

  .polymarket-hero {
    --bg-color: #030712;
    --grid-color: rgba(255, 255, 255, 0.05);
    
    position: relative;
    width: 100%;
    min-height: 500px;
    background-color: var(--bg-color);
    background-image: 
      linear-gradient(var(--grid-color) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 60px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    text-align: center;
  }

  /* The Logo Pill Badge */
  .logo-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 24px;
    border-radius: 100px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
  }

  .logo-badge span {
    color: white;
    font-size: 18px;
    font-weight: 600;
  }

  /* Main Headline */
  .headline {
    color: white;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    max-width: 1000px;
    margin: 0;
    letter-spacing: -0.02em;
  }

  /* Gradient Text Effect */
  .gradient-text {
    background: linear-gradient(90deg, #dbeafe, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }

  /* The subtle blue glow in the bottom right corner */
  .blue-glow {
    position: absolute;
    bottom: -150px;
    right: 10%;
    width: 500px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .polymarket-hero {
      background-size: 40px 40px;
      padding: 60px 15px;
    }
    .headline {
      font-size: 2.2rem;
    }
  }

   @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

  .features {
    background-color: #030712;
    padding: 100px 5%;
    font-family: 'Inter', sans-serif;
    color: #fff;
    overflow: hidden;
  }

  .features__header {
    text-align: center;
    margin-bottom: 60px;
  }

  .features__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .features__subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .feature-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
    position: relative; /* Essential for image positioning */
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
  }

  .feature-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(15, 23, 42, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
  }

  .feature-card__content {
    position: relative;
    z-index: 2; /* Keeps text above the illustration if they overlap */
    max-width: 75%; /* Prevents text from hitting the image directly */
  }

  .feature-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #3b82f6;
  }

  .feature-card__desc {
    color: #cbd5e1;
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .feature-card__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
  }

  .feature-card__bullets li {
    padding-left: 24px;
    position: relative;
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .feature-card__bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
  }

  .feature-card__tags {
    display: flex;
    gap: 8px;
  }

  .feature-card__tags span {
    font-size: 0.7rem;
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    padding: 5px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 1px solid rgba(59, 130, 246, 0.2);
  }

  /* 3D Illustration Styling */
.feature-card__illustration {
    position: absolute;
    bottom: -19px;
    right: -51px;
    width: 38%;
    height: 38%;
    opacity: 0.7;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 1;
}
  .feature-card:hover .feature-card__illustration {
    transform: scale(1.1) rotate(-5deg);
    opacity: 1;
    filter: drop-shadow(0 15px 30px rgba(59, 130, 246, 0.3));
  }

  .features__cta {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .btn-primary {
    background: #3b82f6;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
  }

  .btn-primary:hover { background: #2563eb; }

  .btn-secondary {
    background: transparent;
    border: 1px solid #3b82f6;
    color: #3b82f6;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
  }

  @media (max-width: 992px) {
    .features__grid { grid-template-columns: 1fr; }
    .feature-card__content { max-width: 100%; }
    .feature-card__illustration { width: 100px; }
  }

.pm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pm-btn--primary {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
}

.pm-btn--ghost {
  border-color: var(--pm-border);
  color: var(--pm-text);
  background: transparent;
}

.pm-btn--whatsapp {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.4);
  color: #9df7c2;
}

.pm-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.45);
}

/* --- Hero slider (3 images, single row) --- */
.polymarket-hero {
  padding-top: 80px;
  padding-bottom: 110px;
}

.pm-hero-slider {
  position: relative;
  width: min(1320px, calc(100% - 40px));
  margin-top: 94px;
  z-index: 1;
}

.pm-hero-slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.pm-hero-slider__track {
  --pm-hero-slider-gap: 16px;
  display: flex;
  align-items: stretch;
  gap: var(--pm-hero-slider-gap);
  width: max-content;
}

.pm-hero-slider__item {
  flex: 0 0 auto;
  /* width: clamp(420px, 36vw, 100%); */
  width: auto;
  scroll-snap-align: start;
}

.pm-hero-slider__frame {
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

.pm-hero-slider__frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

/* hide scrollbar */
.pm-hero-slider__viewport::-webkit-scrollbar { display: none; }
.pm-hero-slider__viewport { scrollbar-width: none; -ms-overflow-style: none; }

.pm-hero-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(2, 6, 23, 0.78);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
  font-size: 34px;
  line-height: 1;
}

.pm-hero-slider__btn--prev { left: -10px; }
.pm-hero-slider__btn--next { right: -10px; }

.pm-hero-slider__btn:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(2, 6, 23, 0.7);
}

.pm-hero-slider__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .polymarket-hero { padding-top: 60px; padding-bottom: 90px; }
  .pm-hero-slider { width: calc(100% - 28px); margin-top: 26px; }
  .pm-hero-slider__track { --pm-hero-slider-gap: 12px; }
  .pm-hero-slider__item { width: min(86vw, 520px); }
  .pm-hero-slider__btn { width: 46px; height: 46px; font-size: 30px; }
  .pm-hero-slider__btn--prev { left: -6px; }
  .pm-hero-slider__btn--next { right: -6px; }
}
