 :root {
      --gold: #009900;
      --gold-light: #FFE84D;
      --red: #E8001C;	  
      --red-dark: #A80015;
	  --blue:#0066ff;
	  --blue-dark: #244473;
      --dark: #0a0a0f;
      --dark-2: #111118;
      --dark-3: #1a1a26;
      --dark-card: #16161f;
      --text: #f0f0f5;
      --text-muted: #8888a8;
      --accent: #00e5ff;
      --green: #00e676;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--dark);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── IFRAME HERO ── */
    .iframe-hero {
      width: 100%;
      height: 100svh;
      position: relative;
      background: #000;
    }

    .iframe-hero iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    .iframe-overlay-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
      background-size: 200% 100%;
      animation: shimmer 2s linear infinite;
    }

    @keyframes shimmer {
      0% { background-position: 200% center; }
      100% { background-position: -200% center; }
    }

    /* ── CONTENT SECTION ── */
    .content {
      max-width: 1100px;
      margin: 0 auto;
      padding: 175px 24px 100px;
    }

    /* Hero Headline */
    .hero-headline {
      text-align: center;
      margin-bottom: 64px;
    }

    .badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--blue), var(--blue-dark));
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .hero-headline h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 9vw, 7rem);
      line-height: 0.9;
      letter-spacing: 0.02em;
      color: #fff;
      margin-bottom: 12px;
    }

    .hero-headline h1 span {
      color: var(--gold);
    }

    .hero-headline .sub {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      color: var(--text-muted);
      font-weight: 300;
      max-width: 600px;
      margin: 16px auto 0;
      line-height: 1.6;
    }

    /* Stats Strip */
    .stats-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--dark-3);
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 72px;
      border: 1px solid rgba(255,215,0,0.1);
    }

    .stat-box {
      background: var(--dark-card);
      padding: 28px 20px;
      text-align: center;
    }

    .stat-box .num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      color: var(--gold);
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-box .label {
      font-size: 0.78rem;
      color: var(--text-muted);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* What Is Section */
    .section-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      letter-spacing: 0.02em;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1;
    }

    .section-body {
      font-size: clamp(0.95rem, 2vw, 1.05rem);
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .highlight {
      color: var(--text);
      font-weight: 600;
    }

    /* Two-col layout */
    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
      margin-bottom: 80px;
    }

    @media (max-width: 768px) {
      .two-col { grid-template-columns: 1fr; gap: 40px; }
      .stats-strip { grid-template-columns: 1fr; }
    }

    /* How to Play Cards */
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-bottom: 80px;
    }

    .step-card {
      background: var(--dark-card);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px;
      padding: 32px 24px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
    }

    .step-card:hover {
      border-color: rgba(255,215,0,0.3);
      transform: translateY(-4px);
    }

    .step-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--gold));
    }

    .step-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4rem;
      line-height: 1;
      color: rgba(0,102,255,0.9);
      margin-bottom: 12px;
    }

    .step-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .step-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* CTA Banner */
    .cta-banner {
      background: linear-gradient(135deg, #0066ff, #153e7b, #10066ff);
      border: 1px solid rgba(0,153,0,0.3);
      border-radius: 24px;
      padding: 60px 40px;
      text-align: center;
      margin-bottom: 80px;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '✈';
      position: absolute;
      font-size: 18rem;
      opacity: 0.03;
      top: -40px;
      right: -40px;
      transform: rotate(20deg);
    }

    .cta-banner h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 6vw, 4rem);
      color: #fff;
      margin-bottom: 12px;
    }

    .cta-banner h2 span { color: var(--gold); }

    .cta-banner p {
      color: var(--text-muted);
      font-size: 1rem;
      max-width: 500px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }

    .btn-primary {
      display: inline-block;
      background: linear-gradient(135deg, var(--blue), var(--blue-dark));
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 18px 48px;
      border-radius: 100px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 0 40px rgba(232,0,28,0.4);
    }

    .btn-primary:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 0 60px rgba(232,0,28,0.6);
    }

    /* FAQ */
    .faq { margin-bottom: 80px; }

    .faq-item {
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 24px 0;
    }

    .faq-q {
      font-weight: 600;
      font-size: 1rem;
      color: var(--text);
      margin-bottom: 10px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .faq-q::before {
      content: 'Q';
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem;
      color: var(--gold);
      flex-shrink: 0;
    }

    .faq-a {
      font-size: 0.93rem;
      color: var(--text-muted);
      line-height: 1.75;
      padding-left: 28px;
    }

    /* Footer */
    footer {
      background: var(--dark-2);
      border-top: 1px solid rgba(255,255,255,0.05);
      padding: 40px 24px;
      text-align: center;
    }

    footer p {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.8;
      max-width: 800px;
      margin: 0 auto 12px;
    }

    footer a { color: var(--gold); text-decoration: none; }

    /* ── POPUP ── */
    #popup-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.82);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(4px);
      animation: fadeIn 0.3s ease;
    }

    #popup-overlay.active { display: flex; }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes popIn {
      from { opacity: 0; transform: scale(0.88); }
      to { opacity: 1; transform: scale(1); }
    }

    .popup-inner {
      position: relative;
      max-width: 90vw;
      animation: popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .popup-inner a {
      display: block;
      cursor: pointer;
    }

    .popup-inner img {
      display: block;
      max-width: 100%;
      max-height: 90svh;
      border-radius: 12px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 60px rgba(232,0,28,0.2);
    }

    .popup-close {
      position: absolute;
      top: -14px;
      right: -14px;
      width: 36px;
      height: 36px;
      background: #fff;
      color: #000;
      border: none;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      z-index: 10;
      box-shadow: 0 4px 16px rgba(0,0,0,0.4);
      transition: transform 0.2s, background 0.2s;
      line-height: 1;
    }

    .popup-close:hover {
      background: var(--gold);
      transform: scale(1.15);
    }
	
	.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
}

.feature {
    text-align: center;
}

.feature img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
    margin-top: 15px;
    display: block;
}

.toph1{
		 color: #fff;
		 text-align: center;
		 padding-top:12px;

	}
/*-----------------------------------------------------------------------------------*/
/*  COOKIE CLASSES
/*-----------------------------------------------------------------------------------*/
.cookiealert {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 20%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    border-radius: 0;
    background: #000;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #ecf0f1;
    padding: 10px;
    border-radius: 10px;
}

    .cookiealert.show {
        opacity: 1;
        transform: translateY(0%);
        transition-delay: 1000ms;
        z-index: 9999;
    }

    .cookiealert a {
        color: #00c22d;
        text-decoration: none;
    }

    .cookiealert .solid-btn {
        font-size: 18px;
        padding: 10px 15px;
    }

    .cookiealert .acceptcookies {
        vertical-align: baseline;
    }
/* ========== NEW PAGE CSS ========== */
.fixed-top {
	z-index: 1090
}
.top {
	background-color: #434343;
	background-position: center;
	display: block;
	width: 100%;
	height: 65px;
}
.logo {
	position: absolute;
	top: 0;
	max-width: 205px;
	z-index: 100;
}
.menu-btn {
	position: absolute;	
	right: 0px;
	top: 0;

background-image: linear-gradient(#42A1EC, #0070C9);
  border: 1px solid #0077CC;
  border-radius: 10px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  direction: ltr;
  display: block;
  font-family: "SF Pro Text","SF Pro Icons","AOS Icons","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.022em;
  line-height: 1.47059;
  min-width: 30px;
  overflow: visible;
  padding: 15px;
  text-align: center;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
}

a.menu-btn {
	color: #fff;
	text-decoration: none;
}


/* Tablet */
@media (min-width: 768px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }


    .iframe-hero iframe {
      width: 100%;
      height: 80%;
      border: none;
      display: block;
    }
	
}

/* Desktop */
@media (min-width: 1024px) {
    .features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 540px) {
	.logo{
	display:none;
	}
	.toph1{
		display:none;
	}
	.menu-btn{
		position:relative;
		font-size: 2rem;
		align-items: center;	

	}
	.iframe-hero {
    height: 75svh;
    top: 15px;
}
	
}

