@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Noto+Sans+JP:wght@300;400&family=Space+Mono&display=swap');

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

:root {
  --pink:   #ff2d78;
  --purple: #7b3fa0;
  --blue:   #1a1aff;
  --cyan:   #00d4e8;
  --dark:   #080810;
  --line:   rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(8,8,16,0.85), transparent);
  transition: background 0.3s;
}

.nav.scrolled {
  background: rgba(8,8,16,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-links a:hover { color: #fff; }

@media (max-width: 640px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: opacity 1.5s ease-in-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,16,0.5) 0%,
    rgba(8,8,16,0.3) 40%,
    rgba(8,8,16,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  animation: fadeUp 1.2s ease both;
}

.hero-logo-img {
  height: clamp(60px, 10vw, 100px);
  width: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 4px 32px rgba(0,0,0,0.4));
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2.8vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-top: 20px;
  max-width: 520px;
  animation: fadeUp 1.2s 0.3s ease both;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.4;
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em;
  animation: fadeUp 1.2s 0.8s ease both;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, #fff, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ── GLOW LINE ── */
.glow-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--pink), var(--purple), var(--cyan), transparent);
  opacity: 0.55;
}

/* ── SECTIONS ── */
.section {
  padding: 100px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 0.35em;
  color: var(--cyan); text-transform: uppercase;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}

.section-label::after {
  content: '';
  height: 1px; flex: 1; max-width: 120px;
  background: linear-gradient(to right, var(--cyan), transparent);
  opacity: 0.4;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 600; line-height: 1.05;
  margin-bottom: 48px;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
  margin: 0 24px;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}

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

.about-text {
  font-size: 16px; line-height: 2.1;
  color: rgba(255,255,255,0.7); font-weight: 300;
}

.about-text p + p { margin-top: 20px; }

/* World image */
.world-img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid var(--line);
  display: block;
}

/* ── STATS ── */
.stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  padding: 28px 24px; position: relative; overflow: hidden;
}

.stat-card::before {
  content: ''; position: absolute; top:0;left:0;right:0; height:2px;
  background: linear-gradient(to right, var(--pink), var(--cyan));
  opacity: 0; transition: opacity 0.3s;
}

.stat-card:hover::before { opacity: 1; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 600; line-height: 1;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 11px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em; margin-top: 4px;
}

/* ── EVENTS ── */
.event-list { display: flex; flex-direction: column; gap: 2px; }

.event-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px; align-items: center;
  padding: 28px 32px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

@media (max-width: 640px) { .event-item { grid-template-columns: 1fr; gap: 8px; } }

.event-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(0,212,232,0.22);
  transform: translateX(4px);
}

.event-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.15em;
  padding: 4px 10px; border-radius: 2px;
  display: inline-block; width: fit-content;
}

.tag-lt   { background: rgba(255,45,120,0.14); color: var(--pink);  border: 1px solid rgba(255,45,120,0.28); }
.tag-live { background: rgba(0,212,232,0.09);  color: var(--cyan);  border: 1px solid rgba(0,212,232,0.22); }
.tag-dj   { background: rgba(123,63,160,0.14); color: #cc88ff;      border: 1px solid rgba(123,63,160,0.28); }
.tag-irl  { background: rgba(0,255,136,0.08);  color: #00ff88;      border: 1px solid rgba(0,255,136,0.2); }

.event-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: rgba(255,255,255,0.9);
}

.event-name small {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 300; margin-top: 4px;
}

.event-freq {
  font-family: 'Space Mono', monospace;
  font-size: 10px; color: rgba(255,255,255,0.22);
  letter-spacing: 0.1em; white-space: nowrap;
}

/* ── ARCHIVE ── */
.archive-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line); overflow: hidden;
}

@media (max-width: 640px) { .archive-card { grid-template-columns: 1fr; } }

.archive-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.archive-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}

.archive-card:hover .archive-thumb img { transform: scale(1.04); }

.play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,8,16,0.35);
  text-decoration: none; transition: background 0.3s;
}

.play-btn:hover { background: rgba(8,8,16,0.55); }

.play-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.45);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); transition: transform 0.3s;
}

.play-btn:hover .play-icon { transform: scale(1.08); }

.play-icon svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }

.archive-info {
  padding: 40px;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
  background: rgba(255,255,255,0.02);
}

.archive-date {
  font-family: 'Space Mono', monospace;
  font-size: 11px; color: var(--cyan); letter-spacing: 0.2em;
}

.archive-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600; color: #fff;
}

.archive-desc {
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.85; font-weight: 300;
}

.archive-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px; color: var(--cyan); letter-spacing: 0.12em;
  text-decoration: none; width: fit-content;
  transition: gap 0.25s;
}

.archive-link:hover { gap: 14px; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  padding: 60px 24px;
  text-align: center;
}

.footer-logo img {
  height: 36px; width: auto;
  margin-bottom: 20px;
  opacity: 0.85;
}

.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em; line-height: 2;
}

/* ── ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
