@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Rajdhani:wght@300;400;600&display=swap');

:root {
  --void: #00000a;
  --solar-gold: #ffb347;
  --solar-amber: #ff8c00;
  --pink: #ff7ba7;
  --plasma: #ff6b35;
  --starlight: #e8f4fd;
  --stardust: #a8c8e8;
  --glow-gold: 0 0 20px rgba(255,179,71,0.6), 0 0 60px rgba(255,179,71,0.3);
  --glow-plasma: 0 0 20px rgba(255,107,53,0.6), 0 0 60px rgba(255,107,53,0.3);
  --glow-blue: 0 0 20px rgba(79,148,205,0.6), 0 0 60px rgba(79,148,205,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--void);
  color: var(--starlight);
  overflow-x: hidden;
  cursor: none;
}

/* ─── CURSOR ─── */
#cursor {
  width: 14px; height: 14px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s ease;
  box-shadow: 0 0 20px rgba(255, 123, 167, 0.6), 0 0 60px rgba(255, 123, 167, 0.3);
}
#cursor-trail {
  width: 40px; height: 40px;
  border: 1px solid rgba(255, 123, 167, 0.3);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: top 0.15s ease, left 0.15s ease;
}

/* ─── STARFIELD ─── */
#starfield { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: linear-gradient(to bottom, rgba(0,0,10,0.95), transparent);
  backdrop-filter: blur(4px);
}
.nav-logo {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem; font-weight: 900;
  color: var(--pink);
  letter-spacing: 0.15em;
  text-shadow: 0 0 20px rgba(255, 123, 167, 0.6), 0 0 60px rgba(255, 123, 167, 0.3);
  text-decoration: none;
}
.nav-logo span { color: var(--starlight); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stardust);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--pink);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--pink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* ─── PAGE HERO ─── */
.page-hero {
  position: relative; z-index: 5;
  min-height: 44vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 10rem 2rem 4rem;
}
.page-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.45em;
  color: var(--pink); text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0; animation: fadeUp 0.7s ease 0.2s forwards;
}
.page-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.05;
  background: linear-gradient(135deg, #fff9c4 0%, var(--pink) 45%, var(--plasma) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(255, 123, 167, 0.35));
  margin-bottom: 1rem;
  opacity: 0; animation: fadeUp 0.7s ease 0.35s forwards;
}
.page-sub {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.25em;
  color: rgba(232,244,253,0.45); text-transform: uppercase;
  opacity: 0; animation: fadeUp 0.7s ease 0.5s forwards;
}

/* ─── SECTION SHARED ─── */
.section {
  position: relative; z-index: 5;
  padding: 5rem 4rem;
  max-width: 1300px; margin: 0 auto;
}
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.5em;
  color: var(--pink); text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 36px; height: 1px; background: var(--pink);
}
.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--starlight);
  margin-bottom: 1.2rem; line-height: 1.2;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--pink), var(--plasma));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: 1.05rem; line-height: 1.9;
  color: rgba(232,244,253,0.75);
  font-weight: 300; letter-spacing: 0.02em;
  max-width: 720px;
  margin-bottom: 2rem;
}

/* ─── MEDIA GRID ─── */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.media-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
}
.media-card:hover {
  border-color: rgba(255, 123, 167, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255, 123, 167, 0.06);
}
.media-card-top {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; opacity: 0;
  transition: opacity 0.3s;
}
.media-card:hover .media-card-top { opacity: 1; }
.media-embed {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: #000;
}
.media-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.media-placeholder {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(10,10,40,0.9), rgba(5,5,20,0.95));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.media-placeholder-icon { font-size: 2.5rem; opacity: 0.4; }
.media-placeholder-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.25em;
  color: rgba(232,244,253,0.25); text-transform: uppercase;
  text-align: center; padding: 0 1rem;
}
.media-upload-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255, 123, 167, 0.12);
  border: 1px dashed rgba(255, 123, 167, 0.35);
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem; letter-spacing: 0.15em;
  color: rgba(255, 123, 167, 0.6); text-transform: uppercase;
}
.media-info {
  padding: 1.1rem 1.3rem;
}
.media-title {
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem; font-weight: 700;
  color: var(--pink); letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}
.media-desc {
  font-size: 0.84rem; color: rgba(232,244,253,0.5);
  line-height: 1.55;
}

/* ─── DIVIDER ─── */
.divider {
  position: relative; z-index: 5;
  height: 1px; margin: 0 4rem;
  background: linear-gradient(to right, transparent, rgba(255, 123, 167, 0.2), transparent);
}

/* ─── DISCLAIMER ─── */
.disclaimer-banner {
  position: relative; z-index: 5;
  display: flex; align-items: flex-start; gap: 1rem;
  margin: 3rem 4rem 0;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, rgba(255, 123, 167, 0.06), rgba(255,107,53,0.04));
  border: 1px solid rgba(255, 123, 167, 0.22);
  border-radius: 8px;
}
.disclaimer-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.disclaimer-banner p {
  font-family: 'Space Mono', monospace;
  font-size: 0.67rem; line-height: 1.8; letter-spacing: 0.04em;
  color: rgba(232,244,253,0.48);
}
.disclaimer-banner strong { color: rgba(255, 123, 167, 0.85); }

/* ─── VIDEO DISCLAIMER ─── */
.video-disclaimer {
  display: flex; gap: 1rem; align-items: flex-start;
  background: linear-gradient(135deg, rgba(255, 123, 167, 0.05), rgba(255,107,53,0.03));
  border: 1px solid rgba(255, 123, 167, 0.18);
  border-left: 3px solid var(--pink);
  border-radius: 6px;
  padding: 1.1rem 1.4rem;
  margin-top: 1.2rem;
}
.vd-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.vd-label {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 0.35rem;
}
.vd-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; line-height: 1.85; letter-spacing: 0.04em;
  color: rgba(232,244,253,0.48);
}
.vd-text strong { color: rgba(255, 123, 167, 0.85); }

/* ─── FOOTER ─── */
footer {
  position: relative; z-index: 5;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 4rem 2.5rem;
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 2rem;
}
.footer-brand {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem; font-weight: 900;
  color: var(--pink); letter-spacing: 0.12em;
  text-shadow: 0 0 20px rgba(255, 123, 167, 0.6), 0 0 60px rgba(255, 123, 167, 0.3);
}
.footer-brand small {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.2em;
  color: rgba(232,244,253,0.3);
  margin-top: 0.3rem; font-weight: 400;
}
.footer-planets {
  display: flex; gap: 0.7rem; justify-content: center; align-items: center;
}
.fp { border-radius: 50%; flex-shrink: 0; }
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.12em;
  color: rgba(232,244,253,0.25);
  text-align: right; line-height: 1.7;
}

/* ─── BUTTONS ─── */
.btn-primary {
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem; letter-spacing: 0.18em;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--pink), var(--plasma));
  color: var(--void); text-decoration: none;
  border-radius: 2px; font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 123, 167, 0.6), 0 0 60px rgba(255, 123, 167, 0.3);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 0 40px rgba(255, 123, 167, 0.8); }
.btn-outline {
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem; letter-spacing: 0.18em;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--pink);
  color: var(--pink); text-decoration: none;
  border-radius: 2px; font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-outline:hover { background: rgba(255, 123, 167, 0.1); box-shadow: 0 0 20px rgba(255, 123, 167, 0.6), 0 0 60px rgba(255, 123, 167, 0.3); transform: translateY(-2px); }

/* ─── CORNER BRACKETS ─── */
.vcorner {
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--pink);
  border-style: solid; opacity: 0.55;
}
.vc-tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.vc-tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.vc-bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.vc-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes sun-pulse {
  0%,100% { box-shadow: 0 0 60px 20px rgba(255,200,50,0.8), 0 0 120px 40px rgba(255,140,0,0.5), 0 0 200px 80px rgba(255,100,0,0.3); }
  50%     { box-shadow: 0 0 80px 30px rgba(255,210,60,0.9), 0 0 160px 60px rgba(255,150,0,0.6), 0 0 280px 100px rgba(255,110,0,0.35); }
}

/* ─── SHARED STARFIELD SCRIPT STYLES ─── */
.orbit-ring {
  position: absolute;
  border: 1px solid rgba(255,179,71,0.1);
  border-radius: 50%;
  animation: orbit-spin linear infinite;
  pointer-events: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.5rem; }
  .section { padding: 3.5rem 1.5rem; }
  footer { grid-template-columns: 1fr; text-align: center; padding: 2rem 1.5rem; }
  .footer-copy { text-align: center; }
  .disclaimer-banner { margin: 2rem 1.5rem 0; }
  .divider { margin: 0 1.5rem; }
  .media-grid { grid-template-columns: 1fr; }
}

