:root {
    --bg: #05050f;
    --bg-card: rgba(255,255,255,0.04);
    --text: #ffffff;
    --text-muted: #888;
    --accent: #4fa1ff;
    --player: #fff035;
    --danger: #ff4f4f;
    --green: #64ffa1;
    --gold: #ffc84f;
    --purple: #c778ff;
    --radius: 16px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 80px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79,161,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-icon {
    width: 120px;
    height: 120px;
    border-radius: 26px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.hero .subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.badge-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.badge-free { background: rgba(100,255,161,0.15); color: var(--green); }
.badge-offline { background: rgba(79,161,255,0.15); color: var(--accent); }
.badge-noads { background: rgba(255,200,79,0.15); color: var(--gold); }

/* Features */
.features {
    padding: 40px 0;
}

.features h2 {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 28px;
}

.feature-card .icon {
    font-size: 32px;
    margin-bottom: 12px;
}

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

.feature-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Stats row */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 40px 0;
}

.stat {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 24px 12px;
}

.stat .number {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
}

.stat .label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 24px;
    color: var(--text-muted);
    font-size: 14px;
}

footer .links {
    margin-bottom: 16px;
}

footer .links a {
    margin: 0 12px;
    color: var(--text-muted);
}

footer .links a:hover { color: var(--text); }

/* Privacy page */
.legal {
    padding: 60px 0 80px;
}

.legal h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.legal .date {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 32px 0 12px;
}

.legal p, .legal ul {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 16px;
}

.legal ul {
    padding-left: 24px;
}

.legal li {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 600px) {
    .hero h1 { font-size: 36px; }
    .hero .subtitle { font-size: 17px; }
    .feature-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
}
