  :root {
        --bg: #080808;
        --accent: #00f2ff;
        --text: #ffffff;
        --gray: #666;
    }

    * {
        box-sizing: border-box;
        max-width: 100%;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        margin: 0;
        overflow-x: hidden;
        background: var(--bg);
        color: var(--text);
        font-family: 'Inter', sans-serif;
    }

    /* HERO */
    .hero {
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        text-align: center;
        overflow: hidden;
    }

    /* VINYL */
    .vinyl {
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        opacity: 0.45;
        pointer-events: none;
        background: radial-gradient(
            circle,
            #222 0%, 
            #111 35%, 
            #222 36%, 
            #111 55%, 
            #222 56%, 
            #000 100%
        );
        box-shadow: 0 0 40px rgba(255,255,255,0.08);
    }

    .vinyl::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: repeating-radial-gradient(
            circle,
            rgba(255,255,255,0.06) 0px,
            transparent 2px,
            transparent 4px
        );
    }

    .vinyl-top-right {
        top: -200px;
        right: -200px;
        animation: rotate 20s linear infinite;
    }

    .vinyl-bottom-left {
        bottom: -250px;
        left: -250px;
        animation: rotate 25s linear infinite reverse;
    }

    @keyframes rotate {
        to { transform: rotate(360deg); }
    }

    .content {
        z-index: 2;
        padding: 20px;
    }

    .logo {
        max-width: 320px;
        width: 100%;
    }

    .domain {
        font-size: 0.8rem;
        letter-spacing: 0.4em;
        color: var(--gray);
        margin: 15px 0;
    }

    .center-nav {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .center-nav a {
        color: var(--gray);
        text-decoration: none;
        font-size: 0.75rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        font-weight: 700;
    }

    .center-nav a:hover {
        color: #fff;
    }

    .center-nav a[aria-current="page"] {
        color: #fff;
    }

    /* WAVEFORM */
    .waveform-container {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 120px;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        opacity: 0.5;
        overflow: hidden;
        padding: 0 10px;
    }

    .bar {
        flex: 1;
        max-width: 3px;
        margin: 0 0.5px;
        background: linear-gradient(to top, var(--accent), transparent);
        border-radius: 2px;
        animation: bounce 1.2s ease-in-out infinite alternate;
    }

    @keyframes bounce {
        from { height: 5px; }
        to { height: 60px; }
    }

    /* IMPRESSUM */
    #impressum {
        scroll-margin-top: 50px;
    }

    .impressum-section {
        display: flex;
        padding: 80px 10%;
        gap: 50px;
    }

    .impressum-left {
        flex: 1;
        font-size: 2.5rem;
        font-weight: 900;
    }

    .impressum-right {
        flex: 1;
        font-size: 0.9rem;
        line-height: 1.8;
        color: #ccc;
    }

    .impressum-right strong {
        display: block;
        color: #fff;
        margin-top: 15px;
    }

    .impressum-right.grid {
        display: grid;
        grid-template-columns: 3fr 2fr; /* kiri lebih lebar */
        gap: 40px;
    }


    /* FOOTER */
    #contact {
        scroll-margin-top: 50px;
    }

    footer {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding: 30px 20px;
        text-align: center;
        font-size: 0.75rem;
        color: var(--gray);
    }

    footer .contact {
        margin-top: 10px;
        line-height: 1.6;
    }

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

    footer a:hover {
        text-decoration: underline;
    }

    .artist-hero {
        min-height: 72vh;
    }

    .artist-page {
        padding: 72px 8% 110px;
    }

    .artist-intro {
        margin: 0 auto 22px;
        max-width: 1180px;
    }

    .artist-intro h1 {
        margin: 0;
        font-size: clamp(2.8rem, 8vw, 7rem);
        font-weight: 900;
        line-height: 0.9;
        text-transform: uppercase;
    }

    .artist-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 18px;
        margin: 0 auto 40px;
        max-width: 1180px;
        position: sticky;
        top: 0;
        z-index: 5;
        padding: 14px 0;
        background: rgba(8, 8, 8, 0.72);
        backdrop-filter: blur(16px);
    }

    .artist-tab {
        color: var(--gray);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.24em;
        text-decoration: none;
        text-transform: uppercase;
    }

    .artist-tab:hover,
    .artist-tab.is-active {
        color: #fff;
        text-decoration: underline;
        text-underline-offset: 10px;
    }

    .artist-section {
        max-width: 1180px;
        margin: 0 auto;
        padding: 28px 0 84px;
        scroll-margin-top: 70px;
    }

    .artist-section + .artist-section {
        border-top: 1px solid rgba(255,255,255,0.08);
        padding-top: 68px;
    }

    .artist-section-heading {
        margin-bottom: 24px;
    }

    .artist-section-heading span {
        color: rgba(255,255,255,0.42);
        display: inline-block;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.32em;
        text-transform: uppercase;
    }

    .artist-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
        gap: 18px;
    }

    .artist-card {
        aspect-ratio: 4 / 5;
        border-radius: 8px;
        cursor: pointer;
        overflow: hidden;
        position: relative;
        background: #111;
        isolation: isolate;
    }

    .artist-card::before {
        background: linear-gradient(135deg, var(--card-accent), transparent 58%);
        content: "";
        inset: 0;
        opacity: 0.18;
        position: absolute;
        transition: opacity 0.25s ease;
        z-index: 1;
    }

    .artist-card-image {
        align-items: center;
        display: flex;
        height: 100%;
        justify-content: center;
        padding: 24px;
        transform: scale(1);
        transition: transform 0.35s ease, filter 0.35s ease;
        width: 100%;
    }

    .artist-card-image img {
        height: 100%;
        object-fit: contain;
        opacity: 0.86;
        width: 100%;
    }

    .artist-card-overlay {
        align-items: flex-start;
        background: linear-gradient(to top, rgba(0,0,0,0.88), rgba(0,0,0,0.12));
        display: flex;
        flex-direction: column;
        inset: 0;
        justify-content: flex-end;
        opacity: 0;
        padding: 22px;
        position: absolute;
        transform: translateY(12px);
        transition: opacity 0.25s ease, transform 0.25s ease;
        z-index: 2;
    }

    .artist-card-overlay h2 {
        color: #fff;
        font-size: 1.05rem;
        line-height: 1.15;
        margin: 0 0 10px;
    }

    .artist-card-overlay span {
        color: var(--accent);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
    }

    .artist-card:hover::before {
        opacity: 0.34;
    }

    .artist-card:hover .artist-card-image {
        filter: grayscale(1) brightness(0.7);
        transform: scale(1.06);
    }

    .artist-card:hover .artist-card-overlay,
    .artist-card:focus-within .artist-card-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    /* 🔥 MOBILE FIX VINYL POSITION */
    @media (max-width: 768px) {

        .vinyl {
            width: 300px;
            height: 300px;
        }

        .vinyl-top-right {
            top: -60px;
            right: -50px;
        }

        .vinyl-bottom-left {
            bottom: -100px;
            left: -60px;
        }

        .impressum-section {
            flex-direction: column;
            padding: 50px 20px;
        }

        .impressum-left {
            font-size: 1.8rem;
        }

        .artist-hero {
            min-height: 68vh;
        }

        .artist-page {
            padding: 54px 20px 76px;
        }

        .artist-intro {
            margin-bottom: 30px;
        }

        .artist-tabs {
            justify-content: flex-start;
            width: 100%;
        }

        .artist-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .artist-card-overlay {
            opacity: 1;
            padding: 16px;
            transform: translateY(0);
        }

        .artist-card-overlay h2 {
            font-size: 0.88rem;
        }
    }
