/* Base */
:root {
  --bg: #09090c;
  --bg-soft: #111116;
  --panel: #17171d;
  --panel-2: #1d1d24;
  --border: #2b2b34;
  --text: #f7f7f8;
  --muted: #aaaab5;
  --accent: #ffcc00;
  --success: #7dde82;
  --danger: #ff7373;
  --radius: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth;  overflow-y: scroll;
  scrollbar-gutter: stable; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 780px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: "Oswald", sans-serif;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(3.5rem, 9vw, 7rem); line-height: .95; }
h2 { font-size: clamp(2rem, 5vw, 4rem); line-height: 1; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #050505; }
.button-secondary { border-color: var(--border); background: transparent; }
.text-link { color: var(--accent); font-weight: 700; text-decoration: none; }
.section { padding: 90px 0; }
.section-alt { background: var(--bg-soft); }
.section-text { max-width: 720px; color: var(--muted); font-size: 1.05rem; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.feature-card, .preview-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--panel), #101014);
  padding: 28px;
}
.feature-card p, .preview-card p { color: var(--muted); }
.card-label { color: var(--accent) !important; font-weight: 700; font-size: .8rem; letter-spacing: .12em; }
.simple-page { min-height: 70vh; padding: 160px 0 100px; }
.coming-soon-badge {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255,204,0,.1);
  font-weight: 700;
}

/* Vault */
.vault-hero {
  padding: 150px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(255,204,0,.12), transparent 34%),
    var(--bg);
}
.vault-intro { max-width: 720px; color: var(--muted); font-size: 1.05rem; }
.vault-controls { padding: 42px 0; background: var(--bg-soft); }
.vault-search { margin-bottom: 30px; }
.vault-search label { display: block; margin-bottom: 10px; font-weight: 700; }
.vault-search input {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel);
  color: var(--text);
  font: inherit;
}
.vault-search input:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.vault-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
}
.stat-number {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-family: "Anton", sans-serif;
  font-size: 2.4rem;
}
.stat-label { color: var(--muted); font-size: .9rem; }
.vault-collection { padding: 74px 0 100px; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.set-progress-text { margin: 0; color: var(--muted); }
.progress-bar {
  height: 10px;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 999px;
  background: #25252d;
}
.progress-value {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width .5s ease;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pokemon-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.pokemon-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 18px 36px rgba(0,0,0,.35);
}
.card-image {
  aspect-ratio: 5 / 7;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(145deg, #24242d, #111116);
  color: #7f7f8b;
  text-align: center;
  font-weight: 700;
}
.pokemon-card-content { padding: 20px; }
.pokemon-card-content h3 { margin: 5px 0 8px; font-size: 1.35rem; }
.pokemon-card-content p { margin-bottom: 12px; color: var(--muted); }
.card-number { color: var(--accent) !important; font-size: .8rem; font-weight: 700; }
.badge {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.badge-owned { background: rgba(76,175,80,.15); color: var(--success); }
.badge-missing { background: rgba(255,204,0,.12); color: var(--accent); }
.missing-card { opacity: .68; }
.no-results { display: none; margin-top: 30px; color: var(--muted); text-align: center; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; 
}

.closing-title span{
    color: var(--accent);
}
