/* ==========================================
   TABLEPLUS - Luxury Premium Casino CSS
   ========================================== */

/* CSS Variables */
:root {
  --primary: #0B1E15;
  --secondary: #103224;
  --card: #143728;
  --card-hover: #1A4432;
  --gold: #F6B93B;
  --gold-hover: #FFC857;
  --gold-dark: #D4AC0D;
  --gold-gradient: linear-gradient(135deg, #F6B93B 0%, #E67E22 100%);
  --gold-gradient-hover: linear-gradient(135deg, #FFC857 0%, #F39C12 100%);
  --emerald-gradient: linear-gradient(135deg, #103224 0%, #0B1E15 100%);
  --glass-gradient: linear-gradient(135deg, rgba(20, 55, 40, 0.7) 0%, rgba(11, 30, 21, 0.8) 100%);
  --accent: #2ECC71;
  --warning: #FF8A00;
  --danger: #E74C3C;
  --white: #FFFFFF;
  --text-secondary: #BFD8C5;
  --text-muted: #7E9C88;
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(246, 185, 59, 0.35);
  --shadow-glow: 0 0 25px rgba(246, 185, 59, 0.2);
  --shadow-emerald: 0 0 30px rgba(46, 204, 113, 0.15);
  --shadow-card: 0 12px 35px rgba(0, 0, 0, 0.45);
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-pill: 50px;
  
  --transition-fast: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--primary);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Ambient Glows */
body::before {
  content: '';
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 50, 36, 0.6) 0%, rgba(11, 30, 21, 0) 70%);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  bottom: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(246, 185, 59, 0.08) 0%, rgba(11, 30, 21, 0) 70%);
  z-index: -2;
  pointer-events: none;
}

/* Typography Elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition-normal);
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3.5rem 0;
  }
}

/* Section Title Component */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  background: rgba(246, 185, 59, 0.1);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(246, 185, 59, 0.25);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(180deg, #FFFFFF 0%, #BFD8C5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.85rem;
  }
  .section-desc {
    font-size: 0.95rem;
  }
}

/* Buttons Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0B1E15;
  box-shadow: 0 4px 15px rgba(246, 185, 59, 0.3);
  font-weight: 700;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(246, 185, 59, 0.5);
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-outline {
  background: rgba(20, 55, 40, 0.5);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background: rgba(246, 185, 59, 0.15);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-emerald {
  background: var(--secondary);
  border: 1px solid var(--border);
  color: var(--white);
}

.btn-emerald:hover {
  background: var(--card-hover);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
  border-radius: var(--radius-xl);
}

.btn-icon-only {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--glass-gradient);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
}

.glass-card:hover {
  border-color: rgba(246, 185, 59, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), var(--shadow-emerald);
}

/* ==========================================
/* ==========================================
   HEADER SECTION - FULLY RESPONSIVE & UNIFORM
   ========================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 30, 21, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition-normal);
}

.header.scrolled {
  background: rgba(11, 30, 21, 0.95);
  border-bottom-color: var(--border-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.25rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .nav-menu {
    flex: 0 0 auto;
    justify-content: center;
    margin: 0 auto;
  }
  .header-actions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.brand-logo-img {
  height: 38px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
  transition: var(--transition-normal);
}

.logo:hover .brand-logo-img {
  transform: scale(1.03);
  filter: drop-shadow(0 0 8px rgba(246, 185, 59, 0.4));
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0 auto;
}

.nav-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link.badge-link {
  position: relative;
}

.nav-link.badge-link::before {
  content: "HOT";
  position: absolute;
  top: -8px;
  right: -16px;
  background: #E74C3C;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 3px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-login {
  display: inline-flex;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-actions .btn-gold {
  padding: 0.45rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Mobile Toggle Icon */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Laptop / Mid-Desktop Screen (1025px to 1280px) */
@media (max-width: 1280px) and (min-width: 1025px) {
  .header-container {
    padding: 0 1.25rem;
    gap: 1rem;
  }
  .brand-logo-img {
    height: 35px;
    max-width: 150px;
  }
  .nav-menu {
    gap: 0.85rem;
  }
  .nav-link {
    font-size: 0.82rem;
  }
  .header-actions {
    gap: 0.5rem;
  }
  .btn-login {
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
  }
  .header-actions .btn-gold {
    padding: 0.4rem 0.95rem;
    font-size: 0.78rem;
  }
}

/* Tablet Screen (769px to 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .header-container {
    padding: 0 1rem;
    gap: 0.75rem;
    height: 72px;
  }
  .brand-logo-img {
    height: 32px;
    max-width: 135px;
  }
  .nav-menu {
    gap: 0.6rem;
  }
  .nav-link {
    font-size: 0.78rem;
    padding: 0.3rem 0;
  }
  .header-actions {
    gap: 0.4rem;
  }
  .btn-login {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
  }
  .header-actions .btn-gold {
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
  }
  .mobile-toggle {
    display: none !important;
  }
}

/* Mobile Breakpoint (768px and below) */
@media (max-width: 768px) {
  .header-container {
    height: 68px;
    padding: 0 1rem;
  }

  .brand-logo-img {
    height: 34px;
    max-width: 140px;
  }

  .nav-menu {
    position: fixed;
    top: 68px;
    left: -100%;
    width: 100%;
    height: calc(100dvh - 68px);
    background: rgba(11, 30, 21, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid var(--border-gold);
    overflow-y: auto;
    z-index: 999;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-menu .nav-link {
    font-size: 1.05rem;
    font-weight: 700;
    width: 100%;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-menu .nav-link.badge-link::before {
    top: 8px;
    right: auto;
    left: 70px;
  }

  .header-actions {
    gap: 0.6rem;
  }

  .mobile-toggle {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 0.85rem;
  }
  .btn-login {
    display: none;
  }
  .header-actions .btn-gold {
    padding: 0.38rem 0.75rem;
    font-size: 0.75rem;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
}

.hero-particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.2rem;
  background: rgba(246, 185, 59, 0.12);
  border: 1px solid rgba(246, 185, 59, 0.3);
  border-radius: var(--radius-pill);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge-icon {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #FFF 0%, #F6B93B 50%, #E67E22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  text-shadow: 0 10px 30px rgba(246, 185, 59, 0.2);
}

.hero-subheading {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-item svg {
  color: var(--gold);
}

/* Hero Visual Art */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  border: 1px solid var(--border-gold);
}

.hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.hero-visual-frame:hover img {
  transform: scale(1.03);
}

/* Floating Jackpot Badge on Hero */
.hero-floating-jackpot {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(16, 50, 36, 0.95);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  white-space: nowrap;
}

.jackpot-badge-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 800;
}

.jackpot-badge-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 600;
}

.jackpot-badge-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .hero {
    padding: 3.5rem 0 2rem 0;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 2.5rem 0 1.5rem 0;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-subheading {
    font-size: 1.05rem;
  }

  .features-bar-section {
    margin-top: 0;
    padding: 1.5rem 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }
  
  .hero-subheading {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.9rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-floating-jackpot {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    margin-top: 1.2rem;
    padding: 0.8rem 1rem;
    justify-content: center;
    box-sizing: border-box;
  }

  .jackpot-badge-amount {
    font-size: 1.15rem;
  }

  .jackpot-badge-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.6rem;
  }
}

/* ==========================================
   QUICK FEATURES BAR
   ========================================== */
.features-bar-section {
  padding: 2rem 0;
  position: relative;
  z-index: 10;
  margin-top: -30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.feature-card {
  background: var(--glass-gradient);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow);
  background: rgba(20, 55, 40, 0.9);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(246, 185, 59, 0.1);
  border: 1px solid rgba(246, 185, 59, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.feature-card:hover .feature-icon-box {
  background: var(--gold-gradient);
  color: var(--primary);
}

.feature-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.feature-subtitle {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================
   FEATURED GAME SECTION
   ========================================== */
.featured-game-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 3rem;
  align-items: center;
  background: radial-gradient(circle at top right, rgba(246, 185, 59, 0.12), transparent 50%), var(--glass-gradient);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.featured-game-card::before {
  content: 'FEATURED SLOT';
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--gold-gradient);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 40px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
}

.featured-game-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-gold);
}

.featured-game-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: var(--transition-normal);
}

.featured-game-media:hover img {
  transform: scale(1.05);
}

.featured-game-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(11, 30, 21, 0.85);
  border: 1px solid var(--border-gold);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}

.featured-game-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.featured-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
}

.featured-jackpot-box {
  background: rgba(11, 30, 21, 0.7);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  text-align: center;
}

.jackpot-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.jackpot-counter {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-main);
  letter-spacing: 0.05em;
  text-shadow: 0 0 15px rgba(246, 185, 59, 0.4);
}

.featured-stats-row {
  display: flex;
  gap: 1.5rem;
}

.featured-stat-item {
  display: flex;
  flex-direction: column;
}

.featured-stat-item .label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.featured-stat-item .value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 900px) {
  .featured-game-card {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .featured-game-media img {
    height: 250px;
  }
  .featured-title {
    font-size: 1.8rem;
  }
  .jackpot-counter {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .featured-game-card {
    padding: 1.25rem 1rem;
    gap: 1.2rem;
    border-radius: var(--radius-lg);
  }
  .featured-game-media img {
    height: 190px;
  }
  .featured-title {
    font-size: 1.4rem;
  }
  .jackpot-counter {
    font-size: 1.35rem;
  }
  .jackpot-label {
    font-size: 0.7rem;
  }
  .featured-stats-row {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .featured-stat-item .value {
    font-size: 0.95rem;
  }
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.stat-card {
  background: var(--glass-gradient);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(246, 185, 59, 0.1);
  border: 1px solid rgba(246, 185, 59, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 1.2rem auto;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #F6B93B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-number {
    font-size: 2.4rem;
  }
}

/* ==========================================
   POPULAR GAMES GRID & FILTERS
   ========================================== */
.games-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  padding: 0.6rem 1.3rem;
  background: rgba(20, 55, 40, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.filter-tab:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-tab.active {
  background: var(--gold-gradient);
  color: var(--primary);
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(246, 185, 59, 0.3);
}

.game-search-box {
  position: relative;
  min-width: 260px;
}

.game-search-input {
  width: 100%;
  padding: 0.65rem 1rem 0.65rem 2.6rem;
  background: rgba(16, 50, 36, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: 0.88rem;
  outline: none;
}

.game-search-input:focus {
  border-color: var(--gold);
}

.game-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 16px;
  height: 16px;
}

/* Responsive Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .games-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .game-search-box {
    width: 100%;
    min-width: 100%;
  }
  .filter-tabs {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.4rem;
  }
}

@media (max-width: 420px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .game-body {
    padding: 0.65rem 0.6rem;
  }
  .game-title {
    font-size: 0.82rem;
  }
  .game-meta {
    font-size: 0.7rem;
  }
  .provider-badge {
    font-size: 0.62rem;
    padding: 2px 5px;
  }
}

/* Individual Game Card */
.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.game-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0B1E15;
}

.game-thumb-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.game-card:hover .game-thumb-canvas {
  transform: scale(1.08);
}

.provider-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(11, 30, 21, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-secondary);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.fav-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(11, 30, 21, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-fast);
  z-index: 2;
}

.fav-btn:hover, .fav-btn.active {
  color: #E74C3C;
  background: rgba(255, 255, 255, 0.9);
}

.fav-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 30, 21, 0.75);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 3;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-body {
  padding: 0.85rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.game-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.game-rtp {
  color: var(--accent);
  font-weight: 600;
}

/* ==========================================
   PROMOTIONS SECTION
   ========================================== */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .promos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .promos-grid {
    grid-template-columns: 1fr;
  }
}

.promo-card {
  background: var(--glass-gradient);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
}

.promo-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.promo-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold);
  background: rgba(246, 185, 59, 0.1);
  border: 1px solid rgba(246, 185, 59, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.promo-icon-header {
  width: 52px;
  height: 52px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.promo-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.promo-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1rem;
}

.promo-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

/* ==========================================
   LUCKY WHEEL SECTION
   ========================================== */
.wheel-wrapper-card {
  background: radial-gradient(circle at center, rgba(16, 50, 36, 0.9) 0%, rgba(11, 30, 21, 0.95) 100%), var(--glass-gradient);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.wheel-container {
  position: relative;
  width: 360px;
  height: 360px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheel-canvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(246, 185, 59, 0.4);
  border: 8px solid #143728;
  transition: transform 5s cubic-bezier(0.15, 0.9, 0.2, 1);
}

.wheel-pointer {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 32px solid var(--gold);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  z-index: 10;
}

.wheel-spin-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--primary);
  font-weight: 900;
  font-size: 1.1rem;
  border: 4px solid #143728;
  box-shadow: 0 0 20px rgba(246, 185, 59, 0.6);
  z-index: 5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.wheel-spin-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.wheel-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}

.wheel-title {
  text-align: left;
  margin-bottom: 0.25rem;
}

.rewards-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.reward-tag {
  background: rgba(16, 50, 36, 0.7);
  border: 1px solid var(--border);
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.reward-tag svg {
  color: var(--gold);
  flex-shrink: 0;
}

.wheel-cta-wrap {
  margin-top: 0.5rem;
  display: flex;
  justify-content: flex-start;
}

.wheel-btn {
  padding: 0.85rem 2.2rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 20px rgba(246, 185, 59, 0.35);
  transition: all 0.3s ease;
}

.wheel-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(246, 185, 59, 0.55);
}

@media (max-width: 1024px) {
  .wheel-wrapper-card {
    padding: 2.25rem;
    gap: 2rem;
  }
  .wheel-container {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 900px) {
  .wheel-wrapper-card {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    text-align: center;
  }
  .wheel-info {
    text-align: center;
    align-items: center;
  }
  .wheel-title {
    text-align: center;
  }
  .wheel-container {
    width: 280px;
    height: 280px;
  }
  .wheel-spin-btn {
    width: 65px;
    height: 65px;
    font-size: 0.9rem;
  }
  .wheel-cta-wrap {
    justify-content: center;
    width: 100%;
  }
  .wheel-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .wheel-wrapper-card {
    padding: 1.5rem 0.9rem;
    gap: 1.5rem;
    border-radius: var(--radius-lg);
  }
  .wheel-container {
    width: min(260px, 78vw);
    height: min(260px, 78vw);
  }
  .wheel-spin-btn {
    width: 58px;
    height: 58px;
    font-size: 0.8rem;
    border-width: 3px;
  }
  .wheel-pointer {
    border-left-width: 14px;
    border-right-width: 14px;
    border-top-width: 24px;
    top: -10px;
  }
  .rewards-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    width: 100%;
  }
  .reward-tag {
    justify-content: center;
    padding: 0.6rem 0.8rem;
    font-size: 0.82rem;
  }
  .wheel-btn {
    width: 100%;
    font-size: 0.92rem;
    padding: 0.8rem 1.5rem;
  }
}

/* ==========================================
   GAME CATEGORIES SECTION
   ========================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

.category-card {
  height: 240px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 185, 59, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: var(--transition-normal);
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(10, 25, 18, 0.75) 100%);
  transition: var(--transition-normal);
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(246, 185, 59, 0.25);
}

.category-card:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(10, 25, 18, 0.6) 100%);
}

.category-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.category-count {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
}

.category-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

/* ==========================================
   PAYMENT METHODS SECTION
   ========================================== */
.payment-bar {
  background: var(--glass-gradient);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .payment-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.payment-item {
  background: rgba(11, 30, 21, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.8rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.payment-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  background: rgba(20, 55, 40, 0.9);
}

.payment-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ==========================================
   DOWNLOAD APP SECTION
   ========================================== */
.app-section-card {
  background: var(--glass-gradient);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.app-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.8rem 0;
}

.app-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.app-feature-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.app-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-qr-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(11, 30, 21, 0.8);
  border: 1px solid var(--border);
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  margin-top: 1.5rem;
}

.qr-code-img {
  width: 90px;
  height: 90px;
  background: #FFF;
  padding: 6px;
  border-radius: var(--radius-sm);
}

@media (max-width: 900px) {
  .app-section-card {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }
}

/* ==========================================
   NEWS / BLOG SECTION
   ========================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: var(--glass-gradient);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
}

.news-thumb {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.news-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-grow: 1;
}

.news-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.news-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}

.news-excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  flex-grow: 1;
}

/* ==========================================
   FAQ ACCORDION
   ========================================== */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--glass-gradient);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-header {
  width: 100%;
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 1.8rem;
}

.faq-item.active .faq-content {
  padding: 0 1.8rem 1.4rem 1.8rem;
}

.faq-content p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer {
  background: #07150E;
  border-top: 1px solid var(--border);
  padding-top: 5rem;
  padding-bottom: 2rem;
  color: var(--text-secondary);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}



.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(3px);
}


/* RESPONSIBLE GAMING BAR & TRUST MARQUEE */
.responsible-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
  gap: 1.2rem;
  width: 100%;
  overflow: hidden;
}

.footer-trust-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.2rem 0;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.footer-trust-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: trustMarqueeScroll 28s linear infinite;
}

.footer-trust-marquee:hover .footer-trust-track {
  animation-play-state: paused;
}

.footer-trust-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-right: 1.25rem;
  flex-shrink: 0;
}

.resp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm, 6px);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.responsible-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

@keyframes trustMarqueeScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-25%, 0, 0);
  }
}

@media (max-width: 767px) {
  .responsible-bar {
    padding: 1.2rem 0;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .footer-trust-track {
    animation-duration: 22s;
  }
  .footer-trust-group {
    gap: 0.75rem;
    padding-right: 0.75rem;
  }
  .resp-badge {
    padding: 0.3rem 0.75rem;
    font-size: 0.72rem;
  }
  .responsible-text {
    font-size: 0.75rem;
    padding: 0 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-trust-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .footer-trust-track {
    animation: none !important;
    transform: none !important;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-trust-group[aria-hidden="true"] {
    display: none;
  }
}


.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 600px) {
  .footer {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }
  .responsible-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .responsible-badges {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
  }
  .faq-header {
    padding: 1.1rem 1.2rem;
    font-size: 0.95rem;
  }
  .faq-content {
    padding: 0 1.2rem;
  }
  .faq-item.active .faq-content {
    padding: 0 1.2rem 1.2rem 1.2rem;
  }
}

/* ==========================================
   MODALS & FLOATING CONTROLS
   ========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--text-muted);
  font-size: 1.2rem;
}

.modal-close:hover {
  color: var(--white);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-control {
  padding: 0.8rem 1rem;
  background: rgba(11, 30, 21, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.back-to-top {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

.live-chat-float {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.live-chat-float:hover {
  transform: scale(1.08);
  color: var(--white);
  background: var(--gold);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.toast {
  background: var(--card);
  border: 1px solid var(--border-gold);
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  color: var(--white);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: slideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideIn {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Animations & Scroll Reveals */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 480px) {
  .modal-overlay {
    padding: 0.8rem;
  }
  .modal-card {
    padding: 1.5rem 1.2rem;
    max-width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
  }
  .app-section-card {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
  }
  .app-qr-box {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  .app-buttons {
    flex-direction: column;
    width: 100%;
  }
  .app-buttons .btn {
    width: 100%;
  }
  .toast-container {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: calc(100vw - 2rem);
  }
  .toast {
    padding: 0.7rem 1rem;
    font-size: 0.82rem;
  }
  .floating-actions {
    bottom: 1rem;
    right: 1rem;
    gap: 0.5rem;
  }
  .back-to-top, .live-chat-float {
    width: 42px;
    height: 42px;
  }
}

/* CONTENT CTA BUTTON GROUP (PLAY NOW & DOWNLOAD APP) */
.content-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(246, 185, 59, 0.2);
  flex-wrap: wrap;
}

.cta-btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #F6B93B 0%, #E5A82A 100%);
  color: #07150E;
  font-size: 0.98rem;
  font-weight: 800;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-pill, 9999px);
  box-shadow: 0 4px 20px rgba(246, 185, 59, 0.4);
  transition: var(--transition-normal, all 0.3s ease);
  border: none;
  text-decoration: none;
}

.cta-btn-play:hover {
  background: linear-gradient(135deg, #FFC54D 0%, #F6B93B 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(246, 185, 59, 0.6);
  color: #000;
}

.cta-btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(11, 30, 21, 0.85);
  color: var(--gold, #F6B93B);
  border: 1px solid var(--border-gold, rgba(246, 185, 59, 0.4));
  font-size: 0.98rem;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-pill, 9999px);
  transition: var(--transition-normal, all 0.3s ease);
  text-decoration: none;
}

.cta-btn-download:hover {
  background: rgba(246, 185, 59, 0.15);
  color: #FFC54D;
  border-color: var(--gold, #F6B93B);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(246, 185, 59, 0.25);
}

/* ABOUT US EXPANDABLE CONTENT */
.about-content-wrapper {
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: center;
  font-size: 1rem;
  position: relative;
}

.about-text-p1 {
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.about-extra-content {
  display: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.about-content-wrapper.expanded .about-extra-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.about-text-p2 {
  margin-bottom: 1.25rem;
}

.about-link-wrap {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.about-toggle-btn {
  background: rgba(246, 185, 59, 0.12);
  border: 1px solid rgba(246, 185, 59, 0.4);
  color: var(--accent-gold, #F6B93B);
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.25rem auto 0.5rem auto;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.about-toggle-btn .toggle-arrow {
  stroke: var(--accent-gold, #F6B93B);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.3s ease;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.about-toggle-btn:hover {
  background: rgba(246, 185, 59, 0.25);
  border-color: var(--accent-gold, #F6B93B);
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 20px rgba(246, 185, 59, 0.4);
}

.about-toggle-btn:hover .toggle-arrow {
  stroke: #FFF;
}

.about-content-wrapper.expanded .toggle-arrow {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .about-content-wrapper {
    font-size: 0.92rem;
    line-height: 1.7;
    padding: 0 0.5rem;
  }
  .about-toggle-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .about-content-wrapper {
    font-size: 0.88rem;
    line-height: 1.65;
  }
  .about-toggle-btn {
    width: 100%;
    max-width: 260px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

/* ==========================================
   MOBILE FIXED BOTTOM NAVIGATION BAR
   ========================================== */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .floating-actions {
    bottom: calc(82px + env(safe-area-inset-bottom, 0px)) !important;
    right: 1rem;
    gap: 0.5rem;
  }

  .mobile-bottom-nav {
    display: block !important;
    position: fixed;
    bottom: max(10px, env(safe-area-inset-bottom, 10px));
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 440px;
    z-index: 9999;
    pointer-events: auto;
  }

  .mobile-nav-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    background: rgba(3, 41, 29, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(246, 185, 59, 0.45);
    border-radius: 999px;
    padding: 5px 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 18px rgba(246, 185, 59, 0.12);
  }

  .mobile-nav-item {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 6px 0;
    color: #BFD8C5;
    text-decoration: none;
    border-radius: 24px;
    transition: background 0.25s cubic-bezier(0.25, 0.8, 0.25, 1),
                color 0.25s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-nav-item:active {
    transform: scale(0.95);
  }

  .mobile-nav-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
  }

  .mobile-nav-icon {
    width: 22px;
    height: 22px;
    stroke: #F6B93B;
    transition: stroke 0.2s ease;
  }

  .mobile-nav-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #A8C5B2;
    transition: color 0.2s ease;
    white-space: nowrap;
  }

  /* Active Pill State */
  .mobile-nav-item.active {
    background: linear-gradient(135deg, #FFC344 0%, #F7931E 100%);
    box-shadow: 0 4px 18px rgba(247, 147, 30, 0.55);
    border-radius: 24px;
  }

  .mobile-nav-item.active .mobile-nav-icon {
    stroke: #06291B !important;
  }

  .mobile-nav-item.active .mobile-nav-label {
    color: #06291B !important;
    font-weight: 800 !important;
  }
}

@media (min-width: 768px) {
  .mobile-bottom-nav {
    display: none !important;
  }
}





/* FOOTER COMPLIANCE BADGES */
.footer-compliance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: nowrap;
}

.footer-compliance img {
  display: block;
  width: auto;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .footer-compliance {
    gap: 14px;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .footer-compliance img {
    max-height: 32px;
  }
}


/* MOBILE FOOTER 2-COLUMN GRID */
@media (max-width: 767px) {
  .footer-top {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 20px !important;
    row-gap: 32px !important;
    align-items: start !important;
    margin-bottom: 2.5rem !important;
  }

  .footer-brand,
  .footer-top > div:first-child {
    grid-column: 1 / -1 !important;
    margin-bottom: 0.5rem;
  }

  .footer-col,
  .footer-top > div:not(:first-child) {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .footer-col h4,
  .footer-top h4,
  .footer-top h3 {
    margin-bottom: 1.2rem;
  }

  .footer-links,
  .footer-top > div > div {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-links a,
  .footer-top > div > div a {
    font-size: 0.88rem;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .responsible-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .responsible-badges {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
  }
}
