/* KGBD88 - Premium Casino Design System
   Dark luxury theme with red-purple-cyan and gold accents
   Target market: Bangladesh
*/

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

/* ========== CSS Variables ========== */
:root {
  --background: hsl(240, 10%, 4%);
  --foreground: hsl(45, 100%, 96%);
  --card: hsl(240, 10%, 8%);
  --card-foreground: hsl(45, 100%, 96%);
  --primary: hsl(340, 85%, 55%);
  --primary-light: hsl(180, 100%, 55%);
  --primary-dark: hsl(280, 70%, 50%);
  --secondary: hsl(270, 60%, 50%);
  --muted: hsl(240, 10%, 15%);
  --muted-foreground: hsl(240, 5%, 65%);
  --accent: hsl(180, 100%, 50%);
  --border: hsl(240, 10%, 20%);
  --gold: hsl(38, 92%, 50%);
  --gold-light: hsl(45, 100%, 65%);
  --gold-dark: hsl(35, 90%, 40%);
  --purple: hsl(270, 60%, 50%);
  --purple-light: hsl(270, 70%, 65%);
  --purple-dark: hsl(270, 50%, 35%);
  --neon-green: hsl(150, 100%, 50%);
  --radius: 0.75rem;
  --gradient-primary: linear-gradient(135deg, hsl(350, 85%, 55%) 0%, hsl(280, 70%, 55%) 50%, hsl(180, 100%, 50%) 100%);
  --gradient-gold: linear-gradient(135deg, hsl(38, 92%, 50%) 0%, hsl(45, 100%, 65%) 50%, hsl(35, 90%, 40%) 100%);
  --shadow-primary: 0 0 30px hsla(280, 70%, 55%, 0.4);
  --shadow-gold: 0 0 30px hsla(38, 92%, 50%, 0.3);
  --shadow-card: 0 10px 40px hsla(0, 0%, 0%, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans Bengali', sans-serif;
  background: linear-gradient(180deg, hsl(240, 10%, 4%) 0%, hsl(270, 20%, 8%) 50%, hsl(240, 10%, 4%) 100%);
  background-attachment: fixed;
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

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

.section-container {
  padding: 4rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* ========== Glass Card ========== */
.glass-card {
  background: hsla(240, 10%, 8%, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid hsla(240, 10%, 20%, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(240, 10%, 8%, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(240, 10%, 20%, 0.3);
}

.site-header nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.header-logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(45, 100%, 96%, 0.8);
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  background: none;
  border: none;
  color: hsla(45, 100%, 96%, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  transition: color 0.3s;
}

.nav-links .dropdown-toggle:hover {
  color: var(--primary);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: hsla(240, 10%, 8%, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid hsla(240, 10%, 20%, 0.5);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-card);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
  background: hsla(240, 10%, 20%, 0.5);
  color: var(--primary);
}

.header-buttons {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  font-size: 1.5rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid hsla(240, 10%, 20%, 0.3);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  color: hsla(45, 100%, 96%, 0.8);
}

.mobile-nav a:hover {
  color: var(--primary);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--foreground);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px hsla(280, 70%, 55%, 0.6);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--background);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px hsla(38, 92%, 50%, 0.5);
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--foreground);
  box-shadow: 0 0 30px hsla(270, 60%, 50%, 0.3);
}

.btn-purple:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px hsla(270, 60%, 50%, 0.5);
}

.btn-outline {
  background: transparent;
  color: hsl(280, 70%, 70%);
  position: relative;
  z-index: 1;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  padding: 2px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.btn-outline:hover {
  background: linear-gradient(135deg, hsla(350, 85%, 55%, 0.15) 0%, hsla(280, 70%, 55%, 0.15) 50%, hsla(180, 100%, 50%, 0.15) 100%);
  box-shadow: var(--shadow-primary);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* ========== Badges ========== */
.primary-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--gradient-gold);
  color: var(--background);
  box-shadow: var(--shadow-gold);
}

.game-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--gradient-primary);
  color: white;
  z-index: 5;
}

/* ========== Text Styles ========== */
.text-gradient-primary {
  background: linear-gradient(135deg, hsl(350, 85%, 60%) 0%, hsl(280, 70%, 60%) 50%, hsl(180, 100%, 55%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-light), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted {
  color: var(--muted-foreground);
}

.text-primary {
  color: var(--primary);
}

.text-gold {
  color: var(--gold);
}

/* ========== Hero Section ========== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg .layer {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Page Hero (sub-pages) */
.page-hero {
  position: relative;
  padding: 5rem 0 8rem;
  overflow: hidden;
  margin-top: 64px;
}

.page-hero .hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsla(240, 10%, 4%, 0.6), hsla(240, 10%, 4%, 0.5), var(--background));
}

.page-hero .hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========== Breadcrumb ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: hsla(240, 10%, 10%, 0.5);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

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

.breadcrumb a::before {
  content: none;
}

.breadcrumb > a:first-child::before {
  content: '🏠';
  font-size: 0.8rem;
}

.breadcrumb .sep {
  color: var(--border);
  font-size: 0.75rem;
  margin: 0 0.25rem;
}

.breadcrumb .sep::after {
  content: '';
}

.breadcrumb > span:last-child,
.breadcrumb > span:last-of-type > span {
  color: var(--gold);
  font-weight: 500;
}

/* ========== Section Header ========== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--muted-foreground);
  font-size: 1rem;
}

/* ========== Game Cards ========== */
.game-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.game-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: hsla(240, 10%, 8%, 0.8);
  border: 1px solid hsla(240, 10%, 20%, 0.5);
  transition: all 0.5s;
  cursor: pointer;
}

.game-card:hover {
  transform: scale(1.02);
  border-color: hsla(190, 95%, 50%, 0.5);
  box-shadow: var(--shadow-primary);
}

.game-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.game-card .card-body {
  padding: 1rem;
}

.game-card .card-body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.game-card .card-body p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Small game grid (4 cols) */
.game-grid-sm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.game-grid-sm .game-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s;
}

.game-grid-sm .game-thumb:hover {
  transform: scale(1.05);
}

.game-grid-sm .game-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* ========== Feature Cards ========== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  text-align: center;
  padding: 1.5rem;
}

.feature-card .icon-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.feature-card:hover .icon-circle {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========== Promo Cards ========== */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.promo-card {
  text-align: center;
  padding: 1.5rem 2rem;
  transition: transform 0.3s;
}

.promo-card:hover {
  transform: scale(1.02);
}

.promo-card .promo-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.promo-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.promo-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========== VIP Levels ========== */
.vip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.vip-card {
  padding: 1.5rem;
  position: relative;
}

.vip-card.popular {
  border-color: hsla(340, 85%, 55%, 0.5);
  transform: scale(1.02);
}

.vip-card .level-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.vip-card h3 {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.vip-card .deposit {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.vip-card ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding: 0.25rem 0;
}

.vip-card ul li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

/* ========== Stats ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
}

.stat-card .stat-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.stat-card .stat-value {
  font-size: 1.75rem;
  font-weight: 700;
}

.stat-card .stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========== Accordion / FAQ ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-question .icon {
  flex-shrink: 0;
  transition: transform 0.3s;
  font-size: 1.25rem;
}

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

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ========== Blog Cards ========== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.blog-card {
  padding: 1.5rem;
  transition: all 0.3s;
}

.blog-card:hover {
  border-color: hsla(340, 85%, 55%, 0.5);
}

.blog-card .blog-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.blog-card .blog-category {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: hsla(340, 85%, 55%, 0.2);
  color: var(--primary);
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.blog-card:hover h3 {
  color: var(--primary);
}

.blog-card .blog-excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .blog-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.blog-card .read-more {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.blog-card:hover .read-more {
  gap: 0.75rem;
}

/* ========== CTA Section ========== */
.cta-box {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-box h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Border glow effect */
.border-glow {
  position: relative;
}

.border-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0.4;
  background: linear-gradient(90deg, hsl(350, 85%, 55%) 0%, hsl(280, 70%, 55%) 33%, hsl(180, 100%, 50%) 66%, hsl(350, 85%, 55%) 100%);
  background-size: 300% 100%;
  animation: borderGlow 8s ease-in-out infinite;
  z-index: -1;
  filter: blur(12px);
}

.border-glow-gold::after {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 100%;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--card);
  border-top: 1px solid hsla(240, 10%, 20%, 0.3);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 1rem 0 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--background);
}

.footer-col h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

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

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(240, 10%, 20%, 0.3);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
}

.footer-bottom .legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom .legal-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.footer-bottom .legal-links a:hover {
  color: var(--primary);
}

/* ========== VIP Gold Background ========== */
.gold-bg {
  background: linear-gradient(135deg, 
    hsl(30, 40%, 12%) 0%, hsl(35, 60%, 20%) 15%, hsl(38, 70%, 28%) 30%, 
    hsl(42, 75%, 35%) 45%, hsl(45, 80%, 40%) 55%, hsl(40, 70%, 32%) 70%, 
    hsl(35, 55%, 22%) 85%, hsl(28, 45%, 15%) 100%
  );
}

/* BG sections */
.bg-dark-alt {
  background: hsla(240, 10%, 8%, 0.5);
}

/* ========== Legal Pages ========== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-content p, .legal-content li {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  position: relative;
  padding-left: 1rem;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ========== Download Page ========== */
.download-steps ol {
  counter-reset: step;
}

.download-steps ol li {
  counter-increment: step;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}

.download-steps ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ========== How to Play Steps ========== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.step-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

/* ========== Animations ========== */
@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px hsla(280, 70%, 55%, 0.3); }
  50% { box-shadow: 0 0 50px hsla(280, 70%, 55%, 0.5); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
  0% { background-position: 0% 0%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 0%; }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.12; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(1.08); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-float { animation: float 5s ease-in-out infinite; }
.animate-fade-in { animation: fadeIn 0.5s ease-out; }
.animate-glow-pulse { animation: glowPulse 8s ease-in-out infinite; }
.animate-spin-slow { animation: spinSlow 30s linear infinite; }
.animate-gradient-shift { 
  background-size: 400% 400%; 
  animation: gradientShift 25s ease-in-out infinite; 
}

/* ========== Utility ========== */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.pt-20 { padding-top: 5rem; }
.hidden { display: none; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.z-10 { z-index: 10; }
.inline-flex { display: inline-flex; }
.gap-4 { gap: 1rem; }

/* ========== Responsive ========== */
@media (min-width: 640px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-buttons { flex-direction: row; }
  .hero-content h1 { font-size: 3.5rem; }
  .vip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .section-container { padding: 6rem 1rem; }
  .header-inner { height: 80px; }
  .header-logo img { height: 32px; }
  .page-hero { padding: 8rem 0 10rem; }
  .section-header h2 { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .cta-box { padding: 3rem 2rem; }
  .cta-box h2 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .header-buttons { display: flex; }
  .mobile-menu-btn { display: none; }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
  .game-grid-sm { grid-template-columns: repeat(4, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .hero-content h1 { font-size: 4.5rem; }
  .vip-grid { grid-template-columns: repeat(4, 1fr); }
}
