/* ═══════════════════════════════════════════════════════
   GTA6HEIST — Vice City Dark Theme
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ─── CSS Variables ─── */
:root {
  --bg-base: #0a0612;
  --bg-surface: #14092a;
  --bg-card: #1a0f33;
  --bg-card-hover: #1f1440;
  --bg-overlay: rgba(10, 6, 18, 0.92);

  --neon-pink: #ff2a6d;
  --neon-cyan: #05d9e8;
  --neon-purple: #d300c5;
  --neon-orange: #ff9e1f;

  --status-confirmed: #00e676;
  --status-implied: #ffca28;
  --status-leaked: #ff9100;
  --status-rumored: #ff2a6d;
  --status-debunked: #78909c;

  --text-100: rgba(255, 255, 255, 1);
  --text-72: rgba(255, 255, 255, 0.72);
  --text-48: rgba(255, 255, 255, 0.48);
  --text-32: rgba(255, 255, 255, 0.32);

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-72);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── Scanlines Overlay ─── */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ─── Background Glows ─── */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(255, 42, 109, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(5, 217, 232, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(211, 0, 197, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-pink);
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-100);
  line-height: 1.2;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--neon-pink);
}

/* ═══════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 6, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 42, 109, 0.15);
  padding: 0 24px;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: white;
  box-shadow: 0 0 20px rgba(255, 42, 109, 0.3);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-100);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--neon-pink);
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-48);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition);
}

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

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

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */

.hero {
  position: relative;
  padding: 100px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 42, 109, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 42, 109, 0.1);
  border: 1px solid rgba(255, 42, 109, 0.25);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--neon-pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--neon-pink);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 42, 109, 0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(255, 42, 109, 0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 20px;
  position: relative;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-48);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ─── Countdown ─── */
.countdown-section {
  margin-bottom: 16px;
}

.countdown-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-32);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.countdown-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-100);
  line-height: 1;
  background: linear-gradient(180deg, var(--text-100) 40%, var(--text-48) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-label-unit {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-32);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

.countdown-separator {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-32);
  line-height: 1;
  align-self: flex-start;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.countdown-date {
  font-size: 14px;
  color: var(--text-32);
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════
   THE VAULT — Main Content
   ═══════════════════════════════════════════════════════ */

.vault {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.vault-header {
  margin-bottom: 40px;
}

.vault-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.vault-count {
  font-size: 14px;
  color: var(--text-32);
}

.vault-count strong {
  color: var(--neon-pink);
}

/* ─── Search ─── */
.search-wrapper {
  position: relative;
  margin-bottom: 24px;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-32);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-100);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search-input::placeholder {
  color: var(--text-32);
}

.search-input:focus {
  border-color: var(--neon-pink);
  box-shadow: 0 0 0 3px rgba(255, 42, 109, 0.15);
}

/* ─── Filters ─── */
.filters-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-row-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-32);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  min-width: 70px;
  flex-shrink: 0;
}

.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  padding: 6px 14px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-48);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  user-select: none;
}

.chip:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-72);
}

.chip.active {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  color: white;
  box-shadow: 0 0 16px rgba(255, 42, 109, 0.3);
}

.chip .chip-count {
  margin-left: 6px;
  opacity: 0.6;
}

/* Status chips colors */
.chip[data-status="confirmed"].active {
  background: var(--status-confirmed);
  border-color: var(--status-confirmed);
  color: #0a0612;
  box-shadow: 0 0 16px rgba(0, 230, 118, 0.3);
}
.chip[data-status="implied"].active {
  background: var(--status-implied);
  border-color: var(--status-implied);
  color: #0a0612;
  box-shadow: 0 0 16px rgba(255, 202, 40, 0.3);
}
.chip[data-status="leaked"].active {
  background: var(--status-leaked);
  border-color: var(--status-leaked);
  color: #0a0612;
  box-shadow: 0 0 16px rgba(255, 145, 0, 0.3);
}
.chip[data-status="rumored"].active {
  background: var(--status-rumored);
  border-color: var(--status-rumored);
  color: white;
  box-shadow: 0 0 16px rgba(255, 42, 109, 0.3);
}
.chip[data-status="debunked"].active {
  background: var(--status-debunked);
  border-color: var(--status-debunked);
  color: white;
  box-shadow: 0 0 16px rgba(120, 144, 156, 0.3);
}

/* ─── Sort ─── */
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.sort-select {
  padding: 8px 16px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text-72);
  cursor: pointer;
  outline: none;
  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='rgba(255,255,255,0.48)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.results-count {
  font-size: 13px;
  color: var(--text-32);
}

.results-count strong {
  color: var(--text-72);
}

/* ─── Claims Grid ─── */
.claims-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: 16px;
}

/* ─── Claim Card ─── */
.claim-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 24px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border-left: 4px solid transparent;
}

.claim-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
  pointer-events: none;
}

.claim-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.claim-card[data-status="confirmed"] { border-left-color: var(--status-confirmed); }
.claim-card[data-status="implied"] { border-left-color: var(--status-implied); }
.claim-card[data-status="leaked"] { border-left-color: var(--status-leaked); }
.claim-card[data-status="rumored"] { border-left-color: var(--status-rumored); }
.claim-card[data-status="debunked"] { border-left-color: var(--status-debunked); }

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.status-badge.confirmed {
  background: rgba(0, 230, 118, 0.12);
  color: var(--status-confirmed);
}
.status-badge.implied {
  background: rgba(255, 202, 40, 0.12);
  color: var(--status-implied);
}
.status-badge.leaked {
  background: rgba(255, 145, 0, 0.12);
  color: var(--status-leaked);
}
.status-badge.rumored {
  background: rgba(255, 42, 109, 0.12);
  color: var(--status-rumored);
}
.status-badge.debunked {
  background: rgba(120, 144, 156, 0.12);
  color: var(--status-debunked);
}

.card-date {
  font-size: 12px;
  color: var(--text-32);
  flex-shrink: 0;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 8px;
  line-height: 1.35;
}

.card-summary {
  font-size: 13.5px;
  color: var(--text-48);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-categories {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.category-tag {
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  font-size: 11px;
  color: var(--text-32);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── No Results ─── */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
}

.no-results h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.no-results p {
  color: var(--text-32);
  margin-bottom: 24px;
}

.reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--neon-pink);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all var(--transition);
}

.reset-btn:hover {
  box-shadow: 0 0 24px rgba(255, 42, 109, 0.4);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════ */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-overlay);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  position: sticky;
  top: 0;
  background: var(--bg-surface);
  padding: 24px 28px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  z-index: 1;
}

.modal-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-close {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-48);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
  font-size: 18px;
}

.modal-close:hover {
  background: rgba(255, 42, 109, 0.2);
  color: var(--neon-pink);
}

.modal-body {
  padding: 24px 28px 32px;
}

.modal-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.modal-summary {
  font-size: 15px;
  color: var(--text-72);
  line-height: 1.65;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-content {
  font-size: 14.5px;
  color: var(--text-48);
  line-height: 1.75;
  margin-bottom: 28px;
}

.modal-content p {
  margin-bottom: 16px;
}

.modal-content p:last-child {
  margin-bottom: 0;
}

.modal-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.meta-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-32);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  min-width: 80px;
  padding-top: 2px;
}

.meta-value {
  font-size: 13px;
  color: var(--text-48);
}

.meta-value a {
  display: inline-block;
  margin-right: 16px;
}

.modal-categories {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.modal-footer {
  padding: 16px 28px 24px;
  display: flex;
  justify-content: flex-end;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(5, 217, 232, 0.1);
  border: 1px solid rgba(5, 217, 232, 0.25);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--neon-cyan);
  cursor: pointer;
  transition: all var(--transition);
}

.share-btn:hover {
  background: rgba(5, 217, 232, 0.2);
  box-shadow: 0 0 16px rgba(5, 217, 232, 0.2);
}

.share-btn.copied {
  background: rgba(0, 230, 118, 0.15);
  border-color: rgba(0, 230, 118, 0.3);
  color: var(--status-confirmed);
}

/* ═══════════════════════════════════════════════════════
   TRAILERS SECTION
   ═══════════════════════════════════════════════════════ */

.trailers {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.trailers-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 32px;
}

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

.trailer-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.trailer-card:hover {
  border-color: rgba(255, 42, 109, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 24px rgba(255, 42, 109, 0.08);
}

.trailer-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}

.trailer-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trailer-info {
  padding: 20px 24px 24px;
}

.trailer-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 4px;
}

.trailer-date {
  font-size: 13px;
  color: var(--neon-cyan);
  display: block;
  margin-bottom: 12px;
}

.trailer-fact {
  font-size: 13.5px;
  color: var(--text-48);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .trailers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .trailers {
    padding: 0 16px 60px;
  }

  .trailer-info {
    padding: 16px 18px 20px;
  }
}

@media (max-width: 360px) {
  .trailers {
    padding: 0 12px 48px;
  }
}

/* ═══════════════════════════════════════════════════════
   OFFICIAL PAGE — Hero & Screenshots
   ═══════════════════════════════════════════════════════ */

.official-hero {
  padding-bottom: 48px;
}

.screenshots {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.screenshots-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.screenshots-subtitle {
  font-size: 15px;
  color: var(--text-48);
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.screenshots-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.screenshots-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  min-height: 64px;
  background: var(--neon-pink);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  box-shadow:
    0 0 24px rgba(255, 42, 109, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.3);
}

.screenshots-cta:hover {
  color: white;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  box-shadow:
    0 0 40px rgba(255, 42, 109, 0.4),
    0 0 80px rgba(5, 217, 232, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.screenshots-cta svg {
  transition: transform var(--transition);
}

.screenshots-cta:hover svg {
  transform: translateX(4px);
}

.screenshots-legal {
  text-align: center;
  font-size: 12px;
  color: var(--text-32);
  line-height: 1.5;
}

@media (max-width: 480px) {
  .screenshots {
    padding: 0 16px 60px;
  }

  .screenshots-cta {
    padding: 16px 28px;
    font-size: 14px;
    min-height: 56px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .screenshots {
    padding: 0 12px 48px;
  }
}

/* ═══════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════ */

.about {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.about-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.about-subtitle {
  font-size: 15px;
  color: var(--text-32);
  margin-bottom: 40px;
  max-width: 600px;
}

.status-explainer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.status-explain-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 20px;
  border-left: 4px solid transparent;
}

.status-explain-card.confirmed { border-left-color: var(--status-confirmed); }
.status-explain-card.implied { border-left-color: var(--status-implied); }
.status-explain-card.leaked { border-left-color: var(--status-leaked); }
.status-explain-card.rumored { border-left-color: var(--status-rumored); }
.status-explain-card.debunked { border-left-color: var(--status-debunked); }

.status-explain-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.status-explain-card.confirmed h4 { color: var(--status-confirmed); }
.status-explain-card.implied h4 { color: var(--status-implied); }
.status-explain-card.leaked h4 { color: var(--status-leaked); }
.status-explain-card.rumored h4 { color: var(--status-rumored); }
.status-explain-card.debunked h4 { color: var(--status-debunked); }

.status-explain-card p {
  font-size: 13px;
  color: var(--text-48);
  line-height: 1.55;
}

.disclaimer {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 24px;
}

.disclaimer h4 {
  font-size: 14px;
  color: var(--neon-orange);
  margin-bottom: 8px;
}

.disclaimer p {
  font-size: 13px;
  color: var(--text-32);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left {
  font-size: 13px;
  color: var(--text-32);
}

.footer-left span {
  color: var(--neon-pink);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-32);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--neon-cyan);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .header-inner {
    height: 56px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero {
    padding: 72px 16px 56px;
  }

  .countdown {
    gap: 8px;
  }

  .countdown-unit {
    min-width: 60px;
  }

  .vault {
    padding: 0 16px 60px;
  }

  .claims-grid {
    grid-template-columns: 1fr;
  }

  .filter-row {
    gap: 8px;
  }

  .filter-row-label {
    min-width: auto;
    width: 100%;
  }

  .modal {
    border-radius: var(--radius-md);
    max-height: 90vh;
  }

  .modal-header {
    padding: 20px 20px 12px;
  }

  .modal-body {
    padding: 20px 20px 24px;
  }

  .modal-footer {
    padding: 12px 20px 20px;
  }

  .status-explainer-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0 16px;
  }

  .logo-text {
    font-size: 16px;
  }

  .chip {
    padding: 8px 12px;
    font-size: 11px;
    min-height: 36px;
  }

  .claim-card {
    padding: 18px;
  }

  .card-title {
    font-size: 15px;
  }

  .countdown-separator {
    display: none;
  }

  .countdown-unit {
    min-width: 56px;
  }

  .hero-badge {
    font-size: 11px;
    letter-spacing: 1px;
    padding: 6px 14px;
  }

  .modal-overlay {
    padding: 12px;
  }

  .modal-header {
    padding: 16px 16px 12px;
  }

  .modal-body {
    padding: 16px 16px 20px;
  }

  .modal-footer {
    padding: 12px 16px 16px;
  }

  .about {
    padding: 48px 16px;
  }

  .footer-links {
    gap: 16px;
  }

  .sort-select {
    min-height: 44px;
  }

  .search-input {
    min-height: 48px;
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  .reset-btn {
    min-height: 44px;
    padding: 12px 24px;
  }

  .share-btn {
    min-height: 44px;
    padding: 12px 20px;
  }

  .modal-close {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 360px) {
  .hero {
    padding: 56px 12px 40px;
  }

  .vault {
    padding: 0 12px 48px;
  }

  .countdown {
    gap: 4px;
  }

  .countdown-unit {
    min-width: 48px;
  }

  .filter-row-label {
    font-size: 11px;
    min-width: auto;
  }

  .about {
    padding: 40px 12px;
  }

  .site-header {
    padding: 0 12px;
  }

  .site-footer {
    padding: 32px 12px;
  }

  .disclaimer {
    padding: 16px;
  }
}

/* ═══════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: rgba(10, 6, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--neon-pink);
  padding: 16px 24px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-text {
  font-size: 13.5px;
  color: var(--text-72);
  line-height: 1.55;
  flex: 1;
}

.cookie-banner-text a {
  color: var(--neon-cyan);
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}

.cookie-btn-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-48);
}

.cookie-btn-decline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-72);
}

.cookie-btn-accept {
  background: var(--neon-pink);
  border: 1px solid var(--neon-pink);
  color: white;
  box-shadow: 0 0 16px rgba(255, 42, 109, 0.25);
}

.cookie-btn-accept:hover {
  box-shadow: 0 0 24px rgba(255, 42, 109, 0.4);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cookie-banner-buttons {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════
   PRIVACY PAGE
   ═══════════════════════════════════════════════════════ */

.privacy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.privacy-section {
  margin-bottom: 36px;
}

.privacy-section h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--neon-cyan);
  margin-bottom: 10px;
}

.privacy-section p {
  font-size: 14.5px;
  color: var(--text-72);
  line-height: 1.75;
  margin-bottom: 10px;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section code {
  background: var(--bg-card);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--neon-orange);
}

.privacy-updated {
  font-size: 13px;
  color: var(--text-32);
  font-style: italic;
}

@media (max-width: 480px) {
  .privacy-content {
    padding: 0 16px 60px;
  }
}

@media (max-width: 360px) {
  .privacy-content {
    padding: 0 12px 48px;
  }
}

/* ─── Animations ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.claim-card {
  animation: fadeInUp 0.4s ease forwards;
  opacity: 0;
}

.claim-card:nth-child(1) { animation-delay: 0.02s; }
.claim-card:nth-child(2) { animation-delay: 0.04s; }
.claim-card:nth-child(3) { animation-delay: 0.06s; }
.claim-card:nth-child(4) { animation-delay: 0.08s; }
.claim-card:nth-child(5) { animation-delay: 0.10s; }
.claim-card:nth-child(6) { animation-delay: 0.12s; }
.claim-card:nth-child(7) { animation-delay: 0.14s; }
.claim-card:nth-child(8) { animation-delay: 0.16s; }
.claim-card:nth-child(9) { animation-delay: 0.18s; }
.claim-card:nth-child(10) { animation-delay: 0.20s; }
.claim-card:nth-child(11) { animation-delay: 0.22s; }
.claim-card:nth-child(12) { animation-delay: 0.24s; }
.claim-card:nth-child(n+13) { animation-delay: 0.26s; }
