@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,400;0,600;0,700;1,400&family=Press+Start+2P&family=Share+Tech+Mono&family=VT323&display=swap');

:root {
  --bg-dark: #0f1115;
  --bg-panel: #161920;
  --bg-card: #1f242d;
  --bg-card-hover: #29303d;

  --border-rust: #3d2b27;
  --border-metal: #384152;
  --border-active: #ffb703;

  --amber-neon: #ffb703;
  --amber-dark: #cc9200;
  --amber-glow: rgba(255, 183, 3, 0.35);

  --cyan-crt: #00f5d4;
  --cyan-glow: rgba(0, 245, 212, 0.35);

  --red-alert: #ff0055;

  --green-toxic: #39ff14;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-amber: #ffecb3;

  --font-pixel: 'Press Start 2P', cursive;
  --font-display: 'VT323', monospace;
  --font-mono: 'Share Tech Mono', monospace;
  --font-body: 'Chakra Petch', sans-serif;
}

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

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
}

body {
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 183, 3, 0.04), transparent 70%),
    radial-gradient(circle at 80% 80%, rgba(0, 245, 212, 0.03), transparent 60%),
    linear-gradient(180deg, #090a0d 0%, #0f1115 50%, #0a0b0e 100%);
  background-attachment: fixed;
}

img { max-width: 100%; }

a { color: var(--cyan-crt); }

/* Custom Scrollbar */
::-webkit-scrollbar { height: 6px; width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb {
  background: var(--border-rust);
  border-radius: 3px;
  border: 1px solid var(--amber-neon);
}

/* CRT Overlay Effect (decorativo) */
.crt-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  background:
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
    linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  background-size: 100% 4px, 6px 100%;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.7);
}

@media (prefers-reduced-motion: reduce) {
  .brand-title { animation: none !important; }
}

@keyframes neonFlicker {
  0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
    opacity: 1;
    text-shadow: 0 0 8px var(--amber-glow), 0 0 20px var(--amber-neon);
  }
  20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
    opacity: 0.4;
    text-shadow: none;
  }
}

/* Metallic Industrial Card */
.industrial-card {
  background: var(--bg-panel);
  border: 2px solid var(--border-metal);
  border-radius: 4px;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -2px 0 rgba(0,0,0,0.5),
    0 10px 30px rgba(0,0,0,0.5);
}

.industrial-card::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(255,255,255,0.05);
  pointer-events: none;
}

/* Corner Rivets */
.rivet {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #6b7280, #1f2937);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.4), 0 1px 2px rgba(0,0,0,0.8);
}
.rivet-tl { top: 6px; left: 6px; }
.rivet-tr { top: 6px; right: 6px; }
.rivet-bl { bottom: 6px; left: 6px; }
.rivet-br { bottom: 6px; right: 6px; }

/* CRT Display Screen */
.crt-screen {
  background: #080c0e;
  border: 2px solid #1a262c;
  border-radius: 4px;
  box-shadow: inset 0 0 20px rgba(0, 245, 212, 0.15), 0 0 5px rgba(0,0,0,0.8);
  position: relative;
  overflow: hidden;
}
.crt-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 17, 21, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-rust);
  padding: 10px 16px;
  width: 100%;
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 0 6px var(--amber-glow));
}

.brand-title {
  font-family: var(--font-pixel);
  font-size: clamp(0.9rem, 3vw, 1.15rem);
  color: var(--amber-neon);
  animation: neonFlicker 6s infinite;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--cyan-crt);
  text-shadow: 0 0 8px var(--cyan-glow);
}

/* Hero */
.hero-section {
  padding: 48px 16px 60px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-vending-frame {
  background: linear-gradient(180deg, #1b2029 0%, #12151b 100%);
  border: 3px solid #384152;
  border-radius: 8px;
  padding: clamp(20px, 4vw, 40px);
  position: relative;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.hero-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.hero-logo {
  height: 88px;
  width: 88px;
  flex-shrink: 0;
  border-radius: 12px;
  filter: drop-shadow(0 0 16px var(--amber-glow));
}

.hero-content h1 {
  font-family: var(--font-pixel);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--amber-neon);
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 0 15px var(--amber-glow);
}

.hero-description {
  font-family: var(--font-mono);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-amber);
  line-height: 1.65;
  margin-bottom: 28px;
  border-left: 3px solid var(--cyan-crt);
  padding-left: 14px;
}
.hero-description strong { color: var(--cyan-crt); }

.hero-art-display img {
  display: block;
  width: 100%;
  height: auto;
}

/* Store buttons */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 190px;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  background: var(--amber-neon);
  color: #000;
  box-shadow: 0 4px 0 var(--amber-dark), 0 6px 12px rgba(0,0,0,0.6);
  transition: transform 0.1s ease, background 0.2s ease;
}

.store-btn:hover { background: #ffc324; transform: translateY(-2px); }
.store-btn:active { transform: translateY(3px); }

.store-btn-label {
  font-family: var(--font-pixel);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.store-btn-soon {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  margin-top: 4px;
  opacity: 0.7;
}

.store-btn.is-disabled {
  background: var(--bg-card);
  color: var(--text-muted);
  box-shadow: 0 4px 0 #11141a, 0 6px 12px rgba(0,0,0,0.5);
  border: 1px solid var(--border-metal);
  cursor: not-allowed;
  pointer-events: none;
}
.store-btn.is-disabled .store-btn-label { color: var(--text-muted); }

/* Section header */
.section-header {
  max-width: 1100px;
  margin: 0 auto 28px;
  padding: 0 16px;
  text-align: center;
}

.section-title {
  font-family: var(--font-pixel);
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  color: var(--amber-neon);
  letter-spacing: 1px;
  text-shadow: 0 0 12px var(--amber-glow);
}

/* Cómo se juega */
.howto-section {
  padding: 20px 16px 70px;
}

.howto-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.howto-card {
  padding: 26px 22px;
  text-align: center;
}

.howto-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 8px var(--cyan-glow));
}

.howto-card h3 {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cyan-crt);
  font-size: 1rem;
  margin-bottom: 10px;
}

.howto-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Footer */
footer {
  border-top: 2px solid var(--border-rust);
  background: rgba(0,0,0,0.5);
  padding: 26px 16px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-info p { font-size: 0.9rem; }
.footer-info strong { color: var(--amber-neon); font-family: var(--font-mono); letter-spacing: 1px; }
.footer-muted { color: var(--text-muted); margin-top: 4px; font-size: 0.82rem; }

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links a:hover { color: var(--cyan-crt); }

/* ============================================================
   Páginas de texto (privacidad / privacy)
   ============================================================ */
.doc-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.doc-page .industrial-card {
  padding: clamp(24px, 5vw, 52px);
}

.doc-title {
  font-family: var(--font-pixel);
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  color: var(--amber-neon);
  line-height: 1.3;
  margin-bottom: 8px;
  text-shadow: 0 0 12px var(--amber-glow);
}

.doc-updated {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 28px;
}

.doc-lang-switch {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  margin-bottom: 28px;
}
.doc-lang-switch a { text-decoration: none; }

.doc-body h2 {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cyan-crt);
  font-size: 1.05rem;
  margin: 34px 0 12px;
  border-left: 3px solid var(--cyan-crt);
  padding-left: 10px;
}

.doc-body h3 {
  font-family: var(--font-mono);
  color: var(--text-amber);
  font-size: 0.95rem;
  margin: 22px 0 8px;
}

.doc-body p,
.doc-body li {
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 0.95rem;
}

.doc-body p { margin-bottom: 14px; }
.doc-body ul { margin: 0 0 16px 22px; }
.doc-body li { margin-bottom: 8px; }
.doc-body strong { color: var(--text-main); }
.doc-body a { color: var(--cyan-crt); }

.doc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 20px;
  font-size: 0.9rem;
}
.doc-table th,
.doc-table td {
  border: 1px solid var(--border-metal);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  color: #cbd5e1;
  line-height: 1.6;
}
.doc-table th {
  background: rgba(0, 245, 212, 0.07);
  color: var(--cyan-crt);
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.doc-back {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   Press kit
   ============================================================ */
.presskit-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 44px 20px 80px;
}

.pk-block { margin-bottom: 48px; }

.pk-block h2 {
  font-family: var(--font-pixel);
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--amber-neon);
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-shadow: 0 0 10px var(--amber-glow);
}

.pk-block h3 {
  font-family: var(--font-mono);
  color: var(--cyan-crt);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  margin: 18px 0 8px;
}

.pk-block p { color: #cbd5e1; line-height: 1.7; margin-bottom: 12px; }

.pk-facts {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.pk-facts td {
  border: 1px solid var(--border-metal);
  padding: 10px 14px;
  color: #cbd5e1;
}
.pk-facts td:first-child {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: var(--cyan-crt);
  width: 34%;
  background: rgba(0, 245, 212, 0.05);
}

.pk-logo-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pk-logo-row img {
  width: 140px;
  height: 140px;
  border-radius: 14px;
  border: 2px solid var(--border-metal);
}

.pk-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-pixel);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  background: var(--amber-neon);
  padding: 12px 18px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 0 var(--amber-dark);
}
.pk-download:hover { background: #ffc324; }

.pk-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.pk-shot {
  cursor: pointer;
  padding: 6px;
}
.pk-shot img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 3px;
}
.pk-shot span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pk-chars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
@media (max-width: 760px) {
  .pk-chars { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 420px) {
  .pk-chars { grid-template-columns: repeat(2, 1fr); }
}
.pk-char {
  text-align: center;
  padding: 12px;
}
.pk-char img {
  width: 100%;
  max-width: 96px;
  aspect-ratio: 1;
  object-fit: contain;
}
.pk-char span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Lightbox */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.9);
}
.lightbox-modal.active { display: flex; }

.lightbox-content {
  max-width: 1000px;
  width: 100%;
  text-align: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  border: 2px solid var(--border-metal);
  border-radius: 4px;
}
.lightbox-caption {
  margin-top: 12px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 0.85rem;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-metal);
  color: var(--amber-neon);
  font-family: var(--font-mono);
  padding: 8px 14px;
  border-radius: 3px;
  cursor: pointer;
}

/* ============================================================
   Loader de arranque (boot CRT / arcade)
   ============================================================ */
#bootLoader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background:
    radial-gradient(circle at 50% 45%, #12151b 0%, #090a0d 75%);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

#bootLoader.is-done {
  opacity: 0;
  visibility: hidden;
}

/* Barrido de scanline al arrancar */
#bootLoader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18,16,16,0) 50%, rgba(0,0,0,0.28) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  animation: bootScan 0.7s linear infinite;
}

#bootLoader::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--cyan-crt);
  box-shadow: 0 0 14px 2px var(--cyan-glow);
  opacity: 0.7;
  animation: bootSweep 0.85s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.boot-logo {
  width: 100px;
  height: 100px;
  border-radius: 14px;
  filter: drop-shadow(0 0 22px var(--amber-glow));
  animation: bootFlicker 0.7s steps(1) infinite;
  position: relative;
  z-index: 2;
}

.boot-text {
  font-family: var(--font-pixel);
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--cyan-crt);
  text-shadow: 0 0 10px var(--cyan-glow);
  position: relative;
  z-index: 2;
}
.boot-text::after {
  content: '';
  animation: bootDots 0.7s steps(4, end) infinite;
}

.boot-bar {
  width: min(240px, 60vw);
  height: 8px;
  border: 1px solid var(--border-metal);
  border-radius: 2px;
  background: #0c0f14;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.boot-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--amber-dark), var(--amber-neon));
  box-shadow: 0 0 10px var(--amber-glow);
  animation: bootFill 0.9s ease-out forwards;
}

@keyframes bootScan { to { background-position: 0 4px; } }
@keyframes bootSweep {
  0% { top: 12%; opacity: 0; }
  15% { opacity: 0.75; }
  85% { opacity: 0.75; }
  100% { top: 88%; opacity: 0; }
}
@keyframes bootFlicker {
  0%, 100% { opacity: 1; }
  8% { opacity: 0.4; }
  10% { opacity: 1; }
  62% { opacity: 1; }
  64% { opacity: 0.3; }
  66% { opacity: 1; }
}
@keyframes bootDots {
  0% { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
}
@keyframes bootFill {
  0% { width: 0; }
  60% { width: 72%; }
  100% { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  #bootLoader { display: none !important; }
}

/* ============================================================
   Carrusel de capturas
   ============================================================ */
.gameplay-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px 70px;
}

.carousel {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

/* Carrusel dentro del hero: ocupa la columna, botones dentro */
.hero-art-display .carousel {
  max-width: 100%;
}
.hero-art-display .carousel-btn.prev { left: 8px; }
.hero-art-display .carousel-btn.next { right: 8px; }
.hero-art-display .carousel-viewport {
  aspect-ratio: 9 / 16;
  max-height: 68vh;
  margin: 0 auto;
}
.hero-art-display .carousel-track,
.hero-art-display .carousel-track .carousel-slide { height: 100%; }

.carousel-viewport {
  overflow: hidden;
  border-radius: 6px;
  background: #080c0e;
  border: 2px solid #1a262c;
  box-shadow: inset 0 0 24px rgba(0, 245, 212, 0.15), 0 0 6px rgba(0,0,0,0.8);
}

/* Crossfade: los slides se apilan y solo cambia la opacidad (nada se mueve) */
.carousel-track {
  position: relative;
}

.carousel-track .carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.carousel-track .carousel-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.carousel-track img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-metal);
  background: rgba(15, 17, 21, 0.85);
  color: var(--amber-neon);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-btn:hover { background: rgba(255, 183, 3, 0.15); border-color: var(--amber-neon); }
.carousel-btn.prev { left: -14px; }
.carousel-btn.next { right: -14px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--border-metal);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-dot.is-active {
  background: var(--cyan-crt);
  border-color: var(--cyan-crt);
  box-shadow: 0 0 8px var(--cyan-glow);
}

/* Language switch en header */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.lang-switch a {
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 4px;
}
.lang-switch a.is-active { color: var(--amber-neon); }
.lang-switch a:hover { color: var(--cyan-crt); }
.lang-switch .sep { color: var(--border-metal); }

/* Responsive */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .howto-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.8rem; }
  .footer-container { flex-direction: column; text-align: center; }
  .doc-table, .pk-facts { font-size: 0.82rem; }
  .doc-table th, .doc-table td, .pk-facts td { padding: 8px 9px; }
}

@media (max-width: 480px) {
  .brand-logo img { height: 30px; width: 30px; }
  .hero-title-row { gap: 12px; }
  .hero-logo { height: 60px; width: 60px; }
  .store-btn { min-width: 100%; }
}
