

/* Page layout width */
:root {
    /* Dynamic Copyright Year */
    --current-year: "2026";

    --page-width: 320px;
    --heading-weight: 400;         /* Title classes: .track-num, .hq-title, etc. */
    --heading-weight-track: 600;   /* Specific weight for track titles */
    --heading-weight-display: 800; /* h1, h2 heavier for display headings */
    --zp-surface: rgba(0, 0, 0, 0.35);
    --zp-surface2: rgba(0, 0, 0, 0.6);
    --zp-border: rgba(132, 151, 208, 0.2);
    --zp-accent: rgb(132, 151, 208);
    --zp-accent-hover: rgb(193, 203, 230);
    --zp-text: rgb(193, 203, 230);
    --zp-muted: rgba(193, 203, 230, 0.6);
    --zp-button-bg: rgba(0, 20, 80, 0.85);
}

/* ==========================================================================
   FONTS
   ========================================================================== */
@font-face {
    font-family: 'InterVariable';
    src: url('../fonts/InterVariable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'InterTight';
    src: url('../fonts/InterTight-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Global Box Sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Display compatibility */
html {
    height: 100%;
    overflow-y: scroll;
}

/* ==========================================================================
   HEADING / TITLE FONT WEIGHT
   Single variable controls all title boldness across pages.
   ========================================================================== */
body h1, body h2,
.album-title,
.section-title,
.custom-group-label {
    font-weight: var(--heading-weight-display);
    font-variation-settings: "wght" var(--heading-weight-display);
}
.track-num,
.badge-pro {
    font-weight: var(--heading-weight);
    font-variation-settings: "wght" var(--heading-weight);
}
.track-title,
.hq-title,
.hq-price {
    font-weight: var(--heading-weight-track);
    font-variation-settings: "wght" var(--heading-weight-track);
}

.album-title { margin: 0; line-height: 1.1; }
.section-title { font-size: 24px; }
.section-subtitle { 
    font-size: 24px; 
    font-weight: var(--heading-weight-display);
    font-variation-settings: "wght" var(--heading-weight-display);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-subtitle-secondary {
    font-size: 24px;
    font-weight: var(--heading-weight-track);
    font-variation-settings: "wght" var(--heading-weight-track);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Global Typography Utilities */
.text-large { font-size: 38px; }
.text-regular { font-size: 16px; }
.text-small { font-size: 14px; }
.text-accent { color: var(--player-accent, rgb(193, 203, 230)); }

/* ==========================================================================
   MARGIN BOTTOM UTILITIES
   ========================================================================== */
.mb-8  { margin-bottom: 8px; }
.mb-10 { margin-bottom: 10px; }
.mb-12 { margin-bottom: 12px; }
.mb-14 { margin-bottom: 14px; }
.mb-16 { margin-bottom: 16px; }
.mb-18 { margin-bottom: 18px; }
.mb-20 { margin-bottom: 20px; }
.mb-22 { margin-bottom: 22px; }
.mb-24 { margin-bottom: 24px; }
.mb-26 { margin-bottom: 26px; }
.mb-28 { margin-bottom: 28px; }
.mb-30 { margin-bottom: 30px; }
.mb-32 { margin-bottom: 32px; }
.mb-34 { margin-bottom: 34px; }
.mb-36 { margin-bottom: 36px; }
.mb-38 { margin-bottom: 38px; }
.mb-40 { margin-bottom: 40px; }
.mb-42 { margin-bottom: 42px; }
.mb-44 { margin-bottom: 44px; }
.mb-46 { margin-bottom: 46px; }
.mb-48 { margin-bottom: 48px; }
.mb-50 { margin-bottom: 50px; }
.mb-52 { margin-bottom: 52px; }
.mb-54 { margin-bottom: 54px; }
.mb-56 { margin-bottom: 56px; }
.mb-58 { margin-bottom: 58px; }
.mb-60 { margin-bottom: 60px; }
.mb-62 { margin-bottom: 62px; }
.mb-64 { margin-bottom: 64px; }
.mb-66 { margin-bottom: 66px; }
.mb-68 { margin-bottom: 68px; }
.mb-70 { margin-bottom: 70px; }

/* Background & Global Body Style */
.zero-project {
    padding: 0;
    margin: 0;
    /* padding-top removed because sticky nav is in document flow */
    color: rgb(193, 203, 230);
    background: rgb(0, 21, 101);
    background-image: url('../images/bottom.webp'), linear-gradient(to bottom, rgb(0, 0, 0) 11%, rgb(8, 40, 194) 60%, rgb(8, 40, 194) 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom, 100% 100%;
    background-attachment: fixed, fixed;
    background-size: 100%, 100%;
    font-family: 'InterVariable', sans-serif;
    text-shadow: 0px 0px 2px black;
}

/* ==========================================================================
   STATIC STATES
   ========================================================================== */
a {
    color: rgb(132, 151, 208);
    text-decoration: none; 
    transition: color 0.3s ease-in-out;
}

/* Hover effect container - Inline block bounding box */
.hover-effect {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

/* SVG image transition on hover */
.hover-effect .svg-normal {
    display: block;
    opacity: 1;
    transition: opacity 0.4s ease;
}

/* Image smooth transition */
.hover-effect img {
    opacity: 1;
    transition: opacity 0.4s ease, filter 0.4s ease;
}


/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
#navigation {
    z-index: 10;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'InterTight', sans-serif;
    font-size: 16px;
    box-shadow: 0px 0px 8px 0px rgb(0, 0, 0);
    background-color: rgba(1, 1, 1, 0.8);
    height: auto;
    padding: 0;
}
#nav-inner {
    width: var(--page-width);
    display: flex;
    flex-direction: column;
    gap: 0;
}
/* ROW 1: Logo + Links */
#nav-row1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 30px;
    padding: 10px 0 6px;
}
a#nav-logo {
    position: relative;
    display: inline-block;
    height: 20px;
    margin: 2px 0 0 0;
}
#nav-logo img {
    height: 100%;
    width: auto;
    display: block;
}
#nav-logo .logo-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cfilter%20id%3D%22g%22%20color-interpolation-filters%3D%22sRGB%22%3E%3CfeColorMatrix%20type%3D%22matrix%22%20values%3D%220%200%200%200%200.75686%200%200%200%200%200.79608%200%200%200%200%200.90196%200%200%200%201%200%22%2F%3E%3C%2Ffilter%3E%3C%2Fsvg%3E#g");
    transition: opacity 0.3s ease-in-out;
}
#nav-logo:active .logo-hover { opacity: 1; }
@media (hover: hover) {
#nav-logo:hover .logo-hover {
    opacity: 1;
}
}
#nav-links {
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}
#nav-links a + a {
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid rgba(193, 203, 230, 0.5);
}

#nav-links a[aria-current="page"] {
    color: var(--zp-text);
    cursor: default;
    pointer-events: none;
}
/* ROW 2: Breadcrumb */
#nav-row2 {
    position: relative;
    overflow: hidden;
    height: 28px;
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0;
    margin-bottom: 6px;
}
.nav-scroll-btn {
    position: absolute;
    top: 6px;
    bottom: 0;
    width: 28px;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: rgb(132, 151, 208);
    transition: color 0.3s ease-in-out;
}
.nav-scroll-left {
    left: 0;
    background: linear-gradient(to right, rgba(1, 1, 1, 0.95) 50%, transparent 100%);
}
.nav-scroll-right {
    right: 0;
    background: linear-gradient(to left, rgba(1, 1, 1, 0.95) 50%, transparent 100%);
}
#nav-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: rgb(132, 151, 208);
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
#nav-breadcrumb::-webkit-scrollbar { display: none; }
#nav-breadcrumb a,
#nav-breadcrumb span {
    color: rgb(132, 151, 208);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    white-space: nowrap;
    margin: 0;
}
#nav-breadcrumb span.nav-current {
    color: rgb(193, 203, 230);
}
#nav-breadcrumb svg {
    flex-shrink: 0;
    margin: 0 1px;
    color: rgb(193, 203, 230);
    stroke: currentColor;
    stroke-width: 1px;
    position: relative;
    top: 1px;
}

/* ==========================================================================
   MAIN CONTAINER & CONTENT COLUMN
   ========================================================================== */
.main-container {
    width: 100%;
    margin: 0 auto;
    line-height: normal;
    font-size: 16px;
}

/* Centered content column */
.main-content {
    width: var(--page-width);
    margin: 0 auto;
    padding-bottom: 32px;
    text-align: left;
}

/* All children of .main-content are left-aligned regardless of .text-center */
.main-content .text-center,
.main-content .section-title {
    text-align: left;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
#footer {
    padding-bottom: 32px; 
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'InterTight', sans-serif;
}
.footer-row {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 6px; 
    flex-wrap: wrap;
}
.footer-row a,
.footer-row span {
    margin: 0;
    font-size: 14px;
}

.footer-row-bottom span {
    color: var(--zp-accent);
}

.copyright-year::after {
    content: var(--current-year);
}

.footer-row > *:not(:first-child) {
    margin-left: 0;
    padding-left: 6px;
    border-left: 1px solid rgba(193, 203, 230, 0.5);
}

.footer-row span.active-footer {
    color: rgb(193, 203, 230);
    font-weight: normal;
    cursor: default;
}



/* ==========================================================================
   ALBUM & TRACK COMPONENTS
   ========================================================================== */
.mask { 
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.35); 
    border-radius: 6px; 
}

.download-dropdown-container { 
    width: var(--page-width); 
    margin: 0 auto; 
    position: relative; 
    text-align: left;
} 
.custom-dropdown {
    width: 100%;
    position: relative;
}
.custom-dropdown summary { 
    list-style: none; 
    padding: 10px; 
    font-family: inherit; 
    font-size: 16px; 
    background-color: var(--zp-surface);
    color: rgb(193, 203, 230); 
    border: 1px solid var(--zp-border); 
    border-radius: 6px; 
    cursor: pointer; 
    outline: none; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); 
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    user-select: none;
    transition: border-color 0.3s ease, color 0.3s ease;
} 
.custom-dropdown summary::-webkit-details-marker { display: none; }
.custom-dropdown summary::after { 
    content: '\25BC'; 
    font-size: 11px; 
    color: rgb(132, 151, 208); 
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease; 
}
.custom-dropdown[open] summary::after {
    transform: rotate(180deg);
}

.custom-options-list { 
    position: absolute; 
    top: 100%; 
    left: 0; 
    width: 100%; 
    background-color: rgb(0, 20, 80);
    border: 1px solid var(--zp-border); 
    border-top: none;
    border-radius: 0 0 6px 6px; 
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5); 
    z-index: 99; 
    max-height: 220px; 
    overflow-y: auto; 
    box-sizing: border-box;
    transform-origin: top center;
    opacity: 0;
    transform: scaleY(0.8);
    display: block;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
} 
.custom-options-list::-webkit-scrollbar { width: 8px; }
.custom-options-list::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.4); border-radius: 0 0 6px 0; }
.custom-options-list::-webkit-scrollbar-thumb { background: rgb(132, 151, 208); border-radius: 4px; }
.custom-options-list::-webkit-scrollbar-thumb:hover { background: rgb(193, 203, 230); }

.custom-group-label { 
    padding: 6px 12px; 
    font-size: 14px; 
    text-transform: uppercase;
    color: rgb(193, 203, 230); 
    background: rgba(132, 151, 208, 0.15);
    user-select: none;
}

.track-card { position: relative; scroll-margin-top: 100px; }
.track-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 0; }
.track-info { text-align: left; }
.track-num {
    font-size: 11px;
    color: var(--zp-accent);
    font-family: inherit;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.track-title {
    font-family: inherit;
    font-size: 16px;
    color: var(--zp-text);
    line-height: 1.2;
    margin-bottom: 6px;
}
.track-badges { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.badge {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 22px;
}
.badge-pro { background: var(--zp-accent); color: rgb(0, 21, 101); }
.badge-format { 
    background: var(--zp-button-bg); 
    border: 1px solid var(--zp-border); 
    color: var(--zp-muted); 
    transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}
.badge-license {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--zp-button-bg);
    border: 1px solid var(--zp-border);
    color: var(--zp-accent);
    font-weight: normal;
    border-radius: 11px;
    padding: 0 8px;
    font-size: 11px;
    height: 22px;
    text-decoration: none !important;
    transition: border-color 0.2s, color 0.2s, background-color 0.2s;
    vertical-align: middle;
    margin-top: -2px;
}

.section-label {
    font-size: 11px;
    font-weight: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--zp-muted);
    margin-bottom: 12px;
    text-align: left;
}

.hq-card {
    background: var(--zp-surface);
    border: 1px solid var(--zp-border);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: border-color 0.2s;
    text-align: left;
}
.hq-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--zp-text); margin-bottom: 3px; }
.hq-title { font-size: 14px; color: var(--zp-accent); transition: color 0.2s; }
.hq-sub { font-size: 11px; color: var(--zp-text); margin-top: 2px; }
.hq-price { font-size: 16px; color: var(--zp-accent); transition: color 0.2s; }

.about-text-block {
    text-align: justify !important;
    width: 100%;
    display: block;
    font-size: 16px;
    color: var(--player-text);
    opacity: 0.85;
    line-height: 1.5;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
}

.custom-option { 
    display: block;
    padding: 8px 12px; 
    font-size: 14px; 
    color: rgb(132, 151, 208); 
    cursor: pointer; 
    white-space: normal;
    overflow-wrap: normal;
    transition: background 0.15s ease, color 0.15s ease;
}
.custom-option-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    font-variation-settings: "wght" 600;
    color: rgb(132, 151, 208);
    margin-bottom: 1px;
}
.custom-option-sub { display: block; font-size: 11px; color: rgb(193, 203, 230); }

.custom-playlist-container {
    width: 320px;
    margin: 0 auto;
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.35);
    border-radius: 6px;
    background-color: var(--player-bg);
    overflow: hidden;
}
.custom-playlist-container .custom-audio-player {
    box-shadow: none;
    border-radius: 0;
    width: 100%;
}
/* Current Track Title Display */
.player-current-track {
    text-align: left;
    color: var(--player-text);
    font-size: 13px;
    padding: 10px 10px 0 10px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Playlist Drop-list Styles */
.playlist-details {
    margin-top: 16px;
}

.playlist-summary {
    cursor: pointer;
    text-align: left;
    color: var(--player-text);
    font-size: 14px;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    user-select: none;
    outline: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.playlist-summary::-webkit-details-marker {
    display: none;
}

@media (hover: hover) {
    .playlist-summary:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }
}

.playlist-summary::after {
    content: '\25BC'; 
    font-size: 11px;
    color: var(--player-accent);
    transition: transform 0.3s ease;
}

.playlist-details[open] .playlist-summary::after {
    transform: rotate(180deg);
}

.playlist-tracks {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 250px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform-origin: top center;
    opacity: 0;
    transform: scaleY(0.95);
}
.playlist-track {
    padding: 8px 12px;
    font-size: 13px;
    color: var(--player-text);
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: left;
}
@media (hover: hover) {
    .playlist-track:hover {
        background-color: rgba(255, 255, 255, 0.05);
        color: var(--player-accent-hover);
    }
}
.playlist-track.active {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--player-accent);
}

.custom-audio-player { 
    width: 320px; 
    margin: 0 auto; 
    background-color: var(--player-bg); 
    border: none; 
    border-radius: 6px; 
    padding: 6px 10px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.35); 
    box-sizing: border-box; 
} 
.player-btn { 
    background: none; 
    border: none; 
    cursor: pointer; 
    padding: 0; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 24px; 
    height: 24px; 
    flex-shrink: 0;
} 
.player-btn svg { 
    width: 100%; 
    height: 100%; 
    fill: var(--player-accent); 
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), fill 0.25s ease; 
    will-change: transform;
    transform: translateZ(0); 
}
/* Pause icon is hidden by default; JS toggles it via style.display */
.icon-pause { display: none; }
/* Custom element default display */
playlist-player { display: block; }
.player-slider { 
    flex-grow: 1; 
    min-width: 0;
    width: 0;
    -webkit-appearance: none; 
    appearance: none; 
    
    /* Dimensions for clickable area */
    height: 15px;
    margin: -6px 0;
    
    /* Visual bar styling */
    background-color: transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15));
    background-size: 100% 3px;
    background-position: center;
    background-repeat: no-repeat;
    
    border-radius: 2px; 
    outline: none; 
    cursor: pointer; 
    border: none;
} 
.player-slider::-webkit-slider-thumb { 
    -webkit-appearance: none; 
    appearance: none; 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    background: var(--player-accent); 
    cursor: pointer; 
    border: none; 
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease; 
    will-change: transform;
}
.player-slider::-moz-range-thumb { 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    background: var(--player-accent); 
    cursor: pointer; 
    border: none; 
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease; 
    will-change: transform;
}

.badge-dd {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.badge-dd summary {
    list-style: none;
    font-size: 11px;
    font-weight: normal;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: var(--zp-button-bg);
    border: 1px solid var(--zp-border);
    color: var(--zp-muted);
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
    box-sizing: border-box;
    height: 22px;
}
.badge-dd summary::-webkit-details-marker { display: none; }
.badge-dd summary::after {
    content: '\25BC';
    font-size: 11px;
    opacity: 0.7;
    display: inline-block;
    transition: transform 0.3s ease;
}
.badge-dd[open] summary::after { transform: rotate(180deg); }

.badge-dd-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 200;
    background: rgb(0, 20, 80);
    border: 1px solid var(--zp-border);
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.55);
    min-width: 150px;
    padding: 4px 0;
}



/* ==========================================================================
   INTERACTIVE STATES (HOVERS)
   ========================================================================== */
@media (hover: hover) {
    /* Global link hover */
    a:hover {
        color: rgb(193, 203, 230);
        text-decoration: none;
    }

    /* Navigation link hovers */
    @media (hover: hover) { #nav-links a:hover,
    #nav-breadcrumb a:hover {
        color: rgb(193, 203, 230);
    } }

#nav-links a:active, #nav-breadcrumb .nav-scroll-btn:hover {
        color: rgb(193, 203, 230);
    }


    /* Fade JPG/PNG/SVG */
    .hover-effect:hover img {
        opacity: 0.75;
    }
}
.badge-dd-menu a { overflow: hidden; display: flex; align-items: center; gap: 8px; padding: 6px 10px; font-size: 11px; color: rgb(132, 151, 208); white-space: nowrap; transition: background 0.15s, color 0.15s; }
    .badge-dd-menu a:active img { filter: drop-shadow(100px 0 0 rgb(193, 203, 230)); opacity: 1; }
@media (hover: hover) {
.badge-dd-menu a:hover img { filter: drop-shadow(100px 0 0 rgb(193, 203, 230)); opacity: 1; }
}
.badge-dd-menu img { width: 14px; height: 14px; transform: translateX(-100px); filter: drop-shadow(100px 0 0 rgb(132, 151, 208)); opacity: 0.75; flex-shrink: 0; transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out; }

/* Platform Grid (Also available on) */
            .platform-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 8px;
                }
            .platform-item {
                background: var(--zp-surface);
                border: 1px solid var(--zp-border);
                border-radius: 10px;
                padding: 10px 6px;
                display: flex; flex-direction: column;
                align-items: center; gap: 6px;
            }

/* Platform Grid (Also available on) */
            .platform-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 8px;
                }
            .platform-item {
                background: var(--zp-surface);
                border: 1px solid var(--zp-border);
                border-radius: 10px;
                padding: 10px 6px;
                display: flex; flex-direction: column;
                align-items: center; gap: 6px;
                cursor: pointer;
                transition: border-color 0.3s ease-in-out, background 0.3s ease-in-out;
                text-decoration: none;
            }
            .platform-item:active { border-color: rgba(193, 203, 230, 0.4); }
.platform-item:active .platform-name { color: rgb(193, 203, 230); }
.platform-item:active .platform-icon img, .platform-item:active .platform-icon svg { filter: drop-shadow(100px 0 0 rgb(193, 203, 230)); opacity: 1; }
@media (hover: hover) {
@media (hover: hover) { .platform-item:hover { 
                border-color: rgba(193, 203, 230, 0.4); 
            } }
            @media (hover: hover) { .platform-item:hover .platform-name {
                color: rgb(193, 203, 230);
            } }
            @media (hover: hover) { .platform-item:hover .platform-icon img, .platform-item:hover .platform-icon svg { filter: drop-shadow(100px 0 0 rgb(193, 203, 230)); opacity: 1; } }
}
            .platform-icon { overflow: hidden; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
            .platform-icon img, .platform-icon svg { transform: translateX(-100px); filter: drop-shadow(100px 0 0 rgb(132, 151, 208)); opacity: 0.75; transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out; }
            .platform-name { font-size: 11px; color: var(--zp-muted); text-align: center; transition: color 0.3s ease-in-out; }

.mask-icon {
    width: 22px;
    height: 22px;
    background-color: var(--zp-muted);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0.75;
}
@media (hover: hover) { .platform-item:hover .mask-icon {
    background-color: rgb(193, 203, 230);
    opacity: 1;
} }

.custom-option:active { 
    background-color: rgba(132, 151, 208, 0.1);
}
.custom-option:active .custom-option-title,
.custom-option:active .custom-option-sub {
    color: rgb(193, 203, 230);
}


/* Centralized hover rules */
@media (hover: hover) {
    /* From main index.html */
    .search-icon-btn:hover svg { fill: rgb(193, 203, 230); }

    .result-title:hover { color: rgb(193, 203, 230); }
    .tag-badge:hover { color: var(--zp-accent-hover); }

    .custom-option:hover { background-color: rgba(132, 151, 208, 0.1); color: rgb(193, 203, 230); }
    .custom-option:hover .custom-option-title, .custom-option:hover .custom-option-sub { color: rgb(193, 203, 230); }
    .badge-pro:hover { background: var(--zp-accent-hover); }
    .badge-format:hover { border-color: rgba(193, 203, 230, 0.4); color: rgb(193, 203, 230); }
    .badge-license:hover { border-color: rgba(193, 203, 230, 0.4); color: rgb(193, 203, 230); }
    .hq-card:hover { border-color: rgba(193, 203, 230, 0.4); }
    .hq-card:hover .hq-title, .hq-card:hover .hq-price { color: var(--zp-accent-hover); }
    .player-btn:hover svg { fill: var(--player-accent-hover); }
    .player-slider::-webkit-slider-thumb:hover { background-color: var(--player-accent-hover); }
    .player-slider::-moz-range-thumb:hover { background-color: var(--player-accent-hover); }
    .badge-dd summary:hover { border-color: rgba(193, 203, 230, 0.4); color: rgb(193, 203, 230); }
    .badge-dd-menu a:hover { background-color: rgba(132, 151, 208, 0.1); color: rgb(193, 203, 230); }
    .custom-dropdown summary:hover { border-color: rgba(193, 203, 230, 0.4); color: rgb(193, 203, 230); }
    .custom-dropdown summary:hover::after { color: rgb(193, 203, 230); }
}

.nav-logo-hidden {
    opacity: 0 !important;
    pointer-events: none;
    transform: translateY(-10px);
}
#nav-logo {
    transition: opacity 0.4s ease, transform 0.4s ease;
}
/* Track Badges & Player Time */
.track-badges { margin-top: 8px; }
.player-time {
    font-size: 14px;
    font-family: inherit;
    font-variant-numeric: tabular-nums;
    color: var(--player-text);
    white-space: nowrap;
}

/* Target highlight for tracks */
.track-card:target .track-title {
    animation: title-pulse 0.6s 6 alternate;
    animation-delay: 0.4s; /* Wait briefly on page load before starting */
}

@keyframes title-pulse {
    0% {
        text-shadow: none;
    }
    100% {
        color: var(--zp-accent-hover);
        text-shadow: 0 0 8px var(--zp-accent-hover), 0 0 15px var(--zp-accent-hover);
    }
}

/* ==========================================================================
   COPY BOX (FAQ & others)
   ========================================================================== */
.copy-box {
    display: inline-flex;
    align-items: center;
    background: rgba(132, 151, 208, 0.1);
    border: 1px solid rgba(132, 151, 208, 0.2);
    border-radius: 4px;
    padding: 8px 12px;
    margin: 8px 0 16px 0;
    gap: 12px;
}
.copy-box span {
    color: var(--zp-text);
}
.copy-button {
    background: transparent;
    border: none;
    color: var(--zp-text);
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}

@media (hover: hover) {
    .copy-button:hover {
        background: rgba(132, 151, 208, 0.2);
        color: var(--zp-accent-hover);
    }
}

.copy-button.copied {
    color: rgb(74, 222, 128); /* A green success color */
}

/* News Page Styles */
.page-news #nav-inner {
    padding-bottom: 34px;
}
.news-main {
    width: var(--page-width);
    margin: 0 auto;
    padding-bottom: 32px;
    text-align: left;
}
@media (min-width: 768px) {
    .news-main {
        width: 88%;
        max-width: 70ch;
    }
}
.news-main .text-center,
.news-main .section-title {
    text-align: left;
}
.news-content {
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    line-height: 1.6;
}
.news-content p {
    margin-bottom: 16px;
}
.news-content p > strong {
    display: block;
    text-align: left;
}
.news-content p > strong + br {
    display: none;
}

/* Scroll to Top Button */
#scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background-color: rgba(132, 151, 208, 0.6);
    border: 1px solid var(--zp-border);
    border-radius: 50%;
    color: rgb(0, 20, 80);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.95);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

#scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

#scroll-to-top:active {
    transform: scale(0.9);
}

@media (hover: hover) {
    #scroll-to-top:hover {
        background-color: rgba(193, 203, 230, 0.9);
        color: rgb(0, 20, 80);
        border-color: rgba(0, 20, 80, 0.4);
    }
}
