/* Baji Casino Nepal - Static Site Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ========== CSS Variables ========== */
:root {
  --background: hsl(0 0% 4%);
  --foreground: hsl(0 0% 98%);
  --card: hsl(0 0% 7%);
  --card-foreground: hsl(0 0% 98%);
  --primary: hsl(330 100% 60%);
  --primary-foreground: hsl(0 0% 100%);
  --secondary: hsl(320 80% 45%);
  --muted: hsl(0 0% 12%);
  --muted-foreground: hsl(0 0% 60%);
  --accent: hsl(335 100% 65%);
  --border: hsl(0 0% 15%);
  --gold: hsl(45 100% 50%);
  --gold-foreground: hsl(0 0% 10%);
  --destructive: hsl(0 84% 60%);
  --radius: 0.75rem;
  --gradient-primary: linear-gradient(135deg, hsl(330 100% 60%), hsl(280 100% 50%));
  --gradient-hero: linear-gradient(180deg, hsl(0 0% 4%) 0%, hsl(330 50% 8%) 50%, hsl(0 0% 4%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(0 0% 10%), hsl(0 0% 6%));
  --gradient-gold: linear-gradient(135deg, hsl(45 100% 50%), hsl(35 100% 45%));
  --shadow-glow: 0 0 40px hsl(330 100% 60% / 0.3);
  --shadow-card: 0 10px 40px hsl(0 0% 0% / 0.5);
  --shadow-button: 0 4px 20px hsl(330 100% 60% / 0.4);
}

/* ========== Reset ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.2; }

/* ========== Container ========== */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }

/* ========== Utilities ========== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glow-text { text-shadow: 0 0 20px hsl(330 100% 60% / 0.6); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }
.bg-card { background: var(--card); }
.bg-muted { background: var(--muted); }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-16 { padding-bottom: 4rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.object-cover { object-fit: cover; }
.pointer-events-none { pointer-events: none; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.leading-relaxed { line-height: 1.625; }
.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* ========== Grid Columns ========== */
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }

/* ========== Card ========== */
.card-hover { transition: all 0.3s ease; }
.card-hover:hover { transform: translateY(-0.5rem); box-shadow: var(--shadow-glow); }

.neon-border {
  border: 1px solid hsl(330 100% 60% / 0.3);
  box-shadow: inset 0 0 20px hsl(330 100% 60% / 0.1), 0 0 20px hsl(330 100% 60% / 0.2);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  padding: 0.625rem 1.25rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-hero {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-button);
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 30px hsl(330 100% 60% / 0.5); }
.btn-neon {
  background: transparent;
  color: var(--primary);
  border: 1px solid hsl(330 100% 60% / 0.5);
  box-shadow: inset 0 0 20px hsl(330 100% 60% / 0.1);
}
.btn-neon:hover { background: hsl(330 100% 60% / 0.1); border-color: var(--primary); }
.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: var(--muted); }
.btn-sm { padding: 0.375rem 0.75rem; font-size: 0.8125rem; }
.btn-lg { padding: 0.75rem 1.75rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2rem; font-size: 1.125rem; }

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(0 0% 4% / 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header nav { height: 4rem; }
.site-header .logo { height: 2rem; width: auto; }
.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: 0.5rem;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--primary); background: hsl(0 0% 100% / 0.05); }
.nav-link.active { color: var(--primary); }

/* Mobile Menu */
.mobile-menu { display: none; }
.mobile-menu.open { display: block; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle svg { width: 1.5rem; height: 1.5rem; }

/* ========== Hero Section ========== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg .overlay-lr {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--background), hsl(0 0% 4% / 0.7), transparent);
}
.hero-bg .overlay-tb {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), transparent, hsl(0 0% 4% / 0.5));
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  animation: pulse 4s ease-in-out infinite;
}
.hero h1 { font-size: 2.5rem; font-weight: 900; line-height: 1.1; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsl(330 100% 60% / 0.1);
  border: 1px solid hsl(330 100% 60% / 0.3);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 28rem; }
.stats-grid .stat-value { font-size: 1.5rem; font-weight: 700; }

/* ========== Page Banner ========== */
.page-banner {
  position: relative;
  height: 40vh;
  min-height: 300px;
  overflow: hidden;
  margin-top: 4rem;
}
.page-banner img { width: 100%; height: 100%; object-fit: cover; }
.page-banner .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), hsl(0 0% 4% / 0.7), transparent);
}
.page-banner .content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
}

/* ========== Breadcrumb ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding-top: 5rem;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .separator { color: var(--muted-foreground); }

/* ========== Game Card ========== */
.game-card {
  position: relative;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.game-card:hover { transform: translateY(-0.5rem); box-shadow: var(--shadow-glow); }
.game-card .aspect { position: relative; padding-bottom: 75%; }
.game-card .aspect-square { padding-bottom: 100%; }
.game-card .aspect img,
.game-card .aspect-square img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.game-card:hover .aspect img,
.game-card:hover .aspect-square img { transform: scale(1.1); }
.game-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), hsl(0 0% 4% / 0.6), transparent);
  opacity: 0.9;
}
.game-card .card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
.game-card .card-content h3 { font-size: 1.25rem; font-weight: 700; }
.game-card:hover .card-content h3 { color: var(--primary); }
.game-card .glow-border {
  position: absolute;
  inset: 0;
  border: 2px solid hsl(330 100% 60% / 0.5);
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.game-card:hover .glow-border { opacity: 1; }

/* ========== Game Thumb (detail page) ========== */
.game-thumb {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.game-thumb:hover { transform: translateY(-0.5rem); box-shadow: var(--shadow-glow); }
.game-thumb .thumb-img { aspect-ratio: 1; overflow: hidden; }
.game-thumb .thumb-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.game-thumb:hover .thumb-img img { transform: scale(1.1); }
.game-thumb .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(0 0% 4% / 0.6);
  opacity: 0;
  transition: opacity 0.3s;
}
.game-thumb:hover .play-overlay { opacity: 1; }
.game-thumb .thumb-title { padding: 0.75rem; font-weight: 600; font-size: 0.875rem; transition: color 0.3s; }
.game-thumb:hover .thumb-title { color: var(--primary); }

/* ========== Feature Icon ========== */
.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(330 100% 60% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.feature-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }

/* ========== Section ========== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 1.875rem; font-weight: 900; }
.section-header p { margin-top: 1rem; color: var(--muted-foreground); max-width: 42rem; margin-left: auto; margin-right: auto; }

/* ========== Blog Card ========== */
.blog-card {
  display: block;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-0.5rem); box-shadow: var(--shadow-glow); }
.blog-card .category { font-size: 0.875rem; color: var(--primary); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.blog-card h3 { font-size: 1.125rem; font-weight: 700; transition: color 0.3s; }
.blog-card:hover h3 { color: var(--primary); }
.blog-card .excerpt { margin-top: 0.5rem; color: var(--muted-foreground); font-size: 0.875rem; }
.blog-card .meta { margin-top: 1rem; display: flex; align-items: center; justify-content: space-between; font-size: 0.875rem; color: var(--muted-foreground); }
.blog-card .read-more { margin-top: 1rem; display: flex; align-items: center; gap: 0.5rem; color: var(--primary); font-weight: 500; font-size: 0.875rem; }
.blog-card:hover .read-more svg { transform: translateX(4px); }
.blog-card .read-more svg { transition: transform 0.3s; }

/* ========== Promo Card ========== */
.promo-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.promo-card:hover { transform: translateY(-0.5rem); box-shadow: var(--shadow-glow); }
.promo-card .promo-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  background: hsl(330 100% 60% / 0.1);
  color: var(--primary);
  border: 1px solid hsl(330 100% 60% / 0.3);
}
.promo-card .promo-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: hsl(330 100% 60% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}
.promo-card:hover .promo-icon { transform: scale(1.1); }
.promo-card .promo-icon svg { width: 1.75rem; height: 1.75rem; color: var(--primary); }
.promo-card h2 { font-size: 1.25rem; font-weight: 700; transition: color 0.3s; }
.promo-card:hover h2 { color: var(--primary); }
.promo-card .promo-terms { font-size: 0.75rem; color: hsl(0 0% 60% / 0.7); margin-top: 1rem; }

/* ========== VIP Level Card ========== */
.vip-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
}
.vip-card.featured { outline: 2px solid var(--gold); outline-offset: 2px; }
.vip-card .level-name { font-size: 1.25rem; font-weight: 700; }
.vip-card .deposit-value { font-size: 1.5rem; font-weight: 700; }
.vip-card .cashback-value { font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.vip-bronze { background: linear-gradient(to bottom right, hsl(25 80% 40% / 0.2), hsl(25 80% 30% / 0.1)); border-color: hsl(25 80% 50% / 0.3); }
.vip-silver { background: linear-gradient(to bottom right, hsl(0 0% 60% / 0.2), hsl(0 0% 40% / 0.1)); border-color: hsl(0 0% 60% / 0.3); }
.vip-gold { background: linear-gradient(to bottom right, hsl(45 100% 50% / 0.3), hsl(45 100% 50% / 0.1)); border-color: hsl(45 100% 50% / 0.5); }
.vip-platinum { background: linear-gradient(to bottom right, hsl(270 60% 50% / 0.2), hsl(270 60% 30% / 0.1)); border-color: hsl(270 60% 50% / 0.3); }

/* ========== FAQ Accordion ========== */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question svg { width: 1.25rem; height: 1.25rem; transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--muted-foreground);
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

/* ========== Legal Content ========== */
.legal-section {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
}
.legal-section h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.legal-section p { color: var(--muted-foreground); line-height: 1.625; }
.legal-section ul { margin-top: 1rem; }
.legal-section li { color: var(--muted-foreground); margin-top: 0.5rem; }
.legal-section strong { color: var(--foreground); }

/* ========== Footer ========== */
.site-footer { background: var(--card); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.footer-brand .logo { height: 2.5rem; width: auto; }
.footer-brand p { margin-top: 1rem; color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.625; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.2s;
}
.social-link:hover { color: var(--primary); background: hsl(330 100% 60% / 0.1); }
.social-link svg { width: 1.25rem; height: 1.25rem; }
.footer-section h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
.footer-section li { margin-top: 0.5rem; }
.footer-section a { color: var(--muted-foreground); font-size: 0.875rem; transition: color 0.2s; }
.footer-section a:hover { color: var(--primary); }
.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.875rem; color: var(--muted-foreground); }
.footer-bottom a { color: var(--muted-foreground); font-size: 0.875rem; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--primary); }
.footer-disclaimer { margin-top: 1rem; font-size: 0.75rem; color: hsl(0 0% 60% / 0.6); text-align: center; }

/* ========== Animations ========== */
@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn 0.6s ease forwards; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* ========== Responsive ========== */
@media (min-width: 768px) {
  .site-header nav { height: 5rem; }
  .site-header .logo { height: 2.5rem; }
  .hero h1 { font-size: 3rem; }
  .md-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .md-flex-row { flex-direction: row; }
  .md-hidden { display: none; }
  .md-flex { display: flex; }
  .md-block { display: block; }
  .section-header h2 { font-size: 2.25rem; }
  .game-card .card-content { padding: 1.5rem; }
  .game-card .card-content h3 { font-size: 1.5rem; }
  .promo-card { padding: 2rem; }
  .promo-card h2 { font-size: 1.5rem; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 4.5rem; }
  .lg-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg-flex { display: flex; }
  .lg-hidden { display: none; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .menu-toggle { display: none; }
  .desktop-nav { display: flex !important; }
  .desktop-actions { display: flex !important; }
}
@media (max-width: 1023px) {
  .desktop-nav { display: none !important; }
  .desktop-actions { display: none !important; }
  .menu-toggle { display: block; }
  .hero { margin-top: 4rem; }
  .page-banner { margin-top: 4rem; }
}
@media (max-width: 767px) {
  .hero h1 { font-size: 2rem; }
  .stats-grid .stat-value { font-size: 1.25rem; }
  .section-header h2 { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ========== SVG Icons (inline) ========== */
.icon { display: inline-block; width: 1em; height: 1em; vertical-align: middle; }
