:root {
  --bg: #0A0E1A;
  --surface: #141B2D;
  --surface-elevated: #1C2640;
  --accent: #6C5CE7;
  --accent-light: #A29BFE;
  --text: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.6);
  --text-tertiary: rgba(255,255,255,0.35);
  --pink: #FD79A8;
  --green: #2ED573;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, 'SF Pro Rounded', 'SF Pro Display', system-ui, sans-serif;
  line-height: 1.7;
  min-height: 100vh;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10,14,26,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .logo {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

nav .links { display: flex; gap: 20px; }
nav .links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
nav .links a:hover { color: var(--text); }

h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: var(--text-tertiary);
  font-size: 14px;
  margin-bottom: 40px;
}

h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 36px 0 12px;
}

h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-light);
  margin: 24px 0 8px;
}

p, li {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 12px;
}

ul { padding-left: 20px; }
li { margin-bottom: 8px; }

a { color: var(--accent-light); }

.card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px;
  margin: 20px 0;
}

.highlight {
  background: linear-gradient(135deg, rgba(108,92,231,0.15), rgba(162,155,254,0.05));
  border: 1px solid rgba(108,92,231,0.2);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 16px 0;
}

.highlight strong { color: var(--accent-light); }

.badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
th, td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: var(--text-secondary);
}
th { color: var(--text); font-weight: 600; }

footer {
  text-align: center;
  padding: 40px 24px;
  color: var(--text-tertiary);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer a { color: var(--text-secondary); text-decoration: none; }
footer a:hover { color: var(--text); }

/* Mix share landing page */
.mix-hero {
  text-align: center;
  padding: 60px 0 40px;
}

.mix-hero .icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.sound-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 24px 0;
}

.sound-chip {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 16px;
  margin-top: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108,92,231,0.4);
}

@media (max-width: 480px) {
  .container { padding: 40px 16px 60px; }
  h1 { font-size: 26px; }
  nav .links { gap: 12px; }
  nav .links a { font-size: 13px; }
}
