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

/* Design Tokens & CSS Variables */
:root {
  /* Colors */
  --primary-accent: #D9FF66;
  --primary-accent-dark: #B3D94A;
  --primary-accent-transparent: rgba(217, 255, 102, 0.15);
  
  --bg-main: #081413;
  --bg-card: #0E1F1E;
  --surface-green: #1C332F;
  --surface-border: #24413C;
  --white: #FFFFFF;
  --gray-200: #E0E0E0;
  --gray-400: #9CA3AF;
  --gray-600: #6B7280;
  --gray-800: #374151;
  
  --state-error: #F87171;
  --state-success: #34D399;
  --state-warning: #FBBF24;

  /* Fonts */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 100px;
  
  --container-max-width: 1200px;
  --section-padding-y: 80px;

  /* Border Radius */
  --radius-none: 0px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-none: none;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.5);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.6);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--gray-400);
  font-family: var(--font-body);
  font-size: 16px;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.25;
}

.display-1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1, .h1-style {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
}

h2, .h2-style {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

h3, .h3-style {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

h4, .h4-style {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.body-lg {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.body-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-400);
}

.body-sm {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-400);
}

.overline-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

.bg-main-color {
  background-color: var(--bg-main);
}

.bg-surface-green {
  background-color: var(--surface-green);
}

.bg-card-color {
  background-color: var(--bg-card);
}

/* 12-Column Responsive Grid */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.col-12 { grid-column: span 12; }
.col-8 { grid-column: span 8; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-3 { grid-column: span 3; }

@media (max-width: 1024px) {
  .col-lg-6 { grid-column: span 6; }
  .col-lg-12 { grid-column: span 12; }
}

@media (max-width: 768px) {
  .col-md-6 { grid-column: span 6; }
  .col-md-12 { grid-column: span 12; }
}

@media (max-width: 576px) {
  .col-sm-12 { grid-column: span 12; }
}

/* Navigation Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(8, 20, 19, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-border);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--white);
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
}

.nav-link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-400);
  transition: color 0.3s ease;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-accent);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-accent);
  box-shadow: 0 0 10px var(--primary-accent);
  border-radius: var(--radius-full);
}

.header-cta {
  display: flex;
  align-items: center;
}

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: var(--space-xs);
}

.mobile-nav-toggle svg {
  width: 28px;
  height: 28px;
}

/* Mobile Nav Drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--bg-main);
  border-bottom: 1px solid var(--surface-border);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  list-style: none;
}

.mobile-menu-link {
  text-decoration: none;
  color: var(--gray-400);
  font-size: 18px;
  font-weight: 500;
  padding: var(--space-xs) 0;
  display: block;
}

.mobile-menu-link:hover, .mobile-menu-link.active {
  color: var(--primary-accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.btn:active {
  transform: scale(0.95) !important;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background-color: var(--primary-accent);
  color: var(--bg-main);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 16px;
}

.btn-primary:hover {
  background-color: var(--primary-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--surface-border);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 16px;
}

.btn-outline:hover {
  background-color: var(--primary-accent-transparent);
  border-color: var(--primary-accent);
  color: var(--primary-accent);
}

.btn-icon-only {
  background-color: var(--primary-accent-transparent);
  color: var(--primary-accent);
  border-radius: var(--radius-full);
  padding: 12px;
  width: 48px;
  height: 48px;
  transition: 0.3s;
}

.btn-icon-only:hover {
  background-color: var(--primary-accent);
  color: var(--bg-main);
}

/* Badges */
.badge-pill {
  display: inline-block;
  background-color: var(--primary-accent-transparent);
  color: var(--primary-accent);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Cards */
.card-service {
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 16px;
  text-align: left;
  background-color: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  height: 100%;
}

.card-service:hover {
  transform: translateY(-8px);
  border-color: var(--primary-accent);
  box-shadow: var(--shadow-xl);
}

.card-service-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-accent-transparent);
  color: var(--primary-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-service-icon svg {
  width: 24px;
  height: 24px;
}

.card-service-heading {
  color: var(--white);
}

.card-service-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-400);
}

.card-service-link {
  color: var(--primary-accent);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: auto;
  transition: gap 0.3s;
}

.card-service-link:hover {
  gap: var(--space-md);
}

.card-testimonial {
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 20px;
  text-align: center;
  background-color: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  height: 100%;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
}

.testimonial-rating svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-accent);
  color: var(--primary-accent);
}

.testimonial-quote {
  font-size: 16px;
  color: var(--gray-200);
  line-height: 1.6;
}

.testimonial-divider {
  height: 1px;
  background-color: var(--surface-border);
  width: 100%;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.testimonial-name {
  font-weight: 600;
  color: var(--white);
}

.testimonial-title {
  font-size: 13px;
  color: var(--gray-600);
}

/* Forms */
.form-input-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-label {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500;
}

.form-input, .form-textarea {
  background-color: var(--bg-card);
  border: 1px solid var(--surface-border);
  color: var(--white);
  padding: 14px 16px;
  width: 100%;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--gray-600);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px var(--primary-accent-transparent);
}

.form-error {
  border-color: var(--state-error) !important;
}

.form-error-text {
  color: var(--state-error);
  font-size: 13px;
}

.form-success {
  border-color: var(--state-success) !important;
}

.form-success-text {
  color: var(--state-success);
  font-size: 13px;
}

/* Main Content Wrapper */
main {
  margin-top: 80px;
  flex: 1;
}

/* Footer */
footer {
  background-color: var(--bg-main);
  border-top: 1px solid var(--surface-border);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-2xl);
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  list-style: none;
}

.footer-link {
  text-decoration: none;
  color: var(--gray-400);
  font-size: 14px;
  transition: color 0.3s;
}

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

.footer-copyright {
  text-align: center;
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.6;
}

.footer-identity {
  margin-top: var(--space-md);
  text-align: center;
  color: var(--gray-800);
  font-size: 11px;
  line-height: 1.5;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: calc(var(--space-5xl) + 20px);
  padding-bottom: var(--space-5xl);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 20, 19, 0.4) 0%, rgba(8, 20, 19, 0.95) 100%);
  z-index: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  padding: 0 var(--space-lg);
}

.hero-sub-text {
  font-size: 18px;
  max-width: 600px;
  line-height: 1.6;
  color: var(--gray-400);
}

/* Partner Logo Strip */
.partners-strip {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--surface-border);
}

.partners-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
  opacity: 0.6;
}

.partner-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: var(--gray-600);
  letter-spacing: -0.03em;
}

/* Feature Split Layout */
.split-layout {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
}

.split-image-col {
  flex: 1;
  position: relative;
}

.split-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-lg);
}

.split-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.split-overlay-controls {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  display: flex;
  gap: var(--space-sm);
}

.split-content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .split-layout {
    flex-direction: column;
  }
}

/* Progress Bars */
.progress-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.progress-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.progress-label-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

.progress-bar-bg {
  background-color: var(--surface-border);
  height: 8px;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  background-color: var(--primary-accent);
  height: 100%;
  width: 0;
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px rgba(217, 255, 102, 0.5);
  transition: width 1.5s cubic-bezier(0.1, 0.8, 0.2, 1);
}

/* Bullet list features */
.feature-bullet-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-bullet-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.feature-bullet-icon {
  color: var(--primary-accent);
  margin-top: 4px;
}

.feature-bullet-icon svg {
  width: 20px;
  height: 20px;
}

.feature-bullet-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-bullet-title {
  font-weight: 600;
  color: var(--white);
  font-size: 16px;
}

/* Stats Strip */
.stats-strip {
  background-color: var(--surface-green);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl) var(--space-lg);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  border: 1px solid var(--surface-border);
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.stat-value {
  font-size: 48px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-accent);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--gray-200);
}

/* Services card section */
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl) auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.card-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .card-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .card-grid-container {
    grid-template-columns: 1fr;
  }
}

/* Complex mixed showcase */
.complex-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.complex-left-col {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-lg);
}

.complex-right-col {
  grid-column: span 7;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .complex-left-col {
    grid-column: span 12;
  }
  .complex-right-col {
    grid-column: span 12;
  }
}

@media (max-width: 576px) {
  .complex-right-col {
    grid-template-columns: 1fr;
  }
}

.stat-badge-box {
  background-color: var(--primary-accent);
  color: var(--bg-main);
  padding: 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-badge-value {
  font-size: 56px;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
}

.stat-badge-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.complex-feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.complex-card-img {
  height: 200px;
  position: relative;
}

.complex-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.complex-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.complex-card-content h3 {
  color: var(--white);
}

/* Testimonials Layout (Grid 4-col layout: 1 sidebar, 3 cards) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.testimonial-sidebar {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  justify-content: center;
}

.testimonial-cards-wrapper {
  grid-column: span 9;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .testimonial-sidebar {
    grid-column: span 12;
  }
  .testimonial-cards-wrapper {
    grid-column: span 12;
  }
}

@media (max-width: 768px) {
  .testimonial-cards-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Inner Page Header Sections */
.page-header-section {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-2xl);
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--surface-border);
}

.page-header-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
      align-items: flex-start;
}

/* Contact Page Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  padding: var(--space-3xl) 0;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--primary-accent-transparent);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-details h3 {
  color: var(--white);
  font-size: 18px;
}

.contact-map-placeholder {
  height: 250px;
  background-color: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-2xl);
}

.contact-map-placeholder svg {
  color: var(--primary-accent);
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

/* Games / Game Reviews Page Styling */
.games-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Stacks 2 columns in row */
  gap: 24px;
  padding: var(--space-3xl) 0;
}

@media (max-width: 768px) {
  .games-review-grid {
    grid-template-columns: 1fr; /* One column in mobile */
  }
}

.game-card {
  background-color: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-accent);
  box-shadow: var(--shadow-xl);
}

.game-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-score-tag {
  background-color: var(--primary-accent-transparent);
  color: var(--primary-accent);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(217, 255, 102, 0.3);
}

.game-card h2 {
  color: var(--white);
}

.game-card-verdict {
  margin-top: auto;
  border-top: 1px solid var(--surface-border);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.game-verdict-title {
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
}

/* Play Now Section */
.play-session-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: var(--space-3xl) 0;
}

@media (max-width: 992px) {
  .play-session-grid {
    grid-template-columns: 1fr;
  }
}

.play-session-card {
  background-color: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.play-session-card h2 {
  color: var(--white);
}

/* Privacy Page Content */
.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.privacy-section {
  margin-bottom: var(--space-2xl);
}

.privacy-section h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.privacy-number {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background-color: var(--primary-accent-transparent);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.privacy-section p {
  line-height: 1.7;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.25) 50%
  ), linear-gradient(
    90deg, 
    rgba(255, 0, 0, 0.06), 
    rgba(0, 255, 0, 0.02), 
    rgba(0, 0, 255, 0.06)
  );
  background-size: 100% 4px, 6px 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
}

/* Responsive Menu styles for Mobile */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
}
