/* IF YOU'RE LOOKING THROUGH MY CODE, I DO NOT USE AI FOR MY CODE, I DESPISE AI, I ADD TAGS SO I CAN REMEMBER WHICH IS WHICH, I HAVE HORRIBLE MEMORY ISSUES*/

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

:root {
  --bg:        #0d0d0d;
  --bg-2:      #141414;
  --border:    #272727;
  --text:      #e0e0e0;
  --text-muted:#555;
  --header-h:  50px;
}

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
}

/* ── HEADER ─────────────────────────────────────────── */
.header {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  white-space: nowrap;
  transition: color 0.15s;
}
.brand:hover { color: var(--text); }

.page-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.header-spacer { flex: 1; }

/* ── SUB-NAV ─────────────────────────────────────────── */
.gta6-subnav {
  display: flex;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.gta6-subnav-item {
  padding: 0.55rem 1.25rem;
  font-size: 12px;
  font-family: inherit;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  letter-spacing: 0.02em;
}

.gta6-subnav-item:hover { color: var(--text); }
.gta6-subnav-item.active {
  color: var(--text);
  border-bottom-color: var(--text);
}

/* ── BANNER ─────────────────────────────────────────── */
.banner {
  width: 100%;
  background: #000;
  line-height: 0;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

/* ── COUNTDOWN ──────────────────────────────────────── */
.countdown-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1.5rem 4rem;
  text-align: center;
  gap: 1.5rem;
}

.release-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.countdown {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 90px;
}

.num {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

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

.sep {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.05;
  margin-top: 0.05em;
  user-select: none;
}

.sub-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ── STORE LINKS (shown after countdown hits zero) ─── */
.store-links {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.store-links.visible { display: flex; }

.store-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.store-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.store-btn {
  display: inline-block;
  padding: 0.65rem 1.75rem;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: opacity 0.15s, transform 0.15s;
}

.store-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.store-btn.ps {
  background: #003791;
  color: #fff;
}

.store-btn.xbox {
  background: #107c10;
  color: #fff;
}

/* ── MOBILE ─────────────────────────────────────────── */
@media (max-width: 600px) {
  .banner img { max-height: 260px; }
  .brand { display: none; }
  .unit { min-width: 64px; }
  .countdown { gap: 0.25rem; }
  .countdown-main { padding: 2.5rem 1rem 3rem; }
}
