/* ═══════════════════════════════════════════
   Khazaan – Purple-Gold Theme Stylesheet
   ═══════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  --bg-primary: #0A0A14;
  --bg-secondary: #14101F;
  --bg-card: #1A1430;
  --bg-card-hover: #221A3D;
  --purple-500: #A855F7;
  --purple-600: #9333EA;
  --purple-700: #7B1FA2;
  --purple-400: #C084FC;
  --purple-300: #D8B4FE;
  --purple-200: #E1BEE7;
  --purple-glow: rgba(168, 85, 247, 0.35);
  --gold: #FBBF24;
  --gold-dark: #D4AF37;
  --text-primary: #F3F4F6;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --border-color: rgba(168, 85, 247, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-card: 0 4px 20px rgba(168, 85, 247, 0.1);
  --shadow-card-hover: 0 12px 40px rgba(168, 85, 247, 0.3);
  --shadow-btn: 0 4px 14px rgba(168, 85, 247, 0.4);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
  --header-h: 64px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple-400); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--purple-300); }
ul, ol { list-style: none; }

/* ─── Container ─── */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.938rem; border: none; cursor: pointer;
  border-radius: var(--radius-sm); padding: 12px 28px;
  transition: all var(--transition); text-align: center; gap: 8px;
  min-height: 44px; min-width: 44px;
}
.btn-primary {
  background: linear-gradient(135deg, #9C27B0, #7B1FA2);
  color: #fff; box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #AB47BC, #9C27B0);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(168, 85, 247, 0.5);
}
.btn-outline {
  background: transparent; color: var(--purple-400);
  border: 2px solid var(--purple-500);
}
.btn-outline:hover {
  background: rgba(168, 85, 247, 0.1); color: #fff;
  border-color: var(--purple-400); transform: translateY(-2px);
}
.btn-sm { padding: 8px 18px; font-size: 0.813rem; }
.btn-lg { padding: 16px 36px; font-size: 1.063rem; }

/* ─── Section Spacing (generous padding) ─── */
.section-title {
  font-size: 1.75rem; font-weight: 800; text-align: center; margin-bottom: 12px;
  color: var(--text-primary);
}
.section-subtitle {
  font-size: 1.063rem; color: var(--text-secondary); text-align: center; margin-bottom: 40px;
}
.section-cta { text-align: center; margin-top: 40px; }

/* ═══ HEADER – Frosted Glass ═══ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 10, 20, 0.72);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(10, 10, 20, 0.95);
  box-shadow: 0 2px 20px rgba(168, 85, 247, 0.15);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.logo img { height: 32px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.nav-list { display: flex; gap: 4px; }
.nav-list a {
  display: block; padding: 8px 14px; color: var(--text-secondary);
  font-size: 0.875rem; font-weight: 500; border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-list a:hover, .nav-list a:focus { color: var(--text-primary); background: rgba(168, 85, 247, 0.1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Language Switcher */
.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
  padding: 4px 10px; font-size: 0.75rem; font-weight: 700;
  color: var(--text-muted); background: transparent;
  border: 1px solid var(--border-color); border-radius: var(--radius-sm);
  transition: all var(--transition); cursor: pointer;
}
.lang-btn:hover { border-color: var(--purple-500); color: var(--purple-400); }
.lang-btn.active { background: var(--purple-500); color: #fff; border-color: var(--purple-500); }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative; z-index: 1001;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); transition: all var(--transition);
  position: absolute; left: 10px;
}
.hamburger { top: 50%; transform: translateY(-50%); }
.hamburger::before { content: ''; top: -8px; }
.hamburger::after { content: ''; top: 8px; }
.mobile-menu-toggle.active .hamburger { background: transparent; }
.mobile-menu-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.mobile-menu-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ═══ HERO BANNER ═══ */
.hero-banner {
  position: relative; margin-top: var(--header-h);
  height: 360px; overflow: hidden;
  background: var(--bg-secondary);
}
.banner-slider { position: relative; width: 100%; height: 100%; }
.banner-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 0.6s ease;
  background-size: cover; background-position: center;
}
.banner-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 20, 0.85), rgba(123, 31, 162, 0.4));
}
.banner-slide.active { opacity: 1; }
.banner-content {
  position: relative; z-index: 2; color: #fff;
  max-width: 600px;
}
.banner-title { font-size: 2rem; font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.banner-subtitle { font-size: 1.063rem; color: var(--purple-200); margin-bottom: 24px; }

/* Banner Dots */
.banner-dots {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 8px; z-index: 3;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--purple-400); background: transparent;
  cursor: pointer; transition: all var(--transition);
}
.dot.active { background: var(--purple-500); border-color: var(--purple-500); transform: scale(1.3); }

/* ═══ MARQUEE ═══ */
.marquee-bar {
  background: rgba(168, 85, 247, 0.15);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden; padding: 10px 0;
}
.marquee-track {
  display: flex; gap: 40px; white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-item { color: var(--gold); font-size: 0.875rem; font-weight: 600; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══ STATS SECTION ═══ */
.stats-section { padding: 48px 0; }
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
  transition: all var(--transition);
}
.stat-card:hover { border-color: var(--purple-500); transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.stat-value {
  display: block; font-size: 2.5rem; font-weight: 300; color: var(--purple-400);
  letter-spacing: 0.04em; line-height: 1.1; margin-bottom: 8px;
}
.stat-label {
  display: block; font-size: 0.688rem; color: var(--text-secondary);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}

/* ═══ CTA SECTION ═══ */
.cta-section { padding: 32px 0 64px; }
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.cta-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-xl); padding: 40px 32px; text-align: center;
  transition: all var(--transition);
}
.cta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.card-register { border-color: rgba(168, 85, 247, 0.3); }
.card-download { border-color: rgba(251, 191, 36, 0.25); }
.cta-icon-wrap { margin-bottom: 16px; }
.cta-card h2 { font-size: 1.375rem; font-weight: 800; margin-bottom: 8px; }
.cta-card p { color: var(--text-secondary); font-size: 0.938rem; margin-bottom: 24px; }

/* ═══ HOT / TRENDING SECTION ═══ */
.hot-section { padding: 64px 0; }
.hot-scroll {
  display: flex; gap: 20px; overflow-x: auto; padding-bottom: 12px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--purple-600) var(--bg-card);
}
.hot-scroll::-webkit-scrollbar { height: 6px; }
.hot-scroll::-webkit-scrollbar-track { background: var(--bg-card); border-radius: 3px; }
.hot-scroll::-webkit-scrollbar-thumb { background: var(--purple-600); border-radius: 3px; }
.hot-card {
  flex: 0 0 220px; scroll-snap-align: start;
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); text-decoration: none; color: inherit;
}
.hot-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); border-color: var(--purple-500); }
.hot-card-image { position: relative; height: 140px; overflow: hidden; }
.hot-card-image img { width: 100%; height: 100%; object-fit: cover; }
.hot-badge {
  position: absolute; top: 8px; right: 8px;
  background: linear-gradient(135deg, #EF4444, #DC2626);
  color: #fff; font-size: 0.688rem; font-weight: 800;
  padding: 3px 10px; border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.hot-card-info { padding: 14px 16px; }
.hot-card-info h3 { font-size: 0.938rem; font-weight: 700; margin-bottom: 6px; color: var(--text-primary); }
.hot-card-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-secondary); }
.hot-rating { color: var(--gold); }

/* ═══ GAMES SECTION ═══ */
.games-section { padding: 64px 0; }
.games-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.games-grid-full { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.game-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); text-decoration: none; color: inherit;
}
.game-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-card-hover);
  border-color: var(--purple-500);
}
.game-card-image { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.game-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.game-card:hover .game-card-image img { transform: scale(1.06); }
.game-card-overlay {
  position: absolute; inset: 0;
  background: rgba(10, 10, 20, 0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-info { padding: 16px; }
.game-card-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.game-card-info p { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 8px; line-height: 1.5; }
.game-card-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); }

/* Game Filter */
.game-filter { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; justify-content: center; }
.filter-btn {
  padding: 8px 20px; border: 1px solid var(--border-color); background: var(--bg-card);
  color: var(--text-secondary); border-radius: var(--radius-full); font-size: 0.813rem;
  font-weight: 600; cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--purple-500); color: #fff; border-color: var(--purple-500);
}

/* ═══ PLATFORM INTRO ═══ */
.platform-intro { padding: 64px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--purple-500); transform: translateY(-4px); }
.feature-icon { font-size: 2.5rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.938rem; color: var(--text-secondary); line-height: 1.6; }

/* ═══ FAQ SECTION ═══ */
.faq-section { padding: 64px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-color); border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden; background: var(--bg-card);
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 18px 20px; background: none; border: none;
  color: var(--text-primary); font-size: 1rem; font-weight: 600;
  cursor: pointer; text-align: left; gap: 12px; min-height: 44px;
}
.faq-toggle { font-size: 1.25rem; color: var(--purple-400); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { padding: 0 20px 18px; color: var(--text-secondary); font-size: 0.938rem; line-height: 1.7; }
.faq-answer[hidden] { display: none; }

/* ═══ NEWS SECTION ═══ */
.news-section { padding: 64px 0; }
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.news-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); text-decoration: none; color: inherit;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--purple-500); }
.news-card-image { aspect-ratio: 16/9; overflow: hidden; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; }
.news-card-info { padding: 20px; }
.news-card-info time { font-size: 0.75rem; color: var(--text-muted); }
.news-card-info h3 { font-size: 1.063rem; font-weight: 700; margin: 8px 0; }
.news-card-info p { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.5; }
.read-more { font-size: 0.813rem; color: var(--purple-400); font-weight: 600; }

/* ═══ PARTNERS SECTION ═══ */
.partners-section { padding: 64px 0; }
.partners-row, .payment-row { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; align-items: center; }
.partner-item, .payment-item { opacity: 0.6; transition: opacity var(--transition); }
.partner-item:hover, .payment-item:hover { opacity: 1; }
.payment-item { display: flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: 0.75rem; }

/* ═══ FOOTER ═══ */
.site-footer {
  background: var(--bg-secondary); padding: 64px 0 24px;
  border-top: 1px solid var(--border-color);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-about { color: var(--text-secondary); font-size: 0.875rem; margin-bottom: 20px; line-height: 1.6; }
.footer-col h4 {
  font-size: 0.875rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 16px; letter-spacing: 0.04em;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-secondary); font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--purple-400); }

/* Social Icons – Circular Purple Background */
.social-icons { display: flex; gap: 10px; }
.social-icon-circle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(168, 85, 247, 0.15); border: 1px solid var(--border-color);
  transition: all var(--transition);
}
.social-icon-circle:hover { background: var(--purple-500); border-color: var(--purple-500); }

/* Footer App Download */
.app-qr-placeholder { text-align: center; }
.qr-box {
  width: 100px; height: 100px; background: var(--bg-card);
  border: 1px solid var(--border-color); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.75rem; margin: 0 auto 12px;
}
.footer-app .btn { width: 100%; }

.footer-divider { border: none; border-top: 1px solid var(--border-color); margin-bottom: 24px; }
.payment-icons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; opacity: 0.7; }
.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 0.813rem; color: var(--text-muted); margin-bottom: 4px; }
.age-disclaimer { color: var(--gold) !important; font-weight: 600; }

/* ═══ BREADCRUMB ═══ */
.breadcrumb { padding: 16px 0; margin-top: var(--header-h); }
.breadcrumb ol { display: flex; gap: 8px; font-size: 0.813rem; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb li::after { content: '›'; margin-left: 8px; color: var(--text-muted); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--purple-400); }
.breadcrumb [aria-current="page"] { color: var(--text-primary); }

/* ═══ PAGE / ARTICLE CONTENT ═══ */
.page-title { font-size: 2rem; font-weight: 800; margin-bottom: 24px; }
.page-subtitle { font-size: 1.063rem; color: var(--text-secondary); margin-bottom: 40px; text-align: center; }
.page-section, .game-list-section, .news-list-section, .article-list-section,
.game-detail-section, .article-detail-section { padding: 32px 0 64px; }

/* Prose content */
.prose { max-width: 760px; line-height: 1.8; color: var(--text-secondary); }
.prose h2 { font-size: 1.5rem; font-weight: 700; color: var(--text-primary); margin: 32px 0 12px; }
.prose h3 { font-size: 1.25rem; font-weight: 600; color: var(--text-primary); margin: 24px 0 8px; }
.prose p { margin-bottom: 16px; font-size: 1rem; }
.prose ul, .prose ol { margin-bottom: 16px; padding-left: 24px; }
.prose li { margin-bottom: 6px; list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--purple-400); }
.prose blockquote { border-left: 3px solid var(--purple-500); padding-left: 16px; margin: 16px 0; color: var(--text-muted); }

/* ═══ GAME DETAIL ═══ */
.game-detail-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.game-detail-image img { border-radius: var(--radius-lg); width: 100%; }
.game-detail-info h1 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.game-detail-desc { color: var(--text-secondary); font-size: 1rem; margin-bottom: 24px; }
.game-detail-stats { display: flex; gap: 24px; margin-bottom: 20px; }
.detail-stat { text-align: center; }
.detail-stat-value { display: block; font-size: 1.25rem; font-weight: 700; color: var(--purple-400); }
.detail-stat-label { font-size: 0.688rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.game-detail-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.tag {
  background: rgba(168, 85, 247, 0.15); color: var(--purple-300);
  padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600;
}
.tag-sm { font-size: 0.688rem; padding: 2px 8px; }
.game-detail-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.game-detail-content { margin-bottom: 48px; }
.related-games h2 { font-size: 1.375rem; font-weight: 700; margin-bottom: 20px; }
.games-grid-small { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }

/* ═══ ARTICLE CARDS ═══ */
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.article-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); text-decoration: none; color: inherit;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.article-card-image { aspect-ratio: 16/9; overflow: hidden; }
.article-card-image img { width: 100%; height: 100%; object-fit: cover; }
.article-card-info { padding: 20px; }
.article-card-info time { font-size: 0.75rem; color: var(--text-muted); }
.article-card-info h3 { font-size: 1.063rem; font-weight: 700; margin: 8px 0; }
.article-card-info p { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 12px; }
.article-card-meta { display: flex; gap: 6px; flex-wrap: wrap; }

/* Article Detail */
.article-header { margin-bottom: 32px; }
.article-header h1 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.article-meta { color: var(--text-muted); font-size: 0.875rem; display: flex; gap: 16px; }
.article-tags { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.article-featured-image { margin-bottom: 32px; border-radius: var(--radius-lg); overflow: hidden; }
.article-featured-image img { width: 100%; }
.article-content { margin-bottom: 40px; }
.article-footer { padding-top: 24px; border-top: 1px solid var(--border-color); }

/* ═══ FORMS ═══ */
.contact-page { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; margin-top: 24px; }
.contact-info h2 { font-size: 1.25rem; margin-bottom: 16px; }
.contact-info li { margin-bottom: 12px; color: var(--text-secondary); font-size: 1rem; }
.contact-form, .register-form { max-width: 480px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.875rem; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); color: var(--text-primary);
  font-size: 0.938rem; transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}
.form-check { display: flex; align-items: flex-start; gap: 8px; }
.form-check input { width: auto; margin-top: 4px; }
.form-check label { font-size: 0.813rem; margin-bottom: 0; }

/* Download Page */
.download-page { text-align: center; }
.download-buttons { display: flex; gap: 16px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .game-detail-hero { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --header-h: 56px; }
  .main-nav {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--bg-secondary); flex-direction: column; align-items: stretch;
    padding: 80px 24px 24px; gap: 20px; transition: right var(--transition);
    box-shadow: -8px 0 30px rgba(0,0,0,0.5); z-index: 999;
  }
  .main-nav.open { right: 0; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-list a { padding: 12px 16px; border-bottom: 1px solid var(--border-color); }
  .nav-actions { flex-direction: column; gap: 12px; padding-top: 12px; border-top: 1px solid var(--border-color); }
  .mobile-menu-toggle { display: block; }

  .hero-banner { height: 320px; }
  .banner-title { font-size: 1.5rem; }
  .banner-subtitle { font-size: 0.938rem; }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-value { font-size: 1.75rem; }
  .stat-label { font-size: 0.625rem; }

  .cta-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cta-card { padding: 24px 16px; }

  .hot-card { flex: 0 0 180px; }

  .games-grid, .games-grid-full { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-page { grid-template-columns: 1fr; }

  .section-title { font-size: 1.375rem; }
  .page-title { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .cta-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .games-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .game-card-info { padding: 12px; }
  .game-card-info h3 { font-size: 0.875rem; }
  .game-card-info p { font-size: 0.813rem; }
  .hot-card { flex: 0 0 160px; }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .marquee-track { animation: none; }
}

/* ═══ SKIP LINK (Accessibility) ═══ */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--purple-500); color: #fff; padding: 8px 16px;
  border-radius: var(--radius-sm); z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 8px; }
