
:root {
  --black: #040408;
  --dark: #0a0a12;
  --dark2: #11111e;
  --light: #f0ede6;
  --light2: #e2ddd3;
  --orange: #f5820a;
  --orange2: #ff6b00;
  --yellow: #f5c842;
  --red: #e8192c;
  --blue: #1a3aff;
  --blue2: #0021b5;
  --purple: #6500d4;
  --green: #00c264;
  --font-display: 'Black Ops One', cursive;
  --font-head: 'Bebas Neue', cursive;
  --font-body: 'Barlow Condensed', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--light);
  font-family: var(--font-body);
  cursor: none;
  overflow-x: hidden;
}


.cursor {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}


.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;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(4,4,8,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(245,130,10,0.15);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--light);
  text-shadow: 0 0 30px var(--orange);
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light2);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--orange); }
.nav-year {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(240,237,230,0.3);
  letter-spacing: 0.08em;
}


.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
#starsCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-glow {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245,130,10,0.12) 0%, rgba(100,0,212,0.06) 40%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.7; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.08); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0;
  transform: translateY(20px);
}
.hero-title { line-height: 0.88; font-family: var(--font-display); letter-spacing: 0.02em; }
.title-space {
  display: block;
  font-size: clamp(5rem, 14vw, 13rem);
  color: var(--light);
  -webkit-text-stroke: 2px rgba(255,255,255,0.1);
  opacity: 0;
}
.title-jam {
  display: block;
  font-size: clamp(7rem, 20vw, 18rem);
  color: var(--orange);
  text-shadow: 0 0 60px rgba(245,130,10,0.5), 0 0 120px rgba(245,130,10,0.3);
  -webkit-text-stroke: 2px var(--orange2);
  opacity: 0;
}
.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.55);
  opacity: 0;
  transform: translateY(20px);
}
.hero-orb-row { display: flex; gap: 1.5rem; opacity: 0; transform: translateY(20px); }
.orb {
  width: 62px; height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
}
.orb-orange { background: rgba(245,130,10,0.15); color: var(--orange); }
.orb-purple { background: rgba(101,0,212,0.2); color: #a855f7; }
.orb-blue   { background: rgba(26,58,255,0.15); color: #60a5fa; }
.pulse { animation: orbPulse 3s ease-in-out infinite; }
.delay1 { animation-delay: 1s; }
.delay2 { animation-delay: 2s; }
@keyframes orbPulse {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.08); }
}
.hero-cta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  color: var(--black);
  background: var(--orange);
  padding: 1rem 2.6rem;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 0 30px rgba(245,130,10,0.4);
}
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 50px rgba(245,130,10,0.6); }
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeInScroll 1s ease 2.5s both;
}
@keyframes fadeInScroll {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.scroll-indicator span { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.25em; color: rgba(240,237,230,0.3); }
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollLineAnim 2s ease-in-out infinite;
}
@keyframes scrollLineAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


.section {
  position: relative;
  padding: 8rem 3rem;
  overflow: hidden;
}
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 3rem; right: 3rem;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,130,10,0.18), transparent);
}
.section-dark  { background: var(--dark); }
.section-light { background: var(--light); color: var(--black); }
.section-accent { background: var(--blue2); }

.section-light .section-label { color: rgba(10,10,18,0.35); }
.section-light .section-title { color: var(--black); }
.section-light .section-body  { color: rgba(10,10,18,0.6); }
.section-light .section-links a { color: var(--black); border-color: rgba(10,10,18,0.12); }
.section-light .section-links a:hover { color: var(--orange2); border-color: var(--orange2); }
.section-light .section-links a svg { color: var(--orange2); }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(240,237,230,0.3);
  margin-bottom: 3.5rem;
  text-transform: uppercase;
}
.section-inner { max-width: 1300px; margin: 0 auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.center-col { display: flex; flex-direction: column; align-items: center; text-align: center; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--light);
  margin-bottom: 2rem;
}
.section-title.center { text-align: center; }
.section-title.white { color: #fff; }

.section-body {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(240,237,230,0.6);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.section-body.center { text-align: center; }
.section-body.white { color: rgba(255,255,255,0.72); }
.max600 { max-width: 600px; }


.section-links { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; }
.section-links a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(240,237,230,0.08);
  transition: color 0.2s, border-color 0.2s, padding-left 0.2s;
}
.section-links a svg { opacity: 0.45; flex-shrink: 0; transition: opacity 0.2s; }
.section-links a:hover { color: var(--orange); border-color: rgba(245,130,10,0.3); padding-left: 0.5rem; }
.section-links a:hover svg { opacity: 1; color: var(--orange); }


.col-visual { display: flex; align-items: center; justify-content: center; }
.card-visual {
  width: 340px; height: 340px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  position: relative;
  transition: transform 0.3s ease;
}
.card-visual::before {
  content: '';
  position: absolute; inset: -20px;
  border-radius: 50%;
  border: 1px dashed currentColor;
  opacity: 0.2;
  animation: spinSlow 18s linear infinite;
}
.card-visual::after {
  content: '';
  position: absolute; inset: -52px;
  border-radius: 50%;
  border: 1px dashed currentColor;
  opacity: 0.1;
  animation: spinSlow 32s linear infinite reverse;
}
@keyframes spinSlow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.card-orange { background: radial-gradient(circle at 35% 35%, rgba(245,130,10,0.32), rgba(245,130,10,0.06)); color: var(--orange); border: 1px solid rgba(245,130,10,0.28); box-shadow: 0 0 80px rgba(245,130,10,0.12), inset 0 0 40px rgba(245,130,10,0.05); }
.card-bball  { background: radial-gradient(circle at 35% 35%, rgba(232,100,10,0.32), rgba(232,50,10,0.06)); color: var(--orange2); border: 1px solid rgba(232,100,10,0.28); box-shadow: 0 0 80px rgba(232,100,10,0.12), inset 0 0 40px rgba(232,100,10,0.05); }
.card-purple { background: radial-gradient(circle at 35% 35%, rgba(101,0,212,0.32), rgba(101,0,212,0.06)); color: #a855f7; border: 1px solid rgba(101,0,212,0.28); box-shadow: 0 0 80px rgba(101,0,212,0.12), inset 0 0 40px rgba(101,0,212,0.05); }
.card-red    { background: radial-gradient(circle at 35% 35%, rgba(232,25,44,0.32), rgba(232,25,44,0.06)); color: var(--red); border: 1px solid rgba(232,25,44,0.28); box-shadow: 0 0 80px rgba(232,25,44,0.12), inset 0 0 40px rgba(232,25,44,0.05); }
.card-green  { background: radial-gradient(circle at 35% 35%, rgba(0,194,100,0.32), rgba(0,194,100,0.06)); color: var(--green); border: 1px solid rgba(0,194,100,0.28); box-shadow: 0 0 80px rgba(0,194,100,0.12), inset 0 0 40px rgba(0,194,100,0.05); }
.card-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  opacity: 0.6;
}


.lineup-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin: 3rem 0; }
.lineup-card {
  width: 160px; height: 200px;
  background: var(--dark2);
  border: 1px solid rgba(240,237,230,0.07);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.5rem 1rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
  color: var(--light);
}
.lineup-card:hover { transform: translateY(-8px) scale(1.03); border-color: var(--orange); box-shadow: 0 20px 50px rgba(245,130,10,0.14); }
.lineup-card.featured { width: 200px; height: 240px; border-color: var(--orange); background: rgba(245,130,10,0.05); box-shadow: 0 0 40px rgba(245,130,10,0.1); }
.lineup-icon { color: var(--orange); }
.lineup-card.featured .lineup-icon { color: var(--orange); }
.lineup-role { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.2em; color: var(--orange); text-transform: uppercase; }
.lineup-name { font-family: var(--font-head); font-size: 1.1rem; text-align: center; }
.section-btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-decoration: none;
  border: 1px solid var(--orange);
  padding: 0.9rem 2.5rem;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  transition: background 0.2s, color 0.2s;
}
.section-btn:hover { background: var(--orange); color: var(--black); }


.souvenir-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; width: 100%; max-width: 700px; }
.souvenir-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  text-align: center;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.souvenir-item:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.souvenir-icon { color: rgba(255,255,255,0.8); }


.sitemap-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 3rem; width: 100%; }
.sitemap-block {
  background: var(--dark2);
  border: 1px solid rgba(240,237,230,0.07);
  border-radius: 4px;
  padding: 1.8rem 1.5rem;
  transition: border-color 0.2s;
}
.sitemap-block:hover { border-color: rgba(245,130,10,0.3); }
.sitemap-head {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sitemap-block ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.sitemap-block li { font-family: var(--font-mono); font-size: 0.66rem; color: rgba(240,237,230,0.42); letter-spacing: 0.05em; cursor: pointer; transition: color 0.2s; }
.sitemap-block li:hover { color: var(--light); }


.footer {
  background: var(--black);
  border-top: 1px solid rgba(240,237,230,0.07);
  padding: 5rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-logo { font-family: var(--font-display); font-size: 3.5rem; color: var(--light); letter-spacing: 0.04em; text-shadow: 0 0 40px rgba(245,130,10,0.28); }
.footer-logo span { color: var(--orange); }
.footer-copy { font-family: var(--font-mono); font-size: 0.65rem; color: rgba(240,237,230,0.28); letter-spacing: 0.1em; max-width: 500px; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em; color: rgba(240,237,230,0.38); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-tagline { font-family: var(--font-body); font-size: 0.85rem; font-style: italic; color: rgba(240,237,230,0.18); margin-top: 2rem; font-weight: 300; letter-spacing: 0.04em; }


@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav { padding: 1rem 1.5rem; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; gap: 3rem; }
  .card-visual { width: 240px; height: 240px; }
  .sitemap-grid { grid-template-columns: repeat(2,1fr); }
  .souvenir-grid { grid-template-columns: repeat(2,1fr); }
  .section { padding: 5rem 1.5rem; }
}
@media (max-width: 500px) {
  .sitemap-grid { grid-template-columns: 1fr; }
  .lineup-grid { flex-direction: column; align-items: center; }
  .souvenir-grid { grid-template-columns: 1fr 1fr; }
}