/* ============================================
   LOTUS365 PREMIUM — DESIGN SYSTEM v2
   Brand: Green #0B8B4E | Gold #F5D800
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --green-primary: #0B8B4E;
  --green-light: #10a85e;
  --green-dark: #077a42;
  --green-glow: rgba(11, 139, 78, 0.4);
  --green-subtle: rgba(11, 139, 78, 0.08);
  --gold: #F5D800;
  --gold-light: #ffe94d;
  --gold-dark: #c4ad00;
  --gold-glow: rgba(245, 216, 0, 0.3);
  --bg-primary: #060b14;
  --bg-secondary: #0a1120;
  --bg-card: rgba(12, 20, 36, 0.7);
  --bg-card-hover: rgba(18, 30, 52, 0.85);
  --bg-glass: rgba(11, 139, 78, 0.06);
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.7);
  --text-muted: rgba(255,255,255,0.45);
  --border-subtle: rgba(11, 139, 78, 0.15);
  --border-glow: rgba(11, 139, 78, 0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 4px 30px rgba(0,0,0,0.3), 0 0 40px rgba(11,139,78,0.07);
  --shadow-glow: 0 0 30px rgba(11,139,78,0.25), 0 0 60px rgba(11,139,78,0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary); line-height: 1.7; overflow-x: hidden; min-height: 100vh; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   ANIMATED BACKGROUNDS
   ============================================ */
#particles-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

.gradient-mesh {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(11,139,78,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 90% 80%, rgba(245,216,0,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(11,139,78,0.04) 0%, transparent 60%);
  animation: meshDrift 20s ease-in-out infinite alternate;
}

@keyframes meshDrift {
  0% { background-position: 0% 0%, 100% 100%, 50% 50%; opacity: 0.6; }
  50% { opacity: 1; }
  100% { background-position: 20% 10%, 80% 90%, 60% 40%; opacity: 0.7; }
}

body::before {
  content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  z-index: 0; pointer-events: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }

.text-green { color: var(--green-light); text-shadow: 0 0 30px var(--green-glow); }
.text-gold { color: var(--gold); text-shadow: 0 0 30px var(--gold-glow); }

.section-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px;
  background: var(--green-subtle); border: 1px solid var(--border-subtle); border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 20px; animation: badgePulse 4s ease-in-out infinite;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--green-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 200% auto; animation: textShimmer 6s linear infinite;
}

.section-subtitle { font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; line-height: 1.8; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
section { position: relative; z-index: 1; padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: #fff; font-weight: 700; font-size: 0.9rem; border-radius: 50px;
  letter-spacing: 0.5px; box-shadow: 0 4px 20px var(--green-glow);
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: 0.5s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 35px var(--green-glow), 0 0 20px var(--green-glow); }
.btn-primary:hover::before { left: 100%; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #0a0e17; box-shadow: 0 4px 20px var(--gold-glow); }
.btn-gold:hover { box-shadow: 0 8px 35px var(--gold-glow), 0 0 20px var(--gold-glow); }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }

/* ============================================
   HEADER
   ============================================ */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: var(--transition); padding: 14px 0; }
.header.scrolled { background: rgba(6, 11, 20, 0.92); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid var(--border-subtle); padding: 10px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.header .container { display: flex; align-items: center; justify-content: space-between; }
.header-logo img { height: 36px; width: auto; filter: drop-shadow(0 0 10px rgba(11,139,78,0.3)); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--green-primary); border-radius: 2px; transition: var(--transition); }
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.header-cta-mobile { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: #fff; border-radius: 4px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-nav { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(6, 11, 20, 0.97); backdrop-filter: blur(30px); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px; opacity: 0; transition: var(--transition); }
.mobile-nav.active { display: flex; opacity: 1; }
.mobile-nav a { font-size: 1.3rem; font-weight: 600; color: var(--text-secondary); padding: 8px 20px; }
.mobile-nav a:hover { color: var(--green-light); }

/* ============================================
   HERO (with integrated video)
   ============================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 90px 0 40px; overflow: hidden; }

.hero::before { content: ''; position: absolute; top: -50%; right: -30%; width: 900px; height: 900px; border-radius: 50%; background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%); filter: blur(80px); animation: heroGlow 8s ease-in-out infinite alternate; pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -20%; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(245,216,0,0.08) 0%, transparent 70%); filter: blur(80px); animation: heroGlow 10s ease-in-out 2s infinite alternate; pointer-events: none; }

@keyframes heroGlow { 0% { transform: translate(0, 0) scale(1); opacity: 0.6; } 100% { transform: translate(40px, -30px) scale(1.15); opacity: 1; } }

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto; }

.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px; background: rgba(11, 139, 78, 0.1); border: 1px solid rgba(11, 139, 78, 0.25); border-radius: 50px; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green-light); margin-bottom: 20px; animation: fadeInUp 0.6s ease forwards; }
.hero-badge .pulse-dot { width: 8px; height: 8px; background: var(--green-light); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

.hero h1 { font-size: clamp(2.4rem, 7vw, 4.2rem); font-weight: 900; line-height: 1.05; margin-bottom: 16px; animation: fadeInUp 0.7s 0.1s ease forwards; opacity: 0; letter-spacing: -1px; }
.hero-description { font-size: 1rem; color: var(--text-secondary); max-width: 480px; margin: 0 auto 28px; line-height: 1.6; animation: fadeInUp 0.7s 0.2s ease forwards; opacity: 0; }

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

/* --- Hero Video --- */
.hero-video-wrap { animation: fadeInUp 0.8s 0.3s ease forwards; opacity: 0; margin-bottom: 28px; }

.video-container { position: relative; width: 100%; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-card); border: 1px solid var(--border-glow); box-shadow: var(--shadow-card), 0 0 80px rgba(11,139,78,0.1); aspect-ratio: 16 / 9; }

.video-frame { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease; transform: scale(0.98); }
.video-frame.active { opacity: 1; visibility: visible; transform: scale(1); }
.video-frame iframe { width: 100%; height: 100%; border: none; }

.video-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #0c1a12 0%, #0a1520 40%, #0d1a0f 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.video-placeholder::before { content: ''; position: absolute; top: 50%; left: 50%; width: 200%; height: 200%; transform: translate(-50%, -50%); background: radial-gradient(ellipse at center, rgba(11,139,78,0.15) 0%, transparent 60%); animation: videoPulse 4s ease-in-out infinite; }
@keyframes videoPulse { 0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); } }

.video-placeholder-content { text-align: center; z-index: 2; position: relative; }
.play-btn-large { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--green-primary), var(--green-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; box-shadow: 0 0 40px var(--green-glow), 0 0 80px rgba(11,139,78,0.15); animation: playBtnPulse 3s ease-in-out infinite; cursor: pointer; transition: var(--transition); }
.play-btn-large:hover { transform: scale(1.1); box-shadow: 0 0 50px var(--green-glow), 0 0 100px rgba(11,139,78,0.2); }
@keyframes playBtnPulse { 0%, 100% { box-shadow: 0 0 40px var(--green-glow); } 50% { box-shadow: 0 0 40px var(--green-glow), 0 0 0 15px rgba(11,139,78,0.1); } }
.video-placeholder-content p { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-primary); }

/* --- Video Tabs --- */
.video-tabs { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }

.video-tab {
  display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 24px;
  background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md);
  color: var(--text-secondary); font-family: var(--font-heading); font-weight: 700; font-size: 0.7rem;
  letter-spacing: 1.5px; cursor: pointer; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden; flex: 1;
}

.video-tab .tab-svg { width: 22px; height: 22px; }

.video-tab:hover { border-color: var(--border-glow); color: var(--text-primary); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(11,139,78,0.15); }

.video-tab.active {
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  border-color: var(--green-light); color: #fff;
  box-shadow: 0 4px 25px var(--green-glow), 0 0 15px rgba(11,139,78,0.2); transform: translateY(-2px);
}

/* --- Trust Stats (compact row) --- */
.trust-stats { display: flex; justify-content: center; gap: 32px; animation: fadeInUp 0.8s 0.5s ease forwards; opacity: 0; }

.stat-item { text-align: center; }
.stat-number { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--gold); margin-bottom: 2px; }
.stat-label { font-size: 0.7rem; color: var(--green-light); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }

/* ============================================
   PAYMENT TRUST STRIP
   ============================================ */
.payment-strip { padding: 40px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); background: linear-gradient(180deg, rgba(11,139,78,0.03), transparent); z-index: 1; position: relative; }
.strip-label { text-align: center; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.payment-logos { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.payment-logos img { height: 36px; width: auto; opacity: 0.65; transition: var(--transition); filter: grayscale(30%); }
.payment-logos img:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.1); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 50px; }

.step-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; position: relative; overflow: hidden; transition: var(--transition);
}
.step-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--green-primary), var(--gold)); opacity: 0; transition: var(--transition); }
.step-card:hover { border-color: var(--border-glow); transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.step-card:hover::before { opacity: 1; }

.step-number { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--green-primary), var(--green-light)); border-radius: 50%; font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; color: #fff; margin: 0 auto 16px; box-shadow: 0 0 25px var(--green-glow); }

.step-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
.step-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

.step-card:hover .step-icon svg { animation: iconFloat 1.5s ease-in-out infinite; }
@keyframes iconFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ============================================
   GAMES & FEATURES
   ============================================ */
.games-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 50px; }

.game-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  padding: 36px 28px; display: flex; gap: 20px; align-items: flex-start; transition: var(--transition);
  position: relative; overflow: hidden;
}
.game-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(180deg, var(--green-primary), var(--gold)); opacity: 0; transition: var(--transition); }
.game-card::after { content: ''; position: absolute; top: 0; left: -150%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent); transform: skewX(-20deg); transition: 0.8s; pointer-events: none; }
.game-card:hover { border-color: var(--border-glow); transform: translateY(-4px); box-shadow: var(--shadow-glow); background: var(--bg-card-hover); }
.game-card:hover::before { opacity: 1; }
.game-card:hover::after { left: 150%; }

.game-icon { width: 64px; height: 64px; min-width: 64px; display: flex; align-items: center; justify-content: center; background: var(--green-subtle); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); }
.game-icon:hover { animation: iconFloat 1.5s ease-in-out infinite; }

.game-info h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.game-info p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
.game-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.game-tag { padding: 4px 12px; background: rgba(11, 139, 78, 0.1); border: 1px solid rgba(11, 139, 78, 0.2); border-radius: 50px; font-size: 0.7rem; font-weight: 600; color: var(--green-light); letter-spacing: 0.5px; }

.features-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-item { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 24px 20px; text-align: center; transition: var(--transition); }
.feature-item:hover { border-color: var(--border-glow); box-shadow: var(--shadow-glow); }
.feature-item .feature-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.feature-item:hover .feature-icon { animation: iconFloat 1.5s ease-in-out infinite; }
.feature-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.feature-item p { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================
   IPL SECTION
   ============================================ */
.ipl-section { background: linear-gradient(180deg, rgba(11,139,78,0.05) 0%, transparent 50%, rgba(245,216,0,0.03) 100%); }

.ipl-banner {
  background: linear-gradient(135deg, rgba(11,139,78,0.15), rgba(245,216,0,0.08));
  border: 1px solid rgba(11,139,78,0.25); border-radius: var(--radius-xl);
  padding: 56px 44px; text-align: center; position: relative; overflow: hidden;
}
.ipl-banner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(245,216,0,0.15), transparent 70%); pointer-events: none; }
.ipl-banner::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, var(--green-glow), transparent 70%); pointer-events: none; }
.ipl-banner h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 900; margin-bottom: 16px; position: relative; z-index: 2; }
.ipl-subtitle { font-size: 1rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto 32px; line-height: 1.8; position: relative; z-index: 2; }
.ipl-cta-wrap { margin-bottom: 36px; position: relative; z-index: 2; }

.ipl-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 2; }
.ipl-feature { padding: 20px; background: rgba(6, 11, 20, 0.5); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); backdrop-filter: blur(10px); text-align: center; }
.ipl-feature svg { margin: 0 auto 10px; }
.ipl-feature h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.ipl-feature p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: linear-gradient(180deg, transparent 0%, rgba(11,139,78,0.03) 100%); }
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item { border: 1px solid var(--border-subtle); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; background: var(--bg-card); transition: var(--transition); }
.faq-item:hover { border-color: var(--border-glow); }
.faq-item.active { border-color: var(--green-primary); box-shadow: 0 0 20px rgba(11,139,78,0.1); }

.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; transition: var(--transition); gap: 14px; width: 100%; text-align: left; color: var(--text-primary); font-size: 0.95rem; font-weight: 600; font-family: var(--font-heading); }
.faq-question:hover { background: rgba(11,139,78,0.05); }
.faq-question h3 { font-size: 0.95rem; font-weight: 600; color: #fff; flex: 1; }

.faq-toggle { width: 30px; height: 30px; min-width: 30px; display: flex; align-items: center; justify-content: center; background: var(--green-subtle); border: 1px solid var(--border-subtle); border-radius: 50%; font-size: 1.1rem; color: var(--green-light); transition: var(--transition); }
.faq-item.active .faq-toggle { background: var(--green-primary); color: #fff; transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer .answer-content { padding: 0 22px 22px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 500px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { padding: 100px 0; }
.cta-banner { background: linear-gradient(135deg, var(--green-dark), var(--green-primary), var(--green-light)); border-radius: var(--radius-xl); padding: 56px 44px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.08); pointer-events: none; }
.cta-banner::after { content: ''; position: absolute; bottom: -120px; left: -80px; width: 350px; height: 350px; border-radius: 50%; background: rgba(245,216,0,0.1); pointer-events: none; }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 14px; position: relative; z-index: 2; }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 32px; line-height: 1.8; position: relative; z-index: 2; }
.cta-banner .btn-gold { font-size: 1rem; padding: 14px 36px; position: relative; z-index: 2; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; margin-bottom: 36px; }
.footer-brand img { height: 34px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; max-width: 320px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-light); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--text-secondary); }
.footer-col ul li a:hover { color: var(--text-primary); padding-left: 4px; }
.footer-payments { display: flex; align-items: center; gap: 18px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-payments img { height: 26px; opacity: 0.5; filter: grayscale(40%); transition: var(--transition); }
.footer-payments img:hover { opacity: 0.9; filter: grayscale(0%); }
.footer-bottom { border-top: 1px solid var(--border-subtle); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }
.footer-badges { display: flex; align-items: center; gap: 14px; }
.footer-badges img { height: 28px; opacity: 0.6; transition: var(--transition); }
.footer-badges img:hover { opacity: 1; }

/* ============================================
   SCROLL REVEAL + ANIMATIONS
   ============================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes textShimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes badgePulse { 0%, 100% { box-shadow: none; } 50% { box-shadow: 0 0 15px rgba(11,139,78,0.15); } }
@keyframes borderGlow { 0% { border-color: rgba(11,139,78,0.2); } 50% { border-color: rgba(11,139,78,0.5); } 100% { border-color: rgba(11,139,78,0.2); } }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 900; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); transition: var(--transition); animation: whatsappPulse 3s ease-in-out infinite; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes whatsappPulse { 0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); } 50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); } }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-primary); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: 1fr; }
  .ipl-features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .header-cta-mobile { display: inline-flex; }

  .hero { padding: 76px 0 32px; min-height: auto; }
  .hero h1 { font-size: 2.2rem; }
  .hero-description { font-size: 0.9rem; margin-bottom: 20px; }
  .hero-badge { font-size: 0.65rem; padding: 6px 14px; margin-bottom: 14px; }

  .video-tabs { gap: 6px; }
  .video-tab { padding: 10px 12px; font-size: 0.65rem; }
  .video-tab .tab-svg { width: 18px; height: 18px; }

  .trust-stats { gap: 20px; }
  .stat-number { font-size: 1.3rem; }
  .stat-label { font-size: 0.6rem; }

  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .step-card { text-align: left; display: flex; gap: 16px; align-items: flex-start; padding: 24px 20px; }
  .step-number { margin: 0; min-width: 44px; height: 44px; }
  .step-icon { margin-bottom: 8px; justify-content: flex-start; }

  .game-card { padding: 24px 20px; flex-direction: column; }
  .features-row { grid-template-columns: 1fr; }
  .ipl-banner { padding: 36px 20px; }
  .ipl-features { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 64px 0; }
  .payment-logos { gap: 20px; }
  .payment-logos img { height: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.9rem; }
  .play-btn-large { width: 52px; height: 52px; }
  .play-btn-large svg { width: 28px; height: 28px; }
  .trust-stats { gap: 16px; }
  .payment-logos { gap: 16px; }
  .payment-logos img { height: 24px; }
}
