/* =========================================================
   UC RECORD LABEL
   GLOBAL DESIGN SYSTEM
========================================================= */

/* -------------------------
   RESET
------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080808;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

button,
input {
    font: inherit;
}

button {
    border: none;
    background: none;
    color: inherit;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   DESIGN VARIABLES
========================================================= */

:root {

    /* Backgrounds */
    --bg-main: #080808;
    --bg-secondary: #101010;
    --bg-card: #151515;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a5a5a5;
    --text-muted: #707070;

    /* Borders */
    --border-light: rgba(255, 255, 255, 0.12);
    --border-dark: rgba(255, 255, 255, 0.06);

    /* Accent */
    --accent: #ffffff;

    /* Layout */
    --container-width: 1400px;

    /* Header */
    --header-height: 90px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.header-container {
    width: min(100% - 60px, var(--container-width));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);

    z-index: 1000;

    background: rgba(8, 8, 8, 0.85);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-bottom: 1px solid var(--border-dark);
}


/* =========================================================
   HEADER CONTAINER
========================================================= */

.site-header .header-container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


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

.site-logo {
    display: inline-flex;
    align-items: center;

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

    letter-spacing: -0.5px;

    white-space: nowrap;

    transition: opacity var(--transition-fast);
}

.site-logo span {
    font-weight: 400;
    margin-left: 4px;
}

.site-logo:hover {
    opacity: 0.65;
}

/* =========================================================
   HEADER LAYOUT
========================================================= */

.header-container {
    width: min(calc(100% - 60px), var(--container-width));
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-navigation a {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.main-navigation a:hover {
    color: var(--text-primary);
}

/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--text-primary);
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
}

/* =========================================================
   HAMBURGER BUTTON
========================================================= */

.menu-button {
    display: none;

    width: 42px;
    height: 42px;
    padding: 8px;

    border: 1px solid var(--border-light);
    background: transparent;
    color: var(--text-primary);

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

/* Hamburger to X */

.menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


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

@media (max-width: 900px) {

    .header-container {
        width: calc(100% - 30px);
    }

    .main-navigation {
        display: none;
    }

    .menu-button {
        display: inline-flex;
    }

    .main-navigation.menu-open {
        position: absolute;
        top: var(--header-height);
        left: 0;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        width: 100%;
        padding: 15px 30px 25px;

        background: #101010;
        border-bottom: 1px solid var(--border-light);

        z-index: 999;
    }

    .main-navigation.menu-open a {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-dark);
    }
}

/* Small mobile screens */

@media (max-width: 480px) {

    .site-logo {
        font-size: 17px;
    }

    .header-actions {
        gap: 10px;
    }

    .search-button {
        font-size: 12px;
    }
}
/* =========================================================
   SEARCH OVERLAY
========================================================= */

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 120px 20px 40px;
    background: rgba(0, 0, 0, 0.88);
    overflow-y: auto;
}

.search-box {
    position: relative;
    width: min(650px, 100%);
    padding: 40px;
    background: #f4f1ec;
    color: #050505;
    border-radius: 10px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.search-box h2 {
    margin: 0 40px 25px 0;
    font-size: 22px;
    line-height: 1.3;
}

.search-box input {
    width: 100%;
    padding: 15px;
    border: 1px solid #999;
    outline: none;
    background: transparent;
    color: #050505;
    font: inherit;
}

.search-box input:focus {
    border-color: #050505;
}

.search-close {
    position: absolute;
    top: 12px;
    right: 18px;
    padding: 5px;
    background: transparent;
    color: #050505;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.search-close:hover {
    opacity: 0.5;
}

/* =========================================================
   SEARCH RESULTS
========================================================= */

#searchResults {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 24px;
}

.search-result {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #d0ccc5;
    color: #050505;
    text-align: left;
    text-decoration: none;
    line-height: 1.5;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.search-result:hover {
    opacity: 0.55;
}

.search-result-button {
    border: none;
    background: transparent;
    font: inherit;
}

.search-no-results {
    padding: 14px 0;
    color: #555555;
}


/* =========================================================
   MAIN CONTENT OFFSET
========================================================= */

main {
    padding-top: var(--header-height);
}


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

.music-player {
    position: fixed;

    left: 0;
    bottom: 0;

    width: 100%;

    z-index: 1100;

    background: rgba(12, 12, 12, 0.96);

    border-top: 1px solid var(--border-light);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.player-inner {
    width: min(100% - 40px, var(--container-width));

    min-height: 78px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 30px;
}


/* =========================================================
   PLAYER TRACK
========================================================= */

.player-track {
    display: flex;
    align-items: center;

    gap: 12px;

    width: 250px;

    flex-shrink: 0;
}

.player-cover {
    width: 48px;
    height: 48px;

    background: #202020;

    overflow: hidden;

    flex-shrink: 0;
}

.player-cover img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.player-information {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.player-artist,
.player-title {
    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.player-artist {
    color: var(--text-secondary);

    font-size: 11px;

    margin-bottom: 4px;
}

.player-title {
    color: #ffffff;

    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   PLAYER CONTROLS
========================================================= */

.player-controls {
    display: flex;
    align-items: center;

    gap: 18px;
}

.player-controls button {
    display: flex;

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

    width: 34px;
    height: 34px;

    border-radius: 50%;

    transition:
        background var(--transition-fast),
        transform var(--transition-fast);
}

.player-controls button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.player-controls button:active {
    transform: scale(0.9);
}

#playPauseButton {
    width: 42px;
    height: 42px;

    background: #ffffff;

    color: #000000;
}

#playPauseButton:hover {
    background: #dddddd;
}


/* =========================================================
   PLAYER PROGRESS
========================================================= */

.player-progress {
    flex: 1;

    display: flex;
    align-items: center;

    gap: 10px;
}

.player-progress span {
    color: var(--text-muted);

    font-size: 10px;

    min-width: 32px;
}

#duration {
    text-align: right;
}


/* =========================================================
   RANGE INPUT
========================================================= */

input[type="range"] {
    appearance: none;
    -webkit-appearance: none;

    width: 100%;

    height: 3px;

    background: #3a3a3a;

    border-radius: 10px;

    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #ffffff;
}

input[type="range"]::-moz-range-thumb {
    width: 10px;
    height: 10px;

    border: none;
    border-radius: 50%;

    background: #ffffff;
}


/* =========================================================
   PLAYER VOLUME
========================================================= */

.player-volume {
    width: 120px;

    display: flex;
    align-items: center;

    gap: 10px;
}

.player-volume span {
    font-size: 13px;
}

/* =========================================================
   MOBILE MUSIC PLAYER
========================================================= */

@media (max-width: 700px) {

    .player-inner {
        min-height: 70px;

        width: calc(100% - 20px);

        gap: 12px;
    }

    .player-track {
        width: auto;

        flex: 1;
    }

    .player-cover {
        width: 42px;
        height: 42px;
    }

    .player-progress,
    .player-volume {
        display: none;
    }

    .player-controls {
        gap: 5px;
    }

    .player-controls button {
        width: 30px;
        height: 30px;
    }

    #playPauseButton {
        width: 38px;
        height: 38px;
    }

}



/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    position: relative;

    width: 100%;
    height: calc(100vh - var(--header-height));

    min-height: 650px;

    overflow: hidden;

    background: #050505;
}


/* =========================================================
   HERO SLIDES
========================================================= */

.hero-slides {
    position: relative;

    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;

    z-index: 2;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    transform: scale(1.03);

    transition:
        transform 8s ease;
}

.hero-slide.active .hero-image img {
    transform: scale(1);
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.55) 40%,
            rgba(0, 0, 0, 0.12) 75%,
            rgba(0, 0, 0, 0.4) 100%
        );

    z-index: 1;
}

.hero-overlay::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.75) 0%,
            transparent 35%
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: absolute;

    left: max(30px, calc((100% - var(--container-width)) / 2));

    bottom: 120px;

    z-index: 5;

    max-width: 750px;
}

.hero-label {
    display: block;

    margin-bottom: 20px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.hero-title {
    margin: 0;

    font-size: clamp(60px, 8vw, 130px);

    line-height: 0.88;

    font-weight: 800;

    letter-spacing: -5px;

    text-transform: uppercase;
}

.hero-subtitle {
    margin-top: 25px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 15px;
    font-weight: 500;

    letter-spacing: 2px;

    text-transform: uppercase;
}


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

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 35px;
}

.hero-button {
    display: inline-flex;

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

    min-width: 145px;
    height: 48px;

    padding: 0 24px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
}

.hero-button.primary {
    background: #ffffff;

    color: #000000;
}

.hero-button.primary:hover {
    background: #dddddd;
}

.hero-button.secondary {
    border: 1px solid rgba(255, 255, 255, 0.45);

    background: rgba(255, 255, 255, 0.05);

    color: #ffffff;

    backdrop-filter: blur(10px);
}

.hero-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);

    border-color: #ffffff;
}


/* =========================================================
   HERO ARROWS
========================================================= */

.hero-arrow {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 52px;
    height: 52px;

    border: 1px solid rgba(255, 255, 255, 0.25);

    background: rgba(0, 0, 0, 0.25);

    color: #ffffff;

    font-size: 20px;

    transform: translateY(-50%);

    backdrop-filter: blur(10px);

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.15);

    border-color: rgba(255, 255, 255, 0.7);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}


/* =========================================================
   HERO DOTS
========================================================= */

.hero-navigation {
    position: absolute;

    left: max(30px, calc((100% - var(--container-width)) / 2));

    bottom: 42px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 8px;
}

.hero-dot {
    width: 28px;
    height: 2px;

    background: rgba(255, 255, 255, 0.3);

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.hero-dot.active {
    width: 55px;

    background: #ffffff;
}


/* =========================================================
   HERO COUNTER
========================================================= */

.hero-counter {
    position: absolute;

    right: max(30px, calc((100% - var(--container-width)) / 2));

    bottom: 42px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 11px;

    letter-spacing: 1px;
}

.hero-counter span:first-child {
    color: #ffffff;
}

.hero-counter-line {
    width: 35px;
    height: 1px;

    background: rgba(255, 255, 255, 0.35);
}


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

@media (max-width: 900px) {

    .hero-section {
        height: calc(100vh - var(--header-height));

        min-height: 600px;
    }

    .hero-content {
        left: 30px;
        right: 30px;

        bottom: 120px;
    }

    .hero-title {
        font-size: clamp(55px, 12vw, 100px);

        letter-spacing: -3px;
    }

    .hero-arrow {
        width: 44px;
        height: 44px;
    }

    .hero-prev {
        left: 15px;
    }

    .hero-next {
        right: 15px;
    }

}


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

@media (max-width: 600px) {

    .hero-section {
        min-height: 650px;
    }

    .hero-image img {
        object-position: center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.9) 0%,
                rgba(0, 0, 0, 0.35) 60%,
                rgba(0, 0, 0, 0.2) 100%
            );
    }

    .hero-content {
        left: 20px;
        right: 20px;

        bottom: 115px;
    }

    .hero-label {
        font-size: 9px;

        letter-spacing: 2px;

        margin-bottom: 15px;
    }

    .hero-title {
        font-size: clamp(45px, 15vw, 75px);

        line-height: 0.9;

        letter-spacing: -2px;
    }

    .hero-subtitle {
        margin-top: 18px;

        font-size: 12px;
    }

    .hero-buttons {
        margin-top: 25px;

        flex-wrap: wrap;
    }

    .hero-button {
        min-width: 125px;

        height: 44px;

        padding: 0 18px;

        font-size: 9px;
    }

    .hero-arrow {
        top: auto;
        bottom: 42px;

        width: 38px;
        height: 38px;

        transform: none;
    }

    .hero-prev {
        left: auto;
        right: 65px;
    }

    .hero-next {
        right: 20px;
    }

    .hero-navigation {
        left: 20px;

        bottom: 58px;
    }

    .hero-counter {
        display: none;
    }

}

/* =========================================================
   MUSIC / LATEST RELEASES
========================================================= */

.music-section {
    padding: 140px 0 160px;

    background: var(--bg-main);
}

.section-container {
    width: min(100% - 60px, var(--container-width));

    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 55px;
}

.section-eyebrow {
    display: block;

    margin-bottom: 14px;

    color: var(--text-muted);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.section-title {
    font-size: clamp(40px, 5vw, 72px);

    line-height: 0.95;

    font-weight: 700;

    letter-spacing: -3px;

    text-transform: uppercase;
}

.section-link {
    color: var(--text-secondary);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: color 0.25s ease;
}

.section-link:hover {
    color: #ffffff;
}


/* =========================================================
   RELEASE GRID
========================================================= */

.releases-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================================
   RELEASE CARD
========================================================= */

.release-card {
    min-width: 0;
}

.release-artwork {
    position: relative;

    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #151515;
}

.release-artwork img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.release-card:hover .release-artwork img {
    transform: scale(1.05);
}


/* =========================================================
   RELEASE PLAY BUTTON
========================================================= */

.release-play {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 50px;
    height: 50px;

    display: flex;

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

    border-radius: 50%;

    background: #ffffff;

    color: #000000;

    font-size: 14px;

    opacity: 0;

    transform: translateY(10px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.release-card:hover .release-play {
    opacity: 1;

    transform: translateY(0);
}

.release-play:hover {
    background: #dddddd;
}


/* =========================================================
   RELEASE INFORMATION
========================================================= */

.release-info {
    padding-top: 18px;
}

.release-artist {
    display: block;

    margin-bottom: 7px;

    color: var(--text-muted);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.release-title {
    margin: 0;

    font-size: 20px;

    font-weight: 600;

    letter-spacing: -0.5px;
}

.release-type {
    display: block;

    margin-top: 8px;

    color: var(--text-muted);

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


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

@media (max-width: 1000px) {

    .releases-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 600px) {

    .music-section {
        padding: 90px 0 110px;
    }

    .section-container {
        width: calc(100% - 40px);
    }

    .section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;

        margin-bottom: 35px;
    }

    .section-title {
        letter-spacing: -2px;
    }

    .releases-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .release-play {
        opacity: 1;

        transform: none;

        width: 44px;
        height: 44px;
    }

}

/* =========================================================
   ARTISTS SECTION
========================================================= */

.artists-section {
    position: relative;

    padding: 150px 0 170px;

    background: #0d0d0d;

    overflow: hidden;
}

.artists-heading {
    align-items: flex-end;
}

.section-description {
    max-width: 320px;

    color: var(--text-secondary);

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   ARTIST LIST
========================================================= */

.artists-list {
    border-top: 1px solid var(--border-light);
}

.artist-item {
    position: relative;

    display: grid;

    grid-template-columns: 70px 1fr 180px 50px;

    align-items: center;

    min-height: 125px;

    padding: 0 10px;

    border-bottom: 1px solid var(--border-light);

    overflow: hidden;

    transition:
        padding 0.4s ease;
}

.artist-number {
    color: var(--text-muted);

    font-size: 11px;

    letter-spacing: 1px;
}

.artist-name {
    position: relative;

    z-index: 2;

    font-size: clamp(30px, 4vw, 62px);

    line-height: 1;

    font-weight: 700;

    letter-spacing: -2px;

    text-transform: uppercase;

    transition:
        transform 0.4s ease;
}

.artist-genre {
    position: relative;

    z-index: 2;

    color: var(--text-muted);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.artist-arrow {
    position: relative;

    z-index: 2;

    font-size: 24px;

    text-align: right;

    transition:
        transform 0.4s ease;
}


/* =========================================================
   ARTIST IMAGE
========================================================= */

.artist-image {
    position: absolute;

    top: 50%;
    right: 100px;

    width: 260px;
    height: 330px;

    overflow: hidden;

    opacity: 0;

    transform:
        translateY(-50%)
        translateX(30px)
        rotate(2deg);

    pointer-events: none;

    transition:
        opacity 0.4s ease,
        transform 0.5s ease;

    z-index: 1;
}

.artist-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.artist-item:hover {
    padding-left: 20px;
}

.artist-item:hover .artist-name {
    transform: translateX(15px);
}

.artist-item:hover .artist-image {
    opacity: 1;

    transform:
        translateY(-50%)
        translateX(0)
        rotate(2deg);
}

.artist-item:hover .artist-arrow {
    transform:
        translate(5px, -5px);
}


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

@media (max-width: 800px) {

    .artists-section {
        padding: 100px 0 120px;
    }

    .artists-heading {
        align-items: flex-start;
    }

    .artist-item {
        grid-template-columns: 45px 1fr 35px;

        min-height: 100px;
    }

    .artist-genre {
        display: none;
    }

    .artist-name {
        font-size: clamp(27px, 8vw, 48px);
    }

    .artist-image {
        right: 60px;

        width: 150px;
        height: 200px;
    }

}

@media (max-width: 500px) {

    .artist-image {
        width: 120px;
        height: 160px;

        right: 45px;
    }

    .artist-item:hover .artist-name {
        transform: none;
    }

}

/* =========================================================
   PODCAST SECTION
========================================================= */

.podcast-section {
    padding: 150px 0 170px;

    background: #080808;
}

.podcast-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 55px;
}


/* =========================================================
   FEATURED PODCAST
========================================================= */

.featured-podcast {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 550px;

    background: #131313;
}


/* =========================================================
   PODCAST COVER
========================================================= */

.podcast-cover {
    position: relative;

    min-height: 550px;

    overflow: hidden;

    background: #1b1b1b;
}

.podcast-cover img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

.featured-podcast:hover .podcast-cover img {
    transform: scale(1.04);
}


/* =========================================================
   PODCAST PLAY
========================================================= */

.podcast-play {
    position: absolute;

    left: 30px;
    bottom: 30px;

    width: 65px;
    height: 65px;

    display: flex;

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

    border-radius: 50%;

    background: #ffffff;

    color: #000000;

    font-size: 16px;

    transition:
        transform 0.3s ease;
}

.podcast-play:hover {
    transform: scale(1.08);
}


/* =========================================================
   PODCAST CONTENT
========================================================= */

.podcast-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 70px;
}

.podcast-episode {
    margin-bottom: 20px;

    color: var(--text-muted);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.podcast-title {
    max-width: 600px;

    font-size: clamp(38px, 5vw, 70px);

    line-height: 0.95;

    font-weight: 700;

    letter-spacing: -3px;

    text-transform: uppercase;
}

.podcast-description {
    max-width: 480px;

    margin-top: 30px;

    color: var(--text-secondary);

    font-size: 14px;

    line-height: 1.7;
}

.podcast-meta {
    display: flex;

    gap: 25px;

    margin-top: 30px;

    color: var(--text-muted);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;
}

.podcast-listen {
    align-self: flex-start;

    margin-top: 35px;

    padding-bottom: 8px;

    border-bottom: 1px solid #ffffff;

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   EPISODE LIST
========================================================= */

.podcast-episodes {
    margin-top: 30px;

    border-top: 1px solid var(--border-light);
}

.podcast-episode-card {
    display: grid;

    grid-template-columns: 70px 1fr 50px;

    align-items: center;

    min-height: 100px;

    border-bottom: 1px solid var(--border-light);
}

.episode-number {
    color: var(--text-muted);

    font-size: 11px;
}

.episode-details h4 {
    font-size: 17px;

    font-weight: 600;

    letter-spacing: -0.3px;
}

.episode-details span {
    display: block;

    margin-top: 7px;

    color: var(--text-muted);

    font-size: 9px;

    letter-spacing: 1px;
}

.podcast-episode-card button {
    width: 40px;
    height: 40px;

    border: 1px solid var(--border-light);

    border-radius: 50%;

    transition:
        background 0.25s ease;
}

.podcast-episode-card button:hover {
    background: #ffffff;

    color: #000000;
}



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

@media (max-width: 900px) {

    .featured-podcast {
        grid-template-columns: 1fr;
    }

    .podcast-cover {
        min-height: 450px;
    }

    .podcast-content {
        padding: 50px 40px;
    }

}


@media (max-width: 600px) {

    .podcast-section {
        padding: 100px 0 120px;
    }

    .podcast-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;
    }

    .podcast-cover {
        min-height: 350px;
    }

    .podcast-content {
        padding: 40px 25px;
    }

    .podcast-title {
        letter-spacing: -2px;
    }

    .podcast-episode-card {
        grid-template-columns: 45px 1fr 40px;
    }

}

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

.podcast-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.85);
}

.podcast-modal-content {
  position: relative;
  width: min(700px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  background: #ffffff;
  color: #111111;
}

.podcast-modal-content h3 {
  margin-bottom: 24px;
  font-size: 28px;
}

.podcast-modal-content p {
  margin-top: 20px;
  line-height: 1.7;
}

.podcast-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: transparent;
  color: #111111;
  font-size: 32px;
  cursor: pointer;
}

.podcast-player-wrapper {
  width: 100%;
}

.podcast-player-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 380px;
  border: none;
}

.podcast-player-wrapper video {
  display: block;
  width: 100%;
  max-height: 500px;
}

.podcast-player-wrapper audio {
  width: 100%;
}

/* =========================================================
   JOURNAL / NEWS
========================================================= */

.journal-section {
    padding: 150px 0 170px;

    background: #0d0d0d;
}


/* =========================================================
   JOURNAL GRID
========================================================= */

.journal-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 24px;
}


/* =========================================================
   FEATURED STORY
========================================================= */

.journal-featured {
    grid-row: span 2;
}

.journal-image {
    position: relative;

    display: block;

    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #171717;
}

.journal-image img,
.journal-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

.journal-image:hover img,
.journal-card-image:hover img {
    transform: scale(1.05);
}

.journal-category {
    position: absolute;

    top: 20px;
    left: 20px;

    padding: 8px 12px;

    background: #ffffff;

    color: #000000;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   FEATURED CONTENT
========================================================= */

.journal-content {
    padding-top: 22px;
}

.journal-date {
    display: block;

    margin-bottom: 10px;

    color: var(--text-muted);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1.5px;
}

.journal-title {
    max-width: 650px;

    font-size: clamp(28px, 3vw, 45px);

    line-height: 1;

    font-weight: 700;

    letter-spacing: -1.5px;
}

.journal-content p {
    max-width: 550px;

    margin-top: 18px;

    color: var(--text-secondary);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   JOURNAL CARDS
========================================================= */

.journal-card-image {
    display: block;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #171717;
}

.journal-card-content {
    padding-top: 18px;
}

.journal-card-content h3 {
    font-size: 20px;

    line-height: 1.05;

    letter-spacing: -0.5px;
}

.journal-card-content p {
    margin-top: 10px;

    color: var(--text-secondary);

    font-size: 12px;
}

.read-more {
    display: inline-block;

    margin-top: 18px;

    padding-bottom: 5px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.4);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition:
        border-color 0.25s ease;
}

.read-more:hover {
    border-color: #ffffff;
}


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

@media (max-width: 900px) {

    .journal-grid {
        grid-template-columns: 1fr 1fr;
    }

    .journal-featured {
        grid-column: 1 / -1;
        grid-row: auto;
    }

}


@media (max-width: 600px) {

    .journal-section {
        padding: 100px 0 120px;
    }

    .journal-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   VIDEOS
========================================================= */

.videos-section {
    padding: 150px 0 170px;

    background: #080808;
}


/* =========================================================
   VIDEO GRID
========================================================= */

.video-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr;

    gap: 24px;
}

.video-featured {
    grid-row: span 2;
}

.video-card-wrapper {
    min-width: 0;
}


/* =========================================================
   VIDEO CARD
========================================================= */

.video-card {
    position: relative;

    display: block;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: #151515;
}

.video-featured .video-card {
    aspect-ratio: 16 / 14;
}

.video-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

.video-card:hover img {
    transform: scale(1.05);
}


/* =========================================================
   VIDEO OVERLAY
========================================================= */

.video-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.85),
            transparent 60%
        );
}


/* =========================================================
   VIDEO PLAY
========================================================= */

.video-play {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 65px;
    height: 65px;

    display: flex;

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

    border: 1px solid rgba(255, 255, 255, 0.6);

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.3);

    color: #ffffff;

    transform:
        translate(-50%, -50%);

    backdrop-filter: blur(8px);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.video-card:hover .video-play {
    background: #ffffff;

    color: #000000;

    transform:
        translate(-50%, -50%)
        scale(1.08);
}


/* =========================================================
   VIDEO INFORMATION
========================================================= */

.video-information {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    z-index: 2;
}

.video-information span {
    display: block;

    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.video-information h3 {
    max-width: 500px;

    font-size: 24px;

    line-height: 1;

    letter-spacing: -0.8px;
}

.video-featured .video-information h3 {
    font-size: clamp(30px, 4vw, 55px);

    letter-spacing: -2px;
}


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

@media (max-width: 800px) {

    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-featured {
        grid-row: auto;
    }

    .video-featured .video-card {
        aspect-ratio: 16 / 10;
    }

}


@media (max-width: 600px) {

    .videos-section {
        padding: 100px 0 120px;
    }

    .video-information {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .video-information h3 {
        font-size: 19px;
    }

    .video-featured .video-information h3 {
        font-size: 30px;
    }

    .video-play {
        width: 52px;
        height: 52px;
    }

} 


/* =========================================
   VIDEO PLAYER MODAL
========================================= */

.site-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.9);
}

.site-video-modal-content {
  position: relative;
  width: min(1000px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  background: #111111;
  color: #ffffff;
}

.site-video-modal-content h2 {
  margin-bottom: 24px;
  font-size: 28px;
}

.site-video-modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 34px;
  cursor: pointer;
}

.site-video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.site-video-player iframe,
.site-video-player video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-video-modal-content p {
  margin-top: 20px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .site-video-modal {
    padding: 12px;
  }

  .site-video-modal-content {
    padding: 24px 16px;
  }

  .site-video-modal-content h2 {
    font-size: 22px;
  }
}
/* =========================================================
   EVENTS
========================================================= */

.events-section {
    padding: 150px 0 180px;

    background: #0d0d0d;
}


/* =========================================================
   EVENTS LIST
========================================================= */

.events-list {
    border-top: 1px solid var(--border-light);
}

.event-item {
    display: grid;

    grid-template-columns:
        130px
        1fr
        200px
        100px;

    align-items: center;

    min-height: 145px;

    padding: 20px 10px;

    border-bottom: 1px solid var(--border-light);

    transition:
        background 0.3s ease,
        padding 0.3s ease;
}

.event-item:hover {
    padding-left: 20px;
    padding-right: 20px;

    background: rgba(255, 255, 255, 0.025);
}


/* =========================================================
   EVENT DATE
========================================================= */

.event-date {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.event-month {
    color: var(--text-muted);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.event-date strong {
    margin: 3px 0;

    font-size: 42px;

    line-height: 0.9;

    letter-spacing: -2px;
}

.event-year {
    color: var(--text-muted);

    font-size: 9px;
}


/* =========================================================
   EVENT INFORMATION
========================================================= */

.event-type {
    display: block;

    margin-bottom: 9px;

    color: var(--text-muted);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.event-information h3 {
    max-width: 600px;

    font-size: clamp(22px, 3vw, 36px);

    line-height: 1;

    letter-spacing: -1px;
}


/* =========================================================
   EVENT LOCATION
========================================================= */

.event-location {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.event-location strong {
    font-size: 12px;

    letter-spacing: 1px;
}

.event-location span {
    color: var(--text-muted);

    font-size: 9px;

    letter-spacing: 1px;
}


/* =========================================================
   EVENT LINK
========================================================= */

/* =========================================
   CLICKABLE EVENT ROWS
========================================= */

.event-item-clickable {
    display: grid;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.event-item-clickable:hover {
    opacity: 0.75;
}

.event-item-clickable:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 6px;
}


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

@media (max-width: 900px) {

    .event-item {
        grid-template-columns:
            90px
            1fr
            100px;
    }

   
}


@media (max-width: 600px) {

    .events-section {
        padding: 100px 0 120px;
    }

    .event-item {
        grid-template-columns: 65px 1fr;

        min-height: 125px;

        gap: 15px;
    }

    .event-date strong {
        font-size: 34px;
    }

    .event-location {
        grid-column: 2;

        margin-top: -20px;
    }

    .event-information h3 {
        font-size: 23px;
    }

}






/* =========================================================
   ABOUT UC RECORD LABEL
========================================================= */

.about-section {
    padding: 160px 0 140px;
    background: #080808;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.about-label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.about-number {
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 2px;
}

.about-title {
    max-width: 850px;
    font-size: clamp(45px, 7vw, 105px);
    line-height: 0.9;
    font-weight: 700;
    letter-spacing: -4px;
    text-transform: uppercase;
}

.about-description {
    max-width: 620px;
    margin-top: 35px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.about-button {
    display: inline-block;
    margin-top: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 130px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-stat strong {
    font-size: clamp(35px, 5vw, 65px);
    font-weight: 600;
    letter-spacing: -2px;
}

.about-stat span {
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

/* About Responsive */

@media (max-width: 800px) {

    .about-section {
        padding: 100px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-label {
        min-height: auto;
        gap: 20px;
    }

    .about-title {
        letter-spacing: -2px;
    }

    .about-stats {
        margin-top: 80px;
    }

}

@media (max-width: 500px) {

    .about-stats {
        grid-template-columns: 1fr;
        gap: 35px;
    }

} 


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

.contact-section {
    padding: 160px 0;
    background: #0d0d0d;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-title {
    margin-top: 25px;
    font-size: clamp(45px, 6vw, 85px);
    line-height: 0.92;
    font-weight: 700;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.contact-description {
    max-width: 400px;
    margin-top: 35px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.contact-email {
    display: inline-block;
    margin-top: 30px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
    color: #ffffff;
    font-size: 13px;
    transition: border-color 0.3s ease;
}

.contact-email:hover {
    border-color: #ffffff;
}


/* Contact Form */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-field label {
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid var(--border-light);
    outline: none;
    background: transparent;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    border-radius: 0;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #555555;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #ffffff;
}

.form-field select option {
    background: #151515;
    color: #ffffff;
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    align-self: flex-start;
    padding: 17px 28px;
    background: #ffffff;
    color: #000000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.contact-submit:hover {
    background: #cccccc;
}



/* =========================================
   CONTACT FORM STATUS
========================================= */

.contact-status {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.6;
    min-height: 22px;
}

.contact-status.loading {
    color: #777777;
}

.contact-status.success {
    color: #16803c;
}

.contact-status.error {
    color: #c62828;
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}


/* Contact Responsive */

@media (max-width: 800px) {

    .contact-section {
        padding: 100px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-title {
        letter-spacing: -2px;
    }

}

/* =========================================
   PROFESSIONAL GLOBAL FOOTER
========================================= */

.site-footer {
    --footer-bg: #0b0b0b;
    --footer-text: #f5f5f0;
    --footer-muted: #969690;
    --footer-border: rgba(255, 255, 255, 0.18);

    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: var(--footer-bg);
    color: var(--footer-text);
    border-top: 1px solid var(--footer-border);
    overflow: hidden;
    box-sizing: border-box;
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
    box-sizing: border-box;
}

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

.site-footer .footer-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

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

.site-footer .footer-top {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: start;
    gap: 80px;
    padding: 70px 0 75px;
}

/* =========================================
   BRAND
========================================= */

.site-footer .footer-brand {
    min-width: 0;
}

.site-footer .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border: 1px solid var(--footer-text);
    border-radius: 50%;
    color: var(--footer-text);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.site-footer .footer-logo:hover {
    background: var(--footer-text);
    color: var(--footer-bg);
    transform: rotate(-8deg);
}

.site-footer .footer-tagline {
    max-width: 170px;
    margin: 18px 0 0;
    color: var(--footer-muted);
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.12em;
}

/* =========================================
   NAVIGATION
========================================= */

.site-footer .footer-navigation {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 45px;
    width: 100%;
    min-width: 0;
}

.site-footer .footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.site-footer .footer-heading {
    display: block;
    margin: 0 0 10px;
    color: var(--footer-muted);
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.14em;
}

.site-footer .footer-column a {
    position: relative;
    display: inline-block;
    max-width: 100%;
    color: var(--footer-text);
    font-size: 0.9rem;
    line-height: 1.5;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: color 0.25s ease;
}

.site-footer .footer-column a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -4px;
    left: 0;
    height: 1px;
    background: var(--footer-text);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.site-footer .footer-column a:hover {
    color: #ffffff;
}

.site-footer .footer-column a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* =========================================
   SOCIAL LINKS
========================================= */

.site-footer #footerSocialLinks {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    min-width: 0;
}

.site-footer #footerSocialLinks a {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.site-footer #footerSocialLinks p {
    margin: 0;
    color: var(--footer-muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

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

.site-footer .footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    width: 100%;
    min-width: 0;
    padding: 25px 0 28px;
    border-top: 1px solid var(--footer-border);
    color: var(--footer-muted);
    font-size: 0.65rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.07em;
}

.site-footer .footer-copyright {
    min-width: 0;
    text-align: left;
    overflow-wrap: anywhere;
}

.site-footer .footer-motto {
    min-width: 0;
    text-align: right;
    overflow-wrap: anywhere;
}

/* =========================================
   LARGE TABLETS
========================================= */

@media (max-width: 1100px) {
    .site-footer .footer-container {
        padding: 0 40px;
    }

    .site-footer .footer-top {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 45px;
    }

    .site-footer .footer-navigation {
        gap: 25px;
    }
}

/* =========================================
   TABLETS
========================================= */

@media (max-width: 768px) {
    .site-footer .footer-container {
        padding: 0 30px;
    }

    .site-footer .footer-top {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 50px 0;
    }

    .site-footer .footer-navigation {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 25px;
    }

    .site-footer .footer-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 22px 0 25px;
    }
}

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

@media (max-width: 520px) {
    .site-footer .footer-container {
        padding: 0 20px;
    }

    .site-footer .footer-top {
        gap: 40px;
        padding: 42px 0;
    }

    .site-footer .footer-navigation {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 35px 20px;
    }

    .site-footer .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .site-footer .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 22px 0;
        font-size: 0.6rem;
    }

    .site-footer .footer-copyright,
    .site-footer .footer-motto {
        width: 100%;
        text-align: left;
    }
}

/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 360px) {
    .site-footer .footer-container {
        padding: 0 16px;
    }

    .site-footer .footer-navigation {
        column-gap: 15px;
    }

    .site-footer .footer-column a {
        font-size: 0.84rem;
    }
}

.music-player {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    min-height: 70px;
}

.site-footer {
    position: relative;
    z-index: 1;
    padding-bottom: 90px;
}


.music-marquee-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}

.music-marquee-image {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 8px;
}

.music-marquee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.music-marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.music-marquee a {
  display: inline-block;
  animation: musicMarqueeScroll 18s linear infinite;
  color: inherit;
  text-decoration: none;
}

.music-marquee a:hover {
  animation-play-state: paused;
  text-decoration: underline;
}

@keyframes musicMarqueeScroll {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

/* =========================================
   MUSIC PLAYER COVER
========================================= */

.player-cover a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

#playerCoverImage {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.player-cover a:hover #playerCoverImage {
    transform: scale(1.05);
    opacity: 0.85;
}

/* Prevent broken empty image space */
#playerCoverImage[src=""] {
    display: none;
}

@media (max-width: 520px) {
    body {
        padding-bottom: 110px;
    }

    .site-footer {
        padding-bottom: 110px;
    }
}