  :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;
    }

    /* 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;
    }
    

    /* 🔥 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;
        }
    }