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

:root {
    --pink: #dabeef;
    --dark: #0f0e11;
    --border: 3px solid #dabeef;
    --font: 'Segoe UI', 'Arial Black', 'Impact', sans-serif;
}

html, body {
    height: 100%;
    color: var(--pink);
    font-family: var(--font);
}

body {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background-image: url('../images/ToxicEgirl_Hintergrund.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(15, 14, 17, 0.75);
    z-index: 0;
}

#splash {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease;
}

#splash.hidden {
    opacity: 0;
    pointer-events: none;
}

.splash-x {
    font-size: 48px;
    font-weight: 900;
    color: var(--pink);
    opacity: 0;
    animation: splashPulse 0.6s ease 3;
}

@keyframes splashPulse {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.8; transform: scale(1); }
}

.hidden { display: none !important; }

#main {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    padding: 0;
    animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── HERO ── */
.hero {
    border-bottom: var(--border);
    padding: 28px 20px 24px;
}

.hero-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--pink);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-text {
    flex: 1;
    min-width: 0;
}

.hero-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--pink);
    opacity: 0.3;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.hero-name {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.9;
    color: #fff;
    text-transform: uppercase;
    word-break: break-word;
}

.hero-bio {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--pink);
    opacity: 0.5;
}

/* ── BADGES ── */
.badges {
    display: flex;
    gap: 0;
    border-bottom: var(--border);
}

.badge {
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--pink);
    border-right: 3px solid var(--pink);
    background: rgba(218, 190, 239, 0.02);
    text-transform: uppercase;
    transition: background 0.15s ease;
}

.badge:last-child {
    border-right: none;
}

.badge:hover {
    background: rgba(218, 190, 239, 0.06);
}

/* ── STRIPS ── */
.strip {
    border-bottom: var(--border);
    padding: 16px 20px;
    position: relative;
    overflow: hidden;
}

.strip-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--pink);
    opacity: 0.25;
    margin-bottom: 4px;
    text-transform: uppercase;
}

/* audio strip */
.audio-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
}

.strip-left {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.strip-track {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0px;
}

.strip-artist {
    font-size: 11px;
    font-weight: 700;
    color: var(--pink);
    opacity: 0.4;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.strip-right {
    flex-shrink: 0;
}

.strip-btn {
    width: 48px;
    height: 48px;
    border: 3px solid var(--pink);
    background: transparent;
    color: var(--pink);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s ease;
    position: relative;
}

.strip-btn:hover {
    background: var(--pink);
    color: var(--dark);
}

.strip-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--pink);
    transition: width 0.3s linear;
}

/* link strip */
.link-strip {
    padding: 0;
}

.strip-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    text-decoration: none;
    color: #fff;
    transition: background 0.1s ease;
}

.strip-link:hover {
    background: rgba(218, 190, 239, 0.03);
}

.strip-link .strip-label {
    margin-bottom: 0;
    min-width: 70px;
}

.strip-link-text {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.strip-link-text i {
    margin-right: 8px;
    color: #7289da;
}

.strip-arrow {
    font-size: 18px;
    font-weight: 900;
    color: var(--pink);
    opacity: 0.2;
    transition: transform 0.15s ease;
}

.strip-link:hover .strip-arrow {
    transform: translateX(6px);
}

/* credit strip */
.credit-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: none;
}

.credit-strip .strip-label {
    margin-bottom: 0;
}

.strip-meta {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--pink);
    opacity: 0.15;
    text-transform: uppercase;
}

/* ── VOL STRIP ── */
.vol-strip {
    padding: 12px 20px;
}

.vol-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--pink);
    opacity: 0.4;
    font-size: 12px;
}

.vol-row i {
    width: 14px;
    text-align: center;
}

#vol-slider {
    flex: 1;
    height: 3px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(218, 190, 239, 0.1);
    outline: none;
}

#vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--pink);
    cursor: pointer;
    border: none;
}

#vol-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--pink);
    cursor: pointer;
    border: none;
}

@media (max-width: 480px) {
    .hero { padding: 20px 16px 18px; }
    .hero-row { gap: 14px; }
    .hero-avatar { width: 72px; height: 72px; }
    .hero-name { font-size: 36px; letter-spacing: -1px; }
    .hero-bio { font-size: 10px; }
    .badge { font-size: 11px; letter-spacing: 2px; padding: 12px 8px; }
}
