/* ==========================================================================
   SHIVSHANKAR — Official Premium Landing Page Stylesheet
   Theme: Divine Obsidian & Luminous Amber Saffron Gold
   Ultra-modern glassmorphism, responsive bento grid, glowing accents
   ========================================================================== */

:root {
  /* Divine Brand Colors */
  --saffron-primary: #FF7A00;
  --saffron-bright: #FF9429;
  --saffron-glow: rgba(255, 122, 0, 0.4);
  --saffron-subtle: rgba(255, 122, 0, 0.12);
  --saffron-border: rgba(255, 122, 0, 0.25);

  --gold-primary: #FFB800;
  --gold-glow: rgba(255, 184, 0, 0.35);
  --gold-subtle: rgba(255, 184, 0, 0.1);

  --amber-dark: #D97706;
  --amber-deep: #78350F;

  /* Luxury Dark Canvas */
  --bg-darkest: #07080B;
  --bg-card: #0F121A;
  --bg-card-hover: #141924;
  --bg-glass: rgba(15, 18, 26, 0.78);
  --bg-glass-bright: rgba(24, 29, 41, 0.85);

  /* Status Colors */
  --color-live: #10B981;
  --color-live-glow: rgba(16, 185, 129, 0.45);
  --color-ended: #6B7280;
  --color-danger: #EF4444;

  /* Text Hierarchy */
  --text-primary: #FFFFFF;
  --text-secondary: #CBD5E1;
  --text-muted: #8E9BAE;
  --text-dim: #5A6578;

  /* Borders & Shadows */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-gold: rgba(255, 184, 0, 0.2);
  --shadow-glow: 0 10px 30px -10px var(--saffron-glow);
  --shadow-card: 0 12px 36px rgba(0, 0, 0, 0.45);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-pill: 9999px;
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 20% 15%, rgba(255, 122, 0, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(255, 184, 0, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 40% 85%, rgba(217, 119, 6, 0.07) 0%, transparent 45%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: var(--saffron-primary);
  border-radius: 99px;
}

/* Typography Helpers */
.text-saffron {
  background: linear-gradient(135deg, #FF9429 0%, #FFB800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gold {
  color: var(--gold-primary);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   1. TOP NOTIFICATION BAR
   ========================================================================== */
.topbar {
  background: rgba(10, 12, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  padding: 8px 24px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1002;
}
.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--saffron-subtle);
  color: var(--saffron-bright);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.75rem;
  border: 1px solid var(--saffron-border);
}
.topbar-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar-link:hover {
  color: var(--saffron-bright);
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ==========================================================================
   2. STICKY HEADER & NAVIGATION
   ========================================================================== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 12, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 122, 0, 0.15);
  transition: all 0.3s ease;
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 74px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.header-brand img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(255, 122, 0, 0.25));
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.header-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}
.header-nav a:hover {
  color: var(--text-primary);
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron-primary), var(--gold-primary));
  transition: width 0.25s ease;
  border-radius: 2px;
}
.header-nav a:hover::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ==========================================================================
   BUTTONS (MODERN LUXURY HIGH-TECH)
   ========================================================================== */
.btn-primary {
  background: linear-gradient(135deg, #FF7A00 0%, #FF9429 50%, #FFB800 100%);
  color: #000000;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px var(--saffron-glow);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 122, 0, 0.6);
  color: #000000;
}
.btn-secondary {
  background: var(--bg-glass-bright);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border-glass-gold);
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--saffron-primary);
  color: var(--saffron-bright);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
}

/* ==========================================================================
   3. HERO SECTION (SPLIT GRID + 3D PHONE MOCKUP)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
}
.hero-glow-sphere {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.18) 0%, rgba(255, 184, 0, 0.05) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 122, 0, 0.1);
  border: 1px solid var(--saffron-border);
  color: var(--saffron-bright);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  animation: radarPulse 1.8s infinite;
}
@keyframes radarPulse {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.btn-apk {
  padding: 14px 28px;
  font-size: 1rem;
}
.btn-apk .btn-sub {
  font-size: 0.7rem;
  opacity: 0.85;
  font-weight: 500;
  display: block;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.trust-chip i {
  color: var(--gold-primary);
}

/* Hero Showcase (Phone Mockup + Micro Stats) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup-wrap {
  position: relative;
  width: 290px;
  border-radius: 42px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255, 122, 0, 0.4), rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.8));
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 122, 0, 0.2);
  transition: transform 0.4s ease;
}
.phone-mockup-wrap:hover {
  transform: translateY(-6px) rotate(1deg);
}
.phone-screen {
  border-radius: 34px;
  overflow: hidden;
  background: #000;
  position: relative;
  border: 3px solid #1E2330;
}
.phone-screen img {
  width: 100%;
  height: auto;
  display: block;
}
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 14px;
  background: #000;
  border-radius: 10px;
  z-index: 2;
}

/* Floating Micro Badges around Phone */
.floating-badge {
  position: absolute;
  background: rgba(15, 18, 26, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid var(--saffron-border);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: floatMotion 4s ease-in-out infinite;
}
.floating-badge-1 {
  top: 15%;
  left: -24px;
  animation-delay: 0s;
}
.floating-badge-2 {
  bottom: 18%;
  right: -24px;
  animation-delay: 2s;
}
@keyframes floatMotion {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.floating-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--saffron-subtle);
  color: var(--saffron-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.floating-meta-title {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}
.floating-meta-val {
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 800;
}

/* ==========================================================================
   4. RUNNING LIVE RESULT TICKER / MARQUEE
   ========================================================================== */
.ticker-wrap {
  background: linear-gradient(90deg, #10141E 0%, #171D2C 50%, #10141E 100%);
  border-top: 1px solid rgba(255, 122, 0, 0.2);
  border-bottom: 1px solid rgba(255, 122, 0, 0.2);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.ticker-content {
  display: inline-flex;
  gap: 40px;
  animation: scrollTicker 32s linear infinite;
}
.ticker-wrap:hover .ticker-content {
  animation-play-state: paused;
}
@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.ticker-item strong {
  color: var(--saffron-bright);
}
.ticker-badge {
  background: var(--saffron-subtle);
  color: var(--gold-primary);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
}

/* ==========================================================================
   5. SECTION SYSTEM & HEADERS
   ========================================================================== */
.sec {
  padding: 80px 0;
  position: relative;
}
.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: var(--saffron-subtle);
  color: var(--saffron-bright);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  border: 1px solid var(--saffron-border);
}
.sec-title {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.sec-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   6. LIVE MARKETS COMMAND CENTER
   ========================================================================== */
.markets-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  background: var(--bg-card);
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
}
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tab-btn {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid transparent;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.tab-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--saffron-primary), var(--gold-primary));
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 14px var(--saffron-glow);
}
.market-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  min-width: 240px;
}
.market-search input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.88rem;
  width: 100%;
}
.market-search input::placeholder {
  color: var(--text-dim);
}

/* Live Market Cards Grid */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}
.market-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.market-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron-primary), var(--gold-primary));
  opacity: 0;
  transition: opacity 0.25s;
}
.market-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--saffron-border);
  box-shadow: var(--shadow-card), 0 0 20px rgba(255, 122, 0, 0.15);
}
.market-card:hover::before {
  opacity: 1;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.card-market-name {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.card-market-time {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-pill {
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.status-pill.live {
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.status-pill.ended {
  background: rgba(107, 114, 128, 0.15);
  color: #9CA3AF;
  border: 1px solid rgba(107, 114, 128, 0.3);
}

/* Digital LED Results Display */
.digital-score-board {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 122, 0, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: center;
  margin-bottom: 16px;
}
.score-digits {
  font-family: 'Courier New', Courier, monospace, 'Inter';
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--gold-primary);
  text-shadow: 0 0 12px rgba(255, 184, 0, 0.4);
}
.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.btn-chart-link {
  background: transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-chart-link:hover {
  color: var(--saffron-bright);
}
.btn-play-card {
  background: var(--saffron-subtle);
  color: var(--saffron-bright);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--saffron-border);
  transition: all 0.2s;
}
.btn-play-card:hover {
  background: var(--saffron-primary);
  color: #000;
}

/* ==========================================================================
   7. STARLINE & GALI DESAWAR VIP GRIDS
   ========================================================================== */
.special-section {
  background: linear-gradient(180deg, rgba(15, 18, 26, 0.4) 0%, rgba(20, 26, 38, 0.7) 100%);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.starline-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
  margin-bottom: 50px;
}
.starline-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  transition: all 0.2s ease;
}
.starline-tile:hover {
  border-color: var(--saffron-border);
  transform: translateY(-2px);
  background: var(--bg-card-hover);
}
.starline-time-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.starline-score {
  font-family: monospace;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.gali-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.gali-card-vip {
  background: linear-gradient(135deg, rgba(24, 29, 41, 0.9) 0%, rgba(15, 18, 26, 0.95) 100%);
  border: 1px solid var(--border-glass-gold);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.25s ease;
}
.gali-card-vip:hover {
  border-color: var(--saffron-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.15);
}
.gali-info-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.gali-info-time {
  font-size: 0.76rem;
  color: var(--text-muted);
}
.gali-score-box {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--saffron-border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-family: monospace;
  font-size: 1.4rem;
  font-weight: 900;
  color: #F87171;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   8. INTERACTIVE WINNING CALCULATOR
   ========================================================================== */
.calc-wrapper {
  background: linear-gradient(145deg, #10141E 0%, #161D2B 100%);
  border: 1px solid var(--saffron-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card), 0 0 35px rgba(255, 122, 0, 0.12);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.calc-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.calc-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.calc-input-wrapper span {
  position: absolute;
  left: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--saffron-bright);
}
.calc-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-glass-gold);
  border-radius: var(--radius-md);
  padding: 12px 16px 12px 36px;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s;
}
.calc-input:focus {
  border-color: var(--saffron-primary);
}
.calc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.chip-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.15s;
}
.chip-btn:hover, .chip-btn.active {
  background: var(--saffron-subtle);
  border-color: var(--saffron-border);
  color: var(--saffron-bright);
}
.calc-select {
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-glass-gold);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}
.calc-select option {
  background: #10141E;
  color: #fff;
}

/* Calculator Result Panel */
.calc-result-panel {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.calc-result-panel::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.calc-payout-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 8px;
}
.calc-payout-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(255, 184, 0, 0.45);
  margin-bottom: 12px;
}
.calc-payout-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ==========================================================================
   9. VIP PAYOUT RATES TABLE
   ========================================================================== */
.rates-grid-system {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.rate-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  transition: all 0.25s ease;
}
.rate-tile:hover {
  border-color: var(--saffron-border);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}
.rate-tile-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rate-game-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
}
.rate-badge {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.rate-badge.popular {
  background: rgba(255, 122, 0, 0.15);
  color: var(--saffron-bright);
  border: 1px solid var(--saffron-border);
}
.rate-badge.vip {
  background: rgba(255, 184, 0, 0.15);
  color: var(--gold-primary);
  border: 1px solid var(--border-glass-gold);
}
.rate-badge.jackpot {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.rate-ratio-box {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.rate-multiplier {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}
.rate-multiplier span {
  font-size: 1rem;
  color: var(--saffron-bright);
}
.rate-calc-preview {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.rate-calc-preview strong {
  color: var(--gold-primary);
}

.rate-progress-wrap {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}
.rate-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--saffron-primary), var(--gold-primary));
  border-radius: 99px;
}

/* ==========================================================================
   10. BENTO GRID — WHY SHIVSHANKAR OUTPERFORMS
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--saffron-border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 24px rgba(255, 122, 0, 0.1);
}
.bento-card.span-2 {
  grid-column: span 2;
}
.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--saffron-subtle);
  color: var(--saffron-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  border: 1px solid var(--saffron-border);
}
.bento-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.bento-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   11. 5-STEP JOURNEY PIPELINE
   ========================================================================== */
.timeline-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.timeline-step {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  position: relative;
  text-align: center;
  transition: all 0.25s ease;
}
.timeline-step:hover {
  border-color: var(--saffron-border);
  transform: translateY(-3px);
}
.step-number-tag {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron-primary), var(--gold-primary));
  color: #000;
  font-weight: 900;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px var(--saffron-glow);
}
.step-heading {
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.step-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   12. FULL MARKET SCHEDULE MATRIX TABLE
   ========================================================================== */
.schedule-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow-x: auto;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}
.schedule-table thead {
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border-glass);
}
.schedule-table th {
  padding: 16px 20px;
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.schedule-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
}
.schedule-table tr:last-child td {
  border-bottom: none;
}
.schedule-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
.table-market-title {
  font-weight: 800;
  color: var(--text-primary);
}

/* ==========================================================================
   13. ACCORDION FAQ SYSTEM
   ========================================================================== */
.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-box.open {
  border-color: var(--saffron-border);
}
.faq-header {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-header:hover {
  color: var(--saffron-bright);
}
.faq-header i {
  font-size: 0.88rem;
  transition: transform 0.25s ease;
}
.faq-box.open .faq-header i {
  transform: rotate(180deg);
  color: var(--saffron-bright);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}
.faq-box.open .faq-body {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ==========================================================================
   14. DUAL CTA VIP BANNER
   ========================================================================== */
.cta-vip-card {
  background: linear-gradient(135deg, #181E2E 0%, #0F121A 100%);
  border: 1px solid var(--saffron-border);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 40px rgba(255, 122, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-vip-card::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-vip-text h3 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.cta-vip-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
}
.cta-vip-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

/* ==========================================================================
   15. SITE FOOTER
   ========================================================================== */
.site-footer {
  background: #040507;
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 30px;
  color: var(--text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.footer-column h4 {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-column a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.86rem;
  display: block;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-column a:hover {
  color: var(--saffron-bright);
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ==========================================================================
   16. FLOATING WIDGETS (WHATSAPP & LIVE TOAST)
   ========================================================================== */
.float-wa-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  z-index: 998;
  transition: transform 0.25s;
}
.float-wa-btn:hover {
  transform: scale(1.08);
}
.float-wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  animation: waPulse 2s infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Live Winner Toast */
.winner-toast {
  position: fixed;
  bottom: 90px;
  left: 24px;
  background: rgba(15, 18, 26, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--saffron-border);
  border-radius: var(--radius-lg);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 997;
  max-width: 320px;
}
.winner-toast.show {
  transform: translateY(0);
  opacity: 1;
}
.winner-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron-primary), var(--gold-primary));
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.winner-info-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-primary);
}
.winner-info-desc {
  font-size: 0.78rem;
  color: var(--gold-primary);
  font-weight: 600;
}
.winner-info-time {
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* Sticky Mobile Bottom Dock */
.mobile-bottom-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 12, 18, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--saffron-border);
  padding: 10px 16px;
  z-index: 999;
}
.mobile-dock-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ==========================================================================
   17. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-trust-badges {
    justify-content: center;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card.span-2 {
    grid-column: span 1;
  }
  .calc-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .timeline-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-vip-card {
    flex-direction: column;
    text-align: center;
  }
  .cta-vip-btns {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .topbar {
    display: none;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .timeline-steps-grid {
    grid-template-columns: 1fr;
  }
  .markets-grid {
    grid-template-columns: 1fr;
  }
  .mobile-bottom-dock {
    display: block;
  }
  .float-wa-btn {
    bottom: 74px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .winner-toast {
    bottom: 74px;
    left: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
