/* ═══════════════════════════════════════════════════════
   PRICETRADAMUS — styles.css
   Brand palette: deep navy #080910, gold #F0A500, crystal-cyan #00D4FF
   ═══════════════════════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  --bg-base:       #080910;
  --bg-navy:       #0D1129;
  --bg-card:       #10132B;
  --bg-elevated:   #161A3A;

  --gold:          #F0A500;
  --gold-dark:     #C8860A;
  --gold-muted:    #A3700A;
  --gold-glow:     rgba(240, 165, 0, 0.18);

  --cyan:          #00D4FF;
  --cyan-dim:      #00A8CC;
  --cyan-glow:     rgba(0, 212, 255, 0.15);

  --buy-green:     #22C55E;
  --buy-glow:      rgba(34, 197, 94, 0.15);
  --wait-amber:    #F59E0B;
  --wait-glow:     rgba(245, 158, 11, 0.15);

  --text-primary:  #F0EDE8;
  --text-muted:    #8B8FA8;
  --text-dim:      #4A4E6A;

  --border-subtle: rgba(240, 237, 232, 0.06);
  --border-card:   rgba(240, 237, 232, 0.1);

  --shadow-gold:   0 0 40px rgba(240, 165, 0, 0.12), 0 4px 24px rgba(0,0,0,0.5);
  --shadow-cyan:   0 0 40px rgba(0, 212, 255, 0.12), 0 4px 24px rgba(0,0,0,0.5);
  --shadow-card:   0 2px 8px rgba(0,0,0,0.4), 0 12px 40px rgba(0,0,0,0.3);

  --radius-card:   16px;
  --radius-sm:     8px;

  --space-section: clamp(48px, 6vw, 88px);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold-muted) var(--bg-navy);
  scrollbar-width: thin;
  scrollbar-gutter: stable;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.dm-mono {
  font-family: 'DM Mono', monospace;
}

/* ─── Skip link ─── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: #000;
  padding: 0.5rem 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 4px;
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

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

/* ─── Background orbs ─── */
.bg-orbs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  animation: orbFloat 12s ease-in-out infinite alternate;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  top: 30%; right: -150px;
  animation-delay: -4s;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  bottom: -100px; left: 30%;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.08); }
}

/* ─── Section utilities ─── */
.section-inner {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.heading-accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Buttons ─── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0800;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
  border: none;
}
.btn-gold:hover  { transform: translateY(-2px); box-shadow: 0 0 60px rgba(240,165,0,0.25), 0 8px 30px rgba(0,0,0,0.5); }
.btn-gold:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-gold:active { transform: scale(0.98); }

.btn-gold-lg {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0800;
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
}
.btn-gold-lg:hover  { transform: translateY(-3px); box-shadow: 0 0 80px rgba(240,165,0,0.3), 0 12px 40px rgba(0,0,0,0.5); }
.btn-gold-lg:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-gold-lg:active { transform: scale(0.98); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--border-card);
  color: var(--text-primary);
  font-family: 'DM Mono', monospace;
  font-size: 0.875rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-outline:hover       { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-outline:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-outline:active      { transform: scale(0.98); }

.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-card);
  color: var(--text-primary);
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-outline-lg:hover       { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-outline-lg:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-outline-lg:active      { transform: scale(0.98); }

/* ═══════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 9, 16, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  height: 110px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo-link { flex-shrink: 0; display: flex; align-items: center; padding: 8px 12px; }
.nav-logo  { height: 96px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-link:hover        { color: var(--text-primary); background: var(--border-subtle); }
.nav-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.nav-cta-group { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

/* ─── Nav search form ─── */
.nav-search-form { flex-shrink: 0; }

.nav-search-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.nav-search-wrap:focus-within { border-color: rgba(240,165,0,0.35); }

.nav-search-icon {
  color: var(--text-dim);
  margin-left: 0.65rem;
  flex-shrink: 0;
  pointer-events: none;
}

.nav-search-input {
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: 'DM Mono', monospace;
  font-size: 0.775rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.5rem;
  width: 180px;
}
.nav-search-input::placeholder { color: var(--text-dim); }
input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }

.nav-search-submit {
  border-left: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0 0.65rem;
  display: flex;
  align-items: center;
  align-self: stretch;
  transition: color 0.15s ease, background 0.15s ease;
  min-width: 36px;
}
.nav-search-submit:hover        { color: var(--gold); background: var(--gold-glow); }
.nav-search-submit:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

@media (max-width: 900px) {
  .nav-search-form { display: none; }
  .nav-inner { height: 80px; }
  .nav-logo  { height: 64px; }
}

/* ─── Search results page ─── */
.search-page {
  padding-top: 110px;
  min-height: 100vh;
}

.search-page-top {
  background: linear-gradient(180deg, rgba(13,17,41,0.9) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.5rem 0 1.75rem;
}

.search-page-top .section-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.search-page-form { width: 100%; }

.search-page-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  overflow: hidden;
  max-width: 680px;
  transition: border-color 0.15s ease;
}
.search-page-input-wrap:focus-within { border-color: rgba(240,165,0,0.4); }

.search-page-icon {
  color: var(--text-dim);
  margin-left: 1rem;
  flex-shrink: 0;
  pointer-events: none;
}

.search-page-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: 'DM Mono', monospace;
  font-size: 0.9rem;
  padding: 0.875rem 0.75rem;
}
.search-page-input::placeholder { color: var(--text-dim); }

.search-page-submit {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-left: 1px solid var(--border-subtle);
  padding: 0 1.25rem;
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  min-height: 44px;
}
.search-page-submit:hover        { color: var(--gold); background: var(--gold-glow); }
.search-page-submit:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.search-results-bar {
  padding: 1.25rem 0;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 0;
}

.search-results-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.search-results-title strong { color: var(--text-primary); font-weight: 500; }

.search-results-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: auto;
  white-space: nowrap;
}

.search-results-section {
  padding-bottom: var(--space-section);
}

.search-results-section .section-inner { max-width: 1600px; }

/* Search result card — platform pills */
.search-result-card { cursor: pointer; }
.search-result-card:hover { border-color: rgba(240,165,0,0.2); }
.search-result-card:hover .pf-card-cta { color: var(--gold); }

/* Feed result card — clickable (hover handled by .feed-card verdict variants above) */
.feed-result-card { cursor: pointer; }
.feed-result-card:hover .pf-card-cta { color: var(--gold); }

.sr-plat-pills {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  margin: 0.3rem 0 0.6rem;
}

.sr-plat-pill {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
}
.sr-plat-pill:hover        { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: var(--text-primary); }
.sr-plat-pill:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.sr-plat-pill.sr-plat-pill-active { background: rgba(240,165,0,0.12); border-color: var(--gold); color: var(--gold); }

.search-no-query, .search-loading, .search-empty, .search-error {
  grid-column: 1 / -1;
  padding: 3rem 0;
  color: var(--text-muted);
  font-family: 'DM Mono', monospace;
  font-size: 0.875rem;
  text-align: center;
}
.search-no-query { color: var(--text-muted); }

.nav-link-ghost {
  font-family: 'DM Mono', monospace;
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color 0.15s ease;
}
.nav-link-ghost:hover        { color: var(--text-primary); }
.nav-link-ghost:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.btn-pro {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0800;
  font-family: 'DM Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-pro:hover        { transform: translateY(-1px); box-shadow: 0 0 24px rgba(240,165,0,0.3); }
.btn-pro:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-pro:active       { transform: scale(0.97); }
.btn-pro-icon { font-size: 0.65rem; }

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: 6px;
  min-width: 44px; min-height: 44px;
  justify-content: center; align-items: center;
}
.mobile-menu-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.hamburger-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: rgba(10, 11, 20, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
  }
  .nav-links.nav-open { display: flex; }
  .nav-link {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 8px;
  }
  .nav-cta-group { display: none; }
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  z-index: 2;
  padding-top: 148px;
  padding-bottom: var(--space-section);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero canvas star field */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Hero orbital rings */
.hero-orbital {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.orbital-ring {
  position: absolute;
  border-radius: 50%;
  animation: orbitalSpin linear infinite;
}

.orbital-ring-1 {
  width: 700px; height: 240px;
  border: 1px solid rgba(0, 212, 255, 0.08);
  animation-duration: 55s;
}

.orbital-ring-2 {
  width: 1200px; height: 460px;
  border: 1px solid rgba(240, 165, 0, 0.055);
  animation-duration: 90s;
  animation-direction: reverse;
}

.orbital-ring-3 {
  width: 1700px; height: 640px;
  border: 1px solid rgba(124, 58, 237, 0.04);
  animation-duration: 140s;
}

@keyframes orbitalSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 4.5vw, 4.75rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.1s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 800px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.2s;
}
.hero-sub strong { color: var(--text-primary); font-weight: 700; }

/* Oracle search */
.oracle-search-container {
  position: relative;
  width: 100%;
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.3s;
}

.crystal-ball-ring {
  position: absolute;
  inset: -20px;
  pointer-events: none;
  z-index: 0;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  animation: ringExpand 3s ease-in-out infinite;
}
.ring-1 { inset: 20px; opacity: 0.08; animation-delay: 0s; }
.ring-2 { inset: 10px; opacity: 0.05; animation-delay: 0.5s; }
.ring-3 { inset: 0;    opacity: 0.03; animation-delay: 1s; }

@keyframes ringExpand {
  0%, 100% { transform: scale(1);   opacity: 0.08; }
  50%       { transform: scale(1.02); opacity: 0.04; }
}

.oracle-form { position: relative; z-index: 1; }

.search-input-wrap {
  display: flex;
  align-items: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-card);
}
.search-input-wrap:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.12), var(--shadow-card);
}

.search-icon {
  padding: 0 1rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.oracle-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: 'DM Mono', monospace;
  font-size: 0.9375rem;
  padding: 1rem 0;
  min-width: 0;
}
.oracle-input::placeholder { color: var(--text-dim); }

.oracle-submit-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0800;
  font-family: 'DM Mono', monospace;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  flex-shrink: 0;
  transition: filter 0.15s ease;
  min-height: 44px;
}
.oracle-submit-btn:hover        { filter: brightness(1.1); }
.oracle-submit-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.oracle-submit-btn:active       { filter: brightness(0.95); }
.btn-arrow { transition: transform 0.2s ease; }
.oracle-submit-btn:hover .btn-arrow { transform: translateX(3px); }

.search-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
  text-align: center;
}

/* Search platform filter tabs */
.search-platform-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.search-plat-btn {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.search-plat-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  color: var(--text-primary);
}

.search-plat-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.search-plat-btn.search-plat-active {
  background: rgba(240,165,0,0.12);
  border-color: var(--gold);
  color: var(--gold);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.4s;
}

.stat-item { display: flex; flex-direction: column; gap: 0.25rem; }

.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.stat-pct {
  font-size: 1.1rem;
  color: var(--gold);
  margin-left: 2px;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* Verdict preview cards */
.verdict-preview-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.5s;
}

.verdict-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  display: flex;
  flex-direction: column;
}
.verdict-card:hover { transform: translateY(-4px); }

.verdict-wait { border-color: rgba(245, 158, 11, 0.2); }
.verdict-buy  { border-color: rgba(34, 197, 94, 0.2); box-shadow: 0 0 30px rgba(34,197,94,0.06), var(--shadow-card); }

.verdict-card-top {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.verdict-cover {
  position: relative;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}
.verdict-cover img { border-radius: 6px; }
.cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6));
}

.verdict-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
}

.platform-badge {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  align-self: flex-start;
}

.verdict-game-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.verdict-price-row { display: flex; align-items: center; gap: 0.5rem; }

.current-price {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.predicted-price {
  font-family: 'DM Mono', monospace;
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 500;
}

.all-time-low {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--buy-green);
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.verdict-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.verdict-wait-badge { background: var(--wait-glow); border: 1px solid rgba(245,158,11,0.25); color: var(--wait-amber); }
.verdict-buy-badge  { background: var(--buy-glow);  border: 1px solid rgba(34,197,94,0.25);  color: var(--buy-green); }
.verdict-icon { font-size: 1rem; }
.verdict-text { font-weight: 600; letter-spacing: 0.1em; }

.verdict-details { display: flex; flex-direction: column; gap: 0.6rem; }

.confidence-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.confidence-bar-wrap {
  flex: 1;
  height: 4px;
  background: var(--border-subtle);
  border-radius: 2px;
  overflow: hidden;
}
.confidence-bar {
  height: 100%;
  width: var(--conf);
  background: linear-gradient(90deg, var(--wait-amber), #f97316);
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.25,1,0.5,1);
}
.confidence-bar-buy {
  background: linear-gradient(90deg, var(--buy-green), #16a34a);
}
.confidence-pct { color: var(--text-primary); font-weight: 500; min-width: 2.5rem; text-align: right; }

.drop-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}
.drop-label { color: var(--text-muted); }
.drop-value { font-weight: 500; }
.drop-value.gold  { color: var(--gold); }
.drop-value.muted { color: var(--text-muted); }

.verdict-why,
.feed-why {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: auto;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

@media (max-width: 900px) {
  .hero-section {
    min-height: auto;
    padding-top: 112px;
  }
  .oracle-search-container { max-width: 100%; }
  .search-input-wrap { width: 100%; box-sizing: border-box; }
  .oracle-submit-btn { padding: 1rem 1.1rem; font-size: 0.8rem; }
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.5rem; }
  .orbital-ring-2, .orbital-ring-3 { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .orbital-ring { animation: none; }
}

@media (max-width: 480px) {
  .oracle-submit-btn .dm-mono { display: none; }
  .oracle-submit-btn { padding: 1rem; }
  .hero-stats { gap: 0.75rem; }
  .stat-num { font-size: 1.25rem; }
  .stat-divider { height: 28px; }
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════ */
.how-section {
  position: relative;
  z-index: 2;
  padding: var(--space-section) 0;
  background: linear-gradient(180deg, transparent, rgba(13,17,41,0.6) 50%, transparent);
}
.how-section .section-inner { max-width: 1200px; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  counter-reset: steps;
}

@media (max-width: 700px) {
  .how-steps { grid-template-columns: 1fr; }
}

.how-step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.how-step.card-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease;
}
.how-step:hover { border-color: rgba(240,165,0,0.25); transform: translateY(-4px); }

.step-number {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.step-icon {
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.step-title {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   PROPHECY FEED
   ═══════════════════════════════════════════════════════ */
.feed-section {
  position: relative;
  z-index: 2;
  padding: var(--space-section) 0;
}

.feed-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--buy-green);
  box-shadow: 0 0 8px var(--buy-green);
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--buy-green); }
  50%       { opacity: 0.6; box-shadow: 0 0 12px var(--buy-green); }
}

.feed-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  border: 1px solid var(--border-card);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  min-height: 44px;
}
.filter-btn:hover        { color: var(--text-primary); border-color: var(--border-card); background: var(--bg-elevated); }
.filter-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.filter-active           { color: var(--gold); border-color: var(--gold); background: var(--gold-glow); }

.feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
@media (max-width: 1100px) { .feed-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .feed-grid { grid-template-columns: 1fr; } }

.feed-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(16px);
  /* isolation prevents border-radius clipping glitch when transform fires */
  isolation: isolate;
}
.feed-card.card-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.feed-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 165, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
/* Verdict-aware hover glows */
.feed-card.pf-buy:hover {
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.12), 0 20px 60px rgba(0, 0, 0, 0.45);
}
.feed-card.pf-wait:hover {
  border-color: rgba(240, 165, 0, 0.35);
  box-shadow: 0 0 40px rgba(240, 165, 0, 0.1), 0 20px 60px rgba(0, 0, 0, 0.45);
}
.feed-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.feed-card-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.feed-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.feed-card:hover .feed-card-img { transform: scale(1.04); }

.feed-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10,11,20,0.9) 100%);
}

.feed-platform-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(8,9,20,0.85);
  border: 1px solid rgba(0,212,255,0.35);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}

.feed-verdict-chip {
  position: absolute;
  bottom: 0.75rem; right: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}
.wait-chip { background: rgba(8,9,20,0.85); border: 1px solid rgba(245,158,11,0.45); color: var(--wait-amber); }
.buy-chip  { background: rgba(8,9,20,0.85); border: 1px solid rgba(34,197,94,0.45);  color: var(--buy-green); }

.feed-card-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }

.feed-game-title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-price-line {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.feed-price-block   { display: flex; flex-direction: column; gap: 0.1rem; }
.feed-price-label   { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.feed-current-price { font-size: 0.8rem; color: var(--text-muted); }
.feed-arrow         { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.75rem; }
.feed-predicted-price { font-size: 0.95rem; font-weight: 500; color: var(--gold); }
.feed-predicted-price.all-time { font-size: 0.7rem; color: var(--buy-green); background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); padding: 0.1rem 0.4rem; border-radius: 3px; }

.feed-meta { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding-bottom: 0.75rem; }

.feed-confidence {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  flex: 1;
}
.feed-confidence strong { color: var(--text-muted); }

.mini-bar-wrap {
  width: 48px; height: 3px;
  background: var(--border-subtle);
  border-radius: 2px;
  overflow: hidden;
}
.mini-bar {
  height: 100%;
  width: var(--conf);
  background: linear-gradient(90deg, var(--wait-amber), #f97316);
  border-radius: 2px;
}
.mini-bar-buy { background: linear-gradient(90deg, var(--buy-green), #16a34a); }

.feed-date { font-size: 0.7rem; color: var(--text-muted); white-space: nowrap; }
.feed-date.gold { color: var(--gold); font-weight: 500; }

.feed-cta { text-align: center; margin-top: 2.5rem; }

/* ═══════════════════════════════════════════════════════
   PRO PROPHET
   ═══════════════════════════════════════════════════════ */
.pro-section {
  position: relative;
  z-index: 2;
  padding: var(--space-section) 0;
  overflow: hidden;
}

.pro-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(240,165,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pro-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.pro-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(240,165,0,0.3);
  background: rgba(240,165,0,0.08);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.pro-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.pro-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(240,165,0,0.25);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: 0 0 60px rgba(240,165,0,0.07), var(--shadow-card);
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.75rem;
}
.price-dollar {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 0.5rem;
}
.price-amount {
  font-family: 'Cinzel', serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
}
.price-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: left;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.pricing-features li span { color: var(--gold); font-size: 0.65rem; }

.btn-pro-lg {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0800;
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 1.1rem 2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
  margin-bottom: 1rem;
}
.btn-pro-lg:hover        { transform: translateY(-2px); box-shadow: 0 0 60px rgba(240,165,0,0.3), 0 8px 30px rgba(0,0,0,0.5); }
.btn-pro-lg:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-pro-lg:active       { transform: scale(0.98); }

.pricing-fine {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq-section {
  position: relative;
  z-index: 2;
  padding: var(--space-section) 0;
}
.faq-section .section-inner { max-width: 1200px; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  align-items: start;
}
@media (max-width: 700px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item:hover { border-color: rgba(240,165,0,0.2); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  transition: color 0.15s ease;
  min-height: 44px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
.faq-question:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.faq-chevron {
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 300;
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--border-subtle);
}
.faq-answer p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 1rem;
}

/* ═══════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════ */
.final-cta {
  position: relative;
  z-index: 2;
  padding: var(--space-section) 0;
  text-align: center;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.06) 0%, rgba(240,165,0,0.04) 40%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner { text-align: center; }

.cta-crystal {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 0 20px rgba(0,212,255,0.4));
  animation: crystalFloat 4s ease-in-out infinite alternate;
}

@keyframes crystalFloat {
  from { transform: translateY(0) rotate(-3deg); }
  to   { transform: translateY(-12px) rotate(3deg); }
}

.cta-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  z-index: 2;
  background: var(--bg-navy);
  border-top: 1px solid var(--border-subtle);
  padding-top: 4rem;
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-subtle);
}
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

.footer-tagline {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.kofi-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.kofi-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}
.kofi-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 500px) { .footer-nav { grid-template-columns: repeat(2, 1fr); } }

.footer-col-title {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.footer-link:hover        { color: var(--gold); }
.footer-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }

.footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 5vw, 3rem);
  text-align: center;
}

.footer-copy, .footer-updated {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .how-step, .feed-card, .leaderboard-row {
    opacity: 1;
    transform: none;
  }
}

/* ─── Utility ─── */
.gold { color: var(--gold); }
.muted { color: var(--text-muted); }

/* ─── Price trio (Retail → Now → Expected) ─── */
.verdict-price-trio {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  flex-wrap: nowrap;
  margin-top: 0.2rem;
  min-width: 0;
}
.price-trio-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.price-trio-label {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.price-trio-val {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-primary);
}
.price-trio-val.trio-retail {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.price-trio-val.trio-expected { color: var(--gold); }
.price-trio-val.trio-expected-green { color: var(--buy-green); }
.price-trio-sep {
  color: var(--text-muted);
  font-size: 0.65rem;
  padding-bottom: 1px;
}

/* Feed retail price */
.feed-retail-price {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Game page verdict panel retail price */
.vp-price-retail {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.1;
}

/* ═══════════════════════════════════════════════════════
   VERDICT CARD LINK (index.html — clickable cards)
   ═══════════════════════════════════════════════════════ */
.verdict-card-link,
.feed-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}
.feed-card-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-card);
}
.feed-card-link .feed-card { flex: 1; }
.feed-card-link:hover .feed-card {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(240,165,0,0.07);
}
.verdict-card-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-card);
}
.verdict-card-link:hover .verdict-card {
  transform: translateY(-6px);
  border-color: rgba(240, 165, 0, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(240, 165, 0, 0.08);
}
.verdict-card-link:hover .verdict-card .pf-card-cta { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   GAME PAGE — LOADING STATE
   ═══════════════════════════════════════════════════════ */
.game-loading {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-base);
}

.game-loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.game-loading-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: spinnerRotate 1.4s linear infinite;
}
.spinner-ring-1 {
  inset: 0;
  border-top-color: var(--gold);
  animation-duration: 1.4s;
}
.spinner-ring-2 {
  inset: 10px;
  border-top-color: var(--cyan);
  animation-duration: 1.0s;
  animation-direction: reverse;
}

@keyframes spinnerRotate {
  to { transform: rotate(360deg); }
}

.spinner-crystal {
  font-size: 1.75rem;
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5));
  animation: crystalFloat 3s ease-in-out infinite alternate;
}

.game-loading-text {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   GAME PAGE — ERROR STATE
   ═══════════════════════════════════════════════════════ */
.game-error {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 130px;
}

.game-error-inner {
  text-align: center;
  max-width: 480px;
}

.game-error-icon {
  font-size: 3rem;
  color: var(--wait-amber);
  margin-bottom: 1.5rem;
  display: block;
}

.game-error-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.game-error-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   GAME PAGE — HERO
   ═══════════════════════════════════════════════════════ */
.game-hero {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-top: 110px; /* nav height */
  min-height: 420px;
}

.game-hero-bg {
  position: absolute;
  inset: -20px;
  background-image: var(--hero-cover, none);
  background-size: cover;
  background-position: center top;
  filter: blur(40px) saturate(0.7);
  transform: scale(1.12);
  z-index: 0;
  opacity: 0.45;
}

/* Sharp wide artwork — no blur, more height, stronger presence */
.game-hero-bg.has-artwork {
  inset: 0;
  filter: none;
  transform: none;
  opacity: 0.55;
  background-position: top center;
}
.game-hero.has-artwork {
  min-height: 520px;
}
.game-hero-overlay.has-artwork {
  background: linear-gradient(
    180deg,
    rgba(8, 9, 16, 0.25) 0%,
    rgba(8, 9, 16, 0.55) 50%,
    rgba(8, 9, 16, 0.97) 100%
  );
}

.game-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 9, 16, 0.55) 0%,
    rgba(8, 9, 16, 0.75) 40%,
    rgba(8, 9, 16, 0.95) 100%
  );
  z-index: 1;
}

.game-hero-topbar {
  position: relative;
  z-index: 2;
  padding-top: 1.5rem;
}

.game-topbar-inner {
  display: flex;
  align-items: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  background: rgba(8, 9, 16, 0.5);
  backdrop-filter: blur(8px);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.back-link:hover {
  color: var(--gold);
  border-color: rgba(240, 165, 0, 0.3);
  transform: translateX(-3px);
}
.back-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.back-link:active {
  transform: scale(0.97);
}

.game-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.game-hero-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-end;
}

@media (max-width: 600px) {
  .game-hero-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.game-cover-wrap {
  position: relative;
  flex-shrink: 0;
}

.game-cover-large {
  width: 160px;
  height: auto;
  border-radius: 10px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(0, 212, 255, 0.08);
  display: block;
}

@media (min-width: 600px) {
  .game-cover-large {
    width: 200px;
  }
}

.game-cover-shine {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.game-meta-hero {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}

.game-hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.game-title-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.05s;
}

.game-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

@media (max-width: 600px) {
  .game-chips-row { justify-content: center; }
}

.game-genre-chip {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-dim);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.18);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.game-platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

@media (max-width: 600px) {
  .game-platform-row { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   GAME PAGE — SECTIONS
   ═══════════════════════════════════════════════════════ */
.game-section {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.game-section + .game-section {
  border-top: 1px solid var(--border-subtle);
}

/* ═══════════════════════════════════════════════════════
   GAME PAGE — VERDICT PANEL (full section design)
   ═══════════════════════════════════════════════════════ */
.game-verdict-grid {
  display: block;
  margin-top: 2rem;
}

/* Platform tabs */
.vp-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.vp-tab {
  padding: 0.45rem 1.4rem;
  border-radius: 2rem;
  border: 1px solid var(--border-card);
  background: transparent;
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.vp-tab:hover { border-color: rgba(240,165,0,0.3); color: var(--text-muted); }
.vp-tab-active { background: rgba(240,165,0,0.08); border-color: rgba(240,165,0,0.4); color: var(--gold); }
.vp-tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2rem; }

/* Verdict panel */
.vp-panel {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border-card);
}
.vp-buy  { background: radial-gradient(ellipse at top left, rgba(34,197,94,0.05) 0%, rgba(255,255,255,0.012) 55%); }
.vp-wait { background: radial-gradient(ellipse at top left, rgba(240,165,0,0.05) 0%, rgba(255,255,255,0.012) 55%); }

/* Accent line at top */
.vp-accent-bar { height: 2px; width: 100%; }
.vp-buy  .vp-accent-bar { background: linear-gradient(90deg, transparent, #22c55e 40%, transparent); }
.vp-wait .vp-accent-bar { background: linear-gradient(90deg, transparent, #F0A500 40%, transparent); }

/* Panel body */
.vp-body {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding: 2.5rem;
}
.vp-left  { flex: 1; min-width: 0; }
.vp-right { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; flex-shrink: 0; width: 220px; }

/* Stamp */
.vp-stamp { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.vp-stamp-icon { font-size: 2.25rem; line-height: 1; }
.vp-stamp-text { display: flex; flex-direction: column; gap: 0.1rem; }
.vp-verdict-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.vp-verdict-word {
  font-size: 2.25rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  line-height: 1;
}
.vp-buy  .vp-verdict-word { color: #22c55e; }
.vp-wait .vp-verdict-word { color: #F0A500; }

/* Price row */
.vp-price-row { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.vp-price-block { display: flex; flex-direction: column; gap: 0.2rem; }
.vp-price-label { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
.vp-price-current {
  font-size: 1.5rem;
  color: var(--text-dim);
  line-height: 1.1;
}
.vp-price-current.vp-green { color: #22c55e; font-size: 2rem; }
.vp-price-predicted { font-size: 2.5rem; color: var(--gold); font-weight: 500; line-height: 1.1; }
.vp-price-arrow { color: rgba(255,255,255,0.18); margin-top: 0.75rem; flex-shrink: 0; }

.vp-savings {
  font-size: 0.68rem;
  color: var(--buy-green);
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

/* Drop date */
.vp-drop-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.vp-drop-val.vp-gold { color: var(--gold); font-weight: 500; }

/* Reasoning */
.vp-reasoning {
  margin: 0;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.025);
  border-left: 2px solid rgba(240,165,0,0.22);
  border-radius: 0 0.5rem 0.5rem 0;
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-style: italic;
}

/* Gauge */
.vp-gauge-wrap { width: 170px; }
.vp-gauge-svg  { width: 100%; height: auto; overflow: visible; }

/* Stats grid */
.vp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  width: 100%;
}
.vp-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  text-align: center;
  padding: 0.75rem 0.4rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 0.6rem;
}
.vp-stat-val {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
}
.vp-stat-val.vp-gold { color: var(--gold); }
.vp-stat-label {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 800px) {
  .vp-body { flex-direction: column; padding: 1.75rem; gap: 2rem; }
  .vp-right { width: 100%; flex-direction: row; align-items: flex-start; }
  .vp-gauge-wrap { width: 140px; flex-shrink: 0; }
  .vp-stats { flex: 1; }
  .vp-verdict-word { font-size: 1.75rem; }
  .vp-price-current { font-size: 1.6rem; }
  .vp-price-predicted { font-size: 2rem; }
}
@media (max-width: 480px) {
  .vp-right { flex-direction: column; align-items: center; }
  .vp-gauge-wrap { width: 160px; }
}

.verdict-card-full {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.verdict-card-full.card-visible {
  opacity: 1;
  transform: translateY(0);
}
.verdict-card-full:hover {
  transform: translateY(-4px);
}

.verdict-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.verdict-price-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-navy);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.verdict-price-main {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.verdict-price-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.verdict-price-current {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
}

.verdict-price-predicted {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.verdict-price-arrow {
  color: var(--text-dim);
  flex-shrink: 0;
}

.verdict-stats-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
}

.verdict-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.verdict-stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.verdict-stat-val {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   GAME PAGE — PRICE HISTORY
   ═══════════════════════════════════════════════════════ */
.history-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  margin-top: 1.5rem;
}

.history-tab {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border-card);
  background: transparent;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  min-height: 44px;
}
.history-tab:hover {
  color: var(--text-primary);
  background: var(--bg-elevated);
  border-color: var(--border-card);
}
.history-tab.active {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-glow);
}
.history-tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.history-tab:active {
  transform: scale(0.97);
}

.history-chart-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.history-chart-container {
  width: 100%;
  overflow-x: auto;
  user-select: none;
}
.chart-sale-dot {
  cursor: crosshair;
  pointer-events: none;
}

.history-no-data {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 2rem;
  text-align: center;
  letter-spacing: 0.04em;
}

.history-events-list {
  margin-top: 0.5rem;
}

.history-events-header {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.history-events-ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.history-event-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.7rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, background 0.2s ease;
  opacity: 0;
  transform: translateX(-8px);
}
.history-event-row.card-visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.2s ease, background 0.2s ease;
}
.history-event-row:hover {
  border-color: rgba(240, 165, 0, 0.2);
  background: var(--bg-elevated);
}

.history-event-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  min-width: 120px;
}

.history-event-price {
  font-size: 0.9rem;
  font-weight: 500;
}

.history-event-discount {
  font-size: 0.75rem;
  color: var(--buy-green);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 0.1rem 0.45rem;
  border-radius: 4px;
}

.history-event-original {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.history-no-sales {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
}

/* ═══════════════════════════════════════════════════════
   GAME PAGE — STORE LINKS
   ═══════════════════════════════════════════════════════ */
.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.store-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, background 0.2s ease;
  min-height: 44px;
}
.store-link-btn:hover {
  border-color: var(--gold);
  background: var(--bg-elevated);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(240, 165, 0, 0.08);
}
.store-link-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.store-link-btn:active {
  transform: scale(0.98);
}

.store-link-icon {
  color: var(--text-muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.store-link-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.store-link-label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.store-link-name {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.store-link-arrow {
  color: var(--text-dim);
  margin-left: auto;
  transition: transform 0.2s ease, color 0.2s ease;
}
.store-link-btn:hover .store-link-arrow {
  transform: translate(2px, -2px);
  color: var(--gold);
}

.store-link-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: auto;
}
.store-link-price.slp-buy { color: var(--buy-green); }

.store-link-verdict {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
}
.slv-buy  { background: rgba(34,197,94,0.12);  border: 1px solid rgba(34,197,94,0.25);  color: var(--buy-green); }
.slv-wait { background: rgba(240,165,0,0.12);  border: 1px solid rgba(240,165,0,0.25);  color: var(--wait-amber); }

/* ─── Digital / Physical tab toggle ─── */
.store-type-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.25rem;
  width: fit-content;
}
.store-type-tab {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 5px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  min-height: 32px;
  transition: background 0.18s ease, color 0.18s ease;
}
.store-type-tab:hover {
  color: var(--text-bright);
}
.store-type-tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.store-type-tab.store-type-active {
  background: var(--bg-elevated);
  color: var(--gold);
  border: 1px solid var(--border-subtle, rgba(240,165,0,0.2));
}

/* ─── Physical retailer buttons ─── */
.store-link-btn.phys-amazon  { --retailer-accent: #ff9900; }
.store-link-btn.phys-bestbuy { --retailer-accent: #0046be; }
.store-link-btn.phys-walmart { --retailer-accent: #0071ce; }
.store-link-btn.phys-ebay    { --retailer-accent: #86b817; }

.store-links-physical {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.phys-retailer-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phys-retailer-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.phys-retailer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ═══════════════════════════════════════════════════════
   PROPHECY FEED PAGE (feed.html)
   ═══════════════════════════════════════════════════════ */

/* ─── Active nav link ─── */
.nav-link.nav-link-active {
  color: var(--gold);
  background: rgba(240, 165, 0, 0.08);
}

/* ─── Feed Hero ─── */
.pf-hero {
  position: relative;
  z-index: 2;
  padding-top: 148px;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pf-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.pf-hero-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 0.875rem;
}

.pf-hero-sub {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 520px;
}

.pf-hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}

.pf-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.pf-hero-stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}

.pf-stat-buy  { color: var(--buy-green); }
.pf-stat-wait { color: var(--gold); }

.pf-hero-stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pf-hero-stat-sep {
  width: 1px;
  height: 48px;
  background: var(--border-subtle);
}

@media (max-width: 900px) {
  .pf-hero { padding-top: 110px; padding-bottom: 2rem; }
  .pf-hero-inner { flex-direction: column; align-items: flex-start; gap: 1.75rem; }
  .pf-hero-stats { gap: 1.5rem; }
}

@media (max-width: 600px) {
  .pf-hero { padding-top: 100px; padding-bottom: 1.5rem; }
  .pf-hero-heading { font-size: clamp(1.75rem, 8vw, 2.5rem); margin-bottom: 0.5rem; }
  .pf-hero-sub { font-size: 0.9rem; }
  /* Stats: 2×2 grid on small screens */
  .pf-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    width: 100%;
  }
  .pf-hero-stat-sep { display: none; }
  .pf-hero-stat { align-items: center; }
  .pf-hero-stat-num { font-size: 1.75rem; }
}

/* ─── Sticky Controls ─── */
.pf-controls {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: rgba(8, 9, 16, 0.94);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--border-subtle);
}

.pf-controls-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  flex-wrap: wrap;
}

.pf-tab-group,
.pf-verdict-group,
.pf-sort-group {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.pf-sort-group { margin-left: auto; }

.pf-sort-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-right: 0.2rem;
  white-space: nowrap;
}

.pf-tab-sep {
  width: 1px;
  height: 20px;
  background: var(--border-subtle);
  flex-shrink: 0;
  margin: 0 0.25rem;
}

/* Shared tab/button styles */
.pf-tab,
.pf-verdict-tab,
.pf-sort-btn {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding: 0.375rem 0.8rem;
  border-radius: 6px;
  border: 1px solid transparent;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  min-height: 32px;
}

.pf-tab:hover,
.pf-verdict-tab:hover,
.pf-sort-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.pf-tab:focus-visible,
.pf-verdict-tab:focus-visible,
.pf-sort-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.pf-tab.pf-tab-active,
.pf-sort-btn.pf-sort-active {
  color: var(--gold);
  background: rgba(240, 165, 0, 0.1);
  border-color: rgba(240, 165, 0, 0.25);
}

.pf-verdict-tab.pf-verdict-tab-active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-card);
}

.pf-verdict-tab.pf-verdict-buy.pf-verdict-tab-active {
  color: var(--buy-green);
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
}

.pf-verdict-tab.pf-verdict-wait.pf-verdict-tab-active {
  color: var(--gold);
  background: rgba(240, 165, 0, 0.1);
  border-color: rgba(240, 165, 0, 0.3);
}

@media (max-width: 900px) {
  .pf-controls { top: 80px; }
  .pf-controls-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.35rem;
  }
  .pf-controls-inner::-webkit-scrollbar { display: none; }
  .pf-sort-group { margin-left: 0; }
  .pf-tab-sep    { display: none; }
}

/* Mobile dropdowns — hidden on desktop */
.pf-mobile-selects { display: none; }

.pf-select {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  padding: 0.65rem 2rem 0.65rem 0.85rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f0a500' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  cursor: pointer;
  transition: border-color 0.15s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pf-select:focus { outline: 2px solid var(--gold); outline-offset: 2px; border-color: var(--gold); }
.pf-select option { background: #0d1129; color: var(--text-primary); }

@media (max-width: 600px) {
  /* Hide button groups, show dropdowns */
  .pf-tab-group,
  .pf-verdict-group,
  .pf-sort-group,
  .pf-tab-sep { display: none; }

  .pf-mobile-selects {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    padding: 0.65rem 0.5rem;
  }
  .pf-mobile-filter-label {
    width: 100%;
  }
  .pf-select-sort { display: none; }
  .pf-mobile-filter-label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-shrink: 0;
  }

  .pf-controls .pf-controls-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ─── Feed Wrap ─── */
.pf-feed-wrap {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0 var(--space-section);
}
.pf-feed-wrap .section-inner {
  max-width: none;
  padding: 0 clamp(1.25rem, 3vw, 4rem);
}
.pf-controls .pf-controls-inner {
  max-width: none;
  padding-left: clamp(1.25rem, 3vw, 4rem);
  padding-right: clamp(1.25rem, 3vw, 4rem);
}

.pf-feed-status {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.pf-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

@media (max-width: 1100px) { .pf-feed-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .pf-feed-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .pf-feed-grid { grid-template-columns: 1fr; } }

/* ─── Feed Cards (pf-card wrapper) ─── */
.pf-card-link {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  border-radius: var(--radius-card);
  outline: none;
}

.pf-card-link:focus-visible .pf-card {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.pf-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease,
              border-color 0.25s ease;
  height: 100%;
}

.pf-card.pf-buy  { border-left: 3px solid rgba(34, 197, 94, 0.5); }
.pf-card.pf-wait { border-left: 3px solid rgba(240, 165, 0, 0.5); }

.pf-card-link:hover .pf-card.pf-buy {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.1), 0 16px 48px rgba(0, 0, 0, 0.5);
  border-color: rgba(34, 197, 94, 0.35);
}

.pf-card-link:hover .pf-card.pf-wait {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(240, 165, 0, 0.1), 0 16px 48px rgba(0, 0, 0, 0.5);
  border-color: rgba(240, 165, 0, 0.35);
}

/* Image zoom on card hover */
.pf-card-link:hover .pf-card-img { transform: scale(1.04); }

/* Savings badge (top-right of image, opposite platform badge) */
.pf-savings-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: rgba(34, 197, 94, 0.88);
  color: #021208;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* Cover art overlap */
.pf-cover-row {
  margin-top: -118px;
  margin-bottom: 0.65rem;
  position: relative;
  z-index: 2;
}

.pf-card-cover {
  width: 105px;
  height: 140px;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  border: 2px solid var(--bg-card);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
}

.pf-feed-grid .feed-game-title,
.feed-grid .feed-game-title {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  word-break: break-word;
  min-width: 0;
}

/* Card CTA row */
.pf-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.pf-card-link:hover .pf-card .pf-card-cta { color: var(--gold); }
.feed-card:hover .pf-card-cta { color: var(--gold); }
.feed-card-link:hover .feed-card .pf-card-cta { color: var(--gold); }


/* ─── Feed state messages ─── */
.pf-state-msg {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  padding: 5rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.pf-state-icon {
  font-size: 2.5rem;
  display: block;
}

@media (max-width: 480px) {
  /* Single column: make cards horizontal (image left, content right) */
  .feed-card,
  .pf-card {
    flex-direction: row;
  }
  .feed-card-img-wrap,
  .pf-card .feed-card-img-wrap {
    width: 110px;
    min-width: 110px;
    flex-shrink: 0;
  }
  .feed-card-img,
  .pf-card .feed-card-img {
    width: 110px;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
  }
  .feed-card-body,
  .pf-card .feed-card-body {
    padding: 0.85rem 0.85rem 0.85rem 0.9rem;
  }
  /* Hide cover art overlap on mobile — redundant with card image */
  .pf-cover-row { display: none; }
  /* Verdict chip: smaller */
  .feed-verdict-chip { font-size: 0.55rem; padding: 0.15rem 0.4rem; }
  /* Price line: compact */
  .feed-price-line { gap: 0.4rem; flex-wrap: wrap; }
  .feed-predicted-price { font-size: 0.85rem; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  .pf-card,
  .pf-card-link:hover .pf-card.pf-buy,
  .pf-card-link:hover .pf-card.pf-wait,
  .pf-card-link:hover .pf-card-img {
    transition: none;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════
   ORACLE PAGE
   ═══════════════════════════════════════════════════════ */
.oracle-page { padding-bottom: 6rem; }
.oracle-page .section-inner { max-width: 1200px; }

/* Hero */
.oracle-hero {
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
}
.oracle-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(0,212,255,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 60%, rgba(240,165,0,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.oracle-hero-inner { max-width: 860px; }
.oracle-hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
}
.oracle-hero-kicker::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--cyan);
  opacity: 0.6;
}
.oracle-hero-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.oracle-hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
}

/* Section scaffolding */
.oracle-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border-subtle);
}
.oracle-section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.oracle-section-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}
.oracle-section-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 2.5rem;
}

/* Confidence system */
.conf-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .conf-layout { grid-template-columns: 1fr; }
}
.conf-score-display {
  position: sticky;
  top: 6rem;
}

@media (max-width: 600px) {
  .conf-score-display { position: static; }
}
.conf-score-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 2rem;
  text-align: center;
}
.conf-score-num {
  font-family: 'Cinzel', serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--cyan);
  display: block;
  margin-bottom: 0.25rem;
}
.conf-score-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1.5rem;
}
.conf-bar-outer {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.conf-bar-inner {
  height: 100%;
  width: 35%;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  border-radius: 3px;
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.conf-floor-note {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Signal table */
.signal-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.signal-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.signal-row:first-child { border-top: 1px solid var(--border-subtle); }
.signal-name {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.signal-condition {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.signal-pts {
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
}
.signal-pts.pos  { color: var(--cyan); }
.signal-pts.neg  { color: #ff6b6b; }
.signal-pts.lock { color: var(--gold); }
.signal-pts.base { color: var(--text-muted); }

/* Verdicts */
.verdict-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 760px) {
  .verdict-grid { grid-template-columns: 1fr; }
}
.verdict-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 1.75rem;
}
.verdict-card.buy     { border-color: rgba(34,197,94,0.25); }
.verdict-card.wait    { border-color: rgba(240,165,0,0.25); }
.verdict-card.unknown { border-color: rgba(139,143,168,0.25); }
.verdict-chip-lg {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.verdict-chip-lg.buy     { background: rgba(34,197,94,0.15);  color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.verdict-chip-lg.wait    { background: rgba(240,165,0,0.15);  color: var(--gold); border: 1px solid rgba(240,165,0,0.3); }
.verdict-chip-lg.unknown { background: rgba(139,143,168,0.1); color: var(--text-muted); border: 1px solid rgba(139,143,168,0.2); }
.verdict-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.verdict-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.verdict-conditions {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.verdict-condition {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.verdict-condition::before {
  content: '→';
  flex-shrink: 0;
  color: var(--border-card);
}

/* Data sources */
.sources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .sources-grid { grid-template-columns: 1fr; }
}
.source-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 1.5rem;
}
.source-name {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}
.source-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CTA strip */
.oracle-cta {
  margin-top: 4rem;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.oracle-cta-text h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.oracle-cta-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Fade-in on load */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.fade-in:nth-child(2) { animation-delay: 0.08s; }
.fade-in:nth-child(3) { animation-delay: 0.16s; }
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { animation: none; opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════
   PRICE ALERT FORM (game.html)
   ═══════════════════════════════════════════════════════ */

.alert-card {
  background: var(--bg-card);
  border: 1px solid rgba(240, 165, 0, 0.18);
  border-radius: 14px;
  padding: 2rem;
  max-width: 560px;
}

.alert-desc {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.alert-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.alert-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

/* Platform pills */
.alert-plat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.alert-plat-pill {
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}

.alert-plat-pill:hover {
  border-color: rgba(240, 165, 0, 0.35);
  color: var(--text-primary);
}

.alert-plat-pill:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.alert-plat-pill.alert-plat-active {
  background: rgba(240, 165, 0, 0.1);
  border-color: rgba(240, 165, 0, 0.45);
  color: var(--gold);
}

/* Price input */
.alert-price-wrap {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  max-width: 180px;
  transition: border-color 0.18s;
}

.alert-price-wrap:focus-within {
  border-color: rgba(240, 165, 0, 0.45);
}

.alert-price-prefix {
  padding: 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  user-select: none;
}

.alert-price-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.65rem 0.75rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  width: 100px;
}

.alert-price-input::placeholder {
  color: rgba(139, 143, 168, 0.45);
}

/* Email input */
.alert-email-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.18s;
  max-width: 360px;
}

.alert-email-input::placeholder {
  color: rgba(139, 143, 168, 0.45);
}

.alert-email-input:focus {
  border-color: rgba(240, 165, 0, 0.45);
}

.alert-email-input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.alert-hint {
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  opacity: 0.7;
}

/* Submit button */
.alert-submit {
  align-self: flex-start;
  padding: 0.6rem 1.6rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0d1129;
  border: none;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.18s;
}

.alert-submit:hover:not(:disabled) {
  opacity: 0.88;
  transform: translateY(-1px);
}

.alert-submit:active:not(:disabled) {
  transform: translateY(0);
}

.alert-submit:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.alert-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Status messages */
.alert-status {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 0;
}

.alert-status-ok  { color: var(--buy-green); }
.alert-status-err { color: #f87171; }

@media (max-width: 480px) {
  .alert-card { padding: 1.5rem; }
  .alert-price-wrap { max-width: 100%; }
  .alert-email-input { max-width: 100%; }
}

