/* =========================
   RESET + BASE
========================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: Arial, sans-serif;
    color: #fff;
    overflow-x: hidden;
    background: #000;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url('images/back_logo.png') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

/* donkere overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
    z-index: 0;
}

/* zorg dat content boven overlay zit */
.navbar,
.floating-logo,
.page,
footer {
    position: relative;
    z-index: 1;
}

/* =========================
   FLOATING LOGO
========================= */

.floating-logo {
    position: fixed;
    top: 8px;
    left: clamp(24px, 4vw, 80px);
    z-index: 1100;
    cursor: pointer;
    display: block;
}

.floating-logo img {
    display: block;
    height: 90px;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.45));
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: rgba(10, 15, 30, 0.55);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 72px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #9a9a9a;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    transition: color .25s ease;
}

.nav-links a::after {
    content: attr(data-text);
    font-weight: 700;
    visibility: hidden;
    display: block;
    height: 0;
    overflow: hidden;
}

.nav-links a:hover,
.nav-links a.active {
    animation: navBlueGlow .35s forwards;
    font-weight: 700;
}

@keyframes navBlueGlow {
    0% { color: #1e4f9e; }
    100% { color: #8fd3ff; }
}

/* =========================
   PAGE LAYOUT
========================= */

.page {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding: 110px 20px 110px;
}

.hero {
    max-width: 900px;
    width: 100%;
}

.content-page {
    width: 100%;
    max-width: 1100px;
    padding-top: 20px;
}

.narrow-page,
.music-page {
    max-width: 820px;
}

.page-title,
h1 {
    color: #38BDF8;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.08em;
}

.page-text {
    margin: 0 0 40px;
    color: #9a9a9a;
    font-size: 1rem;
    line-height: 1.8;
}

.text-left {
    text-align: left;
}

/* =========================
   SHARED CARD STYLE
========================= */

.info-card,
.music-card,
.music-embed-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.info-card {
    padding: 28px;
}

.music-card {
    padding: 24px;
}

.music-embed-card {
    padding: 18px;
    text-align: left;
}
.info-card-image {
    width: 100%;
    max-width: 265px;
    float: right;
    margin: 10px 0 20px 30px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.15) inset,
        0 12px 40px rgba(0,0,0,0.6);
}

.info-card p {
    color: #d3d3d3;
    line-height: 1.8;
    margin: 0 0 18px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

/* =========================
   HOME
========================= */

.release-label {
    font-size: 0.95rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #9a9a9a;
    margin-bottom: 26px;
}

.release-image {
    width: min(90vw, 420px);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 
        0 12px 40px rgba(0,0,0,0.6),
        0 0 0 1px rgba(56,189,248,0.08) inset;
}

.track-title {
    margin: 0 0 30px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

/* =========================
   BUTTONS
========================= */

.spotify-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 999px;
    background: #1DB954;
    color: #000;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(29,185,84,0.35);
    transition: all .25s ease;
}

.spotify-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(29,185,84,0.5);
    background: #1ed760;
}

.form-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 999px;
    background: #1e4f9e;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    box-shadow: 0 10px 30px rgba(30,79,158,0.35);
    transition: all .25s ease;
}

.form-button:hover {
    background: #2f6ed4;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(30,79,158,0.5);
}

.form-button:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(30,79,158,0.4);
}

/* =========================
   MUSIC
========================= */

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.music-card img {
    width: 100%;
    display: block;
    border-radius: 14px;
    margin-bottom: 18px;
}

.music-card h2,
.music-embed-card h2 {
    margin: 0 0 14px;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}

.card-text {
    color: #a8a8a8;
    line-height: 1.7;
    margin: 0 0 22px;
}

.music-embed-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
}

.music-meta {
    margin-bottom: 12px;
}

.music-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8fd3ff;
    margin-bottom: 8px;
}

.spotify-embed-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
}

.spotify-embed-wrap iframe {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
}

.spotify-embed-wrap.compact iframe {
    height: 152px;
}
/* =========================
   MUSIC ARCHIVE LIST
========================= */

.music-archive-card {
    max-width: 980px;
    margin: 24px auto 0;
    padding: 8px 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.28);

    position: relative;
    overflow: hidden;
}

.music-archive-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(47,107,255,0.12), transparent 35%);
    pointer-events: none;
}

.music-archive-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}
.music-section-title {
    max-width: 980px;
    margin: 18px auto 10px;
    padding: 0 4px;

    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8fd3ff;

    opacity: 0.85;
}

.music-archive-row {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 150px auto;
    grid-template-areas: "cover title date actions";
    align-items: center;
    gap: 18px;
    padding: 18px 4px;
}

.music-archive-row:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.music-archive-row:hover {
    background: rgba(255,255,255,0.02);
}

/* ELEMENTS */

.music-archive-cover-link {
    grid-area: cover;
    display: block;
    width: 72px;
}

.music-archive-cover {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: transform .2s ease, box-shadow .2s ease;
}

.music-archive-cover-link:hover .music-archive-cover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.24);
}

.music-archive-title {
    grid-area: title;
    margin: 0;
    font-size: 1.15rem;
    color: #fff;
}

.music-archive-date {
    grid-area: date;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8fd3ff;
    white-space: nowrap;
}

.music-archive-actions {
    grid-area: actions;
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 10px;
}

.music-archive-actions .listen-now-btn.small,
.music-archive-actions .story-btn.small {
    min-width: 120px;
    justify-content: center;
}

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

@media (max-width: 860px) {

    .music-archive-row {
        grid-template-columns: 64px minmax(0, 1fr) auto;
        grid-template-areas: "cover title actions";
        gap: 12px;
        padding: 14px 4px;
    }

    .music-archive-cover-link {
        width: 64px;
    }

    .music-archive-cover {
        width: 64px;
        height: 64px;
        border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    }

    .music-archive-title {
        font-size: 1.05rem;
    }

    .music-archive-date {
        display: none;
    }

    .music-archive-actions {
        gap: 8px;
    }

    .music-archive-actions .listen-now-btn.small,
    .music-archive-actions .story-btn.small {
        min-width: 0;
        padding: 10px 14px;
    }
}

/* =========================
   MOBILE
========================= */
/* standaard = desktop */
.mobile-text {
    display: none;
}

/* mobiel */
@media (max-width: 520px) {
    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: inline;
    }
}
@media (max-width: 520px) {

    .music-archive-card {
        padding: 6px 16px;
        border-radius: 22px;
    }

    .music-archive-row {
        grid-template-columns: 44px minmax(0, 1fr) auto;
        grid-template-areas: "cover title actions";
        gap: 10px;
        padding: 10px 0;
    }

    .music-archive-cover-link {
        width: 44px;
    }

    .music-archive-cover {
        width: 44px;
        height: 44px;
        border-radius: 7px;
    }

    .music-archive-title {
        font-size: 0.90rem;
        line-height: 1.12;
    }

    .music-archive-actions {
        gap: 4.5px;
    }

    .music-archive-actions .listen-now-btn.small,
    .music-archive-actions .story-btn.small {
        padding: 5px 8px;
        font-size: 10px;
        border-radius: 999px;
        white-space: nowrap;
    }
}



    .music-archive-actions .listen-now-btn.small,
    .music-archive-actions .story-btn.small {
        min-width: 0;
    }
}

/* =========================
   STREAMING SERVICES
========================= */

.streaming-services-wrap {
    margin-top: 18px;
}

.streaming-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
    margin-top: 0;
}

.stream-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 132px;
    height: 40px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
    overflow: hidden;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.stream-service:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.16);
}

.stream-service .service-logo {
    display: block;
    width: auto;
    max-width: 94px;
    height: 16px;
    flex: 0 1 auto;
}

.stream-service .service-logo.spotify-logo {
    height: 17px;
    max-width: 90px;
}

.stream-service .service-logo.apple-logo {
    height: 15px;
    max-width: 82px;
}

.stream-service .service-logo.amazon-logo {
    height: 16px;
    max-width: 104px;
    width: auto;
}

.stream-service .service-logo.tidal-logo {
    height: 12px;
    max-width: 84px;
}

.stream-service .service-logo.deezer-logo {
    height: 14px;
    max-width: 88px;
}

.stream-service .service-logo.youtube-logo {
    height: 14px;
    max-width: 100px;
}

.stream-service svg path {
    transition: fill .2s ease;
}

.stream-service:hover .service-logo path {
    fill: #fff;
}

.stream-icons {
    display: none;
}

@media (max-width: 768px) {
    .streaming-services {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        max-width: 100%;
    }

    .stream-service {
        width: 100%;
        min-width: 0;
        height: 38px;
        padding: 0 8px;
    }

    .stream-service .service-logo {
        height: 13px;
        max-width: 72px;
    }

    .stream-service .service-logo.spotify-logo {
        height: 14px;
        max-width: 74px;
    }

    .stream-service .service-logo.apple-logo {
        height: 12px;
        max-width: 64px;
    }

    .stream-service .service-logo.amazon-logo {
        height: 13px;
        max-width: 82px;
    }

    .stream-service .service-logo.tidal-logo {
        height: 10px;
        max-width: 60px;
    }

    .stream-service .service-logo.deezer-logo {
        height: 11px;
        max-width: 66px;
    }

    .stream-service .service-logo.youtube-logo {
        height: 11px;
        max-width: 76px;
    }
}

/* =========================
   CONTACT
========================= */

.contact-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.contact-copy {
    margin-bottom: 24px;
    text-align: left;
}

.contact-kicker {
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.contact-intro {
    margin: 0 0 10px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
}

.contact-intro:last-child {
    margin-bottom: 0;
}

.contact-email-link {
    color: #8fd3ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.contact-email-link:hover {
    color: #ffffff;
    text-decoration: underline;
    opacity: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 18px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a9a9a;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #fff;
    font: inherit;
    outline: none;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #8fd3ff;
    box-shadow: 0 0 0 3px rgba(143,211,255,0.12);
    background: rgba(255,255,255,0.06);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

@media (max-width: 640px) {
    .contact-copy {
        margin-bottom: 20px;
    }

    .contact-intro {
        line-height: 1.65;
    }

    .contact-form {
        gap: 18px;
    }
}

/* SELECT FIX */
.select-group {
    position: relative;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 48px;
    cursor: pointer;
    line-height: 1.2;
}

/* eigen pijltje */
.select-group::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #8fd3ff;
    border-bottom: 2px solid #8fd3ff;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.form-group select option {
    background-color: #0a0a0a;
    color: #fff;
}

.select-group {
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.select-group:focus-within {
    border-color: #8fd3ff;
    box-shadow: 0 0 0 3px rgba(143,211,255,0.12);
    background: rgba(255,255,255,0.06);
}

.select-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding: 14px 45px 14px 16px;
    background: transparent;
    border: none;
    box-shadow: none;
    width: 100%;
    color: #fff;
    position: relative;
    z-index: 1;
}

.select-group select:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.select-group select:hover {
    background: transparent;
}

.select-group select:invalid {
    color: #9a9a9a;
}

.select-group::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #8fd3ff;
    border-bottom: 2px solid #8fd3ff;
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
    opacity: 0.8;
}

.form-message {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
}

.success-message {
    background: rgba(29,185,84,0.12);
    border: 1px solid rgba(29,185,84,0.35);
    color: #9ff0b8;
}

.error-message {
    background: rgba(255,80,80,0.12);
    border: 1px solid rgba(255,80,80,0.35);
    color: #ffb3b3;
}

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

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 72px;
    background: rgba(10,15,30,0.55);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    font-size: 20px;
    color: #9a9a9a;
    transition: all .25s ease;
}

.footer-socials a:hover {
    animation: navBlueGlow .35s forwards;
    transform: scale(1.15);
}

.footer-text {
    font-size: 0.75rem;
    color: #777;
    letter-spacing: 0.05em;
    text-align: center;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  body {
    background: none;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url('images/back_logo_mobile.png') no-repeat center center;
    background-size: cover;
    z-index: -3;
    pointer-events: none;
  }

  body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: -2;
    pointer-events: none;
  }

  .floating-logo {
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;
  }

  .floating-logo img {
    height: 50px;
  }

  .navbar {
    top: 0;
    height: 100px;
    background: rgba(10, 15, 30, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 11;
  }

  .nav-container {
    height: 100px;
    padding: 50px 16px 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
  }

  .nav-links a {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .page {
    padding: 120px 20px 40px;
  }

  .release-image {
    width: min(92vw, 320px);
  }

  .page-title {
    font-size: 2rem;
  }

  .info-card,
  .music-card,
  .music-embed-card {
    padding: 22px 18px;
  }

  .music-embed-card h2 {
    font-size: 0.95rem;
  }

  .select-group::after {
    top: 51px;
    right: 16px;
  }

  footer {
    position: relative;
    min-height: auto;
    padding: 20px 0;
  }
}

.about-card {
    max-width: 980px;
}

.about-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 30px;
}

.about-intro-text p {
    margin: 0;
}

.about-intro-image {
    display: flex;
    justify-content: center;
}

.about-image {
    width: 100%;
    max-width: 320px;
    float: right;
    margin: 10px 0 20px 30px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.15) inset,
        0 12px 40px rgba(0,0,0,0.6);
}

/* Zorg dat layout niet breekt onder de image */
.info-card::after {
    content: "";
    display: block;
    clear: both;
}

/* Mobile fix */
@media (max-width: 768px) {
    .about-image {
        float: none;
        display: block;
        margin: 30px auto;
        max-width: 420px;
    }
}

.home-card {
    text-align: center;
    padding: 32px 24px;
}

.home-card .release-label {
    margin-bottom: 22px;
}

.home-card .release-image {
    width: 85%;
    max-width: 320px;
    margin: 0 auto 24px;
    display: block;
}

.home-card .track-title {
    margin: 0 0 28px;
}

.music-card-large {
    padding: 30px 26px;
    text-align: left;
}/* =========================
   MUSIC PAGE
========================= */

.music-page {
    width: 100%;
}

.music-featured-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 30px;
    align-items: center;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.28);
    
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.music-featured-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(47,107,255,0.12), transparent 35%);
    pointer-events: none;
}

.music-featured-cover-link {
    display: block;
    position: relative;
    z-index: 1;
}

.music-featured-cover {
    display: block;
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    transition: transform .25s ease, box-shadow .25s ease;
}

.music-featured-cover-link:hover .music-featured-cover {
    transform: translateY(-4px) scale(1.015);
    box-shadow: 0 24px 50px rgba(0,0,0,0.42);
}

.music-featured-content {
    position: relative;
    z-index: 1;
    text-align: left;
}

.music-featured-kicker {
    font-size: 13px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #8fd3ff;
    margin-bottom: 10px;
}

.music-featured-content h2 {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.05;
    color: #2f6bff;
}

.music-featured-text {
    margin: 0 0 22px;
    max-width: 560px;
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    line-height: 1.7;
}

.music-featured-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.music-featured-platforms {
    color: rgba(255,255,255,0.58);
    font-size: 14px;
    line-height: 1.6;
}

/* =========================
   SMALL TRACKS
========================= */

.music-small-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.music-small-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.14);
}

.music-small-cover {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.music-small-content {
    flex: 1;
    min-width: 0;
}

.music-small-kicker {
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #8fd3ff;
    margin-bottom: 4px;
}

.music-small-content h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.15;
    color: #fff;
}

.music-small-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* =========================
   BUTTONS
========================= */

.listen-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #2f6bff, #1741b6);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4px;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(47,107,255,0.28);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.listen-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(47,107,255,0.38);
    background: linear-gradient(135deg, #3d7bff, #1d4fd1);
}

.listen-now-btn:active {
    transform: translateY(0);
}

.listen-now-btn.small {
    min-width: 0;
    height: 34px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 700;
}

.story-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.story-btn:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.18);
}

.story-btn.small {
    height: 34px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 600;
}

/* =========================
   MODAL
========================= */

.listen-modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(6, 10, 18, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 9999;
}

.listen-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.listen-modal-box {
    position: relative;
    width: 100%;
    max-width: 460px;
    padding: 26px 22px 22px;
    border-radius: 24px;
    background: rgba(15, 20, 30, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 25px 80px rgba(0,0,0,0.45);
    text-align: center;
}

.listen-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.listen-modal-close:hover {
    background: rgba(255,255,255,0.14);
    transform: scale(1.05);
}

.listen-modal-cover {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.3);
    display: block;
    margin: 0 auto 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.listen-modal-release {
    color: #8fd3ff;
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.listen-modal-title {
    margin: 0 0 18px;
    color: #fff;
    font-size: 28px;
    line-height: 1.15;
}

/* =========================
   STREAMING LINKS
========================= */

.listen-streaming-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.listen-stream-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease,
        color .2s ease,
        box-shadow .2s ease;
}

.listen-stream-link img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform .2s ease;
}

.listen-stream-link:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #2f6bff, #1741b6);
    border-color: rgba(47,107,255,0.6);
    color: #fff;
    box-shadow: 0 10px 24px rgba(47,107,255,0.25);
}

.listen-stream-link:hover img {
    transform: scale(1.08);
}

.read-story-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2f6bff, #1741b6);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 12px 30px rgba(35, 82, 210, 0.28);
}

.read-story-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(35, 82, 210, 0.34);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .music-featured-card {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 22px;
    }

    .music-featured-cover {
        max-width: 260px;
        margin: 0 auto;
	border: 1px solid rgba(255,255,255,0.3);
    }

    .music-featured-content {
        text-align: center;
    }

    .music-featured-text,
    .music-featured-platforms {
        margin-left: auto;
        margin-right: auto;
    }

    .music-featured-actions {
        justify-content: center;
    }

    .music-featured-content h2 {
        font-size: 34px;
    }

    .music-small-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {

    /* FEATURED */
    .music-featured-card {
        padding: 18px;
        border-radius: 20px;
    }

    .music-featured-content h2 {
        font-size: 28px;
    }

    .music-featured-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .listen-now-btn,
    .story-btn {
        width: 100%;
        height: 42px;
        font-size: 14px;
    }

    /* SMALL CARDS */
    .music-small-card {
        padding: 12px;
        gap: 10px;
    }

    .music-small-cover {
        width: 64px;
        height: 64px;
    }

    .music-small-kicker {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .music-small-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .music-small-actions {
        gap: 6px;
    }

    .listen-now-btn.small,
    .story-btn.small {
        height: 30px;
        padding: 0 10px;
        font-size: 12px;
    }

    /* MODAL FIX */
    .listen-modal-box {
        padding: 18px 12px 14px;
        border-radius: 18px;
        max-width: 95vw;
    }

    .listen-modal-title {
        font-size: 22px;
    }

    .listen-modal-cover {
        max-width: 160px;
        margin-bottom: 14px;
    }

    /* 🔥 STREAMING GRID → 2 KOLOMMEN */
    .listen-streaming-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 16px;
    }

    /* 🔥 BUTTONS KLEINER */
.listen-stream-link {
    min-height: 38px;
    padding: 0 8px;
    font-size: 12px;
    gap: 6px;
    justify-content: center;
    flex-direction: column; /* 👈 belangrijk */
}

    /* ICON SIZE */
    .listen-stream-link img {
        width: 24px;
        height: 24px;
    }

    /* 🔥 ICON-ONLY MOBILE (veel cleaner) */
    .listen-stream-link span {
    font-size: 11px;
    line-height: 1;
    opacity: 0.85;
    white-space: nowrap;
}

    /* READ STORY */
    .read-story-btn {
        min-height: 40px;
        font-size: 13px;
        padding: 0 12px;
    }
}

/* =========================
   HOME HERO
========================= */

.home-hero-page {
    max-width: 1200px;
}

.home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 50px;
    align-items: center;
    padding: 42px;
    min-height: 520px;
    border-radius: 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.28);
    overflow: hidden;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(47,107,255,0.16), transparent 35%),
        radial-gradient(circle at bottom left, rgba(80,160,255,0.10), transparent 30%);
    pointer-events: none;
}

.home-hero-content,
.home-hero-cover-link {
    position: relative;
    z-index: 1;
}

.home-hero-kicker {
    margin-bottom: 14px;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8fd3ff;
}

.home-hero-title {
    margin: 0 0 20px;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #2f6bff;
    text-wrap: balance;
}

.home-hero-text {
    max-width: 760px;
    margin: 0 0 28px;
    font-size: 1.28rem;
    line-height: 1.7;
    color: #d8e1ff;
}

.home-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
}

.home-hero-platforms {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.70);
}

.home-hero-cover-link {
    display: block;
    width: 100%;
    max-width: 420px;
    justify-self: end;
}

.home-hero-cover {
    width: 100%;
    display: block;
    border-radius: 26px;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    transition: transform .25s ease, box-shadow .25s ease;
}

.home-hero-cover-link:hover .home-hero-cover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 28px 70px rgba(0,0,0,0.42);
}

@media (max-width: 900px) {
    .home-hero {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: center;
        padding: 22px;
        min-height: 0;
        border-radius: 24px;
    }

    .home-hero-cover-link {
        display: block;
        width: 100%;
        max-width: 260px;
        justify-self: center;
        order: -1;
    }

    .home-hero-cover {
        display: block;
        width: 100%;
        max-width: 260px;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        margin: 0 auto;
        border-radius: 18px;
        border: 1px solid rgba(255,255,255,0.3);
        box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    }

    .home-hero-content {
        text-align: center;
    }

    .home-hero-text,
    .home-hero-platforms {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-actions {
        justify-content: center;
        margin-bottom: 16px;
    }

    .home-hero-title {
        font-size: 34px;
        line-height: 1.05;
    }

    .home-hero-platforms {
        max-width: 560px;
        color: rgba(255,255,255,0.58);
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 520px) {
    .home-hero {
        padding: 18px;
        border-radius: 20px;
        gap: 22px;
    }

    .home-hero-cover-link,
    .home-hero-cover {
        max-width: 260px;
    }

    .home-hero-kicker {
        margin-bottom: 10px;
        font-size: 13px;
        letter-spacing: 2.2px;
    }

    .home-hero-title {
        margin: 0 0 14px;
        font-size: 28px;
        line-height: 1.05;
        letter-spacing: 0;
    }

    .home-hero-text {
        max-width: 560px;
        margin: 0 0 22px;
        font-size: 15px;
        line-height: 1.6;
    }

    .home-hero-actions {
        margin-bottom: 16px;
    }

    .home-hero-platforms {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* =========================
   PREVIEW BUTTON
========================= */
.preview-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 0;
    background: linear-gradient(135deg, #2f6bff, #1741b6);
    box-shadow: 0 10px 28px rgba(47,107,255,0.28);
}

.preview-btn:hover {
    background: linear-gradient(135deg, #3d7bff, #1d4fd1);
}

.preview-btn:focus-visible {
    outline: 2px solid rgba(143,211,255,0.9);
    outline-offset: 2px;
}

.preview-btn.is-tracking {
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(19, 30, 66, 0.42);
    box-shadow:
        0 10px 28px rgba(47,107,255,0.18),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.preview-btn.is-tracking:hover {
    background: rgba(23, 38, 82, 0.56);
}

.preview-progress {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, #2f6bff, #1741b6);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
    transition: width 0.12s linear;
    z-index: 1;
}

.preview-content {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.preview-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.preview-icon svg {
    display: block;
    width: 16px;
    height: 16px;
}

.preview-icon-pause {
    display: none;
}

.preview-btn.is-playing .preview-icon-play {
    display: none;
}

.preview-btn.is-playing .preview-icon-pause {
    display: inline-flex;
}

.preview-label {
    position: relative;
    top: -0.5px;
}

@media (max-width: 520px) {
    .preview-content {
        gap: 7px;
    }

    .preview-icon,
    .preview-icon svg {
        width: 14px;
        height: 14px;
    }
}
