body {
  font-family: "Roboto Flex", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
}

html {
  scroll-behavior: smooth;
}

.font-inter {
  /* Use Roboto Flex everywhere to avoid font swaps */
  font-family: "Roboto Flex", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
}

/* Custom Arrow Button Style */
.custom-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0.66px solid #d9d9d9;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: plus-lighter;
}

@media (max-width: 480px) {
  .custom-arrow {
    width: 36px;
    height: 36px;
  }
}

.step-card {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.step-card.step-active {
  pointer-events: auto;
  animation: stepFadeIn 260ms ease forwards;
}

.telegram-arrow {
  width: 40px;
  height: 40px;
}

@media (min-width: 640px) {
  .telegram-arrow {
    width: 50px;
    height: 50px;
  }
}

@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bonus-gradient {
  background: linear-gradient(to right, #f4a81e, #ffce10);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.radial-step-icon {
  border: 0.66px solid #d9d9d9;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 9999px;
  padding: 0.75rem; /* matches p-3 */
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 1rem auto; /* mx-auto mb-4 */
  mix-blend-mode: plus-lighter;
}

/* Respect reduced motion for bouncing arrow */
@media (prefers-reduced-motion: reduce) {
  .animate-bounce {
    animation: none !important;
  }
}

/* Reveal on scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Simple delay helpers for staggered reveals */
.reveal.delay-1 { transition-delay: 120ms; }
.reveal.delay-2 { transition-delay: 240ms; }
.reveal.delay-3 { transition-delay: 360ms; }

/* Respect reduced motion: show content without animation */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* 
.sponsor-box {
  background: linear-gradient(90deg, #1E1E1E 0%, #303030 50%, #1E1E1E 100%);
  border: 0.5px solid #D9D9D9;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 5px 1px #5E5E5E;
} */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}



body.stepper-resume-active .trust-prestige-section {
  display: none;
}

body.stepper-resume-active .my-section {
  display: none;
}


body.stepper-resume-active .vip2-hero,
body.stepper-resume-active .vip2-exclusivity-section {
  display: none;
}

.trust-prestige-section {
  position: relative;
  margin: 0 auto;
  padding: 64px 24px;
  width: 100%;
}

.trust-prestige-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  background: radial-gradient(circle at top, rgba(244, 168, 30, 0.15), rgba(20, 20, 20, 0)) no-repeat,
    linear-gradient(180deg, rgba(17, 17, 17, 0.25) 0%, rgba(17, 17, 17, 0.65) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  padding: 60px 32px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
}

.trust-prestige-heading {
  font-size: 28px;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
}

.trust-prestige-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}

.trust-prestige-card {
  background: radial-gradient(120% 120% at 50% 0%, rgba(255, 255, 255, 0.12) 0%, rgba(11, 11, 11, 0.8) 55%, rgba(11, 11, 11, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  padding: 36px 28px;
  text-align: center;
  color: #e3e3e3;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.trust-prestige-card__image {
  width: 120px;
  max-width: 100%;
  height: auto;
}

.trust-prestige-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #ffce10;
  line-height: 1.3;
}

.trust-prestige-card__copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.76);
}

@media (min-width: 640px) {
  .trust-prestige-heading {
    font-size: 32px;
  }

  .trust-prestige-card__title {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .trust-prestige-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-prestige-section {
    padding: 96px 48px;
  }

  .trust-prestige-inner {
    padding: 72px 56px;
  }

  .trust-prestige-card {
    padding: 48px 36px;
  }
}

/* ===== VIP Landing v2 (1.php) ===== */
.vip2-hero {
  position: relative;
  background: radial-gradient(circle at 20% 0%, rgba(244, 168, 30, 0.18), rgba(0, 0, 0, 0)) no-repeat,
    url('images/bg-mob.webp') center/cover;
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .vip2-hero {
    background-image: radial-gradient(circle at 20% 0%, rgba(244, 168, 30, 0.18), rgba(0, 0, 0, 0)),
      url('images/bg.webp');
    background-size: cover;
    padding-bottom: 72px;
  }
}

.vip2-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.vip2-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 18px 24px;
  flex-direction: column;
}

@media (min-width: 768px) {
  .vip2-nav-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.vip2-logo {
  height: 40px;
  width: auto;
}

.vip2-tagline {
  font-size: 12px;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

@media (min-width: 768px) {
  .vip2-tagline {
    font-size: 13px;
  }
}

.vip2-hero-gradient,
.vip2-hero-dots,
.vip2-hero-right,
.vip2-coin {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.vip2-hero-gradient {
  top: -22rem;
  left: -10rem;
  width: 60vw;
  max-width: 900px;
}

.vip2-hero-dots {
  top: -2rem;
  left: 0;
  opacity: 0.75;
}

.vip2-hero-right {
  right: 0;
  bottom: 0;
  width: min(45vw, 520px);
}

.vip2-coin--square {
  right: 2%;
  top: 16%;
  width: clamp(70px, 10vw, 120px);
}

.vip2-coin--c {
  left: 3%;
  bottom: 18%;
  width: clamp(60px, 9vw, 112px);
  opacity: 0.85;
}

.vip2-hero-content {
  position: relative;
  z-index: 10;
  padding-top: 96px;
  padding-bottom: 24px;
}

@media (min-width: 1024px) {
  .vip2-hero-content {
    padding-top: 140px;
  }
}

.vip2-hero-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 1024px) {
  .vip2-hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
}

.vip2-hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
}

.vip2-hero-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  width: fit-content;
}

.vip2-hero-heading {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
}

.vip2-hero-subheading {
  font-size: clamp(18px, 3vw, 26px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 420px;
}

.vip2-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #f4a81e 0%, #ffce10 100%);
  font-weight: 700;
  color: #0a0a0a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 16px;
  box-shadow: 0 18px 40px rgba(244, 168, 30, 0.4);
}

.vip2-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(244, 168, 30, 0.45);
}

.vip2-hero-sponsor {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 12, 0.78);
  padding: 16px 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.vip2-hero-sponsor img {
  height: 34px;
  width: auto;
}

.vip2-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
}

.vip2-advantage-card {
  margin-top: 8px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 12, 12, 0.8);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vip2-advantage-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vip2-advantage-header span {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.vip2-advantage-header strong {
  font-size: 20px;
  font-weight: 700;
  color: #ffce10;
}

.vip2-advantage-list {
  display: grid;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.vip2-advantage-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vip2-advantage-list img {
  width: 40px;
  height: 40px;
}

.vip2-advantage-title {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.vip2-advantage-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.vip2-hero-visual {
  position: relative;
}

.vip2-hero-visual-inner {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  background: radial-gradient(circle at 50% 0%, rgba(244, 168, 30, 0.28), transparent 65%),
    rgba(10, 10, 10, 0.82);
  display: flex;
  justify-content: center;
  padding: 32px;
}

.vip2-hero-players {
  width: 100%;
  max-width: 480px;
  object-fit: contain;
}

.vip2-carousel {
  position: relative;
  width: 100%;
  /* max-width: 420px; */
  margin: 0 auto;
}

.vip2-carousel-frame {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  /* width: 100%; */
  /* height: 700px; */
  aspect-ratio: 4 / 5
  /* box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6); */
  /* background: radial-gradient(circle at 50% 0%, rgba(244, 168, 30, 0.22), transparent 70%),
    rgba(10, 10, 10, 0.9); */
}

.vip2-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  /* transform: scale(0.94); */
  transition: opacity 600ms ease, transform 600ms ease;
  display: flex;
}

.vip2-carousel-slide.is-active {
  opacity: 1;
  /* transform: scale(1); */
  z-index: 2;
}

.vip2-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.vip2-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
  z-index: 3;
}

.vip2-carousel-control:hover {
  background: rgba(244, 168, 30, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.vip2-carousel-control--prev {
  left: 12px;
}

.vip2-carousel-control--next {
  right: 12px;
}

.vip2-carousel-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.vip2-carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.vip2-carousel-dots button.is-active {
  background: #f4a81e;
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .vip2-carousel {
    max-width: 320px;
  }

  .vip2-carousel-control {
    width: 36px;
    height: 36px;
  }
}

.vip2-exclusivity-section {
  position: relative;
  padding: 120px 0 160px;
  background: radial-gradient(circle at 85% 10%, rgba(244, 168, 30, 0.16), rgba(0, 0, 0, 0)) no-repeat,
    linear-gradient(180deg, #050505 0%, #020202 100%);
  overflow: hidden;
  z-index: 5;
}

.vip2-exclusivity-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/dots.svg');
  background-repeat: repeat;
  background-size: 460px auto;
  opacity: 0.4;
  mix-blend-mode: screen;
  pointer-events: none;
}

.vip2-exclusivity-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 40%, rgba(244, 168, 30, 0.18), transparent 55%),
    radial-gradient(circle at 92% 88%, rgba(241, 160, 33, 0.32), rgba(241, 160, 33, 0) 62%);
  opacity: 0.6;
  pointer-events: none;
}

.vip2-exclusivity {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
}

.vip2-exclusivity-heading {
  font-size: clamp(32px, 4.8vw, 46px);
  font-weight: 700;
  margin-bottom: 20px;
}

.vip2-exclusivity-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.7;
  margin-bottom: 36px;
}

.vip2-exclusivity-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  border-radius: 18px;
  background: linear-gradient(90deg, #f4a81e 0%, #ffce10 100%);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 17px;
  min-width: 260px;
  box-shadow: 0 22px 48px rgba(244, 168, 30, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vip2-exclusivity-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px rgba(244, 168, 30, 0.5);
}

@media (max-width: 640px) {
  .vip2-advantage-card {
    padding: 24px;
  }

  .vip2-advantage-list img {
    width: 36px;
    height: 36px;
  }
}
