/* 4RABET India — Premium iGaming Design System 2026 */

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

:root {
  --bg-dark: #070D18;
  --bg-main: #0B1528;
  --surface-1: #121F36;
  --surface-2: #1A2B48;
  --surface-3: #23375A;
  
  --accent-green: #00E676;
  --accent-green-dark: #00C853;
  --accent-green-glow: rgba(0, 230, 118, 0.35);
  
  --accent-gold: #FFD700;
  --accent-gold-glow: rgba(255, 215, 0, 0.25);
  
  --text-main: #FFFFFF;
  --text-muted: #B0C0D8;
  --text-sub: #6C82A4;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(0, 230, 118, 0.3);
  --border-gold: rgba(255, 215, 0, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 25px rgba(0, 230, 118, 0.25);
  
  --font-heading: 'Outfit', 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --max-width: 1180px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 230, 118, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(21, 34, 56, 0.5) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFFFFF 30%, #D0E0F8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

strong {
  color: var(--text-main);
}

a {
  color: var(--accent-green);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: #69F0AE;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  background: var(--accent-green);
  color: #000;
  padding: 8px 16px;
  font-weight: 700;
  z-index: 10000;
}
.skip-link:focus {
  top: 0;
}

/* Header Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 21, 40, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8rem 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: var(--text-main);
  text-decoration: none !important;
}

.logo-text {
  display: inline-flex;
  align-items: center;
}

.logo-four {
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.logo span.accent {
  background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(0, 230, 118, 0.4));
}

.logo-region {
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid var(--border-accent);
  color: #00E676;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 0 10px rgba(0, 230, 118, 0.2);
}

nav ul {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
}

nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

nav a:hover, nav a.active {
  color: var(--text-main);
  background: var(--surface-2);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%) !important;
  color: #000000 !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px var(--accent-green-glow);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-green-glow);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Secondary Subnav Bar */
.subnav {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-light);
  overflow-x: auto;
  scrollbar-width: none;
}

.subnav::-webkit-scrollbar {
  display: none;
}

.subnav-inner {
  display: flex;
  gap: 0.4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  white-space: nowrap;
}

.subnav a {
  color: var(--text-sub);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.2s ease;
}

.subnav a:hover, .subnav a.active {
  color: var(--accent-green);
  background: var(--surface-2);
  border: 1px solid var(--border-accent);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 3.5rem 0 3rem;
  background: 
    radial-gradient(ellipse at 80% 0%, rgba(0, 230, 118, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--surface-1) 0%, var(--bg-main) 100%);
  border-bottom: 1px solid var(--border-light);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid var(--border-accent);
  color: var(--accent-green);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.2rem;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 65ch;
  margin-bottom: 1.5rem;
}

/* Answer First Box */
.answer-box {
  background: rgba(26, 43, 72, 0.7);
  border: 1px solid var(--border-accent);
  border-left: 4px solid var(--accent-green);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  backdrop-filter: blur(8px);
}

.answer-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-green);
  margin-bottom: 0.4rem;
}

.answer-box p {
  color: var(--text-main);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
}

.page-updated {
  font-size: 0.78rem;
  color: var(--text-sub);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
  color: #000000 !important;
  box-shadow: 0 4px 16px var(--accent-green-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-green-glow);
  color: #000000 !important;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-accent);
  color: var(--accent-green) !important;
}

.btn-outline:hover {
  background: rgba(0, 230, 118, 0.1);
  border-color: var(--accent-green);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.9rem 1.9rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-block {
  width: 100%;
}

/* Trust Bar */
.trust-bar {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-light);
  padding: 0.85rem 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Section Layouts */
.section {
  padding: 3.5rem 0;
}

.section-base {
  background: transparent;
}

.section-alt {
  background: var(--surface-1);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.prose {
  max-width: 800px;
}

.content-h2 {
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 0.85rem;
  border-left: 4px solid var(--accent-green);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-green);
  margin-bottom: 0.4rem;
}

.section-header {
  margin-bottom: 2rem;
}

/* Data Tables */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--surface-1);
  margin: 1.5rem 0 2rem;
  box-shadow: var(--shadow-sm);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  text-align: left;
}

.data-table th {
  background: var(--surface-2);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--border-light);
}

.data-table td {
  padding: 0.85rem 1.1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.015);
}

.data-table tr:hover td {
  background: rgba(0, 230, 118, 0.03);
  color: var(--text-main);
}

/* Slot & Game Grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.game-card {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.game-card img {
  width: 100%;
  aspect-ratio: 226 / 338;
  object-fit: cover;
  background: #0f1a2e;
}

.game-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.game-card-body p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.faq-item {
  background: var(--surface-1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: var(--border-accent);
  background: var(--surface-2);
}

.faq-question {
  padding: 1.1rem 1.35rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3rem;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1.35rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--accent-green);
  font-weight: 700;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.35rem 1.25rem 1.35rem;
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Footer Section */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-light);
  padding: 3.5rem 0 2rem;
  margin-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-col p {
  font-size: 0.88rem;
  color: var(--text-sub);
  margin-top: 0.8rem;
}

.footer-col h3 {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-sub);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent-green);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-sub);
}

/* Mobile Sticky CTA Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: rgba(7, 13, 24, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-accent);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  nav#mainNav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-light);
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
  }
  
  nav#mainNav.open {
    display: block;
  }
  
  nav#mainNav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  
  nav#mainNav a {
    display: block;
    padding: 0.75rem 1rem;
  }
  
  .mobile-cta-bar {
    display: block;
  }
  
  body {
    padding-bottom: 65px;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Premium Promo Bonus Banner */
.promo-banner-section {
  padding: 1.5rem 0 2rem 0;
}

.promo-banner-card {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.12) 0%, rgba(26, 43, 72, 0.95) 45%, rgba(11, 21, 40, 0.98) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 230, 118, 0.15);
  overflow: hidden;
}

.promo-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.promo-banner-badge {
  display: inline-block;
  background: linear-gradient(90deg, #FFD700, #FFA000);
  color: #070D18;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.promo-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.promo-banner-title {
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.text-accent-gold {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.text-accent-green {
  color: #00E676;
  text-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
}

.promo-banner-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 1.25rem;
}

.promo-banner-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.p-feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
}

.promo-banner-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 250px;
}

.btn-xl {
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: var(--radius-md);
}

.btn-pulse {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(0, 230, 118, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
  }
}

.promo-guarantee {
  font-size: 0.78rem;
  color: var(--text-sub);
}

@media (max-width: 860px) {
  .promo-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .promo-banner-action {
    width: 100%;
    min-width: 100%;
  }
  
  .btn-xl {
    width: 100%;
    text-align: center;
  }
}

/* Centered Hero Banner (Verde Casino Style) */
.hero-centered {
  position: relative;
  text-align: center;
  padding: 4.2rem 1rem 3.8rem;
  background: 
    radial-gradient(circle at 50% 20%, rgba(0, 230, 118, 0.18) 0%, transparent 65%),
    radial-gradient(circle at 50% 80%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #07101E 0%, #0B172B 100%);
  border-bottom: 1px solid var(--border-accent);
  overflow: hidden;
}

.hero-centered::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/foto/hero-banner.png') center/cover no-repeat;
  opacity: 0.15;
  filter: blur(5px);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.hero-title-centered {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #E0E8F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-badge-pill {
  display: inline-block;
  color: #00E676;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-shadow: 0 0 12px rgba(0, 230, 118, 0.4);
}

.hero-bonus-box {
  display: inline-block;
  background: rgba(0, 230, 118, 0.08);
  border: 1.5px solid rgba(0, 230, 118, 0.45);
  border-radius: var(--radius-md);
  padding: 0.85rem 2.2rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(0, 230, 118, 0.18);
}

.hero-bonus-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #FFD700;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.hero-bonus-amount {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #FFFFFF;
}

.hero-description-centered p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 780px;
  margin: 0 auto 2rem;
}

.hero-link-highlight {
  color: #00E676 !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}

.hero-link-highlight:hover {
  color: #FFD700 !important;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.hero-cta-wrap {
  margin-bottom: 1.25rem;
}

.btn-golden-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FFC107 0%, #FF9800 100%);
  color: #000000 !important;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  padding: 1.1rem 2.8rem;
  border-radius: 999px;
  border: 2px solid #FFFFFF;
  box-shadow: 0 6px 25px rgba(255, 160, 0, 0.45);
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-golden-pill:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(255, 160, 0, 0.65);
  background: linear-gradient(180deg, #FFD54F 0%, #FFA726 100%);
  color: #000000 !important;
}

.hero-trust-mini {
  font-size: 0.85rem;
  color: var(--text-sub);
}

/* --- TOP INDIAN GAMING INNOVATIONS 2026 --- */

/* 1. Live Winner Ticker / Feed */
.live-win-ticker-wrap {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-light);
  padding: 0.5rem 0;
  overflow: hidden;
  position: relative;
  z-index: 900;
}

.live-win-ticker-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
}

.live-win-ticker-wrap:hover .live-win-ticker-inner {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-item .winner-name {
  font-weight: 600;
  color: var(--text-main);
}

.ticker-item .winner-amount {
  font-weight: 800;
  color: #00E676;
}

.ticker-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  font-size: 0.75rem;
  color: #FFD700;
  background: rgba(255, 215, 0, 0.15);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 215, 0, 0.3);
  margin-right: 1rem;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #00E676;
  border-radius: 50%;
  box-shadow: 0 0 8px #00E676;
  animation: pulse-glow 1.5s infinite;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 2. One-Tap Copy Promo Code Widget */
.promo-copy-card {
  background: linear-gradient(135deg, rgba(18, 31, 54, 0.95) 0%, rgba(26, 43, 72, 0.95) 100%);
  border: 1.5px dashed var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.promo-copy-info {
  display: flex;
  flex-direction: column;
}

.promo-copy-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-sub);
}

.promo-copy-code {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
}

.btn-copy-code {
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid var(--accent-gold);
  color: #FFD700;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-copy-code:hover {
  background: var(--accent-gold);
  color: #000;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* 3. Mobile Floating Navigation Bar (Bottom Dock) */
.mobile-bottom-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: rgba(7, 13, 24, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 9999;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.5rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 600;
  text-decoration: none !important;
  flex: 1;
  padding: 4px 0;
  transition: all 0.2s ease;
}

.dock-item svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.dock-item:hover, .dock-item.active {
  color: var(--accent-green);
}

.dock-item.dock-cta {
  color: #FFD700;
}

.dock-item.dock-cta svg {
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px; /* Leave space for bottom bar */
  }
  .mobile-bottom-dock {
    display: none; /* Replaced by full sticky bonus bar */
  }
}

/* --- PREMIUM STICKY BONUS BAR AT BOTTOM --- */
.sticky-bonus-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(11, 21, 40, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
  z-index: 99999;
  display: flex;
  align-items: center;
}

.sticky-bonus-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  gap: 1rem;
}

.sticky-bonus-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sticky-bonus-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

.sticky-bonus-details {
  display: flex;
  flex-direction: column;
}

.sticky-bonus-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #B0C0D8;
  text-transform: uppercase;
}

.sticky-bonus-headline {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
}

.sticky-bonus-headline span.gold {
  color: #FFD700;
}

.sticky-bonus-headline span.green {
  color: #00E676;
}

.sticky-bonus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: linear-gradient(180deg, #FFC107 0%, #FF9800 100%);
  color: #000000 !important;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: 1.5px solid #FFFFFF;
  box-shadow: 0 4px 20px rgba(255, 160, 0, 0.4);
  text-decoration: none !important;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sticky-bonus-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 160, 0, 0.65);
  background: linear-gradient(180deg, #FFD54F 0%, #FFA726 100%);
}

@media (max-width: 640px) {
  .sticky-bonus-bar {
    height: 64px;
  }
  .sticky-bonus-icon-badge {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    border-radius: 8px;
  }
  .sticky-bonus-label {
    display: none;
  }
  .sticky-bonus-headline {
    font-size: 0.85rem;
  }
  .sticky-bonus-btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.82rem;
  }
}

