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

:root {
    --bg: #080808;
    --surface: #0f0f0f;
    --border: #1e1e1e;
    --text: #e8e8e8;
    --muted: #555;
    --muted2: #888;
    --accent: #c8ff00;
    --accent-dim: rgba(200,255,0,0.07);
    --font: 'JetBrains Mono', monospace;
}

html, body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 13px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.page {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

/* ── HERO ── */
.hero {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 56px;
    animation: fadeUp .5s ease both;
}

.hero-label {
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--accent);
}

.hero-name {
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 12px;
}

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

.hero-genre {
    font-size: 11px;
    color: var(--muted2);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-desc {
    font-size: 12px;
    color: var(--muted2);
    max-width: 420px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background .15s, color .15s;
}

.hero-cta:hover {
    background: var(--accent);
    color: #000;
}

/* avatar side */
.hero-visual {
    position: relative;
    width: 180px;
    flex-shrink: 0;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid var(--border);
    border-radius: 6px;
}

.hero-avatar {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    filter: grayscale(20%);
}

.hero-badge {
    position: absolute;
    bottom: -12px;
    right: -12px;
    background: var(--accent);
    color: #000;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 2px;
}

/* ── ABOUT STRIP ── */
.about-strip {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 56px;
    animation: fadeUp .5s .1s ease both;
}

.about-avatar-wrap {
    position: relative;
}

.about-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    display: block;
}

.online-dot {
    position: absolute;
    bottom: 4px; right: 4px;
    width: 12px; height: 12px;
    background: var(--accent);
    border-radius: 50%;
    border: 2px solid var(--bg);
}

.about-content {}

.section-tag {
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.about-headline {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--text);
    margin-bottom: 10px;
}

.about-text {
    font-size: 12px;
    color: var(--muted2);
    line-height: 1.9;
    margin-bottom: 18px;
    max-width: 520px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    font-size: 10px;
    padding: 3px 9px;
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--muted2);
    letter-spacing: .04em;
}

.tag.accent {
    border-color: rgba(200,255,0,0.3);
    color: var(--accent);
    background: var(--accent-dim);
}

/* ── STATS ROW ── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 56px;
    animation: fadeUp .5s .2s ease both;
}

.stat-cell {
    background: var(--surface);
    padding: 20px 16px;
    text-align: center;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -.04em;
    display: block;
}

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

/* ── LATEST RELEASE ── */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}

.section-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.release-block {
    animation: fadeUp .5s .3s ease both;
    margin-bottom: 56px;
}

.spotify-wrap {
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.spotify-wrap iframe {
    display: block;
    border: none;
}

/* ── SOCIALS ── */
.socials-block {
    animation: fadeUp .5s .4s ease both;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--muted2);
    text-decoration: none;
    font-size: 11px;
    transition: border-color .15s, color .15s, background .15s;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}

.social-link i { width: 14px; text-align: center; }

/* ── FOOTER ── */
.foot {
    margin-top: 64px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .06em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.foot a { color: var(--muted); text-decoration: none; }
.foot a:hover { color: var(--accent); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        width: 120px;
        margin: 0 auto;
    }
    .hero-avatar { width: 120px; height: 120px; }
    .about-strip {
        grid-template-columns: 1fr;
    }
    .stats-row {
        grid-template-columns: repeat(3, 1fr);
    }
}
