@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800;900&family=Rajdhani:wght@400;500;600;700&family=Share+Tech+Mono&display=swap');

:root {
  --teal:        #00c896;
  --teal-dim:    #007a5c;
  --teal-glow:   rgba(0, 200, 150, 0.35);
  --teal-subtle: rgba(0, 200, 150, 0.08);

  --bg:          #0e0e0e;
  --bg2:         #141414;
  --surface:     #1a1a1a;
  --surface2:    #202020;
  --border:      rgba(0, 200, 150, 0.18);
  --border-dim:  rgba(255,255,255,0.07);

  --text:        #d8e4ed;
  --text-dim:    #6e8090;
  --text-mid:    #9eb0be;

  --glow:        0 0 28px rgba(0, 200, 150, 0.4);

  --font-display: 'Exo 2', sans-serif;
  --font-body:    'Rajdhani', sans-serif;
  --font-mono:    'Share Tech Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-size: 1.05rem;
  line-height: 1.65; overflow-x: hidden;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--teal-dim); border-radius: 3px; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 66px;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(14,14,14,0.94);
  border-color: var(--border-dim);
  backdrop-filter: blur(16px);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  color: #fff; text-decoration: none; letter-spacing: 0.03em;
}
.nav-logo-img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo span { color: var(--teal); }

.nav-links { display: flex; gap: 0.15rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 600;
  color: var(--text-dim); text-decoration: none;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  transition: color 0.2s, background 0.2s; border-radius: 2px;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-links .btn-merch {
  background: var(--teal); color: var(--bg);
  font-weight: 800; padding: 0.45rem 1.2rem; border-radius: 2px;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav-links .btn-merch:hover { background: #00f0cc; box-shadow: var(--glow); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: var(--text); display: block; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 66px; left: 0; right: 0;
  background: rgba(14,14,14,0.97); border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem; flex-direction: column; gap: 0.2rem;
  z-index: 999; backdrop-filter: blur(16px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-mid); text-decoration: none;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.8rem 0.5rem; border-bottom: 1px solid var(--border-dim);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu a.merch-link { color: var(--teal); font-weight: 800; border-bottom: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 0.82rem 1.9rem;
  border: none; cursor: pointer; transition: all 0.22s;
  border-radius: 2px;
}
.btn-primary { background: var(--teal); color: var(--bg); }
.btn-primary:hover { background: #00f0cc; box-shadow: var(--glow); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-1px); }

/* ── LAYOUT ── */
section { padding: 6rem 2rem; }
.container { max-width: 1180px; margin: 0 auto; }

.label {
  font-family: var(--font-display); font-size: 0.9rem;
  font-weight: 700; color: var(--teal); letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem;
}
.label::before { content: '▸'; opacity: 0.7; }

.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900; line-height: 1.08; color: #fff;
}
.section-title em { color: var(--teal); font-style: normal; }

/* ── HERO ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding: 0;
}
#video-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 0.55; filter: saturate(0.7);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 75% 55% at 50% 35%, rgba(0,200,150,0.04) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(14,14,14,0.2) 0%, rgba(14,14,14,0.0) 40%, rgba(14,14,14,0.75) 82%, var(--bg) 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.035;
  background-image: linear-gradient(var(--teal) 1px, transparent 1px), linear-gradient(90deg, var(--teal) 1px, transparent 1px);
  background-size: 64px 64px;
}
.scanline {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.025) 3px, rgba(0,0,0,0.025) 4px);
}
.hero-content { position: relative; z-index: 3; max-width: 820px; padding: 0 1.5rem; }

.hero-eyebrow {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--teal);
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; flex: 1; max-width: 55px; height: 1px; background: var(--teal-dim);
}
.hero-logo-wrap {
  margin-bottom: 1.2rem;
}
.hero-logo-img {
  width: min(500px, 80vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 28px rgba(0, 200, 150, 0.35));
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 9.5rem);
  font-weight: 900; line-height: 0.9; color: #fff;
  letter-spacing: -0.03em; margin-bottom: 1.2rem;
}
.hero-title .teal { color: var(--teal); }
.hero-title .block { display: block; }
.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--text-mid); max-width: 560px; margin: 0 auto 2.4rem; font-weight: 500; text-shadow: 0 1px 8px rgba(0,0,0,0.85), 0 2px 24px rgba(0,0,0,0.6);
}
.hero-cta {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.hero-stats {
  position: absolute; bottom: 6.5rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center;
}
.stat-chip {
  border: 1px solid var(--border); background: rgba(14,14,14,0.78);
  backdrop-filter: blur(10px); padding: 0.5rem 1.1rem;
  display: flex; flex-direction: column; align-items: center;
}
.stat-chip .n { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--teal); line-height: 1; }
.stat-chip .l { font-family: var(--font-display); font-size: 0.75rem; font-weight: 600; color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-dim);
  letter-spacing: 0.2em; text-transform: uppercase;
  animation: scrollPulse 2.5s ease-in-out infinite;
}
.scroll-hint::after { content: ''; width: 1px; height: 34px; background: linear-gradient(var(--teal), transparent); }


/* ── ABOUT ── */
#about { background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.about-copy p { color: var(--text-mid); margin-bottom: 1rem; font-size: 1.05rem; }
.about-copy p strong { color: var(--text); }
.about-cta { margin-top: 1.8rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.pillars { display: flex; flex-direction: column; gap: 0.85rem; }
.pillar {
  border: 1px solid var(--border-dim); background: var(--surface);
  padding: 1.3rem 1.4rem; display: flex; gap: 1.1rem; align-items: flex-start;
  transition: border-color 0.25s, background 0.25s;
}
.pillar:hover { border-color: var(--border); background: var(--surface2); }
.pillar-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--teal-subtle); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.pillar h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: #fff; margin-bottom: 0.25rem; letter-spacing: 0.02em; }
.pillar p { color: var(--text-dim); font-size: 0.95rem; margin: 0; line-height: 1.5; }

/* ── GAMES ── */
#games { background: var(--bg); }
.games-stack { display: flex; flex-direction: column; gap: 2rem; margin-top: 3rem; }

.game-row {
  display: grid; grid-template-columns: 260px 1fr; gap: 0;
  border: 1px solid var(--border-dim); overflow: hidden;
  background: var(--surface); transition: border-color 0.3s;
}
.game-row:hover { border-color: rgba(0,200,150,0.22); }
.game-row.alt { grid-template-columns: 1fr 260px; }
.game-row.alt .game-art { order: 2; }
.game-row.alt .game-info { order: 1; }

.game-art {
  position: relative; overflow: hidden; background: var(--surface2); min-height: 240px;
  display: flex; align-items: center; justify-content: center;
}
.game-art img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block; transition: transform 0.5s; filter: saturate(0.88);
}
.game-row:hover .game-art img { transform: scale(1.04); }
.art-placeholder { font-size: 3.5rem; color: var(--border); }
.game-badge {
  position: absolute; top: 0.85rem; left: 0.85rem;
  font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.22rem 0.6rem; font-weight: 800;
}
.game-badge.live { background: var(--teal); color: var(--bg); }
.game-badge.soon { background: rgba(10,12,14,0.72); color: var(--teal); border: 1px solid var(--border); backdrop-filter: blur(4px); }
.game-badge.demo { background: rgba(255,160,0,0.12); color: #ffa500; border: 1px solid rgba(255,160,0,0.3); }
.game-badge.partner { background: rgba(10,12,14,0.72); color: #b07fff; border: 1px solid rgba(160,100,255,0.3); backdrop-filter: blur(4px); }
.partner-note { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; color: #b07fff; background: rgba(160,100,255,0.08); border: 1px solid rgba(160,100,255,0.25); padding: 0.45rem 0.8rem; display: inline-block; margin-bottom: 0.9rem; text-transform: uppercase; }

.game-info { padding: 1.8rem 2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.game-title {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -0.01em;
}
.game-desc { color: var(--text-mid); font-size: 1.02rem; line-height: 1.65; flex-grow: 1; }
.game-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.tag {
  font-family: var(--font-display); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.22rem 0.55rem;
  border: 1px solid var(--border-dim); color: var(--text-dim);
}
.game-links { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.3rem; }
.store-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  padding: 0.52rem 1rem; border: 1px solid var(--border);
  color: var(--teal); background: var(--teal-subtle); transition: all 0.2s;
}
.store-btn:hover { background: rgba(0,200,150,0.15); border-color: var(--teal); }
.store-btn svg { width: 11px; height: 11px; fill: currentColor; flex-shrink: 0; }

/* ── MERCH BAND ── */
.merch-band {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border-dim); border-bottom: 1px solid var(--border-dim);
  padding: 5rem 2rem; text-align: center;
  background: url('../merch_banner.png') center center / cover no-repeat;
}
.merch-band::before {
  content: ''; position: absolute; inset: -2px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(1px);
}
.merch-band::after {
  content: 'MERCH'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-display); font-size: 14rem; font-weight: 900;
  color: rgba(0,200,150,0.04); letter-spacing: -0.05em;
  pointer-events: none; white-space: nowrap; line-height: 1;
}
.merch-inner { position: relative; z-index: 2; max-width: 540px; margin: 0 auto; }
.merch-inner h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 900; color: #fff; margin-bottom: 1rem; }
.merch-inner p { color: var(--text-mid); margin-bottom: 2rem; font-size: 1rem; }

/* ── SOCIALS ── */
#socials { background: var(--bg2); }
.socials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1rem; margin-top: 3rem;
}
.social-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  border: 1px solid var(--border-dim); background: var(--surface);
  padding: 1.5rem 1rem; text-decoration: none; color: var(--text-dim);
  font-family: var(--font-display); font-weight: 600; font-size: 0.97rem;
  letter-spacing: 0.04em; transition: all 0.22s; text-align: center;
  position: relative; overflow: hidden;
}
.social-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--teal);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.social-card:hover { border-color: var(--border); color: #fff; background: var(--surface2); }
.social-card:hover::after { transform: scaleX(1); }
.social-card svg { width: 24px; height: 24px; fill: currentColor; transition: color 0.2s; }
.social-card:hover svg { color: var(--teal); }
.social-handle { font-family: var(--font-display); font-size: 0.8rem; font-weight: 500; color: var(--text-dim); margin-top: -0.15rem; }

/* ── CONTACT ── */
#contact { background: var(--bg); }
.contact-detail {
  display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.8rem;
  font-family: var(--font-body); font-size: 1rem; color: var(--text-dim);
}
.contact-detail svg { width: 14px; height: 14px; fill: var(--teal); flex-shrink: 0; }
.contact-detail a { color: var(--teal); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }


/* ── FOOTER ── */
footer { background: var(--bg2); border-top: 1px solid var(--border-dim); padding: 4rem 2rem 2.5rem; }
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { max-width: 300px; }
.footer-logo-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-logo-img {
  height: 32px; width: auto; display: block; object-fit: contain;
}
.footer-logo-name { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: #fff; }
.footer-logo-name span { color: var(--teal); }
.footer-brand p { color: var(--text-dim); font-size: 0.97rem; line-height: 1.6; }
.footer-cols { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--text-dim); text-decoration: none; font-size: 1rem; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border-dim); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 500; color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--teal); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 8rem 2rem 4.5rem;
  background: var(--bg2); border-bottom: 1px solid var(--border-dim);
  position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 70% at 50% 100%, rgba(0,200,150,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-header-inner { position: relative; z-index: 1; max-width: 700px; }
.page-header .section-title { margin-top: 0.5rem; margin-bottom: 1rem; }
.page-header p { color: var(--text-mid); font-size: 1rem; max-width: 480px; }

/* ── PRIVACY PROSE ── */
.prose { max-width: 760px; margin: 0 auto; padding: 5rem 2rem; }
.prose h2 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: #fff; margin: 2.5rem 0 0.8rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border-dim); }
.prose h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--text); margin: 1.4rem 0 0.5rem; }
.prose p { color: var(--text-mid); margin-bottom: 0.8rem; line-height: 1.72; }
.prose ul { padding-left: 1.4rem; margin-bottom: 0.8rem; }
.prose li { color: var(--text-mid); margin-bottom: 0.4rem; }
.prose a { color: var(--teal); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose-date { font-family: var(--font-mono); font-size: 0.7rem; color: var(--teal); letter-spacing: 0.12em; margin-bottom: 2.5rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.45; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 1;    transform: translateX(-50%) translateY(5px); }
}
  to   { transform: translateX(-50%); }
}
.reveal { opacity: 1; transform: translateY(0); transition: opacity 0.65s cubic-bezier(.22,1,.36,1), transform 0.65s cubic-bezier(.22,1,.36,1); }
.reveal.will-animate { opacity: 0; transform: translateY(22px); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .game-row, .game-row.alt { grid-template-columns: 1fr; }
  .game-row .game-art, .game-row.alt .game-art,
  .game-row .game-info, .game-row.alt .game-info { order: unset; }
  .game-art { min-height: 240px; }
  .hero-stats { gap: 0.8rem; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 1.25rem; }
  .hero-stats { bottom: 4.5rem; }
  .footer-top { flex-direction: column; }
  .footer-cols { gap: 2rem; flex-direction: column; }
  .game-info { padding: 1.4rem 1.25rem; }
  .game-links { flex-direction: column; }
  .store-btn, .trailer-btn { width: 100%; justify-content: center; }
  .about-grid { gap: 2rem; }
  .socials-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 0 1rem; }
  .merch-band { padding: 3.5rem 1.25rem; }
  .merch-band::before { font-size: 6rem; }
  .footer-cols { gap: 1.5rem; }
  .footer-brand { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 0.5rem; bottom: 3.5rem; }
  .stat-chip { padding: 0.4rem 0.75rem; }
  .stat-chip .n { font-size: 1rem; }
  .stat-chip .l { font-size: 0.68rem; }
  .socials-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .social-card { padding: 1.1rem 0.75rem; font-size: 0.88rem; }
  .hero-logo-img { width: min(340px, 90vw); }
  section { padding: 3rem 1rem; }
  .game-info { padding: 1.2rem 1rem; }
  .pillar { padding: 1rem 1.1rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.88rem; }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.5rem); }
  .game-title { font-size: clamp(1.1rem, 5vw, 1.5rem); }
  .hero-eyebrow { font-size: 0.82rem; letter-spacing: 0.12em; }
  .hero-sub { font-size: 1rem; }
}

/* ── TRAILER MODAL ── */
.trailer-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  padding: 0.48rem 0.9rem; border: 1px solid rgba(255,60,60,0.4);
  color: #ff6060; background: rgba(255,60,60,0.08);
  transition: all 0.2s;
}
.trailer-btn:hover { background: rgba(255,60,60,0.18); border-color: #ff6060; }
.trailer-btn .play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent #ff6060;
  flex-shrink: 0;
}

/* Overlay backdrop */
.trailer-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(5, 8, 12, 0.92);
  backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
.trailer-overlay.active { display: flex; }

/* Modal box */
.trailer-modal {
  position: relative;
  width: 100%; max-width: 900px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}
.trailer-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-dim);
}
.trailer-modal-title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: #fff; letter-spacing: 0.03em;
}
.trailer-modal-label {
  font-family: var(--font-mono); font-size: 0.62rem;
  color: var(--teal); letter-spacing: 0.15em; text-transform: uppercase;
}
.trailer-close {
  width: 32px; height: 32px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: 1.4rem; line-height: 1;
  border: 1px solid var(--border-dim); background: none;
  transition: color 0.2s, border-color 0.2s;
  font-family: monospace;
}
.trailer-close:hover { color: #fff; border-color: var(--border); }

/* 16:9 responsive iframe wrapper */
.trailer-video-wrap {
  position: relative; width: 100%; padding-bottom: 56.25%; background: #000;
}
.trailer-video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

/* No trailer state */
.trailer-no-video {
  padding: 4rem 2rem; text-align: center;
  font-family: var(--font-mono); font-size: 0.8rem;
  color: var(--text-dim); letter-spacing: 0.1em;
}
.trailer-no-video span { display: block; font-size: 2rem; margin-bottom: 1rem; }

/* YouTube fallback link */
.trailer-yt-link {
  text-align: center; padding: 0.6rem;
  background: var(--surface2); border-top: 1px solid var(--border-dim);
}
.trailer-yt-link a {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em;
  color: var(--text-dim); text-decoration: none; text-transform: uppercase;
  transition: color 0.2s;
}
.trailer-yt-link a:hover { color: var(--teal); }

@media (max-width: 600px) {
  .trailer-modal-header { padding: 0.75rem 1rem; }
  .trailer-modal-title { font-size: 0.88rem; }
}
