:root {
  --bg: #0a0a0f;
  --bg-soft: #111118;
  --line: #2a2a35;
  --text: #f0f0f4;
  --muted: #888892;
  --accent: #c8cad0;
  --accent-color: #5a6b8a;
  --accent-hover: #7088b0;
  --accent-subtle: #3d4a60;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}


.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 22px 24px;
  background: linear-gradient(to bottom, rgba(8,8,13,0.9), rgba(8,8,13,0));
  backdrop-filter: blur(6px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  width: 100%;
  max-width: 720px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--accent-color);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.brand .bolt {
  width: 18px;
  height: 18px;
  display: block;
}

.links {
  display: flex;
  gap: 32px;
}

.links a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 6px;
  transition: color 0.2s ease;
}

.links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: var(--accent-color);
  transition: width 0.25s ease;
}

.links a:hover,
.links a.active {
  color: var(--accent-hover);
}

.links a:hover::after,
.links a.active::after {
  width: 100%;
}

.links a:focus-visible,
.brand:focus-visible,
.discord-btn:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
  border-radius: 4px;
}


.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 560px;
}

.hero-bolt {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
}

h1 {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  color: var(--text);
}



.byline {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 40px;
}

.byline span {
  color: var(--text);
  font-weight: 600;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(90, 107, 138, 0.1);
  border: 1px solid var(--accent-subtle);
  border-radius: 6px;
  font-size: 15px;
  color: var(--muted);
  margin-top: 48px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #4ecdc4;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--bg-soft);
  border: 1px solid var(--accent-subtle);
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.discord-btn.secondary {
  background: transparent;
  border-color: var(--accent-subtle);
}

.discord-btn.secondary:hover {
  border-color: var(--accent-color);
}

.discord-btn img {
  width: 20px;
  height: 20px;
  display: block;
}

.discord-btn:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .nav { gap: 24px; }
  .links { gap: 20px; }
}
