/* VOIDFRAME Landing Page - Warframe-inspired theme */

:root {
  --bg-dark: #0b0f14;
  --bg-panel: #121820;
  --bg-card: #1a2332;
  --bg-hover: #243044;
  --accent-cyan: #00c8ff;
  --accent-gold: #d4a843;
  --accent-purple: #8b5cf6;
  --text-primary: #e8edf5;
  --text-secondary: #9aa8bc;
  --text-muted: #6b7a90;
  --border: rgba(255, 255, 255, 0.08);
  --glow-cyan: 0 0 20px rgba(0, 200, 255, 0.35);
  --header-h: 64px;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(11, 15, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.site-header.scrolled { background: rgba(11, 15, 20, 0.98); }

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img { height: 36px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  margin-left: 24px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover, .nav-item.open > .nav-link {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.nav-link .chevron {
  width: 10px; height: 10px;
  transition: transform var(--transition);
}

.nav-item.open .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.dropdown a:hover {
  color: var(--accent-cyan);
  background: rgba(0, 200, 255, 0.06);
  padding-left: 24px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #0099cc, #00c8ff);
  color: #001018;
  box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00b8ee, #33d4ff);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(0, 200, 255, 0.5);
  color: var(--accent-cyan);
}

.btn-outline:hover {
  background: rgba(0, 200, 255, 0.1);
  border-color: var(--accent-cyan);
}

.btn-gold {
  background: linear-gradient(135deg, #b8860b, #d4a843);
  color: #1a1000;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d4a843, #f0c860);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--text-secondary);
  padding: 8px 12px;
}

.btn-ghost:hover { color: var(--text-primary); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all var(--transition);
}

.lang-switch:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 15, 20, 0.92) 0%, rgba(11, 15, 20, 0.55) 42%, rgba(11, 15, 20, 0.15) 68%, transparent 100%),
    linear-gradient(to top, var(--bg-dark) 0%, rgba(11, 15, 20, 0.75) 35%, rgba(11, 15, 20, 0.2) 100%);
  pointer-events: none;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
}

.hero-slide picture {
  display: block;
}

.hero-slide img {
  object-fit: cover;
}

.hero-content {
  position: absolute;
  inset: var(--header-h) 0 0 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  pointer-events: none;
}

.hero-content .hero-actions {
  pointer-events: all;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 28px;
}

.hero-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 200, 255, 0.15);
  border: 1px solid rgba(0, 200, 255, 0.4);
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 16px;
}

.hero-badge.coming-soon {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
  color: var(--accent-purple);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  min-width: 168px;
  padding: 12px 24px;
  font-size: 13px;
}

.hero-carousel-nav {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(11, 15, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.carousel-dot {
  width: 36px;
  height: 4px;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.45);
}

.carousel-dot.active {
  width: 48px;
  background: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
}

.carousel-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 16px;
  pointer-events: none;
}

.carousel-arrow {
  pointer-events: all;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(11, 15, 20, 0.7);
  color: var(--text-primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.carousel-arrow:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(0, 200, 255, 0.1);
}

/* ── Faction Choice ── */
.faction-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-panel));
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.faction-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.faction-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.faction-card:hover, .faction-card.selected {
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  transform: scale(1.02);
}

.faction-card.selected { border-color: var(--accent-gold); box-shadow: 0 0 20px rgba(212, 168, 67, 0.4); }

.faction-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

.faction-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
}

.faction-or { font-family: var(--font-display); font-size: 24px; color: var(--text-muted); }

/* ── Sections ── */
.section { padding: 80px 0; }

.section-dark { background: var(--bg-panel); }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── News Grid ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.news-card {
  background: var(--bg-card);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.news-card:hover {
  border-color: rgba(0, 200, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.news-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.news-card-body { padding: 20px; }

.news-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.news-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ── Shop ── */
.shop-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}

.shop-featured img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }

.shop-featured-content { padding: 40px; }

.shop-featured-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.shop-featured-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  border-color: rgba(212, 168, 67, 0.3);
  transform: translateY(-3px);
}

.product-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.product-card-body { padding: 16px 20px 20px; }

.product-card-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }

/* ── Prime Resurgence ── */
.prime-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
  background: linear-gradient(135deg, #1a1520, #121820);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
}

.prime-banner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.prime-banner p { color: var(--text-secondary); margin-bottom: 24px; }

.prime-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Guides ── */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
}

.guide-card:hover { border-color: rgba(0, 200, 255, 0.3); }

.guide-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.guide-card-body { padding: 24px; }

.guide-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.guide-card-body p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* ── Footer ── */
.site-footer {
  background: #060810;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.social-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.social-btn:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(0, 200, 255, 0.08);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent-cyan); }

.footer-copy {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-platforms {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.platform-badge {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: pointer;
}

.platform-badge:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

/* ── Modals ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(10px);
  transition: transform var(--transition);
}

.modal-overlay.open .modal { transform: scale(1) translateY(0); }

.modal-lg { max-width: 720px; }

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  font-size: 20px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.modal-close:hover { background: rgba(255,255,255,0.08); color: var(--text-primary); }

.modal-body { padding: 24px; }

.modal-body img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 16px;
}

.modal-body p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.6; }

.modal-footer {
  padding: 16px 24px 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 15px;
  transition: border-color var(--transition);
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent-cyan);
}

.form-error {
  color: #ff6b6b;
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

.form-error.show { display: block; }

.download-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.download-platform {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  transition: all var(--transition);
}

.download-platform:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 200, 255, 0.06);
  color: var(--accent-cyan);
}

.cookie-options { display: flex; flex-direction: column; gap: 12px; }

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-dark);
  border-radius: 6px;
  border: 1px solid var(--border);
}

.cookie-option label { font-size: 14px; font-weight: 600; }

.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--bg-hover);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition);
}

.toggle.on { background: var(--accent-cyan); }

.toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition);
}

.toggle.on::after { transform: translateX(20px); }

.lang-list { display: flex; flex-direction: column; gap: 4px; }

.lang-option {
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 15px;
  text-align: left;
  transition: all var(--transition);
}

.lang-option:hover, .lang-option.active {
  background: rgba(0, 200, 255, 0.1);
  color: var(--accent-cyan);
}

.news-list-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.news-list-item:hover { padding-left: 8px; }

.news-list-item img {
  width: 120px;
  height: 68px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.news-list-item h4 { font-size: 15px; margin-bottom: 4px; }
.news-list-item p { font-size: 13px; color: var(--text-muted); }

/* ── Toast ── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  padding: 14px 20px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-cyan);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: toastIn 0.3s ease;
  max-width: 360px;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── User bar (logged in) ── */
.user-bar {
  display: none;
  align-items: center;
  gap: 12px;
}

.user-bar.visible { display: flex; }

.user-stats {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
}

.user-stats strong { color: var(--accent-cyan); display: block; font-size: 14px; }

.account-dropdown {
  position: relative;
}

.account-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

.account-dropdown .dropdown {
  right: 0;
  left: auto;
  min-width: 200px;
}

.guest-actions { display: flex; gap: 10px; }
.guest-actions.hidden { display: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .guides-grid { grid-template-columns: 1fr 1fr; }
  .shop-featured { grid-template-columns: 1fr; }
  .prime-banner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 56px;
  }

  body {
    min-width: 320px;
  }

  .container {
    padding: 0 16px;
  }

  .site-header {
    height: var(--header-h);
  }

  .logo-link img {
    height: 30px;
    max-width: 150px;
    object-fit: contain;
  }

  .main-nav, .header-actions .guest-actions { display: none; }

  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: var(--bg-dark);
    padding: 16px;
    overflow-y: auto;
    z-index: 999;
    margin-left: 0;
  }

  .main-nav.mobile-open .nav-item { width: 100%; }
  .main-nav.mobile-open .nav-link { width: 100%; padding: 14px 16px; }
  .main-nav.mobile-open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg-panel);
    margin: 4px 0 8px;
    display: none;
  }

  .main-nav.mobile-open .nav-item.open .dropdown { display: block; }

  .hamburger { display: flex; }

  .section,
  .faction-section {
    padding: 48px 0;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }

  .section-title,
  .section-heading {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .faction-grid { grid-template-columns: 1fr; }
  .faction-or { text-align: center; }

  .faction-card img {
    aspect-ratio: 16 / 10;
  }

  .news-grid,
  .product-grid,
  .guides-grid { grid-template-columns: 1fr; }

  .news-card-body,
  .product-card-body,
  .guide-card-body {
    padding: 16px;
  }

  .shop-featured {
    gap: 0;
    margin-bottom: 24px;
  }

  .shop-featured img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .shop-featured-content {
    padding: 22px 18px;
  }

  .prime-banner {
    padding: 22px 18px;
    gap: 22px;
  }

  .prime-actions {
    flex-direction: column;
  }

  .header-actions .lang-switch { display: none; }

  .carousel-arrows { display: none; }

  .hero {
    min-height: 74vh;
  }

  .hero-slide img {
    object-position: center center;
  }

  .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(11, 15, 20, 0.18), rgba(11, 15, 20, 0.18) 45%, rgba(11, 15, 20, 0.76) 100%),
      linear-gradient(to top, var(--bg-dark) 0%, rgba(11, 15, 20, 0) 42%);
  }

  .hero-content {
    align-items: flex-end;
    padding: 0 16px 76px;
  }

  .hero-actions {
    width: 100%;
    max-width: 360px;
    gap: 12px;
  }

  .hero-btn {
    min-width: 0;
    flex: 1 1 100%;
    min-height: 46px;
    font-size: 12px;
  }

  .hero-carousel-nav {
    bottom: 24px;
    padding: 6px 12px;
  }

  .modal-overlay {
    padding: 12px;
  }

  .modal-body,
  .modal-header,
  .modal-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .download-platforms {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .footer-platforms {
    gap: 12px;
  }

  .toast-container {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .toast {
    max-width: none;
  }
}
