:root {
    --bg: #07080b;
    --panel: rgba(18, 19, 25, .78);
    --panel-strong: rgba(18, 19, 25, .94);
    --text: #f5f1ea;
    --muted: #aaa2a0;
    --gold: #d6a348;
    --gold2: #ff8a2b;
    --line: rgba(255, 255, 255, .12);
    --shadow: 0 24px 80px rgba(0, 0, 0, .48);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
}

.video-bg,
.video-bg iframe,
.youtube-bg-player {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    overflow: hidden;
    background: #000;
    pointer-events: none;
}

.youtube-bg-player iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 67.5vw;
    min-width: 177.78vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

.noise {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: .18;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.gradient-overlay {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
    radial-gradient(circle at 18% 20%, rgba(214, 117, 42, .28), transparent 32%),
    radial-gradient(circle at 82% 14%, rgba(61, 102, 126, .25), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .48), rgba(0, 0, 0, .86)),
    linear-gradient(180deg, rgba(0, 0, 0, .24), rgba(0, 0, 0, .88));
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px clamp(18px, 4vw, 54px);
    background: linear-gradient(180deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, 0));
    backdrop-filter: blur(6px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-photo-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(214, 163, 72, .48);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .03), 0 18px 46px rgba(0, 0, 0, .42);
    background: rgba(255, 255, 255, .04);
    flex: 0 0 auto;
}

.brand-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.brand-copy strong {
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-copy small {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: .18em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav {
    display: flex;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(10, 10, 14, .42);
    backdrop-filter: blur(15px);
}

.nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(245, 241, 234, .75);
    font-weight: 800;
    font-size: 13px;
    transition: .22s ease;
}

.nav a:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

/* MOBILE MENU */

.mobile-menu-trigger {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.mobile-menu-trigger span {
    width: 21px;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    display: block;
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 91;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}

.mobile-menu-open .mobile-menu-backdrop {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -390px;
    width: min(370px, 88vw);
    height: 100vh;
    z-index: 92;
    background: rgba(18, 18, 24, .96);
    border-left: 1px solid rgba(255, 255, 255, .1);
    box-shadow: -28px 0 70px rgba(0, 0, 0, .52);
    transition: right .34s ease;
    overflow: auto;
}

.mobile-menu-open .mobile-menu-panel {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 22px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--gold2);
    font-size: 29px;
    cursor: pointer;
}

.mobile-panel-inner {
    padding: 70px 30px 34px;
}

.mobile-panel-kicker {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .24em;
    font-weight: 900;
}

.mobile-panel-inner h2 {
    font-size: 42px;
    line-height: 1.05;
    margin: 10px 0 28px;
}

.mobile-panel-line {
    height: 1px;
    background: linear-gradient(90deg, var(--gold2), transparent);
    margin-bottom: 26px;
}

.mobile-panel-text {
    color: rgba(245, 241, 234, .74);
    line-height: 1.7;
}

.mobile-panel-nav {
    display: grid;
    margin: 28px 0;
    gap: 8px;
}

.mobile-panel-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-weight: 900;
}

/* MAIN */

.section {
    width: min(1180px, calc(100% - 42px));
    margin: 0 auto;
    padding: 110px 0;
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 44px;
    align-items: center;
    padding-top: 150px;
}

.eyebrow {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .22em;
    margin: 0 0 18px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(56px, 9vw, 128px);
    line-height: .86;
    letter-spacing: -.07em;
    margin-bottom: 24px;
    text-shadow: 0 20px 60px rgba(0, 0, 0, .62);
}

h2 {
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -.04em;
    margin-bottom: 18px;
}

h3 {
    font-size: 24px;
    line-height: 1.1;
}

.lead {
    font-size: clamp(18px, 2.2vw, 25px);
    max-width: 740px;
    line-height: 1.55;
    color: rgba(245, 241, 234, .82);
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    font-weight: 900;
    cursor: pointer;
    transition: .22s ease;
}

.btn.primary {
    background: linear-gradient(135deg, var(--gold), #fff0b8);
    color: #111;
    border: 0;
    box-shadow: 0 20px 50px rgba(214, 163, 72, .28);
}

.btn.ghost {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.btn:hover {
    transform: translateY(-2px);
}

/* HERO MEDIA CARD */

.hero-portrait-card {
    align-self: end;
    justify-self: center;
    width: min(420px, 100%);
    min-height: 530px;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-portrait-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(214, 163, 72, .16);
    border-radius: 30px;
    pointer-events: none;
    z-index: 1;
}

.hero-portrait-open {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 530px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 22px;
}

.hero-portrait-open img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 96%;
    width: auto;
    max-width: 115%;
    object-fit: contain;
    filter: drop-shadow(0 30px 38px rgba(0, 0, 0, .55));
}

.hero-portrait-open span {
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    font-weight: 900;
}

.hero-media-embed {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 530px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-media-embed iframe {
    width: 100% !important;
    height: 500px !important;
    border: 0 !important;
    border-radius: 28px;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

/* TRACK LIST */

.hero-track-toggle {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 6;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(214, 163, 72, .35);
    background: rgba(0, 0, 0, .72);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    backdrop-filter: blur(14px);
}

.hero-track-list {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 78px;
    z-index: 7;
    max-height: 260px;
    overflow: auto;
    padding: 14px;
    border-radius: 20px;
    background: rgba(0, 0, 0, .82);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: .25s ease;
}

.hero-track-list.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero-track-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.hero-track-list-header span {
    display: block;
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 900;
}

.hero-track-list-header button {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.hero-track-item {
    font-size: 13px;
    color: rgba(255, 255, 255, .88);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.hero-track-item:last-child {
    border-bottom: 0;
}

/* CONTENT CARDS */

.card,
.fan,
.bio-panel,
.contact,
.video-card {
    border: 1px solid rgba(255, 255, 255, .11);
    background: var(--panel);
    border-radius: 30px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.split {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 36px;
    align-items: center;
}

.section-copy p,
.bio-panel p,
.contact p {
    color: rgba(245, 241, 234, .76);
    line-height: 1.7;
}

.video-card {
    overflow: hidden;
    padding: 12px;
    aspect-ratio: 16 / 9;
}

.video-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 22px;
}

.section-title {
    max-width: 780px;
    margin-bottom: 34px;
}

.section-title p {
    color: rgba(245, 241, 234, .72);
}

.grid {
    display: grid;
    gap: 18px;
}

.cards {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    padding: 26px;
    min-height: 220px;
}

.card span {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 900;
}

.card p,
.fan p {
    color: rgba(245, 241, 234, .72);
    line-height: 1.65;
}

.bio-panel,
.contact {
    padding: 42px;
    max-width: 900px;
}

.fan-grid {
    grid-template-columns: repeat(3, 1fr);
}

.fan {
    padding: 24px;
}

.fan strong {
    display: block;
    font-size: 18px;
}

.fan small {
    display: block;
    color: var(--gold);
    margin: 6px 0 14px;
    font-weight: 800;
}

/* PORTRAIT DRAWER */

.artist-portrait-toggle {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 89;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 15px;
    border-radius: 999px;
    border: 1px solid rgba(214, 163, 72, .35);
    background: rgba(9, 9, 13, .78);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .46);
    transition: .22s ease;
}

.artist-portrait-toggle:hover {
    transform: translateY(-50%) translateX(-3px);
    background: rgba(24, 20, 18, .92);
}

.portrait-toggle-icon {
    font-size: 22px;
    color: var(--gold);
}

.portrait-toggle-text {
    font-size: 13px;
}

.artist-portrait-drawer {
    position: fixed;
    top: 0;
    right: -460px;
    width: min(440px, 90vw);
    height: 100vh;
    z-index: 101;
    background: rgba(10, 10, 15, .96);
    border-left: 1px solid rgba(255, 255, 255, .1);
    box-shadow: -30px 0 80px rgba(0, 0, 0, .55);
    transition: right .36s ease;
    overflow: hidden;
}

.artist-portrait-drawer.active {
    right: 0;
}

.artist-portrait-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 8;
}

.artist-portrait-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 32px 24px 0;
    background:
    radial-gradient(circle at 30% 16%, rgba(214, 163, 72, .17), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .2));
}

.artist-portrait-title {
    position: relative;
    z-index: 4;
    padding-right: 58px;
}

.artist-portrait-title span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--gold);
    font-weight: 900;
}

.artist-portrait-title strong {
    display: block;
    margin-top: 6px;
    font-size: 22px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.artist-portrait-description {
    margin-top: 14px;
    max-width: 330px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.65;
    font-size: 14px;
}

.artist-portrait-socials {
    position: relative;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 18px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(14px);
    transition: .25s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    border-color: rgba(214, 163, 72, .45);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.social-icon.youtube:hover { background: #ff0000; }
.social-icon.spotify:hover { background: #1db954; }
.social-icon.apple:hover { background: #fc3c44; }
.social-icon.instagram:hover { background: #d62976; }
.social-icon.tiktok:hover { background: #111; }
.social-icon.deezer:hover { background: #8e44ff; }
.social-icon.yt-music:hover { background: #ff0033; }

.artist-portrait-image {
    margin-top: auto;
    align-self: center;
    max-height: 70vh;
    width: auto;
    max-width: 112%;
    object-fit: contain;
    filter: drop-shadow(0 28px 35px rgba(0, 0, 0, .62));
}

.artist-portrait-empty {
    margin: auto;
    color: rgba(255, 255, 255, .65);
    text-align: center;
}

.artist-portrait-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .52);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}

.artist-portrait-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* FLOATING CONTROLS */

.floating-video-controls {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 88;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .16);
    max-width: min(960px, calc(100% - 32px));
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 26px;
    background: rgba(7, 8, 11, .75);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 80px rgba(0, 0, 0, .48);
    transform: translateX(-50%);
}

.video-control-btn {
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: .22s ease;
}

.video-control-btn:hover,
.platform-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .14);
    border-color: rgba(214, 163, 72, .42);
}

.video-control-btn.active {
    background: linear-gradient(135deg, var(--gold), #fff0b8);
    border-color: transparent;
    color: #111;
}

.icon-only {
    width: 46px;
    padding: 0;
}

.platform-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, .16);
    display: block;
}

.stream-platforms {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.platform-link {
    height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    font-size: 12px;
    font-weight: 900;
    transition: .22s ease;
}

.platform-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.spotify { color: #65e88a; }
.youtube { color: #ff6a6a; }
.yt-music { color: #ff8d8d; }
.deezer { color: #d4c2ff; }

/* FOOTER */

.footer {
    width: min(1180px, calc(100% - 42px));
    margin: 0 auto;
    padding: 42px 0 96px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(245, 241, 234, .58);
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.show {
    opacity: 1;
    transform: none;
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

/* RESPONSIVE */

@media (max-width: 920px) {
    .site-header {
        align-items: center;
    }

    .nav {
        display: none;
    }

    .mobile-menu-trigger {
        display: flex;
    }

    .brand-photo-wrap {
        width: 58px;
        height: 58px;
    }

    .brand-copy strong {
        font-size: 12px;
    }

    .brand-copy small {
        font-size: 11px;
    }

    .hero,
    .split {
        grid-template-columns: 1fr;
    }

    .hero-portrait-card {
        min-height: 520px;
        width: min(360px, 100%);
        margin: 0 auto;
    }

    .hero-portrait-open {
        min-height: 520px;
    }

    .hero-media-embed {
        min-height: 520px;
        padding: 14px;
    }

    .hero-media-embed iframe {
        height: 480px !important;
    }

    .cards,
    .fan-grid {
        grid-template-columns: 1fr 1fr;
    }

    .artist-portrait-toggle {
        right: 14px;
        top: auto;
        bottom: 102px;
        transform: none;
        min-height: 48px;
        padding: 0 13px;
    }

    .artist-portrait-toggle:hover {
        transform: translateY(-2px);
    }

    .floating-video-controls {
        bottom: 14px;
        gap: 7px;
        padding: 8px;
        border-radius: 20px;
    }

    .video-control-btn,
    .platform-link {
        height: 40px;
        padding: 0 12px;
    }

    .platform-link span,
    .control-text {
        display: none;
    }

    .platform-divider {
        height: 22px;
    }

    .footer {
        padding-bottom: 126px;
    }
}

@media (max-width: 620px) {
    .section {
        width: min(100% - 28px, 1180px);
        padding: 86px 0;
    }

    .hero {
        padding-top: 138px;
    }

    .cards,
    .fan-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        flex-direction: column;
    }

    .brand-copy {
        display: none;
    }

    h1 {
        font-size: 58px;
    }

    .hero-portrait-card {
        min-height: 440px;
    }

    .hero-portrait-open {
        min-height: 440px;
    }

    .hero-media-embed {
        min-height: 440px;
    }

    .hero-media-embed iframe {
        height: 400px !important;
    }

    .artist-portrait-drawer {
        width: min(360px, 94vw);
    }

    .artist-portrait-image {
        max-height: 62vh;
    }

    .portrait-toggle-text {
        display: none;
    }

    .artist-portrait-toggle {
        width: 48px;
        justify-content: center;
    }

    .mobile-panel-inner h2 {
        font-size: 38px;
    }

    .floating-video-controls {
        max-width: calc(100% - 20px);
    }
    .mobile-panel-brand{
        display:flex;
        align-items:center;
        gap:14px;
    }

    .mobile-panel-brand img,
    .mobile-panel-brand > span{
        width:62px;
        height:62px;
        flex:0 0 62px;
        border-radius:50%;
        display:grid;
        place-items:center;
        object-fit:cover;
        border:1px solid rgba(214,163,72,.45);
        background:rgba(255,255,255,.06);
        color:#fff;
        font-weight:900;
    }

    .mobile-panel-brand .mobile-panel-kicker{
        margin:0 0 6px;
    }

    .mobile-panel-brand h2{
        margin:0;
        font-size:26px;
        line-height:1.05;
    }

    .mobile-panel-nav a{
        display:flex;
        align-items:center;
        gap:14px;
        font-size:16px;
    }

    .mobile-panel-nav a span{
        color:var(--gold);
        font-size:11px;
        letter-spacing:.18em;
        font-weight:900;
    }

    .mobile-panel-actions{
        display:flex;
        gap:10px;
        flex-wrap:wrap;
        margin:28px 0;
    }

    .mobile-action{
        min-height:44px;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        padding:0 16px;
        border-radius:999px;
        font-weight:900;
        font-size:13px;
        border:1px solid rgba(255,255,255,.14);
    }

    .mobile-action.primary{
        background:linear-gradient(135deg,var(--gold),#fff0b8);
        color:#111;
        border:0;
    }

    .mobile-action.ghost{
        background:rgba(255,255,255,.08);
        color:#fff;
    }

    .mobile-contact-list div{
        display:flex;
        justify-content:space-between;
        gap:14px;
        padding:13px 0;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .mobile-contact-list span{
        color:rgba(245,241,234,.48);
        font-size:12px;
        text-transform:uppercase;
        letter-spacing:.16em;
        font-weight:900;
    }

    .mobile-contact-list a{
        color:#fff;
        font-weight:800;
        text-align:right;
        word-break:break-word;
    }

    .mobile-socials{
        display:flex;
        flex-wrap:wrap;
        gap:10px;
        margin-top:28px;
    }

    .mobile-socials a{
        width:42px;
        height:42px;
        border-radius:50%;
        display:grid;
        place-items:center;
        border:1px solid rgba(255,255,255,.14);
        background:rgba(255,255,255,.07);
        color:#fff;
        font-size:17px;
        font-weight:900;
        transition:.22s ease;
    }

    .mobile-socials a:hover{
        transform:translateY(-3px);
        border-color:rgba(214,163,72,.45);
    }

    .mobile-socials .youtube:hover{background:#ff0000}
    .mobile-socials .spotify:hover{background:#1db954}
    .mobile-socials .yt-music:hover{background:#ff0033}
    .mobile-socials .deezer:hover{background:#8e44ff}
    .mobile-socials .apple:hover{background:#fc3c44}
    .mobile-socials .instagram:hover{background:#d62976}
    .mobile-socials .tiktok:hover{background:#111}
    .floating-video-controls .icon-only{
        width:46px;
        min-width:46px;
        padding:0;
        justify-content:center;
        font-size:18px;
    }

    .floating-video-controls .platform-link.icon-only{
        width:46px;
        min-width:46px;
        padding:0;
        justify-content:center;
    }

    .floating-video-controls .sound-control.active{
        background:linear-gradient(135deg,var(--gold),#fff0b8);
        color:#111;
    }
    .floating-video-controls {
        width: auto;
        max-width: none;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        flex-wrap: nowrap;
        padding: 10px;
        border-radius: 999px;
    }

    .floating-video-controls .platform-divider,
    .floating-video-controls .stream-platforms {
        display: none;
    }

    .floating-video-controls .icon-only {
        width: 46px;
        min-width: 46px;
        height: 46px;
        padding: 0;
    }
}

/* ==================================================
   FEATURED RELEASE FINAL
================================================== */

.featured-release-section {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    padding: 120px 24px;
    background: #050505;
    color: #fff;
}

.featured-release-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 40%, rgba(180, 20, 45, 0.28), transparent 34%),
        linear-gradient(120deg, #050505 0%, #111 45%, #050505 100%);
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    filter: grayscale(35%) blur(2px);
    transform: scale(1.06);
}

.featured-release-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.88) 42%, rgba(5, 5, 5, 0.48) 100%),
        radial-gradient(circle at 65% 50%, rgba(160, 20, 40, 0.22), transparent 38%);
}

.featured-release-inner,
.featured-release-container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    min-height: 520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 72px;
}

.section-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    font-size: 13px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #c9a35c;
}

.featured-release-copy h2,
.featured-release-title {
    margin: 0 0 22px;
    max-width: 680px;
    font-size: clamp(46px, 7vw, 92px);
    line-height: .92;
    letter-spacing: -.06em;
    font-weight: 900;
}

.featured-release-copy h3,
.featured-release-subtitle {
    margin: 22px 0 0;
    font-size: clamp(20px, 3vw, 32px);
    color: rgba(255, 255, 255, .86);
    font-weight: 500;
}

.featured-release-text,
.featured-release-description {
    max-width: 610px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .68);
    font-size: 16px;
    line-height: 1.9;
}

.featured-release-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0 0;
}

.featured-release-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .8);
    font-size: 12px;
    letter-spacing: .12em;
    backdrop-filter: blur(12px);
}

.featured-release-actions,
.featured-platform-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.music-btn,
.platform-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(12px);
    transition: .25s ease;
}

.music-btn:hover,
.platform-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .14);
}

.music-btn.primary,
.platform-btn.youtube {
    background: linear-gradient(135deg, #b5132b, #5d0716);
    border-color: rgba(255, 255, 255, .18);
    box-shadow: 0 18px 48px rgba(181, 19, 43, .25);
}

.platform-btn.spotify {
    background: rgba(30, 215, 96, .16);
}

.featured-release-art,
.featured-release-cover-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-release-art img,
.featured-release-cover {
    position: relative;
    z-index: 2;
    width: min(100%, 430px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 34px;
    box-shadow:
        0 44px 120px rgba(0, 0, 0, .75),
        0 0 0 1px rgba(255, 255, 255, .12);
    transform: rotate(-2deg);
}

.featured-release-glow,
.cover-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: rgba(181, 19, 43, .35);
    filter: blur(80px);
    z-index: 1;
}


/* ==================================================
   DISCOGRAPHY FINAL - NEW ARTIST CLASSES
================================================== */

.artist-discography-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 110px 20px;
    color: #fff;

    /* Bölüm artık siyah blok gibi durmasın */
    background: rgba(255, 255, 255, 0.025) !important;
}

.artist-discography-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--page-bg, none);
    background-size: cover;
    background-position: center;
    opacity: 0.04 !important;
    filter: grayscale(1);
}

.artist-discography-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    /* Karartmayı ciddi şekilde azalttık */
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.02) 50%,
            rgba(0, 0, 0, 0.08) 100%
        ) !important;
}
.artist-discography-container {
    width: min(100%, 1180px);
    margin: 0 auto;
}

.artist-discography-head {
    margin-bottom: 44px;
}

.artist-discography-head h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .95;
    letter-spacing: -.06em;
    font-weight: 900;
}

.artist-discography-head p:not(.eyebrow) {
    max-width: 640px;
    margin-top: 16px;
    color: rgba(255,255,255,.64);
    line-height: 1.8;
}

.artist-discography-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 330px);
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 4px 36px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.artist-release-card {
    scroll-snap-align: start;
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.13);
    box-shadow: 0 34px 90px rgba(0,0,0,.46);
    backdrop-filter: blur(18px);
    transition: transform .28s ease, border-color .28s ease;
}

.artist-release-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,.25);
}

.artist-release-cover-area {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #101010;
}

.artist-release-cover {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform .4s ease;
}

.artist-release-card:hover .artist-release-cover {
    transform: scale(1.07);
}

.artist-release-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 86px;
    font-weight: 900;
    color: rgba(255,255,255,.18);
    background:
        radial-gradient(circle, rgba(180, 20, 45, .32), transparent 55%),
        #0b0b0b;
}

.artist-release-cover-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.78) 100%);
    pointer-events: none;
}

.artist-release-top-meta {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.artist-release-top-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(0,0,0,.54);
    border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.86);
    font-size: 10px;
    letter-spacing: .13em;
    backdrop-filter: blur(10px);
}

.artist-release-listen-btn {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
    background: linear-gradient(135deg, #c91432, #690715);
    box-shadow: 0 18px 46px rgba(201,20,50,.34);
    transition: .24s ease;
}

.artist-release-listen-btn i {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    font-size: 11px;
}

.artist-release-listen-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 58px rgba(201,20,50,.44);
}

.artist-release-content {
    padding: 22px;
}

.artist-release-content h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -.04em;
    font-weight: 850;
}

.artist-release-subtitle {
    margin: 10px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    font-weight: 600;
}

.artist-release-description {
    margin: 12px 0 0;
    color: rgba(255,255,255,.58);
    font-size: 14px;
    line-height: 1.7;
}

.artist-release-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.artist-platform {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    transition: .22s ease;
}

.artist-platform:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.15);
}

.artist-platform.youtube { background: rgba(255, 0, 0, .18); }
.artist-platform.youtube-music { background: rgba(255, 20, 20, .16); }
.artist-platform.spotify { background: rgba(30, 215, 96, .18); }
.artist-platform.deezer { background: rgba(118, 45, 255, .18); }
.artist-platform.apple { background: rgba(255, 255, 255, .12); }

/* ==================================================
   DISCOGRAPHY LIGHT BACKGROUND OVERRIDE
================================================== */

.artist-discography-section {
    background: rgba(255, 255, 255, 0.025) !important;
}

.artist-discography-section::before {
    opacity: 0.04 !important;
}

.artist-discography-section::after {
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.02) 50%,
            rgba(0, 0, 0, 0.08) 100%
        ) !important;
}

/* ==================================================
   DISCOGRAPHY BADGES + FEATURED STATE
================================================== */

.artist-new-sticker,
.artist-featured-sticker {
    position: absolute;
    z-index: 6;
    min-height: 30px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, .35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.artist-new-sticker {
    top: 56px;
    right: 15px;
    color: #111;
    background: linear-gradient(135deg, #ffd36a, #fff3bd);
    box-shadow: 0 12px 32px rgba(255, 211, 106, .32);
}

.artist-featured-sticker {
    top: 94px;
    right: 15px;
    color: #fff;
    background: linear-gradient(135deg, #c91432, #690715);
    box-shadow: 0 12px 32px rgba(201, 20, 50, .35);
}

.artist-release-card.is-featured {
    border-color: rgba(214, 163, 72, .62) !important;
    box-shadow:
        0 34px 90px rgba(0, 0, 0, .38),
        0 0 0 1px rgba(214, 163, 72, .28),
        0 0 44px rgba(214, 163, 72, .18) !important;
}

.artist-release-card.is-featured .artist-release-content::before {
    content: "Öne Çıkan Sürüm";
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 11px;
    margin-bottom: 12px;
    border-radius: 999px;
    color: #111;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .13em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #d6a348, #fff0b8);
}

/* Kart üstündeki kapak karartması stickerları boğmasın */
.artist-release-cover-shade {
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.00) 0%,
            rgba(0, 0, 0, 0.38) 100%
        ) !important;
}

/* ==================================================
   DISCOGRAPHY COMPATIBILITY - OLD DISC CLASSES
================================================== */

.discography-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 110px 20px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(180, 20, 45, .18), transparent 35%),
        linear-gradient(180deg, #050505 0%, #0b0b0d 100%);
}

.discography-head,
.discography-section > .section-title {
    width: min(100%, 1180px);
    max-width: 1180px;
    margin: 0 auto 44px;
}

.discography-head h2,
.discography-section > .section-title h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .95;
    letter-spacing: -.06em;
    font-weight: 900;
}

.discography-description,
.discography-section > .section-title p:not(.eyebrow) {
    max-width: 640px;
    color: rgba(255,255,255,.64);
    line-height: 1.8;
}

.discography-carousel,
.discography-slider {
    width: min(100%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 330px);
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 4px 36px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.disc-card,
.release-card {
    scroll-snap-align: start;
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.13);
    box-shadow: 0 34px 90px rgba(0,0,0,.46);
    backdrop-filter: blur(18px);
    transition: transform .28s ease, border-color .28s ease;
}

.disc-card:hover,
.release-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,.25);
}

.disc-cover-wrap,
.release-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #101010;
}

.disc-cover,
.release-card-image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform .4s ease;
}

.disc-card:hover .disc-cover,
.release-card:hover .release-card-image img {
    transform: scale(1.07);
}

.disc-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.78) 100%);
    pointer-events: none;
}

.disc-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.disc-badge span,
.release-card-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(0,0,0,.54);
    border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.86);
    font-size: 10px;
    letter-spacing: .13em;
    backdrop-filter: blur(10px);
}

.disc-play-btn {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    background: linear-gradient(135deg, #c91432, #690715);
    box-shadow: 0 18px 46px rgba(201,20,50,.34);
}

.release-card-body,
.disc-card-body {
    padding: 22px;
}

.release-card-body h3,
.disc-card-body h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -.04em;
    font-weight: 850;
}

.release-card-body p,
.disc-text,
.disc-subtitle {
    margin: 12px 0 0;
    color: rgba(255,255,255,.58);
    font-size: 14px;
    line-height: 1.7;
}

.release-card-links,
.disc-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.release-card-links a,
.platform-icon-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-size: 0;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    transition: .22s ease;
}

.release-card-links a::first-letter {
    font-size: 0;
}

.release-card-links a:hover,
.platform-icon-btn:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.15);
}

.platform-icon-btn {
    font-size: 17px;
}
/* ==================================================
   COMING SOON RELEASE CARD
================================================== */

.artist-release-card.is-coming-soon {
    opacity: 0.58;
    filter: grayscale(0.65);
    transform: none !important;
}

.artist-release-card.is-coming-soon:hover {
    transform: none !important;
    border-color: rgba(255, 255, 255, 0.13) !important;
}

.artist-release-card.is-coming-soon .artist-release-cover {
    filter: grayscale(0.85) brightness(0.72);
}

.artist-release-card.is-coming-soon .artist-release-content h3,
.artist-release-card.is-coming-soon .artist-release-description,
.artist-release-card.is-coming-soon .artist-release-subtitle {
    color: rgba(255, 255, 255, 0.58);
}

.artist-coming-soon-sticker {
    position: absolute;
    top: 56px;
    right: 15px;
    z-index: 8;
    min-height: 34px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #111;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f6f6f6, #a8a8a8);
    box-shadow: 0 12px 32px rgba(255, 255, 255, .20);
    border: 1px solid rgba(255, 255, 255, .38);
    backdrop-filter: blur(12px);
}

.artist-release-card.is-coming-soon .artist-release-listen-btn {
    display: none !important;
}

.artist-release-platforms.is-disabled {
    margin-top: 18px;
}

.artist-disabled-platform-note {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
}


/* ==================================================
   LISTEN MODAL FINAL
================================================== */

.listen-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.listen-modal.is-open {
    display: flex;
}

.listen-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.84);
    backdrop-filter: blur(14px);
}

.listen-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 820px);
    border-radius: 32px;
    padding: 26px;
    background:
        radial-gradient(circle at top right, rgba(190,20,48,.20), transparent 34%),
        linear-gradient(180deg, rgba(22,22,24,.98), rgba(8,8,9,.98));
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 40px 140px rgba(0,0,0,.72);
}

.listen-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.12);
}

.listen-modal-header {
    padding-right: 52px;
    margin-bottom: 18px;
}

.listen-modal-header h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1;
    letter-spacing: -.05em;
}

.listen-modal-frame {
    overflow: hidden;
    border-radius: 22px;
    background: #000;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255,255,255,.10);
}

.listen-modal-frame iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
}

.listen-modal-note {
    margin: 16px 0 0;
    color: rgba(255,255,255,.54);
    font-size: 13px;
}


/* ==================================================
   SECTION RESPONSIVE FINAL
================================================== */

@media (max-width: 900px) {
    .featured-release-section {
        min-height: auto;
        padding: 88px 20px;
    }

    .featured-release-inner,
    .featured-release-container {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .featured-release-copy h2,
    .featured-release-title {
        font-size: clamp(42px, 14vw, 72px);
    }

    .featured-release-art,
    .featured-release-cover-wrap {
        justify-content: flex-start;
    }

    .featured-release-art img,
    .featured-release-cover {
        width: min(100%, 340px);
        border-radius: 28px;
    }
}

@media (max-width: 768px) {
    .artist-discography-section,
    .discography-section {
        padding: 82px 16px 96px !important;
        overflow: hidden !important;
    }

    .artist-discography-container,
    .discography-head,
    .discography-section > .section-title {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .artist-discography-head,
    .discography-head,
    .discography-section > .section-title {
        margin-bottom: 28px !important;
    }

    .artist-discography-head h2,
    .discography-head h2,
    .discography-section > .section-title h2 {
        font-size: 34px !important;
        line-height: 1 !important;
        letter-spacing: -0.04em !important;
    }

    .artist-discography-slider,
    .discography-slider,
    .discography-carousel {
        width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
        grid-auto-flow: column !important;
        grid-auto-columns: 100% !important;
        gap: 18px !important;
        padding: 4px 0 18px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-padding-left: 0 !important;
        -webkit-overflow-scrolling: touch;
    }

    .artist-release-card,
    .release-card,
    .disc-card {
        width: 100% !important;
        max-width: 100% !important;
        scroll-snap-align: start !important;
        border-radius: 28px !important;
    }

    .artist-release-cover-area,
    .release-card-image,
    .disc-cover-wrap {
        aspect-ratio: 1 / 1 !important;
    }

    .artist-release-content,
    .release-card-body,
    .disc-card-body {
        padding: 22px 20px 24px !important;
    }

    .artist-release-content h3,
    .release-card-body h3,
    .disc-card-body h3 {
        font-size: 26px !important;
        line-height: 1.05 !important;
    }

    .artist-release-description,
    .release-card-body p,
    .disc-text,
    .disc-subtitle {
        font-size: 14px !important;
        line-height: 1.65 !important;
    }

    .artist-release-platforms,
    .release-card-links,
    .disc-platforms {
        gap: 10px !important;
        margin-top: 20px !important;
    }

    .artist-platform,
    .platform-icon-btn,
    .release-card-links a {
        width: 42px !important;
        height: 42px !important;
    }

    .listen-modal-dialog {
        padding: 20px !important;
        border-radius: 24px !important;
    }

    .listen-modal-frame {
        aspect-ratio: 16 / 10 !important;
    }
}

/* ==================================================
   HIDE DISCOGRAPHY SCROLLBAR FINAL
   Scroll çalışır, çubuk görünmez.
================================================== */

.artist-discography-slider,
.discography-slider,
.discography-carousel {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    scrollbar-width: none !important;      /* Firefox */
    -ms-overflow-style: none !important;   /* Eski Edge / IE */

    padding-bottom: 12px !important;
}

.artist-discography-slider::-webkit-scrollbar,
.discography-slider::-webkit-scrollbar,
.discography-carousel::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

.artist-discography-slider::-webkit-scrollbar-track,
.discography-slider::-webkit-scrollbar-track,
.discography-carousel::-webkit-scrollbar-track {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

.artist-disc/* ==================================================
   ARTIST BIOGRAPHY SECTION
================================================== */

.artist-biography-section {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    color: #fff;
}

.artist-biography-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 30%, rgba(214, 163, 72, .16), transparent 34%),
        radial-gradient(circle at 82% 20%, rgba(180, 20, 45, .16), transparent 32%),
        linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.28));
}

.artist-biography-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0,0,0,.32), rgba(0,0,0,.08), rgba(0,0,0,.38));
    pointer-events: none;
}

.artist-biography-container {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.artist-biography-media {
    position: relative;
}

.artist-biography-photo-wrap {
    position: relative;
    width: min(100%, 430px);
    min-height: 560px;
    border-radius: 38px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 40px 110px rgba(0,0,0,.52);
}

.artist-biography-photo-wrap::before {
    content: "";
    position: absolute;
    inset: 16px;
    z-index: 2;
    border-radius: 30px;
    border: 1px solid rgba(214, 163, 72, .22);
    pointer-events: none;
}

.artist-biography-photo {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(.92);
}

.artist-biography-placeholder {
    width: 100%;
    min-height: 560px;
    display: grid;
    place-items: center;
    font-size: 88px;
    font-weight: 950;
    letter-spacing: -.08em;
    color: rgba(255,255,255,.16);
}

.artist-biography-quote {
    position: relative;
    z-index: 4;
    width: min(360px, calc(100% - 30px));
    margin: -58px 0 0 auto;
    padding: 24px;
    border-radius: 28px;
    color: rgba(255,255,255,.86);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 700;
    background: rgba(15, 15, 18, .76);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 24px 70px rgba(0,0,0,.42);
    backdrop-filter: blur(18px);
}

.artist-biography-content h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 82px);
    line-height: .94;
    letter-spacing: -.06em;
    font-weight: 950;
}

.artist-biography-content h3 {
    margin: 20px 0 0;
    max-width: 680px;
    color: rgba(255,255,255,.84);
    font-size: clamp(20px, 2.5vw, 32px);
    line-height: 1.25;
    font-weight: 600;
}

.artist-biography-text {
    margin-top: 28px;
    max-width: 760px;
    color: rgba(245,241,234,.74);
    font-size: 16px;
    line-height: 1.9;
}

.artist-biography-text p {
    margin: 0 0 18px;
}

.artist-biography-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 34px;
}

.artist-biography-meta div {
    min-height: 92px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(14px);
}

.artist-biography-meta span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.artist-biography-meta strong {
    display: block;
    color: #fff;
    font-size: 17px;
    line-height: 1.25;
}

.artist-biography-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.artist-biography-tags span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .05em;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.12);
}

@media (max-width: 900px) {
    .artist-biography-section {
        padding: 90px 18px;
    }

    .artist-biography-container {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .artist-biography-photo-wrap {
        width: min(100%, 390px);
        min-height: 500px;
    }

    .artist-biography-photo {
        min-height: 500px;
    }

    .artist-biography-meta {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   FAN MESSAGES SECTION
================================================== */

.fan-messages-section {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 20%, rgba(214, 163, 72, .12), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(190, 20, 48, .14), transparent 34%),
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.22));
}

.fan-messages-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.fan-messages-head {
    max-width: 780px;
    margin-bottom: 42px;
}

.fan-messages-head h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .95;
    letter-spacing: -.06em;
    font-weight: 950;
}

.fan-messages-head p:not(.eyebrow) {
    margin-top: 18px;
    max-width: 640px;
    color: rgba(245, 241, 234, .68);
    line-height: 1.8;
}

.fan-messages-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(350px, 440px);
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 4px 22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.fan-messages-slider::-webkit-scrollbar {
    display: none;
}

.fan-messages-slider.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none !important;
}

.fan-message-card {
    position: relative;
    scroll-snap-align: start;
    min-height: 310px;
    padding: 28px;
    border-radius: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.13);
    box-shadow: 0 34px 90px rgba(0,0,0,.34);
    backdrop-filter: blur(18px);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.fan-message-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 163, 72, .32);
}

.fan-message-card.is-featured {
    border-color: rgba(214, 163, 72, .52);
    box-shadow:
        0 34px 90px rgba(0,0,0,.36),
        0 0 0 1px rgba(214, 163, 72, .18),
        0 0 42px rgba(214, 163, 72, .12);
}

.fan-platform {
    width: fit-content;
    min-height: 34px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
}

.fan-platform.youtube { color: #ff6a6a; }
.fan-platform.youtube_music { color: #ff8d8d; }
.fan-platform.spotify { color: #65e88a; }
.fan-platform.instagram { color: #ff8ed1; }
.fan-platform.tiktok { color: #ffffff; }
.fan-platform.deezer { color: #d4c2ff; }
.fan-platform.website { color: #d6a348; }

.fan-message-text {
    position: relative;
    margin: 32px 0;
    color: rgba(255,255,255,.88);
    font-size: clamp(17px, 1.35vw, 21px);
    line-height: 1.75;
    letter-spacing: -.015em;
    font-weight: 650;
}

/* Sadece tırnak sembolleri büyük */
.fan-message-text::before {
    content: "“";
    display: inline-block;
    margin-right: 7px;
    color: #d6a348;
    font-size: 54px;
    line-height: 0;
    vertical-align: -18px;
    font-weight: 950;
}

.fan-message-text::after {
    content: "”";
    display: inline-block;
    margin-left: 7px;
    color: #d6a348;
    font-size: 54px;
    line-height: 0;
    vertical-align: -20px;
    font-weight: 950;
}

.fan-message-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.10);
}

.fan-message-footer strong {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
}

.fan-message-footer span {
    display: block;
    margin-top: 5px;
    color: rgba(245,241,234,.58);
    font-size: 13px;
    font-weight: 700;
}

.fan-message-footer small {
    min-height: 28px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #111;
    background: linear-gradient(135deg, #d6a348, #fff0b8);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .fan-messages-section {
        padding: 90px 16px;
    }

    .fan-messages-slider {
        grid-auto-columns: 100%;
        gap: 18px;
    }

    .fan-message-card {
        min-height: 300px;
        padding: 24px;
        border-radius: 28px;
    }

    .fan-message-text {
        font-size: 17px;
        line-height: 1.7;
    }

    .fan-message-text::before,
    .fan-message-text::after {
        font-size: 46px;
    }
}ography-slider::-webkit-scrollbar-thumb,
.discography-slider::-webkit-scrollbar-thumb,
.discography-carousel::-webkit-scrollbar-thumb {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}
/* ==================================================
   ARTIST BIOGRAPHY SECTION
================================================== */

.artist-biography-section {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    color: #fff;
}

.artist-biography-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 30%, rgba(214, 163, 72, .16), transparent 34%),
        radial-gradient(circle at 82% 20%, rgba(180, 20, 45, .16), transparent 32%),
        linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.28));
}

.artist-biography-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0,0,0,.32), rgba(0,0,0,.08), rgba(0,0,0,.38));
    pointer-events: none;
}

.artist-biography-container {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.artist-biography-media {
    position: relative;
}

.artist-biography-photo-wrap {
    position: relative;
    width: min(100%, 430px);
    min-height: 560px;
    border-radius: 38px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 40px 110px rgba(0,0,0,.52);
}

.artist-biography-photo-wrap::before {
    content: "";
    position: absolute;
    inset: 16px;
    z-index: 2;
    border-radius: 30px;
    border: 1px solid rgba(214, 163, 72, .22);
    pointer-events: none;
}

.artist-biography-photo {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(.92);
}

.artist-biography-placeholder {
    width: 100%;
    min-height: 560px;
    display: grid;
    place-items: center;
    font-size: 88px;
    font-weight: 950;
    letter-spacing: -.08em;
    color: rgba(255,255,255,.16);
}

.artist-biography-quote {
    position: relative;
    z-index: 4;
    width: min(360px, calc(100% - 30px));
    margin: -58px 0 0 auto;
    padding: 24px;
    border-radius: 28px;
    color: rgba(255,255,255,.86);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 700;
    background: rgba(15, 15, 18, .76);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 24px 70px rgba(0,0,0,.42);
    backdrop-filter: blur(18px);
}

.artist-biography-content h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 82px);
    line-height: .94;
    letter-spacing: -.06em;
    font-weight: 950;
}

.artist-biography-content h3 {
    margin: 20px 0 0;
    max-width: 680px;
    color: rgba(255,255,255,.84);
    font-size: clamp(20px, 2.5vw, 32px);
    line-height: 1.25;
    font-weight: 600;
}

.artist-biography-text {
    margin-top: 28px;
    max-width: 760px;
    color: rgba(245,241,234,.74);
    font-size: 16px;
    line-height: 1.9;
}

.artist-biography-text p {
    margin: 0 0 18px;
}

.artist-biography-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 34px;
}

.artist-biography-meta div {
    min-height: 92px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(14px);
}

.artist-biography-meta span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.artist-biography-meta strong {
    display: block;
    color: #fff;
    font-size: 17px;
    line-height: 1.25;
}

.artist-biography-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.artist-biography-tags span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .05em;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.12);
}

@media (max-width: 900px) {
    .artist-biography-section {
        padding: 90px 18px;
    }

    .artist-biography-container {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .artist-biography-photo-wrap {
        width: min(100%, 390px);
        min-height: 500px;
    }

    .artist-biography-photo {
        min-height: 500px;
    }

    .artist-biography-meta {
        grid-template-columns: 1fr;
    }
}
/* ==================================================
   FAN MESSAGES SECTION
================================================== */

.fan-messages-section {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 20%, rgba(214, 163, 72, .12), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(190, 20, 48, .14), transparent 34%),
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.22));
}

.fan-messages-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.fan-messages-head {
    max-width: 780px;
    margin-bottom: 42px;
}

.fan-messages-head h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .95;
    letter-spacing: -.06em;
    font-weight: 950;
}

.fan-messages-head p:not(.eyebrow) {
    margin-top: 18px;
    max-width: 640px;
    color: rgba(245, 241, 234, .68);
    line-height: 1.8;
}

.fan-messages-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(350px, 440px);
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 4px 22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    width: 100% !important;
    max-width: 100% !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    touch-action: pan-y;
    scroll-behavior: smooth;
}

.fan-messages-slider::-webkit-scrollbar {
    display: none;
}

.fan-messages-slider.is-dragging {
    cursor: grabbing !important;
    scroll-snap-type: none !important;
}

.fan-messages-slider.is-dragging .fan-message-card:hover {
    transform: none !important;
}

.fan-message-card {
    position: relative;
    scroll-snap-align: start;
    min-height: 310px;
    padding: 28px;
    border-radius: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.13);
    box-shadow: 0 34px 90px rgba(0,0,0,.34);
    backdrop-filter: blur(18px);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.fan-message-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 163, 72, .32);
}

.fan-message-card.is-featured {
    border-color: rgba(214, 163, 72, .52);
    box-shadow:
        0 34px 90px rgba(0,0,0,.36),
        0 0 0 1px rgba(214, 163, 72, .18),
        0 0 42px rgba(214, 163, 72, .12);
}

.fan-platform {
    width: fit-content;
    min-height: 34px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
}

.fan-platform.youtube {
    color: #ff6a6a;
}

.fan-platform.youtube_music {
    color: #ff8d8d;
}

.fan-platform.spotify {
    color: #65e88a;
}

.fan-platform.instagram {
    color: #ff8ed1;
}

.fan-platform.tiktok {
    color: #ffffff;
}

.fan-platform.deezer {
    color: #d4c2ff;
}

.fan-platform.website {
    color: #d6a348;
}

.fan-message-text {
    position: relative;
    margin: 28px 0;
    color: rgba(255,255,255,.86);
    font-size: clamp(13px, .95vw, 15px);
    line-height: 1.65;
    letter-spacing: 0;
    font-weight: 500;
}

/* Sadece tırnak sembolleri büyük */
.fan-message-text::before {
    content: "“";
    display: inline-block;
    margin-right: 7px;
    color: #d6a348;
    font-size: 42px;
    line-height: 0;
    vertical-align: -15px;
    font-weight: 950;
}

.fan-message-text::after {
    content: "”";
    display: inline-block;
    margin-left: 7px;
    color: #d6a348;
    font-size: 42px;
    line-height: 0;
    vertical-align: -17px;
    font-weight: 950;
}

.fan-message-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.10);
}

.fan-message-footer strong {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
}

.fan-message-footer span {
    display: block;
    margin-top: 5px;
    color: rgba(245,241,234,.58);
    font-size: 13px;
    font-weight: 700;
}

.fan-message-footer small {
    min-height: 28px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #111;
    background: linear-gradient(135deg, #d6a348, #fff0b8);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .fan-messages-section {
        padding: 90px 16px;
    }

    .fan-messages-slider {
        grid-auto-columns: 100%;
        gap: 18px;
    }

    .fan-message-card {
        min-height: 300px;
        padding: 24px;
        border-radius: 28px;
    }

    .fan-message-text {
        margin: 24px 0;
        font-size: 13px;
        line-height: 1.6;
        font-weight: 500;
    }

    .fan-message-text::before,
    .fan-message-text::after {
        font-size: 36px;
    }

    .fan-message-text::before {
        vertical-align: -13px;
    }

    .fan-message-text::after {
        vertical-align: -15px;
    }
}
/* ==================================================
   ARTIST CONTACT / BOOKING SECTION
================================================== */

.artist-contact-section {
    position: relative;
    overflow: hidden;
    padding: 120px 20px 140px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 24%, rgba(214, 163, 72, .13), transparent 34%),
        radial-gradient(circle at 86% 18%, rgba(190, 20, 48, .15), transparent 34%),
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .30));
}

.artist-contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .30), rgba(0, 0, 0, .06), rgba(0, 0, 0, .34));
}

.artist-contact-container {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.artist-contact-info h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .95;
    letter-spacing: -.06em;
    font-weight: 950;
}

.artist-contact-description {
    max-width: 560px;
    margin-top: 22px;
    color: rgba(245, 241, 234, .72);
    font-size: 16px;
    line-height: 1.85;
}

.artist-contact-cards {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.artist-contact-card {
    min-height: 82px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 26px;
    color: #fff;
    text-decoration: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
    border: 1px solid rgba(255, 255, 255, .13);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .30);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.artist-contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(214, 163, 72, .38);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
}

.artist-contact-card > span {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #111;
    font-size: 18px;
    background: linear-gradient(135deg, var(--gold), #fff0b8);
    box-shadow: 0 14px 34px rgba(214, 163, 72, .24);
}

.artist-contact-card.whatsapp > span {
    color: #fff;
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 14px 34px rgba(37, 211, 102, .24);
}

.artist-contact-card strong {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: .02em;
}

.artist-contact-card small {
    display: block;
    margin-top: 5px;
    color: rgba(245, 241, 234, .60);
    font-size: 13px;
    line-height: 1.35;
    word-break: break-word;
}

.artist-contact-form-wrap {
    position: relative;
    padding: 30px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(214, 163, 72, .10), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035));
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 34px 100px rgba(0, 0, 0, .40);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.artist-contact-form {
    width: 100%;
}

.artist-contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.artist-form-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.artist-form-field.full {
    grid-column: 1 / -1;
}

.artist-form-field label {
    color: rgba(245, 241, 234, .78);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.artist-form-field input,
.artist-form-field select,
.artist-form-field textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 18px;
    outline: none;
    color: #fff;
    font: inherit;
    font-size: 14px;
    background: rgba(0, 0, 0, .28);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.artist-form-field textarea {
    min-height: 150px;
    padding: 16px;
    resize: vertical;
    line-height: 1.65;
}

.artist-form-field select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(255,255,255,.72) 50%),
        linear-gradient(135deg, rgba(255,255,255,.72) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 22px,
        calc(100% - 14px) 22px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.artist-form-field input::placeholder,
.artist-form-field textarea::placeholder {
    color: rgba(245, 241, 234, .36);
}

.artist-form-field input:focus,
.artist-form-field select:focus,
.artist-form-field textarea:focus {
    border-color: rgba(214, 163, 72, .55);
    background: rgba(0, 0, 0, .38);
    box-shadow: 0 0 0 4px rgba(214, 163, 72, .08);
}

.artist-form-field small {
    color: #ff8d8d;
    font-size: 12px;
    line-height: 1.45;
}

.artist-contact-submit {
    min-height: 54px;
    margin-top: 24px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    color: #111;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: .02em;
    background: linear-gradient(135deg, var(--gold), #fff0b8);
    box-shadow: 0 20px 50px rgba(214, 163, 72, .26);
    transition: transform .22s ease, box-shadow .22s ease;
}

.artist-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 64px rgba(214, 163, 72, .34);
}

.artist-contact-alert {
    margin-bottom: 18px;
    padding: 15px 17px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
    border: 1px solid rgba(255, 255, 255, .12);
}

.artist-contact-alert.success {
    color: #c8ffd9;
    background: rgba(37, 211, 102, .12);
    border-color: rgba(37, 211, 102, .28);
}

.artist-contact-alert.error {
    color: #ffd0d0;
    background: rgba(255, 80, 80, .12);
    border-color: rgba(255, 80, 80, .28);
}

.artist-contact-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* CONTACT RESPONSIVE */

@media (max-width: 920px) {
    .artist-contact-section {
        padding: 96px 18px 120px;
    }

    .artist-contact-container {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .artist-contact-description {
        max-width: 720px;
    }
}

@media (max-width: 620px) {
    .artist-contact-section {
        padding: 86px 16px 116px;
    }

    .artist-contact-info h2 {
        font-size: 38px;
        line-height: 1;
        letter-spacing: -.045em;
    }

    .artist-contact-form-wrap {
        padding: 22px;
        border-radius: 28px;
    }

    .artist-contact-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .artist-contact-card {
        min-height: 76px;
        padding: 16px;
        border-radius: 22px;
    }

    .artist-contact-card > span {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .artist-form-field input,
    .artist-form-field select {
        min-height: 50px;
    }

    .artist-contact-submit {
        width: 100%;
    }
}