```css
/* ==========================================================================
   MUSIK SIDE - TONER FRA HJERTET
   CYBER NEON / DIGITAL STYLE
========================================================================== */


/* ==========================================================================
   1. HOVEDBAGGRUND
========================================================================== */

.musik-side-baggrund {
    display: flex;
    flex-direction: column;
    align-items: center;

    min-height: 100vh;

    padding: 3rem 1.5rem;
    gap: 35px;

    background: #030a16;
    color: #ffffff;
}

/* =====================================================
   HELE SIDENS BAGGRUND
===================================================== */

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: #030a16;
    color: #ffffff;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(circle at top,
            rgba(0, 170, 255, 0.12),
            transparent 40%),
        linear-gradient(145deg,
            #030a16,
            #06142a,
            #020812);

    background-attachment: fixed;
}

/* ==========================================================================
   2. HERO
========================================================================== */

.top-hero-container {
    display: grid;

    grid-template-columns: 140px minmax(0, 1fr) 140px;

    align-items: center;

    gap: 35px;

    width: 95%;
    max-width: 1100px;

    margin: 25px auto;
}


/* ==========================================================================
   BILLEDER
========================================================================== */

.min-bass-venstre,
.min-bass-hoejre,
.top-hero-container img {
    width: 140px;
    height: 140px;

    object-fit: cover;

    border-radius: 50%;
    border: 4px solid rgb(48, 36, 219);

    box-shadow:
        0 0 15px rgb(48, 36, 219),
        0 0 30px rgba(48, 36, 219, .45);

    transition: .35s;
}

.min-bass-venstre:hover,
.min-bass-hoejre:hover {
    transform: scale(1.08);

    box-shadow:
        0 0 25px #00aaff,
        0 0 45px rgba(0, 170, 255, .6);
}


/* ==========================================================================
   TITEL
========================================================================== */

.title-midte {
    width: 100%;
    max-width: 900px;

    margin: auto;

    text-align: center;
}


/* ==========================================================================
   3. OVERSKRIFTER
========================================================================== */

.musik-side-1,
.musik-side-2 {
    position: relative;

    display: flex;

    justify-content: center;
    align-items: center;

    width: 90%;
    max-width: 850px;

    min-height: 120px;

    margin: 45px auto;
    padding: 30px 35px;

    box-sizing: border-box;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: clamp(2rem, 4vw, 2.8rem);

    font-weight: 800;

    letter-spacing: 2px;
    line-height: 1.2;

    color: rgba(240, 100, 110, 0.9);

    text-align: center;

    background:
        linear-gradient(145deg,
            rgba(6, 20, 42, .95),
            rgba(8, 29, 58, .98));

    border: 3px solid #3024db;
    border-radius: 25px;



    box-shadow:
        0 15px 40px rgba(0, 0, 0, .7),
        0 0 25px rgba(0, 170, 255, .35),
        inset 0 0 20px rgba(48, 36, 219, .2);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

    animation: neonPulse 5s ease-in-out infinite;
}


/* ==========================================================================
   OVERSKRIFT HOVER
========================================================================== */

.musik-side-1:hover,
.musik-side-2:hover {
    transform: translateY(-5px) scale(1.02);

    box-shadow:
        0 0 35px #00aaff,
        0 0 55px rgba(0, 170, 255, .55);
}


/* ==========================================================================
   BLÅ LINJE UNDER OVERSKRIFT
========================================================================== */

.musik-side-1::after,
.musik-side-2::after {
    content: "";

    position: absolute;

    left: 15%;
    bottom: 6px;

    width: 70%;
    height: 4px;

    background:
        linear-gradient(90deg,
            transparent,
            #00aaff,
            #45cfc6,
            transparent);

    box-shadow:
        0 0 10px #00aaff,
        0 0 20px #00aaff;
}


/* ==========================================================================
   4. MUSIK TEKSTBOKSE
========================================================================== */

.musik-p {
    width: 90%;
    max-width: 900px;

    margin: 35px auto;
    padding: 35px;

    text-align: center;

    font-size: 20px;
    line-height: 1.8;

    color: #d7f7ff;

    background:
        linear-gradient(145deg,
            #06142a,
            #081d3a);

    border: 5px solid rgb(48, 36, 219);
    border-radius: 25px;

    box-shadow:
        0 0 18px rgba(48, 36, 219, .45);

    transition: .3s;

    animation: neonPulse 5s ease-in-out infinite;
}

.musik-p:hover {
    transform: translateY(-5px);

    border-color: #00aaff;

    box-shadow:
        0 0 25px rgba(0, 170, 255, .7),
        0 0 45px rgba(0, 170, 255, .35);
}
.genre-overskrift {
    position: relative;
    text-align: center;
}

.genre-overskrift::before {
    content: "🎵";
    position: absolute;
    left: 0;
    top:0;
}

.genre-overskrift::after {
    content: "🎵";
    position: absolute;
    right: 0;
    top: 0;
}

/* ============================================================
   MUSIK GENRER
   Samme ikon-look som på FOTOS-siden
============================================================ */

main {
    position: relative;
}


/* ============================================================
   GENRE-CONTAINER
============================================================ */

.genres {
    width: 95%;
    max-width: 1100px;

    margin: 20px auto 35px;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(135px, 1fr));

    gap: 10px;

    justify-content: center;
    align-items: stretch;

    position: relative;
    z-index: 10;

    box-sizing: border-box;
}


/* ============================================================
   SELVE GENRE-IKONERNE
============================================================ */

.genres span {

    display: flex;

    justify-content: center;
    align-items: center;

    min-height: 20px;

    padding: 8px 10px;

    box-sizing: border-box;

    color: #64dc96;

    background:
        linear-gradient(145deg,
            rgba(6, 20, 42, 0.95),
            rgba(8, 29, 58, 0.98));

    border: 2px solid rgba(100, 220, 150, 0.6);

    border-radius: 18px;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 0.9rem;

    font-weight: 300;

    line-height: 1.2;

    text-align: center;

    white-space: nowrap;

    cursor: pointer;

    box-shadow:
        0 0 10px rgba(100, 220, 150, 0.25);

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.genre-overskrift {
    width: 95%;
    max-width: 1100px;

    margin: 20px auto 35px;

    display: flex;

    justify-content: center;
    align-items: center;

    grid-template-columns:
        repeat(auto-fit, minmax(135px, 1fr));

    gap: 10px;

    justify-content: center;
    align-items: stretch;

    position: relative;
    z-index: 10;

    box-sizing: border-box;
}

/* ============================================================
   HOVER
============================================================ */

.genres span:hover {

    color: #06142a;

    background: #64dc96;

    border-color: #64dc96;

    box-shadow:
        0 0 12px rgba(100, 220, 150, 0.8),
        0 0 25px rgba(100, 220, 150, 0.5);

    transform:
        translateY(-4px) scale(1.03);
}


/* ============================================================
   KLIK / ACTIVE
============================================================ */

.genres span:active {

    transform:
        translateY(-1px) scale(0.97);
}


/* ============================================================
   AKTIV GENRE
   Hvis JavaScript tilføjer .active
============================================================ */

.genres span.active {

    color: #ffffff;

    background:
        linear-gradient(145deg,
            #3024db,
            #00aaff);

    border-color: #00aaff;

    box-shadow:
        0 0 15px #00aaff,
        0 0 30px rgba(0, 170, 255, 0.6);

    transform: scale(1.03);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 768px) {

    .genres {

        width: 94%;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 8px;

        margin-top: 15px;
    }

    .genres span {

        min-height: 40px;

        padding: 7px 6px;

        font-size: 0.82rem;

        border-radius: 15px;
    }
}


/* ============================================================
   MOBIL
============================================================ */

@media (max-width: 480px) {

    .genres {

        width: 96%;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 8px;

        margin-top: 12px;
    }

    .genres span {

        min-height: 38px;

        padding: 7px 5px;

        font-size: 0.78rem;

        border-radius: 13px;

        white-space: normal;
    }
}


/* ============================================================
   REDUCERET BEVÆGELSE
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .genres span {

        transition: none;
    }
}

```
/* ============================================================
   TABLET
============================================================ */

@media (max-width: 768px) {

    .genres {

        width: 94%;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 8px;

        margin-top: 15px;
    }

    .genres span {

        min-height: 40px;

        padding: 8px 10px;

        font-size: 0.88rem;

        border-radius: 15px;
    }
}


/* ============================================================
   MOBIL
============================================================ */

@media (max-width: 480px) {

    .genres {

        width: 96%;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 8px;

        margin-top: 12px;
    }

    .genres span {

        min-height: 38px;

        padding: 7px 8px;

        font-size: 0.82rem;

        border-radius: 14px;

        white-space: normal;
    }
}








.instruments span {
    display: flex;
    margin: 7px;
    
    justify-content: center;
    align-items: center;

    min-height: 40px;

    padding: 8px 8px;

    box-sizing: border-box;

    color: #64dc96;

    background:
        linear-gradient(145deg,
            rgba(6, 20, 42, 0.95),
            rgba(8, 29, 58, 0.98));

    border: 2px solid rgba(100, 220, 150, 0.6);

    border-radius: 18px;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 0.9rem;

    font-weight: 600;

    text-align: center;

    white-space: nowrap;

    box-shadow:
        0 0 10px rgba(100, 220, 150, 0.25);

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.instruments span:hover {
    color: #06142a;

    background: #64dc96;

    border-color: #64dc96;

    box-shadow:
        0 0 12px rgba(100, 220, 150, 0.8),
        0 0 25px rgba(100, 220, 150, 0.5);

    transform: translateY(-3px);
}


/* ==========================================================================
   CITAT
========================================================================== */

.hjerte-citat {
    width: 90%;
    max-width: 650px;

    margin: 50px auto;
    padding: 30px;

    text-align: center;

    background:
        linear-gradient(145deg,
            #051937,
            #001026);

    border: 4px solid #00aaff;
    border-radius: 25px;

    box-shadow:
        0 0 20px #00aaff;

    transition: .3s;

    animation: neonPulse 5s ease-in-out infinite;
}

.hjerte-citat:hover {
    transform: scale(1.03);

    box-shadow:
        0 0 35px #00aaff;
}

.hjerte-citat-text {
    color: #7fdfff;

    font-size: 2.2rem;

    font-family:
        "Brush Script MT",
        cursive;
}


/* ==========================================================================
   KONTAKT KNAP
========================================================================== */

.kontakt-container {
    display: flex;

    justify-content: center;

    margin: 50px auto;
}


/* ==========================================================================
   KNAP1 + KNAP2
   TILBAGE / NÆSTE
========================================================================== */

.knap1,
.knap2 {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    width: 260px;
    min-width: 260px;

    padding: 15px 35px;

    border-radius: 50px;

    background:
        linear-gradient(145deg,
            #06142a,
            #081d3a);

    border: 3px solid #3024db;

    color: #45cfc6;

    font-size: 1.4rem;
    font-weight: bold;

    text-decoration: none;

    text-shadow:
        0 0 8px #00aaff;

    box-shadow:
        0 0 18px rgba(48, 36, 219, .45);

    box-sizing: border-box;

    transition: .3s ease;
}

.knap1:hover,
.knap2:hover {
    transform: scale(1.05);

    border-color: #00aaff;

    box-shadow:
        0 0 30px #00aaff;
}


/* ==========================================================================
   KNAP CONTAINER
========================================================================== */

.knap-container-layout {
    display: flex;

    justify-content: space-between;
    align-items: center;

    width: 90%;
    max-width: 1200px;

    margin: 30px auto;

    gap: 30px;
}


/* ==========================================================================
   ANDRE LINKS
========================================================================== */

.andre-links {
    display: flex;

    justify-content: center;

    margin: 45px auto 25px;
}

.andre-links .knap {
    display: flex;

    justify-content: center;
    align-items: center;

    min-width: 240px;

    padding: 14px 30px;

    border-radius: 15px;

    text-decoration: none;

    background:
        linear-gradient(145deg,
            #06142a,
            #081d3a);

    border: 3px solid #00aaff;

    color: #45cfc6;

    font-size: 1.2rem;
    font-weight: bold;

    box-shadow:
        0 0 18px rgba(0, 170, 255, .45);

    transition: .3s;

    animation: neonPulse 5s ease-in-out infinite;
}

.andre-links .knap:hover {
    transform: translateY(-4px);

    color: #ff2d50;

    border-color: #ff2d50;

    box-shadow:
        0 0 25px #ff2d50;
}


/* ==========================================================================
   YOUTUBE / LINKS
========================================================================== */

.it-navigation-knapper {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 30px;

    width: 100%;

    margin: 50px auto;
}

.it-navigation-knapper .knap1,
.it-navigation-knapper .knap2 {
    display: flex;

    justify-content: center;
    align-items: center;

    width: 350px;

    min-height: 80px;

    padding: 15px 20px;

    border-radius: 15px;

    text-align: center;

    text-decoration: none;

    background:
        linear-gradient(145deg,
            #06142a,
            #081d3a);

    border: 3px solid #00aaff;

    color: #45cfc6;

    font-size: 1rem;
    font-weight: bold;

    box-shadow:
        0 0 15px rgba(0, 170, 255, .45);

    transition: .3s;
}

.it-navigation-knapper .knap1:hover,
.it-navigation-knapper .knap2:hover {
    transform: translateY(-4px);

    border-color: #ff2d50;

    color: #ffffff;

    box-shadow:
        0 0 28px #ff2d50;
}


/* ==========================================================================
   YOUTUBE KNAP
========================================================================== */

.youtube-knap {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 15px;

    width: 350px;
    min-height: 80px;

    padding: 15px;

    border-radius: 20px;

    background:
        linear-gradient(145deg,
            #06142a,
            #081d3a);

    border: 4px solid #ff2d50;

    color: #ffffff;

    font-size: 1.2rem;
    font-weight: bold;

    text-decoration: none;

    box-shadow:
        0 0 20px #ff2d50;

    transition: .35s;
}

.youtube-knap:hover {
    transform: scale(1.08);

    box-shadow:
        0 0 35px #ff2d50,
        0 0 60px rgba(255, 45, 80, .5);
}


/* ==========================================================================
   KNAP IKONER
========================================================================== */

.knap-ikon {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    object-fit: cover;

    border: 2px solid #00aaff;

    box-shadow:
        0 0 10px #00aaff;
}


/* ==========================================================================
   KNAPPER I EN RÆKKE
========================================================================== */

.knap-række {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 25px;

    width: 100%;

    margin: 40px auto;
}


/* ==========================================================================
   LILLE KNAP
========================================================================== */

.knap-lille {
    padding: 10px 25px;

    min-width: 180px;

    font-size: 1rem;
}


/* ==========================================================================
   KONTAKT KNAP
========================================================================== */

.kontakt-knap {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    padding: 15px 35px;

    min-width: 260px;

    border-radius: 50px;

    background:
        linear-gradient(145deg,
            #06142a,
            #081d3a);

    border: 3px solid rgb(48, 36, 219);

    color: #45cfc6;

    font-size: 1.4rem;
    font-weight: bold;

    text-decoration: none;

    text-shadow:
        0 0 8px #00aaff;

    box-shadow:
        0 0 18px rgba(48, 36, 219, .45);

    transition: .3s;

    animation: neonPulse 5s ease-in-out infinite;
}

.kontakt-knap:hover {
    transform: scale(1.05);

    border-color: #00aaff;

    box-shadow:
        0 0 30px #00aaff;
}


/* ==========================================================================
   FOOTER
========================================================================== */

.site-footer {
    width: 90%;
    max-width: 600px;

    margin: 10px auto 0;
    padding: 18px 15px;

    text-align: center;

    background:
        linear-gradient(145deg,
            rgba(0, 0, 0, 0.96),
            rgba(0, 20, 30, 0.92));

    border-top: 3px solid #00aaff;

    border-radius:
        20px 20px 0 0;

    box-shadow:
        0 -5px 25px rgba(0, 170, 255, 0.6),
        0 -10px 40px rgba(0, 255, 102, 0.2),
        inset 0 10px 30px rgba(0, 255, 102, 0.08);

    box-sizing: border-box;
}

.site-footer p {
    margin: 0;

    color: #00ff66;

    font-size: 20px;
    font-weight: bold;

    line-height: 1.6;

    letter-spacing: 1px;

    text-shadow:
        0 0 6px #00aaff,
        0 0 12px #00ff66,
        0 0 22px #00aaff,
        0 0 35px rgba(0, 255, 102, 0.7);

    transition:
        color 0.3s ease,
        text-shadow 0.3s ease;
}

.site-footer:hover p {
    color: #ffffff;

    text-shadow:
        0 0 6px #ffffff,
        0 0 12px #00aaff,
        0 0 25px #00ff66,
        0 0 40px #00aaff;
}


/* ==========================================================================
   ANIMATION
========================================================================== */

@keyframes neonPulse {

    0% {
        box-shadow:
            0 0 15px rgba(0, 170, 255, .35);
    }

    50% {
        box-shadow:
            0 0 35px rgba(0, 170, 255, .85);
    }

    100% {
        box-shadow:
            0 0 15px rgba(0, 170, 255, .35);
    }
}


/* ==========================================================================
   PÆNE AFSTANDE
========================================================================== */

section {
    margin-bottom: 60px;
}

h1,
h2 {
    margin-bottom: 30px;
}

p {
    margin-bottom: 20px;
}


/* ==========================================================================
   SCROLL
========================================================================== */

html {
    scroll-behavior: smooth;
}


/* ==========================================================================
   MARKERING AF TEKST
========================================================================== */

::selection {
    background: #00aaff;
    color: white;
}


/* ==========================================================================
   FOCUS
========================================================================== */

a:focus {
    outline: 3px solid #45cfc6;
    outline-offset: 5px;
}


/* ==========================================================================
   RESPONSIVE - TABLET
========================================================================== */

@media (max-width: 992px) {

    .top-hero-container {
        grid-template-columns: 120px 1fr 120px;
    }

    .musik-side-1,
    .musik-side-2 {
        font-size: 34px;
    }

    .musik-p {
        font-size: 19px;
    }
}


/* ==========================================================================
   RESPONSIVE - MOBIL
========================================================================== */

@media (max-width: 768px) {

    .top-hero-container {
        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 20px;
    }

    .min-bass-venstre,
    .min-bass-hoejre {
        width: 120px;
        height: 120px;
    }

    .musik-side-1,
    .musik-side-2 {
        font-size: 28px;
        padding: 15px;
    }

    .musik-p {
        width: 95%;
        padding: 20px;
        font-size: 18px;
    }

    .knap-container-layout {
        flex-direction: column;
        gap: 20px;
    }

    .knap1,
    .knap2 {
        width: 90%;
        min-width: 0;
        max-width: 300px;
    }

    .kontakt-knap {
        width: 90%;
        max-width: 320px;
    }

    .it-navigation-knapper {
        flex-direction: column;
    }

    .it-navigation-knapper .knap1,
    .it-navigation-knapper .knap2 {
        width: 90%;
        max-width: 320px;
    }

    .youtube-knap {
        width: 90%;
        max-width: 330px;
        font-size: 1rem;
    }

    .site-footer {
        width: 90%;
        padding: 15px 10px;
    }

    .site-footer p {
        font-size: 15px;
        letter-spacing: .5px;
    }
}


/* ==========================================================================
   RESPONSIVE - SMÅ MOBILER
========================================================================== */

@media (max-width: 480px) {

    .musik-side-1,
    .musik-side-2 {
        font-size: 24px;
    }

    .musik-p {
        font-size: 16px;
        line-height: 1.7;
    }

    .hjerte-citat-text {
        font-size: 1.8rem;
    }

    .site-footer {
        width: 95%;
    }

    .site-footer p {
        font-size: 13px;
    }
}


/* ==========================================================================
   STORE SKÆRME
========================================================================== */

@media (min-width: 1400px) {

    .musik-side-1,
    .musik-side-2 {
        font-size: 48px;
    }

    .musik-p {
        font-size: 22px;
        max-width: 1000px;
    }
}

```