/* ═══════════════════════════════════════════
   VORTHON GAMES — Design System
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  /* Background */
  --bg-primary: #060508;
  --bg-secondary: #0c0a10;
  --bg-card: rgba(16, 14, 22, 0.8);
  --bg-card-hover: rgba(26, 22, 36, 0.9);

  /* Gold accent (Dominia) */
  --gold: #c8a84b;
  --gold-dim: rgba(200, 168, 75, 0.15);
  --gold-glow: rgba(200, 168, 75, 0.3);
  --gold-light: #dac06a;

  /* Cyan accent (HaptoRun) */
  --cyan: #00C8FF;
  --cyan-dim: rgba(0, 200, 255, 0.12);
  --cyan-glow: rgba(0, 200, 255, 0.25);

  /* Text */
  --text-primary: #e8e4f0;
  --text-secondary: #9a94a8;
  --text-muted: #5a5468;

  /* Borders */
  --border: rgba(200, 168, 75, 0.08);
  --border-hover: rgba(200, 168, 75, 0.2);

  /* Spacing */
  --section-pad: clamp(60px, 10vh, 120px);
  --content-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', 'DM Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══ ACCESSIBILITY ═══ */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: var(--gold);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-to-content:focus {
  top: 0;
}

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

::selection {
  background: rgba(200, 168, 75, 0.25);
  color: #fff;
}

/* ═══ NAVIGATION ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(16px, 4vw, 48px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 5, 8, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(6, 5, 8, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.nav-logo-text {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

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

/* Language Selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: rgba(16, 14, 22, 0.98);
  border: 1px solid var(--border-hover);
  border-radius: 10px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  backdrop-filter: blur(20px);
  z-index: 100;
  max-height: 320px;
  overflow-y: auto;
}

.lang-dropdown::-webkit-scrollbar { width: 3px; }
.lang-dropdown::-webkit-scrollbar-thumb { background: rgba(200, 168, 75, 0.2); border-radius: 3px; }

.lang-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s ease;
}

.lang-option:hover {
  background: rgba(200, 168, 75, 0.06);
  color: var(--text-primary);
}

.lang-option.active {
  color: var(--gold);
  background: var(--gold-dim);
}

.lang-option .flag {
  font-size: 16px;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

/* ═══ HERO SECTION ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px clamp(20px, 5vw, 60px) 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200, 168, 75, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0, 200, 255, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(100, 60, 180, 0.03) 0%, transparent 50%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-logo {
  width: clamp(120px, 20vw, 200px);
  height: auto;
  margin-bottom: 24px;
  animation: heroFadeIn 1s ease-out 0.2s both;
  border-radius: 12px;
}

.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: clamp(4px, 1vw, 12px);
  background: linear-gradient(180deg, #fff 0%, var(--gold) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  animation: heroFadeIn 1s ease-out 0.4s both;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 48px;
  animation: heroFadeIn 1s ease-out 0.6s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, rgba(200, 168, 75, 0.12), rgba(200, 168, 75, 0.04));
  border: 1.5px solid rgba(200, 168, 75, 0.25);
  border-radius: 50px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: heroFadeIn 1s ease-out 0.8s both;
}

.hero-cta:hover {
  background: linear-gradient(135deg, rgba(200, 168, 75, 0.2), rgba(200, 168, 75, 0.08));
  border-color: rgba(200, 168, 75, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 168, 75, 0.15);
}

.hero-cta .arrow {
  transition: transform 0.3s ease;
}

.hero-cta:hover .arrow {
  transform: translateY(3px);
}

.hero-scroll-line {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ═══ SECTION COMMON ═══ */
.section {
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
  position: relative;
}

.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ GAMES SECTION ═══ */
.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.game-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  cursor: default;
}

.game-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.game-card.dominia:hover {
  box-shadow: 0 20px 60px rgba(200, 168, 75, 0.08);
}

.game-card.haptorun:hover {
  box-shadow: 0 20px 60px rgba(0, 200, 255, 0.08);
}

.game-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.game-card:hover .game-card-image img {
  transform: scale(1.05);
}

.game-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--bg-card), transparent);
}

.game-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.game-badge.coming-soon {
  background: rgba(200, 168, 75, 0.15);
  border: 1px solid rgba(200, 168, 75, 0.3);
  color: var(--gold);
}

.game-badge.featured {
  background: linear-gradient(135deg, rgba(200, 168, 75, 0.2), rgba(200, 168, 75, 0.1));
  border: 1px solid rgba(200, 168, 75, 0.4);
  color: var(--gold-light);
}

.game-card-body {
  padding: 24px 28px 28px;
}

.game-genre {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dominia .game-genre { color: var(--gold); }
.haptorun .game-genre { color: var(--cyan); }

.game-card-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.dominia .game-card-title {
  color: var(--gold);
}

.haptorun .game-card-title {
  color: var(--cyan);
}

.game-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.game-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.game-feature-tag {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.dominia .game-feature-tag {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(200, 168, 75, 0.1);
}

.haptorun .game-feature-tag {
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid rgba(0, 200, 255, 0.08);
}

.game-card-info {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid var(--border);
  border-radius: 0 6px 6px 0;
}

.dominia .game-card-info {
  border-left-color: rgba(200, 168, 75, 0.2);
}

.haptorun .game-card-info {
  border-left-color: rgba(0, 200, 255, 0.15);
}

.game-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.game-visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dominia-btn {
  background: rgba(200, 168, 75, 0.08);
  border: 1px solid rgba(200, 168, 75, 0.2);
  color: var(--gold);
}

.dominia-btn:hover {
  background: rgba(200, 168, 75, 0.15);
  border-color: rgba(200, 168, 75, 0.4);
  transform: translateX(4px);
}

.haptorun-btn {
  background: rgba(0, 200, 255, 0.06);
  border: 1px solid rgba(0, 200, 255, 0.15);
  color: var(--cyan);
}

.haptorun-btn:hover {
  background: rgba(0, 200, 255, 0.12);
  border-color: rgba(0, 200, 255, 0.3);
  transform: translateX(4px);
}

.game-platforms {
  display: flex;
  align-items: center;
  gap: 8px;
}

.platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 16px;
  transition: all 0.2s ease;
}

.platform-icon:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
}

/* ═══ ABOUT SECTION ═══ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.stat-value {
  font-family: 'Cinzel Decorative', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══ NEWSLETTER / CTA SECTION ═══ */
.cta-section {
  text-align: center;
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(200, 168, 75, 0.04), transparent 70%);
}

.cta-content {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.cta-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.cta-email {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto;
}

.cta-email input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.cta-email input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.cta-email input::placeholder {
  color: var(--text-muted);
}

.cta-email button {
  padding: 14px 28px;
  background: linear-gradient(135deg, rgba(200, 168, 75, 0.2), rgba(200, 168, 75, 0.08));
  border: 1.5px solid rgba(200, 168, 75, 0.3);
  border-radius: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-email button:hover {
  background: linear-gradient(135deg, rgba(200, 168, 75, 0.3), rgba(200, 168, 75, 0.12));
  border-color: rgba(200, 168, 75, 0.5);
  transform: translateY(-1px);
}

/* ═══ FOOTER ═══ */
.footer {
  padding: 40px clamp(20px, 5vw, 60px) 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  height: 28px;
  border-radius: 4px;
}

.footer-brand-text {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 2px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-copy {
  font-size: 11px;
  color: var(--text-muted);
}

/* ═══ NAV SOCIAL ICONS ═══ */
.nav-social-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  color: var(--text-muted);
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-social-icons a:hover { color: var(--gold); background: rgba(200,168,75,0.08); }
.nav-social-icons a:hover::after { display: none; }
.nav-social-icons a[aria-label="Discord"]:hover { color: #5865F2; background: rgba(88,101,242,0.1); }
.nav-social-icons a[aria-label="YouTube"]:hover { color: #FF0000; background: rgba(255,0,0,0.08); }
.nav-social-icons a[aria-label="Instagram"]:hover { color: #E4405F; background: rgba(228,64,95,0.08); }
.nav-social-icons a[aria-label="TikTok"]:hover { color: #00f2ea; background: rgba(0,242,234,0.08); }
.nav-social-icons a[aria-label="Reddit"]:hover { color: #FF4500; background: rgba(255,69,0,0.08); }

/* ═══ HERO SOCIAL BAR ═══ */
.hero-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  animation: heroFadeIn 1s ease-out 1s both;
}

.hero-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-social a:hover {
  color: var(--gold);
  border-color: var(--gold-glow);
  background: rgba(200,168,75,0.06);
  transform: translateY(-2px);
}

.hero-social-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ═══ ABOUT VALUES ═══ */
.about-values {
  display: flex;
  gap: 12px;
  margin: 24px 0 20px;
  flex-wrap: wrap;
}

.value-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.value-icon { font-size: 18px; }

.value-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.about-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(200,168,75,0.1), rgba(200,168,75,0.04));
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.about-learn-more:hover {
  background: linear-gradient(135deg, rgba(200,168,75,0.18), rgba(200,168,75,0.08));
  border-color: rgba(200,168,75,0.4);
  transform: translateY(-2px);
}

/* ═══ CONTACT DIRECT LINK ═══ */
.contact-direct-link {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(200,168,75,0.15);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.contact-direct-link:hover {
  background: rgba(200,168,75,0.06);
  border-color: rgba(200,168,75,0.3);
}

/* ═══ ENHANCED FOOTER ═══ */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-email {
  display: inline-block;
  color: var(--text-secondary);
  font-size: 12px;
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s;
}

.footer-email:hover { color: var(--gold); }

.footer-links {
  flex-direction: column;
  gap: 10px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social-link span { font-weight: 500; letter-spacing: 0.5px; }

.footer-social-link:hover {
  color: var(--gold);
  border-color: var(--border-hover);
  background: rgba(200,168,75,0.04);
}

.footer-bottom {
  max-width: var(--content-max);
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* ═══ DIVIDERS ═══ */
.section-divider {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .games-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6, 5, 8, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-social-icons {
    padding: 12px 0;
    gap: 10px;
    justify-content: center;
  }

  .nav-social-icons a {
    border-bottom: none;
    display: flex;
    padding: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .hero-social {
    flex-wrap: wrap;
  }

  .hero-social-label {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    letter-spacing: 2px;
  }

  .cta-email {
    flex-direction: column;
  }

  .cta-email button {
    width: 100%;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-card {
    padding: 16px;
  }

  .stat-value {
    font-size: 24px;
  }

  .about-values {
    gap: 8px;
  }

  .value-card {
    padding: 8px 12px;
  }
}

