/* ============================================================
   Day 1 DLC — Game Studio Front Page
   Subsidiary of New Life Technologies
   ============================================================ */

:root {
  --accent: #2affd6;
  --accent2: #f4b400;
  --danger: #ff3cac;
  --purple: #c084fc;
  --muted: #9aa6b2;
  --text: #e6eef0;
  --bg: #04060e;
  --card: #0a0f1a;
  --border: rgba(255,255,255,0.05);
}

*, *::before, *::after { box-sizing: border-box; }

html, body { height: 100%; margin: 0; }

body.day1dlc {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Studio top bar ── */
.studio-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: #070b14;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.studio-bar-logo {
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent);
  font-size: 12px;
}
.studio-bar-sep { opacity: 0.3; }
.studio-bar-spacer { flex: 1; }
.studio-bar-tag { opacity: 0.5; font-style: italic; }

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 64px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(42,255,214,0.07) 0%, transparent 70%),
    linear-gradient(180deg, #060b14 0%, #04060e 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.scanlines {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.18) 3px,
    rgba(0,0,0,0.18) 4px
  );
  z-index: 0;
  opacity: 0.45;
}

.hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent2);
  border: 1px solid var(--accent2);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.studio-title {
  margin: 0 0 10px;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 900;
  letter-spacing: 6px;
  line-height: 1;
  color: #fff;
  text-shadow:
    0 0 40px rgba(42,255,214,0.3),
    0 0 80px rgba(42,255,214,0.12);
}

.studio-tagline {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--muted);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.studio-lede {
  font-size: 15px;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 14px;
  line-height: 1.65;
}

.fine {
  font-size: 11px;
  color: rgba(154,166,178,0.5);
  font-style: italic;
}

/* ── Wrap / layout ── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 48px 24px 0; }

.section-label {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(154,166,178,0.4);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ── Featured game ── */
.featured {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

/* Thumbnail */
.thumb-link { display: block; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.thumb-link:hover { opacity: 0.92; }
.thumb {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(42,255,214,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.7), 0 0 0 1px rgba(42,255,214,0.08);
}

/* Featured info */
.badge-row { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.badge-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
}
.badge-pill.release { background: var(--accent); color: #041018; }
.badge-pill.aaaaaaa { background: transparent; border: 1px solid var(--accent2); color: var(--accent2); }

.game-title {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 2px;
  margin: 0 0 4px;
  line-height: 1;
  color: #fff;
}

.game-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 2px;
}

.asterisk { color: var(--accent2); font-size: 11px; }
.asterisk-note { font-size: 11px; color: rgba(154,166,178,0.5); margin: 0 0 14px; font-style: italic; }

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

/* Metacritique block */
.metacritique {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(42,255,214,0.1);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  width: fit-content;
}
.meta-score {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  min-width: 52px;
  text-align: center;
  text-shadow: 0 0 20px rgba(42,255,214,0.5);
}
.meta-brand {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--accent);
}
.meta-sub { font-size: 11px; color: var(--muted); }

/* Quotes */
.quotes { margin-bottom: 20px; }
.quotes blockquote {
  margin: 0 0 8px;
  padding: 10px 14px;
  border-left: 2px solid var(--accent2);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  background: rgba(255,255,255,0.02);
  border-radius: 0 6px 6px 0;
}

/* CTAs */
.game-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; align-items: center; }
.btn-play {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  background: var(--accent);
  color: #041018;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: opacity .15s;
}
.btn-play:hover { opacity: 0.88; text-decoration: none; }
.btn-open {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  transition: border-color .15s;
}
.btn-open:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* ── More games grid ── */
.grid-games {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-bottom: 64px;
}
.mini-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  position: relative;
}
.mini-card.locked { opacity: 0.55; }
.mini-lock { font-size: 22px; margin-bottom: 8px; }
.mini-card h3 { margin: 0 0 6px; font-size: 16px; color: var(--text); }
.muted { color: var(--muted); }
.mini-card p { font-size: 13px; margin: 0; line-height: 1.6; }

/* ── About band ── */
.about-band {
  background: #07090f;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 24px;
}
.about-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}
.about-text { flex: 1; }
.about-text h2 { font-size: 22px; margin: 0 0 12px; color: #fff; }
.about-text p { font-size: 14px; line-height: 1.75; color: var(--muted); margin: 0 0 10px; }
.about-text .small { font-size: 12px; }
.about-nl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nl-logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0cffc0, #2affd6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: #041018;
  letter-spacing: 1px;
}
.nl-label {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

/* ── Footer ── */
.site-footer {
  padding: 28px 24px;
  background: #040508;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}
.footer-sub { font-size: 11px; color: rgba(154,166,178,0.5); margin-top: 3px; }
.footer-links { display: flex; gap: 8px; align-items: center; font-size: 12px; }
.footer-links .sep { opacity: 0.3; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .featured { grid-template-columns: 1fr; }
  .about-inner { flex-direction: column; }
}
@media (max-width: 600px) {
  .studio-title { letter-spacing: 2px; }
  .game-title { font-size: 32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
