:root {
  --bg: #0f0f0f;
  --bg2: #181818;
  --bg3: #212121;
  --border: #2a2a2a;
  --text: #e8e8e8;
  --text-muted: #888;
  --accent: #9146ff;
  --accent-hover: #7c2ff0;
}

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

html {
  scroll-behavior: smooth;
}

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

/* NAV */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

nav ul a:hover {
  color: var(--text);
}

/* MAIN */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* HERO */
.hero {
  padding: 6rem 0 5rem;
  border-bottom: 1px solid var(--border);
}

.hero-tag {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.hero h1 span {
  color: var(--accent);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* BUTTON */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* CARDS SECTION */
.cards-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.cards-section h2,
.links-section h2,
.contact-section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  color: var(--text);
}

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

.card {
  background: var(--bg2);
  padding: 2rem;
  transition: background 0.2s;
}

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

.card-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* LINKS */
.links-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.link-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 1.8rem;
  background: var(--bg2);
  text-decoration: none;
  transition: background 0.2s;
}

.link-item:hover {
  background: var(--bg3);
}

.link-platform {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 70px;
  color: var(--text);
}

.link-item.twitch .link-platform {
  color: var(--accent);
}

.link-handle {
  font-size: 0.875rem;
  color: var(--text-muted);
  flex: 1;
}

.link-arrow {
  color: var(--text-muted);
  font-size: 1rem;
  transition: transform 0.2s;
}

.link-item:hover .link-arrow {
  transform: translateX(4px);
  color: var(--text);
}

/* CONTACT */
.contact-section {
  padding: 5rem 0;
  text-align: center;
}

.contact-section p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  nav { padding: 1rem 1.2rem; }
  nav ul { gap: 1.2rem; }
  main { padding: 0 1.2rem; }
  .hero { padding: 4rem 0 3.5rem; }
  .cards { grid-template-columns: 1fr; }
  .cards-section, .links-section, .contact-section { padding: 3.5rem 0; }
  .link-item { padding: 1.2rem; }
}
