/* ==========================================================================
   ZERO ESPORTS - DESIGN SYSTEM & STYLESHEET
   Aesthetics: Premium Dark Esports, Katana Precision, High Contrast Monochrome
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CORE TOKENS & VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette derived from ZERO ESPORTS logo */
  --bg-darkest: #050608;
  --bg-dark: #090B10;
  --bg-card: rgba(13, 16, 24, 0.75);
  --bg-card-hover: rgba(22, 27, 40, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.03);

  /* Typography Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #CBD5E1;
  --text-muted: #8A94A6;
  --text-dim: #475569;

  /* Accents & Sheen */
  --border-light: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(255, 255, 255, 0.3);
  --accent-cyan: #38BDF8;

  /* Fonts */
  --font-display: 'Orbitron', -apple-system, sans-serif;
  --font-title: 'Rajdhani', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  /* Container */
  --max-width: 1200px;
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
  background: radial-gradient(circle at 50% 0%, #0F121C 0%, #050608 80%);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Ambient Grid Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Section Header Typography */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--text-primary);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 3rem;
}

/* --------------------------------------------------------------------------
   3. NAVIGATION BAR
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 0;
  transition: var(--transition-smooth);
  background: rgba(5, 6, 8, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.navbar.scrolled {
  padding: 0.85rem 0;
  background: rgba(5, 6, 8, 0.94);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-logo-img {
  height: 36px;
  width: auto;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--text-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}

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

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* --------------------------------------------------------------------------
   4. BUTTONS & UI COMPONENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--text-primary);
  color: #000000;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-primary:hover {
  background: #E2E8F0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.3rem;
  font-size: 0.78rem;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2rem;
  background: rgba(13, 16, 24, 0.85);
  border: 1px solid var(--border-glow);
  backdrop-filter: blur(12px);
  margin-bottom: 2.25rem;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.countdown-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero-countdown-timer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.time-block {
  text-align: center;
}

.time-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.time-lbl {
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.time-colon {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-cyan);
}

.hero-logo-wrapper {
  margin-bottom: 2.25rem;
}

.hero-logo {
  width: 210px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
  transition: transform 0.4s ease;
}

.hero-logo-wrapper:hover .hero-logo {
  transform: scale(1.02);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.hero-subtext {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   6. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-section {
  padding: 6rem 0;
  position: relative;
}

.about-banner {
  background: rgba(13, 16, 24, 0.8);
  border: 1px solid var(--border-light);
  padding: 3rem 2.5rem;
  position: relative;
  margin-bottom: 3.5rem;
  border-left: 3px solid var(--text-primary);
}

.about-statement {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 2.2rem 1.8rem;
  transition: var(--transition-smooth);
  position: relative;
}

.highlight-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.highlight-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-muted);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.highlight-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.highlight-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   7. SUPPORTED GAMES SECTION
   -------------------------------------------------------------------------- */
.games-section {
  padding: 6rem 0;
  position: relative;
}

.category-tabs {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.85rem;
}

.tab-btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 1.25rem;
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

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

.tab-btn.active {
  color: #000000;
  background: var(--text-primary);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.game-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.game-banner {
  height: 190px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  overflow: hidden;
  background-color: #080a0f;
}

.game-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.game-card:hover .game-banner-img {
  transform: scale(1.06);
}

.game-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.15) 0%, rgba(5, 6, 8, 0.85) 100%);
  z-index: 1;
}

.game-badge {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-light);
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.game-info {
  padding: 1.25rem;
}

.game-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

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

.game-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   8. COMMUNITY SECTION
   -------------------------------------------------------------------------- */
.community-section {
  padding: 6rem 0;
  position: relative;
  text-align: center;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.community-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 2.75rem 1.75rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.community-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-5px);
}

.community-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.community-icon svg {
  width: 28px;
  height: 28px;
}

.community-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.community-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.community-card.discord:hover .community-icon {
  color: #5865F2;
  border-color: #5865F2;
}

.community-card.instagram:hover .community-icon {
  color: #E1306C;
  border-color: #E1306C;
}

.community-card.youtube:hover .community-icon {
  color: #FF0000;
  border-color: #FF0000;
}

/* --------------------------------------------------------------------------
   9. REDESIGNED CENTERED FOOTER & LEGAL BAR
   -------------------------------------------------------------------------- */
.footer {
  background: #030405;
  border-top: 1px solid var(--border-light);
  padding: 4.5rem 0 2.5rem;
  position: relative;
  z-index: 1;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.footer-brand-logo {
  height: 44px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.social-btn:hover {
  background: var(--text-primary);
  color: #000000;
  border-color: var(--text-primary);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

/* Horizontal Main Navigation Bar */
.footer-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
}

.footer-nav-link {
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-nav-link:hover {
  color: var(--text-primary);
}

.footer-dot {
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* Horizontal Legal Policy Bar */
.footer-legal-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  width: 100%;
}

.policy-link {
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition-fast);
  cursor: pointer;
}

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

.policy-divider {
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* Copyright Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   10. LEGAL & POLICY MODAL DRAWER
   -------------------------------------------------------------------------- */
.policy-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 6, 8, 0.88);
  backdrop-filter: blur(14px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.policy-modal-box {
  background: linear-gradient(135deg, #0F121C 0%, #06080C 100%);
  border: 1px solid var(--border-glow);
  width: 100%;
  max-width: 820px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  position: relative;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

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

.policy-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 20;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.policy-modal-close:hover {
  background: var(--text-primary);
  color: #000000;
  border-color: var(--text-primary);
}

.policy-tabs {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 1.25rem 4rem 0 1.5rem;
  border-bottom: 1px solid var(--border-light);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.policy-tab-btn {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.6rem 1rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.policy-tab-btn:hover {
  color: var(--text-primary);
}

.policy-tab-btn.active {
  color: var(--text-primary);
  border-bottom-color: var(--text-primary);
}

.policy-content-container {
  padding: 2rem 2.25rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(5, 6, 8, 0.5);
}

.policy-content-container::-webkit-scrollbar {
  width: 6px;
}

.policy-content-container::-webkit-scrollbar-track {
  background: rgba(5, 6, 8, 0.5);
}

.policy-content-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.policy-content-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

.policy-pane {
  display: none;
}

.policy-pane.active {
  display: block;
}

.pane-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.pane-intro {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.pane-subtext {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.policy-rules-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  padding: 1.2rem;
}

.rule-num {
  width: 32px;
  height: 32px;
  background: var(--text-primary);
  color: #000000;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rule-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.rule-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pane-footer-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 1rem;
}

.support-info-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}

.support-info-box h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.support-topics-list {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.support-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.support-channel-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  padding: 1.25rem;
  transition: var(--transition-fast);
}

.support-channel-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-glow);
}

.channel-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.channel-link {
  font-size: 0.82rem;
  color: var(--accent-cyan);
  word-break: break-all;
}

.support-hours {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. COMPREHENSIVE RESPONSIVE BREAKPOINTS (MOBILE & TABLET OPTIMIZED)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(8, 10, 14, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 3rem 2rem;
    border-left: 1px solid var(--border-light);
    transition: right 0.35s ease;
    z-index: 100;
  }

  .nav-menu.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
    z-index: 101;
  }
}

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

  /* Hero Mobile Enhancements */
  .hero {
    min-height: 100vh;
    padding: 7rem 0 3.5rem;
  }

  .hero-countdown-box {
    padding: 0.9rem 1.25rem;
    width: 100%;
    max-width: 340px;
    margin-bottom: 1.75rem;
  }

  .hero-countdown-timer {
    gap: 0.75rem;
  }

  .time-val {
    font-size: 1.35rem;
  }

  .time-colon {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
  }

  .hero-logo {
    width: 160px;
  }

  .hero-headline {
    font-size: clamp(1.8rem, 6.5vw, 2.5rem);
    line-height: 1.12;
    margin-bottom: 1rem;
  }

  .hero-subtext {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

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

  /* About Mobile Enhancements */
  .about-section {
    padding: 4.5rem 0;
  }

  .about-banner {
    padding: 1.75rem 1.25rem;
    margin-bottom: 2.5rem;
  }

  .about-statement {
    font-size: 1.1rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .highlight-card {
    padding: 1.75rem 1.25rem;
  }

  /* Supported Games Mobile Enhancements */
  .games-section {
    padding: 4.5rem 0;
  }

  .category-tabs {
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

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

  .tab-btn {
    font-size: 0.78rem;
    padding: 0.45rem 1rem;
    white-space: nowrap;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .game-banner {
    height: 170px;
  }

  /* Community Section Mobile */
  .community-section {
    padding: 4.5rem 0;
  }

  .community-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .community-card {
    padding: 2.25rem 1.25rem;
  }

  .community-card .btn {
    width: 100%;
  }

  /* Footer Mobile */
  .footer {
    padding: 3.5rem 0 2rem;
  }

  .footer-nav-bar {
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .footer-nav-link {
    font-size: 0.82rem;
  }

  .footer-legal-bar {
    gap: 0.6rem;
  }

  .policy-link {
    font-size: 0.78rem;
  }

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

  /* Policy Modal Mobile */
  .policy-modal-box {
    width: 95vw;
    max-height: 90vh;
  }

  .policy-tabs {
    padding: 1rem 3.5rem 0 1rem;
  }

  .policy-tab-btn {
    font-size: 0.7rem;
    padding: 0.5rem 0.75rem;
  }

  .policy-content-container {
    padding: 1.5rem 1.15rem;
  }

  .pane-title {
    font-size: 1.2rem;
  }

  .rule-item {
    padding: 1rem;
    gap: 0.75rem;
  }

  .rule-num {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) {
  .hero-logo {
    width: 130px;
  }

  .hero-headline {
    font-size: 1.6rem;
  }

  .time-val {
    font-size: 1.15rem;
  }

  .policy-divider {
    display: none;
  }

  .policy-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.25rem 0;
  }
}
