:root {
  --pink: #ff2ea6;
  --purple: #7b2ff7;
  --cyan: #00e5ff;
  --bg-dark: #0a0612;
  --bg-darker: #050308;
  --text-light: #f5f0fa;
  --text-muted: #b8a9c9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.pink { color: var(--pink); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 100%);
  opacity: 1;
  transition: opacity 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 6, 18, 0.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.navbar.scrolled::before {
  opacity: 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--text-light);
  text-decoration: none;
}
.logo span { color: var(--pink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-light); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 26px; height: 2px;
  background: var(--text-light);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  width: 100%;
  margin-top: 72px;
  aspect-ratio: 16 / 9;
  background: var(--bg-darker);
  overflow: hidden;
}

.hero-track {
  position: absolute; inset: 0;
}

.hero-track-mobile { display: none; }

.slider {
  position: absolute; inset: 0;
  overflow: hidden;
}

.slide {
  position: absolute; inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.slide.active {
  opacity: 1;
}

.hero-bottom-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 90px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,6,18,0) 0%, rgba(10,6,18,0.9) 100%);
  pointer-events: none;
}

.slider-controls {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.slider-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(10,6,18,0.35);
  backdrop-filter: blur(8px);
  color: var(--text-light);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.slider-arrow:hover {
  background: rgba(255,46,166,0.35);
  border-color: var(--pink);
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.slider-dots .dot.active {
  background: var(--pink);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(255,46,166,0.7);
}

.countdown-section {
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,46,166,0.12), transparent 60%), var(--bg-dark);
  padding: 70px 0 90px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-content-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(245,240,250,0.75);
  margin-bottom: 0;
  white-space: nowrap;
}
.eyebrow.center { text-align: center; }

.eyebrow-decorated {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.eyebrow-line {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4));
}
.eyebrow-decorated .eyebrow-line:last-child {
  background: linear-gradient(90deg, rgba(255,255,255,0.4), transparent);
}

.countdown-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 32px;
}

.countdown-heading .line-silver {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(26px, 4.5vw, 40px);
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ffffff, #b9c6e8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.countdown-heading .line-pink {
  font-family: 'Rubik Spray Paint', 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 6.5vw, 52px);
  letter-spacing: 1px;
  background: linear-gradient(100deg, var(--pink), var(--purple) 55%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(255,46,166,0.35);
}

.countdown {
  display: flex;
  align-items: stretch;
  gap: 4px;
  margin: 0 0 36px;
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid transparent;
  border-radius: 22px;
  background-clip: padding-box;
  position: relative;
}

.countdown::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(120deg, var(--cyan), var(--purple), var(--pink));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
  box-shadow: 0 0 24px rgba(123,47,247,0.35);
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 96px;
  padding: 0 16px;
}

.countdown-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1;
  color: var(--text-light);
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.countdown-label {
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.countdown-icon {
  width: 16px;
  height: 16px;
  margin-top: 8px;
  color: rgba(184,169,201,0.6);
}

.countdown-sep {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 4vw, 36px);
  color: rgba(255,255,255,0.2);
  align-self: center;
}

.feature-strip {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.feature-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 92px;
  gap: 6px;
}

.feature-strip-icon {
  width: 26px;
  height: 26px;
  color: var(--pink);
  margin-bottom: 4px;
}

.feature-chip strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
}

.feature-chip span {
  font-size: 11px;
  color: var(--text-muted);
}

.feature-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.12);
  margin-top: 6px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-icon-left {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-icon-right {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.btn-icon:hover .btn-icon-right {
  transform: translateX(3px);
}

.brand-badge-row {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 280px;
}

.brand-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 2px;
  width: 36px;
  height: 36px;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  color: var(--text-light);
  background: rgba(255,255,255,0.04);
}

.brand-star {
  color: var(--pink);
  font-size: 12px;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 10px 30px rgba(255,46,166,0.35);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--text-light);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

/* Sections */
.section { padding: 120px 0; }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.section-title.center { text-align: center; }

.section-head {
  text-align: center;
  margin-bottom: 44px;
}
.section-head .eyebrow { margin-bottom: 12px; }
.section-head .section-title { margin-bottom: 12px; }

.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* News */
.news-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(0,229,255,0.07), transparent 55%), var(--bg-dark);
}

.news-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.news-filter {
  padding: 9px 22px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.news-filter:hover { color: var(--text-light); border-color: rgba(255,255,255,0.3); }
.news-filter.active {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border-color: transparent;
  color: #fff;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.news-meta time {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.news-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.badge-oficial {
  background: rgba(0,229,255,0.15);
  border: 1px solid rgba(0,229,255,0.45);
  color: var(--cyan);
}
.badge-filtracion {
  background: rgba(255,46,166,0.15);
  border: 1px solid rgba(255,46,166,0.45);
  color: var(--pink);
}
.badge-rumor {
  background: rgba(255,186,0,0.12);
  border: 1px solid rgba(255,186,0,0.4);
  color: #ffba00;
}

.news-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  margin-bottom: 28px;
}

.news-featured-img {
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.news-featured-body { padding: 36px; }

.news-featured-body h3 {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
  margin-bottom: 14px;
}

.news-featured-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.news-card {
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,46,166,0.35);
  background: rgba(255,255,255,0.05);
}

.news-card h3 {
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.news-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  color: var(--cyan);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.news-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.news-link:hover svg { transform: translateX(3px); }

.news-disclaimer {
  margin-top: 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.news-hidden { display: none !important; }

/* Ficha técnica */
.facts-section { background: var(--bg-darker); }

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 24px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,46,166,0.06), rgba(0,229,255,0.05));
}

.fact-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}

.fact-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  line-height: 1.1;
  color: var(--text-light);
}

.fact-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* Trailer */
.trailer-section { background: var(--bg-darker); }

.trailers-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.video-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  aspect-ratio: 16/9;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 14px;
  border-radius: 30px;
  background: rgba(10,6,18,0.7);
  backdrop-filter: blur(6px);
  color: var(--text-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  pointer-events: none;
}

/* World */
.world-section { }

.world-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.world-desc {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.region-list {
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.region-list li {
  padding: 9px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,46,166,0.35);
  background: rgba(255,46,166,0.08);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
}

.world-note {
  font-size: 13px;
  color: var(--text-muted);
}

.world-images {
  display: grid;
  gap: 20px;
}
.world-images img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 220px;
}
.world-images img:first-child { margin-top: -40px; }

/* Characters */
.characters-section { background: var(--bg-darker); }

.characters-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.character-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s;
}
.character-card:hover { transform: translateY(-6px); }

.character-img {
  height: 340px;
  background-size: cover;
  background-position: center;
}

.character-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  padding: 20px 24px 0;
  color: var(--cyan);
}
.character-card p {
  padding: 12px 24px 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Features */
.features-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: linear-gradient(145deg, rgba(255,46,166,0.08), rgba(123,47,247,0.08));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
}

.feature-card-icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
  color: var(--pink);
  display: block;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--bg-darker);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer p {
  color: var(--text-muted);
  font-size: 13px;
  max-width: 640px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 4px 0 8px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--pink); }

.footer-copy { opacity: 0.6; font-size: 12px !important; }

/* Nav "Pronto" tag */
.nav-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(255,186,0,0.15);
  border: 1px solid rgba(255,186,0,0.4);
  color: #ffba00;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  vertical-align: middle;
}

.nav-links a.active { color: var(--pink); }

/* Construction pages */
.page-construction { min-height: 100vh; }

.construction-wrap {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  overflow: hidden;
}

.construction-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.construction-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,6,18,0.75) 0%, rgba(10,6,18,0.92) 60%, var(--bg-dark) 100%);
}

.construction-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.construction-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 20px;
  border-radius: 30px;
  background: rgba(255,186,0,0.12);
  border: 1px solid rgba(255,186,0,0.45);
  color: #ffba00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.construction-badge svg { width: 16px; height: 16px; }

.construction-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 22px;
}

.construction-title .line-silver {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ffffff, #b9c6e8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.construction-title .line-pink {
  font-family: 'Rubik Spray Paint', 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 7vw, 58px);
  letter-spacing: 1px;
  background: linear-gradient(100deg, var(--pink), var(--purple) 55%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(255,46,166,0.35);
}

.construction-sub {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.construction-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
  max-width: 900px;
  margin-bottom: 44px;
}

.construction-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  padding: 22px 20px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
}

.construction-list svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--pink);
}

.construction-list strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.construction-list span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.construction-back { align-self: center; }

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 24px;
    background: rgba(10, 6, 18, 0.9);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .menu-toggle { display: flex; }
  .world-grid { grid-template-columns: 1fr; }
  .characters-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .trailers-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-img { min-height: 200px; }
  .news-featured-body { padding: 28px 24px; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .construction-list { grid-template-columns: 1fr; max-width: 460px; }
  .world-images img:first-child { margin-top: 0; }
}

@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .construction-wrap { padding: 110px 0 70px; }
}

@media (max-width: 700px) {
  .hero { aspect-ratio: 940 / 1672; margin-top: 0; }
  .hero-track-desktop { display: none; }
  .hero-track-mobile { display: block; }
  .eyebrow-decorated { gap: 8px; max-width: 100%; }
  .eyebrow-line { width: 20px; flex-shrink: 0; }
  .eyebrow { font-size: 10px; letter-spacing: 1.5px; }
  body:not(.page-construction) .logo { display: none; }
  body:not(.page-construction) .navbar-inner { justify-content: flex-end; }

  .countdown-section {
    position: relative;
    z-index: 2;
    background: transparent;
    margin-top: -78%;
    padding: 0 0 24px;
    border-bottom: none;
  }
  .slider-controls { bottom: 46%; gap: 16px; }
  .slider-arrow { width: 38px; height: 38px; }

  .eyebrow-decorated { margin-bottom: 10px; }
  .countdown-heading { margin-bottom: 16px; }
  .countdown { gap: 4px; flex-wrap: nowrap; justify-content: center; margin-bottom: 18px; }
  .countdown-unit { min-width: 56px; padding: 8px 4px; border-radius: 12px; }
  .countdown-value { font-size: clamp(24px, 7vw, 38px); }
  .countdown-label { font-size: 9px; letter-spacing: 1px; }
  .countdown-icon { width: 14px; height: 14px; margin-top: 4px; }
  .countdown-sep { transform: translateY(-4px); font-size: clamp(16px, 3.5vw, 24px); }
  .feature-strip { gap: 6px; flex-wrap: nowrap; margin-bottom: 18px; }
  .feature-chip { min-width: 0; flex: 1; gap: 4px; }
  .feature-strip-icon { width: 20px; height: 20px; margin-bottom: 0; }
  .feature-chip strong { font-size: 10px; line-height: 1.2; }
  .feature-chip span { font-size: 8px; }
  .feature-divider { margin-top: 4px; }
  .countdown-heading .line-silver { font-size: clamp(22px, 7vw, 30px); }
  .countdown-heading .line-pink { font-size: clamp(30px, 9vw, 42px); }
  .hero-actions { gap: 12px; margin-bottom: 16px; }
  .hero-actions .btn { padding: 12px 30px; font-size: 14px; }
}
