/* ==========================================================================
   8MBETS LUXURY CASINO DESIGN SYSTEM (2026)
   Built according to gambling-website-ui-ux-designer specifications
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Surface & Background Palette */
  --bg-dark: #07090e;
  --bg-surface: #0e111a;
  --bg-card: rgba(18, 22, 36, 0.85);
  --bg-card-hover: rgba(28, 35, 58, 0.95);
  --bg-glass: rgba(14, 17, 26, 0.75);
  
  /* Brand Accents */
  --gold-primary: #f5a623;
  --gold-light: #ffd000;
  --gold-glow: rgba(245, 166, 35, 0.35);
  --crimson-accent: #e0245e;
  --crimson-glow: rgba(224, 36, 94, 0.35);
  --emerald-accent: #00e676;
  --emerald-glow: rgba(0, 230, 118, 0.3);
  --cyan-accent: #00d2ff;
  
  /* Typography & Text */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-bengali: 'Hind Siliguri', sans-serif;
  --text-main: #f0f3fa;
  --text-muted: #9aa5b8;
  --text-dim: #657185;
  
  /* Borders & Shadows */
  --border-subtle: rgba(245, 166, 35, 0.18);
  --border-highlight: rgba(245, 166, 35, 0.5);
  --border-glass: rgba(255, 255, 255, 0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 0 24px rgba(245, 166, 35, 0.25);
  --shadow-crimson: 0 0 20px rgba(224, 36, 94, 0.3);
  
  /* Layout Dimensions */
  --max-width: 1240px;
  --header-height: 76px;
  --mobile-nav-height: 64px;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(245, 166, 35, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(224, 36, 94, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
}

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

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #ffffff;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 16px; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.25rem); margin-bottom: 14px; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: 10px; }
p { margin-bottom: 16px; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

.gold-gradient-text {
  background: linear-gradient(135deg, #ffd000 0%, #f5a623 50%, #ff8800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ==========================================================================
   BILINGUAL (EN/BN) SYSTEM & LANGUAGE SWITCHER
   ========================================================================== */
body[data-lang="bn"] {
  font-family: var(--font-bengali), var(--font-body);
  line-height: 1.75;
}

body[data-lang="bn"] h1,
body[data-lang="bn"] h2,
body[data-lang="bn"] h3,
body[data-lang="bn"] h4,
body[data-lang="bn"] h5,
body[data-lang="bn"] h6,
body[data-lang="bn"] .btn,
body[data-lang="bn"] .nav-link,
body[data-lang="bn"] .placecard-title {
  font-family: var(--font-bengali), var(--font-display);
  letter-spacing: normal;
}

/* Dual Language Content Visibility */
body[data-lang="en"] .lang-bn {
  display: none !important;
}

body[data-lang="bn"] .lang-en {
  display: none !important;
}

/* Language Switcher Component */
.lang-switch-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(14, 17, 26, 0.95);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
  backdrop-filter: blur(8px);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-btn:hover {
  color: var(--gold-light);
}

.lang-btn.active {
  background: linear-gradient(135deg, #ffd000 0%, #f5a623 100%);
  color: #07090e;
  box-shadow: 0 0 12px rgba(245, 166, 35, 0.45);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(7, 9, 14, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-glass);
  z-index: 1000;
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(7, 9, 14, 0.96);
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 38px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--transition-fast);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Button UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-smooth);
  text-align: center;
}

.btn-gold {
  background: linear-gradient(135deg, #ffd000 0%, #f5a623 100%);
  color: #07090e;
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  background: rgba(245, 166, 35, 0.08);
}

.btn-crimson {
  background: linear-gradient(135deg, #ff2a6d 0%, #e0245e 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px var(--crimson-glow);
}

.btn-crimson:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(224, 36, 94, 0.55);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: #0d101b;
  border-left: 1px solid var(--border-subtle);
  padding: 24px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right var(--transition-smooth);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.8);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
}

.drawer-overlay.open {
  display: block;
}

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   CASINO HERO CONTAINER (First Container with Casino Image Background)
   ========================================================================== */
.hero-casino-container {
  position: relative;
  min-height: 520px;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  background: 
    linear-gradient(180deg, rgba(7, 9, 14, 0.72) 0%, rgba(7, 9, 14, 0.96) 100%),
    url('/assets/images/casino-hero-bg.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.hero-casino-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid var(--border-subtle);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #c0cad9;
  margin-bottom: 28px;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

/* Trust Stats Ribbon */
.trust-stats-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-icon {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
}

.stat-text strong {
  display: block;
  font-size: 0.92rem;
  color: #ffffff;
  line-height: 1.2;
}

.stat-text span {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ==========================================================================
   FLASHY CONTAINER STYLES (Casino Vibe & Atmosphere)
   ========================================================================== */
.section-wrapper {
  padding: 70px 0;
  position: relative;
}

.section-flashy-dark {
  background: linear-gradient(180deg, #07090e 0%, #0d101c 50%, #07090e 100%);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.section-flashy-glow {
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(245, 166, 35, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #090c14 0%, #07090e 100%);
}

.section-header {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.section-title-wrap {
  max-width: 680px;
}

/* ==========================================================================
   3x2 PAGINATED GRID BOX (3 Columns x 2 Rows = 6 Cards)
   ========================================================================== */
.grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.placecard {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  box-shadow: var(--shadow-card);
  position: relative;
}

.placecard:hover {
  transform: translateY(-6px);
  border-color: var(--border-highlight);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), var(--shadow-gold);
}

.placecard-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111420;
}

.placecard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.placecard:hover .placecard-media img {
  transform: scale(1.06);
}

.placecard-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  border: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.placecard-rtp {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 230, 118, 0.9);
  color: #07090e;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.placecard-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.placecard-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.placecard-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.placecard-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
}

.placecard-meta span {
  color: var(--text-dim);
}

.placecard-meta strong {
  color: var(--gold-light);
}

/* Pagination Component */
.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.page-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.page-btn.active {
  background: var(--gold-primary);
  color: #07090e;
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px var(--gold-glow);
}

.page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  border-color: var(--border-glass);
}

/* ==========================================================================
   E-E-A-T & TRUST BADGES
   ========================================================================== */
.eeat-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  object-fit: cover;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

.author-meta {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.author-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.verified-seal {
  color: var(--emerald-accent);
  font-weight: 600;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.breadcrumbs a:hover {
  color: var(--gold-primary);
}

/* ==========================================================================
   INTERACTIVE ACCORDION (FAQs)
   ========================================================================== */
.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.accordion-item.active {
  border-color: var(--border-subtle);
  background: rgba(22, 27, 44, 0.9);
}

.accordion-header {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.accordion-icon {
  font-size: 1.25rem;
  color: var(--gold-primary);
  transition: transform var(--transition-smooth);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.accordion-item.active .accordion-content {
  padding: 0 24px 20px 24px;
}

/* ==========================================================================
   TABLES & DATA DISPLAY
   ========================================================================== */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  margin: 24px 0;
}

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

.casino-table th {
  background: rgba(14, 17, 26, 0.95);
  padding: 14px 18px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 600;
  border-bottom: 1px solid var(--border-subtle);
}

.casino-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.casino-table tr:hover td {
  background: rgba(245, 166, 35, 0.04);
  color: var(--text-main);
}

/* ==========================================================================
   FUNCTIONAL STEP WALKTHROUGH CARDS
   ========================================================================== */
.step-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
}

.step-card {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color var(--transition-fast);
}

.step-card:hover {
  border-color: var(--border-subtle);
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ffd000 0%, #f5a623 100%);
  color: #07090e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
}

.step-body {
  flex-grow: 1;
}

.step-body h4 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.copy-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #090c14;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 12px;
  font-family: monospace;
  font-size: 0.95rem;
  color: var(--gold-light);
}

.copy-btn {
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.8rem;
  transition: background var(--transition-fast);
}

.copy-btn:hover {
  background: var(--gold-primary);
  color: #07090e;
}

/* ==========================================================================
   FOOTER & COMPLIANCE
   ========================================================================== */
.site-footer {
  background: #05070a;
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 90px 0;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h5 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.compliance-strip {
  padding: 24px;
  background: rgba(14, 17, 26, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.age-badge {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--crimson-accent);
  color: var(--crimson-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile Bottom Navigation Dock */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--mobile-nav-height);
  background: rgba(7, 9, 14, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  z-index: 999;
  justify-content: space-around;
  align-items: center;
  padding: 0 10px;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.bottom-nav-item svg {
  width: 22px;
  height: 22px;
}

.bottom-nav-item.active {
  color: var(--gold-light);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-3x2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav, .header-actions .btn-outline {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .grid-3x2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .mobile-bottom-nav {
    display: flex;
  }
  .hero-casino-container {
    padding-top: calc(var(--header-height) + 20px);
    min-height: auto;
  }
  .compliance-strip {
    flex-direction: column;
    text-align: center;
  }
  body {
    padding-bottom: var(--mobile-nav-height);
  }
}

@media (max-width: 480px) {
  .brand-logo img {
    height: 30px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-actions .btn-gold {
    padding: 7px 12px;
    font-size: 0.8rem;
  }
  .lang-btn {
    padding: 3px 7px;
    font-size: 0.75rem;
  }
}
