:root {
  --bg: #050510;
  --bg-card: #0a0a1a;
  --bg-card-hover: #0f0f22;
  --fg: #e8e8f0;
  --fg-muted: #8080a0;
  --accent-cyan: #00F5FF;
  --accent-magenta: #FF2D7A;
  --border: rgba(0, 245, 255, 0.1);
  --border-hover: rgba(0, 245, 255, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  color: #fff;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.1;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 40px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(0, 245, 255, 0.06) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 20% 70%, rgba(255, 45, 122, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 24px;
  opacity: 0.8;
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  background: linear-gradient(135deg, #fff 40%, rgba(255,255,255,0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  font-weight: 300;
}

.hero-cta {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 28px;
  background: linear-gradient(135deg, rgba(0,245,255,0.15) 0%, rgba(0,245,255,0.07) 100%);
  border: 1px solid rgba(0,245,255,0.4);
  border-radius: 8px;
  color: #00F5FF;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.hero-cta:hover {
  background: linear-gradient(135deg, rgba(0,245,255,0.25) 0%, rgba(0,245,255,0.14) 100%);
  border-color: rgba(0,245,255,0.65);
  transform: translateY(-1px);
}

.hero-glyph {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  opacity: 0.6;
  animation: rotate-slow 40s linear infinite;
}

@keyframes rotate-slow {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

/* STATS */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  padding: 40px 40px;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 16px 24px;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 8px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* FEATURES */
.features {
  padding: 100px 40px;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg-card);
  padding: 36px 32px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: var(--bg-card-hover);
}

.feature-icon {
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* EVENTS */
.events-preview {
  padding: 80px 40px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.events-inner {
  max-width: 800px;
  margin: 0 auto;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 32px;
}

.event-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  transition: background 0.15s;
}

.event-row:last-child { border-bottom: none; }
.event-row:hover { background: #070720; }

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  padding: 8px 12px;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.event-day {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.event-num {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.event-info {
  flex: 1;
}

.event-name {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.event-meta {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
}

.event-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.tag-ga { background: rgba(0, 245, 255, 0.1); color: var(--accent-cyan); }
.tag-vip { background: rgba(255, 45, 122, 0.1); color: var(--accent-magenta); }
.tag-community { background: rgba(128, 128, 160, 0.15); color: var(--fg-muted); }

events-note {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
  text-align: center;
}

/* PRIVATE EVENTS */
.private-events {
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--bg) 0%, #07071a 100%);
}

.private-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.private-content p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
}

.private-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.spec-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.private-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.tech-badge:last-child { border-bottom: none; }

/* CLOSING */
.closing {
  padding: 120px 40px;
  text-align: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-glyph {
  width: 80px;
  margin: 0 auto 40px;
  opacity: 0.5;
}

.closing-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 300;
}

.footer-links {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 50px; }
  .hero-glyph { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .private-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-inner { gap: 0; }
  .stat-item { min-width: 50%; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .event-tag { display: none; }
  .features, .events-preview, .private-events, .closing { padding: 60px 24px; }
  .closing { padding: 80px 24px; }
}