@font-face {
    font-family: 'Rustic Printed';
    src: url('./Rustic%20Printed.woff2') format('woff2'),
         url('./Rustic%20Printed.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Rustic Printed Regular';
    src: url('./Rustic%20Printed%20Regular.woff2') format('woff2'),
         url('./Rustic%20Printed%20Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow Bold';
    src: url('./Barlow-Bold.woff2') format('woff2'),
         url('./Barlow-Bold.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow-Bold';
    src: url('./Barlow-Bold.woff2') format('woff2'),
         url('./Barlow-Bold.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --red: #fe0616;
    --red-dark: #fe0616;
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --dark3: #222222;
    --gray: #444444;
    --light: #cccccc;
    --white: #f0f0f0;
    --gold: #d4a017;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--black);
    color: var(--light);
    font-family: var(--font-body, 'Roboto'), -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    padding-top: calc(130px + var(--announcement-height, 0px));
    overflow-x: hidden;
    max-width: 100vw;
}

html, body {
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    letter-spacing: 1px;
}

a {
    color: var(--red);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: rgb(255, 51, 51);
}

img {
    max-width: 100%;
}

.sticky-player {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1100;
    background: linear-gradient(135deg, rgb(26, 0, 0) 0%, rgb(13, 13, 13) 60%, rgb(26, 26, 26) 100%);
    border-bottom: 2px solid var(--red);
    padding: 8px 0px;
    box-shadow: rgba(204, 0, 51, 0.4) 0px 2px 20px;
    overflow: visible;
}

.sticky-player .row {
    flex-wrap: nowrap;
}

.sticky-player i {
    color: var(--fa-icon-color, var(--red)) !important;
}

.sticky-player .btn-play i {
    color: inherit !important;
}

.album-art {
    width: 48px;
    height: 48px;
    background: var(--dark3);
    border: 2px solid var(--red);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 18px;
    overflow: hidden;
    flex-shrink: 0;
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.now-playing-label {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
}

.now-playing-title {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(300px, 40vw);
}

.now-playing-artist {
    font-size: 18px;
    color: rgb(136, 136, 136);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(300px, 40vw);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--red);
    background: var(--red);
    color: rgb(255, 255, 255);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    flex-shrink: 0;
}

.btn-play:hover {
    background: var(--red-dark);
    transform: scale(1.08);
}

.btn-play.playing {
    background: none;
    color: var(--red);
}

.volume-ctrl {
    display: flex;
    align-items: center;
    gap: 6px;
}

.volume-slider {
    appearance: none;
    width: 90px;
    height: 4px;
    background: var(--gray);
    border-radius: 2px;
    outline: currentcolor;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--red);
    cursor: pointer;
}

.listener-count {
    font-size: 13px;
    color: rgb(136, 136, 136);
}

#waveCanvas {
    display: block;
    border-radius: 4px;
    opacity: 0.9;
}

#audioMotionViz {
    display: none;
    width: 80px;
    height: 36px;
    border-radius: 4px;
    overflow: hidden;
}

#audioMotionViz canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.safari-eq {
    display: none;
    width: 80px;
    height: 36px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2px;
}

.safari-eq span {
    display: block;
    width: 7px;
    height: 8px;
    border-radius: 2px 2px 0px 0px;
    background: linear-gradient(180deg, #ffb173 0%, var(--red) 70%, #5a0b02 100%);
    transform-origin: bottom;
    opacity: .8;
}

.safari-eq.playing span:nth-child(1) { animation: eqPulse 560ms ease-in-out infinite; }
.safari-eq.playing span:nth-child(2) { animation: eqPulse 460ms ease-in-out infinite 40ms; }
.safari-eq.playing span:nth-child(3) { animation: eqPulse 520ms ease-in-out infinite 80ms; }
.safari-eq.playing span:nth-child(4) { animation: eqPulse 430ms ease-in-out infinite 120ms; }
.safari-eq.playing span:nth-child(5) { animation: eqPulse 600ms ease-in-out infinite 60ms; }
.safari-eq.playing span:nth-child(6) { animation: eqPulse 500ms ease-in-out infinite 20ms; }
.safari-eq.playing span:nth-child(7) { animation: eqPulse 470ms ease-in-out infinite 100ms; }
.safari-eq.playing span:nth-child(8) { animation: eqPulse 540ms ease-in-out infinite 140ms; }

@keyframes eqPulse {
    0%, 100% { height: 8px; opacity: .75; }
    50% { height: 32px; opacity: 1; }
}

.live-badge {
    background: var(--red);
    color: rgb(255, 255, 255);
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-dot {
    width: 7px;
    height: 7px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    animation: 1s infinite blink;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.rock-navbar {
    position: fixed;
    top: calc(78px + var(--announcement-height, 0px));
    left: 0px;
    right: 0px;
    z-index: 1050;
    background: rgba(10, 10, 10, 0.97);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(42, 42, 42);
    padding: 0px;
}

.announcement-bar {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    z-index: 1075;
    min-height: 34px;
    display: flex;
    align-items: center;
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.announcement-bar .container {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.announcement-bar--info { background: #1f3b57; }
.announcement-bar--success { background: #1f5a3a; }
.announcement-bar--warning { background: #6b4e16; }
.announcement-bar--danger { background: #6a1f28; }

.logo-wrap {
    line-height: 1;
}

.navbar-logo-img {
    display: block;
    height: 48px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    margin-bottom: 4px;
}

.logo-pma {
    font-family: var(--font-heading, 'Bebas Neue'), sans-serif;
    font-size: 32px;
    color: var(--red);
    letter-spacing: 3px;
}

.logo-radio {
    font-family: var(--font-heading, 'Bebas Neue'), sans-serif;
    font-size: 32px;
    color: var(--white);
    letter-spacing: 3px;
    margin-left: 4px;
}

.logo-tagline {
    font-size: 9px;
    color: rgb(102, 102, 102);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rock-navbar .nav-link {
    font-family: var(--font-menu, 'Oswald'), sans-serif;
    font-size: var(--menu-font-size, 14px);
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s;
    color: rgb(170, 170, 170) !important;
    padding: 18px 14px !important;
}

.rock-navbar.nav-menu-normal .nav-link {
    text-transform: none;
    letter-spacing: 0.6px;
}

.rock-navbar.nav-menu-normal .rock-dropdown .dropdown-item {
    text-transform: none;
    letter-spacing: 0.4px;
}

.rock-navbar .nav-link:hover, .rock-navbar .nav-link.active {
    color: var(--red) !important;
}

.rock-navbar .nav-link.active {
    border-bottom-width: medium !important;
    border-bottom-style: none !important;
    border-bottom-color: currentcolor !important;
    box-shadow: none !important;
}

.rock-navbar .nav-link i {
    color: var(--fa-icon-color, var(--red)) !important;
}

.rock-navbar .nav-link:hover i, .rock-navbar .nav-link.active i {
    color: var(--red) !important;
}

.nav-link:focus-visible {
    outline: 0px;
    box-shadow: none !important;
}

.rock-dropdown {
    min-width: 200px;
    background: rgb(15, 15, 15) !important;
    border-right-width: 1px !important;
    border-bottom-width: 1px !important;
    border-left-width: 1px !important;
    border-right-style: solid !important;
    border-bottom-style: solid !important;
    border-left-style: solid !important;
    border-right-color: rgb(42, 42, 42) !important;
    border-bottom-color: rgb(42, 42, 42) !important;
    border-left-color: rgb(42, 42, 42) !important;
    border-image: none !important;
    border-top: 2px solid var(--red) !important;
    box-shadow: none !important;
}

.rock-dropdown .dropdown-item {
    font-family: var(--font-menu, 'Oswald'), sans-serif;
    font-size: calc(var(--menu-font-size, 14px) - 1px);
    letter-spacing: 1px;
    padding: 10px 16px;
    transition: 0.15s;
    color: rgb(170, 170, 170) !important;
}

.rock-dropdown .dropdown-item:hover, .rock-dropdown .dropdown-item:focus, .rock-dropdown .dropdown-item.active {
    padding-left: 22px;
    background: rgb(26, 26, 26) !important;
    color: var(--red) !important;
}

.rock-dropdown .dropdown-item i {
    color: var(--fa-icon-color, var(--red)) !important;
}

.rock-dropdown .dropdown-item:hover i, .rock-dropdown .dropdown-item:focus i, .rock-dropdown .dropdown-item.active i {
    color: var(--red) !important;
}

.rock-dropdown {
    --bs-dropdown-bg: #0f0f0f;
    --bs-dropdown-border-color: #2a2a2a;
    --bs-dropdown-link-active-bg: #1a1a1a;
    --bs-dropdown-link-active-color: var(--red);
    --bs-dropdown-link-hover-bg: #1a1a1a;
    --bs-dropdown-link-hover-color: var(--red);
    --bs-dropdown-link-color: #aaa;
}

.social-icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgb(51, 51, 51);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: 0.2s;
    margin-left: 4px;
    color: var(--fa-icon-color, var(--red)) !important;
}

.social-icon:hover {
    border-color: var(--red);
    transform: translateY(-2px);
    color: var(--red) !important;
}

i.fas, i.far, i.fab {
    color: var(--fa-icon-color, var(--red));
}

.hero-section {
    position: relative;
    min-height: 0;
    aspect-ratio: 16 / 9;
    max-height: 85vh;
    display: flex;
    align-items: center;
    background: rgb(10, 10, 10);
    overflow: hidden;
}

.hero-section.hero-fit-viewport {
    min-height: var(--hero-fit-height, 72vh) !important;
    height: var(--hero-fit-height, 72vh) !important;
    max-height: var(--hero-fit-height, 72vh) !important;
    aspect-ratio: auto !important;
}

.hero-bg.hero-auto-fit {
    background-size: contain !important;
    background-position: center center !important;
}

.hero-bg {
    position: absolute;
    inset: 0px;
    background-size: var(--hero-bg-mode-desktop, cover);
    background-position: var(--hero-bg-pos-desktop, center center);
    background-repeat: no-repeat;
    background-color: rgb(6, 8, 11);
    opacity: 0.75;
    filter: grayscale(20%) contrast(1.05);
    transform: none;
    transform-origin: center top;
    transition: none;
}

.hero-section:hover .hero-bg { transform: none; }

.hero-overlay {
    position: absolute;
    inset: 0px;
    --ov: calc(var(--hero-overlay-opacity, 70) / 100);
    background: linear-gradient(to right, rgba(6, 6, 6, calc(0.80 * var(--ov))) 0%, rgba(6, 6, 6, calc(0.55 * var(--ov))) 45%, rgba(6, 6, 6, calc(0.20 * var(--ov))) 100%),
                linear-gradient(to top, rgba(6, 6, 6, calc(0.75 * var(--ov))) 0%, transparent 40%);
}

.hero-overlay.hero-overlay--dark {
    background: linear-gradient(to right, rgba(6, 6, 6, calc(0.70 * var(--ov))) 0%, rgba(6, 6, 6, calc(0.70 * var(--ov))) 100%);
}

.hero-overlay.hero-overlay--vignette {
    background: radial-gradient(circle at center, rgba(6, 6, 6, calc(0.15 * var(--ov))) 0%, rgba(6, 6, 6, calc(0.80 * var(--ov))) 100%);
}

.hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: radial-gradient(at 80% 50%, rgba(180, 0, 0, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content.hero-align-desktop-left .hero-main-col { align-items: flex-start; text-align: left; }
.hero-content.hero-align-desktop-center .hero-main-col { align-items: center; text-align: center; }
.hero-content.hero-align-desktop-right .hero-main-col { align-items: flex-end; text-align: right; }

.hero-content.hero-align-desktop-center .hero-btns,
.hero-content.hero-align-desktop-center .hero-stats { justify-content: center; }
.hero-content.hero-align-desktop-right .hero-btns,
.hero-content.hero-align-desktop-right .hero-stats { justify-content: flex-end; }

.hero-content .row {
    min-height: 70vh;
}

.hero-main-col {
    display: flex;
    flex-direction: column;
    min-height: 70vh;
    justify-content: flex-end;
}

.hero-cta-stack {
    margin-top: auto;
    padding-bottom: 0px;
}

.hero-right-col {
    min-height: 70vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 0px;
}

.hero-eyebrow {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading, 'Bebas Neue'), sans-serif;
    font-size: clamp(60px, 10vw, 110px);
    line-height: 0.95;
    color: var(--white);
}

.hero-title span {
    color: var(--red);
}

.hero-subtitle {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 18px;
    color: rgb(136, 136, 136);
    letter-spacing: 2px;
    margin: 20px 0px 32px;
}

.hero-btns {
    margin-top: 0px;
    align-items: stretch;
}

.btn-rock {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 36px;
    background: var(--red);
    color: rgb(255, 255, 255);
    border: 2px solid var(--red);
    border-radius: 2px;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    line-height: 2;
    box-sizing: border-box;
}

.btn-rock:hover {
    background: none;
    color: var(--red);
}

.btn-rock-outline {
    background: none;
    color: var(--white);
    border-color: rgb(68, 68, 68);
    margin-left: 12px;
}

.btn-rock-outline:hover {
    border-color: var(--red);
    color: var(--red);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 18px;
    padding-top: 20px;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgb(34, 34, 34);
}

.hero-stat-number {
    font-family: var(--font-heading, 'Bebas Neue'), sans-serif;
    font-size: 40px;
    color: var(--red);
    line-height: 1;
}

.hero-stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgb(102, 102, 102);
    text-transform: uppercase;
}

.now-playing-card {
    background: linear-gradient(145deg, rgba(28, 10, 10, 0.68), rgba(16, 18, 24, 0.68));
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-top-color: rgba(255, 255, 255, 0.14);
    border-right-color: rgba(255, 255, 255, 0.14);
    border-bottom-color: rgba(255, 255, 255, 0.14);
    border-image: none;
    border-left: 4px solid var(--red);
    border-radius: 8px;
    padding: 24px;
    margin-top: 120px;
    backdrop-filter: blur(1px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 12px 28px;
    position: relative;
    z-index: 3;
    max-width: 430px;
    margin-left: auto;
}

.now-playing-card-mobile {
    display: none;
}

@media (min-width: 992px) {
    .hero-right-col .now-playing-card {
        transform: translateY(-64px);
    }
}

.now-playing-card .label {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.np-cover {
    width: 80px;
    height: 80px;
    background: rgb(34, 34, 34);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--red);
    flex-shrink: 0;
}

.np-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.section-header {
    margin-bottom: 40px;
}

.section-label {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 10px;
    letter-spacing: 5px;
    color: var(--red);
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading, 'Bebas Neue'), sans-serif;
    font-size: 48px;
    color: var(--white);
    line-height: 1;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin-top: 10px;
}

.news-card {
    background: var(--dark2);
    border: 1px solid rgb(34, 34, 34);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
}

.news-card .card-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    background: rgb(26, 26, 26);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(51, 51, 51);
    font-size: 48px;
}

.news-card .card-body {
    padding: 20px;
}

.news-card .card-category {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.news-card .card-title {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 20px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.news-card .card-text {
    font-size: 13px;
    color: rgb(119, 119, 119);
    line-height: 1.6;
}

.news-card .card-date {
    font-size: 11px;
    color: rgb(85, 85, 85);
    margin-top: 14px;
}

.news-card a.stretched-link::after {
    position: absolute;
    inset: 0px;
    content: "";
}

.track-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--dark2);
    border: 1px solid rgb(30, 30, 30);
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 6px;
    transition: border-color 0.2s, background 0.2s;
}

.track-row:hover {
    border-color: var(--red);
    background: rgb(26, 26, 26);
}

.track-num {
    font-family: var(--font-heading, 'Bebas Neue'), sans-serif;
    font-size: 20px;
    color: rgb(51, 51, 51);
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.track-cover {
    width: 46px;
    height: 46px;
    background: rgb(34, 34, 34);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 16px;
    flex-shrink: 0;
    overflow: hidden;
}

.track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-artist {
    font-size: 12px;
    color: rgb(102, 102, 102);
}

.track-title {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 15px;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-time {
    font-size: 12px;
    color: rgb(85, 85, 85);
    margin-left: auto;
    flex-shrink: 0;
}

.top-rank {
    font-family: var(--font-heading, 'Bebas Neue'), sans-serif;
    font-size: 48px;
    line-height: 1;
    width: 60px;
    text-align: center;
    flex-shrink: 0;
}

.top-rank.rank-1 {
    color: var(--gold);
}

.top-rank.rank-2 {
    color: rgb(170, 170, 170);
}

.top-rank.rank-3 {
    color: rgb(205, 127, 50);
}

.top-rank {
    color: rgb(51, 51, 51);
}

.home-playlist-top10 .section-title {
    font-size: clamp(52px, 5.4vw, 76px);
    line-height: 0.95;
    letter-spacing: 0.3px;
}

.home-playlist-top10 .section-divider {
    width: 86px;
    height: 4px;
    margin-top: 8px;
}

.home-playlist-top10 .track-row {
    background: linear-gradient(rgb(16, 17, 24) 0%, rgb(18, 19, 27) 100%);
    border: 1px solid rgb(35, 39, 51);
    border-radius: 10px;
    padding: 11px 14px;
    margin-bottom: 8px;
}

.home-playlist-top10 .track-row:hover {
    border-color: rgb(58, 68, 87);
    background: linear-gradient(rgb(18, 20, 29) 0%, rgb(21, 24, 34) 100%);
}

.home-playlist-top10 .track-num {
    width: 30px;
    color: rgb(77, 85, 104);
    font-size: 34px;
    line-height: 0.9;
}

.home-playlist-top10 .track-cover {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    border: 1px solid rgb(47, 54, 70);
    background: rgb(21, 24, 38);
}

.home-playlist-top10 .track-title {
    font-size: 20px;
    line-height: 1.08;
    letter-spacing: 0.2px;
}

.home-playlist-top10 .track-artist {
    font-size: 14px;
    color: rgb(138, 147, 168);
}

.home-playlist-top10 .track-time {
    letter-spacing: 0.4px;
    color: rgb(95, 103, 119) !important;
    font-size: 11px !important;
}

.home-playlist-top10 .top-rank {
    width: 38px;
    font-size: 34px;
    color: rgb(77, 85, 104);
}

.home-playlist-top10 .vote-btn {
    background: rgb(19, 23, 34);
    border: 1px solid rgb(44, 52, 70);
    color: rgb(143, 152, 173);
}

.home-playlist-top10 .vote-btn:hover {
    border-color: rgb(74, 85, 111);
    color: rgb(208, 216, 234);
}

.fp10-row {
    padding: 16px 18px;
    margin-bottom: 10px;
}

.fp10-rank {
    font-family: var(--font-heading, 'Bebas Neue'), sans-serif;
    width: 56px;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
}

.fp10-cover {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.fp10-title {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 17px;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.programme-card {
    background: var(--dark2);
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-top-color: rgb(34, 34, 34);
    border-right-color: rgb(34, 34, 34);
    border-bottom-color: rgb(34, 34, 34);
    border-image: none;
    border-left: 4px solid var(--red);
    border-radius: 6px;
    padding: 20px 24px;
    margin-bottom: 12px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: border-color 0.2s;
}

.programme-card:hover {
    border-color: var(--red);
    background: rgb(26, 26, 26);
}

.programme-time {
    font-family: var(--font-heading, 'Bebas Neue'), sans-serif;
    font-size: 28px;
    color: var(--red);
    width: 100px;
    flex-shrink: 0;
}

.programme-host {
    font-size: 12px;
    color: rgb(85, 85, 85);
}

.programme-name {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 18px;
    color: var(--white);
}

.programme-desc {
    font-size: 13px;
    color: rgb(102, 102, 102);
    margin-top: 4px;
}

.sendeplan-table th {
    background: var(--dark3);
    color: var(--red);
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
    border-color: rgb(42, 42, 42);
}

.sendeplan-table td {
    background: var(--dark2);
    color: var(--light);
    border-color: rgb(30, 30, 30);
    font-size: 13px;
    vertical-align: middle;
}

.sendeplan-table tr:hover td {
    background: rgb(26, 26, 26);
}

.artist-card {
    background: var(--dark2);
    border: 1px solid rgb(30, 30, 30);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 24px 16px;
    transition: 0.25s;
}

.artist-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
}

.artist-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--red);
    margin: 0px auto 16px;
    background: rgb(34, 34, 34);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--red);
    overflow: hidden;
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-name {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 18px;
    color: var(--white);
}

.artist-genre {
    font-size: 12px;
    color: var(--red);
    letter-spacing: 2px;
    margin-top: 4px;
}

.page-hero {
    background: linear-gradient(135deg, rgb(21, 0, 0), rgb(10, 10, 10));
    border-bottom: 2px solid var(--red);
    padding: 60px 0px 40px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(204, 0, 51, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-title {
    font-family: var(--font-heading, 'Bebas Neue'), sans-serif;
    font-size: 60px;
    color: var(--white);
    line-height: 1;
}

.page-hero-title span {
    color: var(--red);
}

.breadcrumb {
    padding: 0px;
    margin-top: 10px;
    background: none !important;
}

.breadcrumb-item, .breadcrumb-item a {
    color: rgb(85, 85, 85);
    font-size: 12px;
    letter-spacing: 1px;
}

.breadcrumb-item.active {
    color: var(--red);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgb(51, 51, 51);
}

.contact-box {
    background: var(--dark2);
    border: 1px solid rgb(42, 42, 42);
    border-radius: 8px;
    padding: 32px;
}

.contact-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(204, 0, 51, 0.1);
    border: 1px solid var(--fa-icon-color, var(--red));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--fa-icon-color, var(--red));
    flex-shrink: 0;
}

.form-control, .form-select {
    border-radius: 4px;
    background: var(--dark3) !important;
    border: 1px solid rgb(42, 42, 42) !important;
    color: var(--white) !important;
}

.form-control:focus, .form-select:focus {
    border-color: var(--red) !important;
    box-shadow: rgba(204, 0, 51, 0.2) 0px 0px 0px 2px !important;
}

.form-control::placeholder {
    color: rgb(85, 85, 85) !important;
}

.form-label {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    letter-spacing: 1px;
    font-size: 13px;
    color: rgb(170, 170, 170);
}

.rock-footer {
    background: var(--black);
    border-top-width: 2px;
    border-top-style: solid;
    border-top-color: rgb(26, 26, 26);
    position: relative;
}

.footer-wave svg {
    display: block;
    height: 40px;
    transform: scaleY(-1);
}

.footer-brand .logo-pma {
    font-size: 28px;
}

.footer-brand .logo-radio {
    font-size: 28px;
}

.footer-tagline {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    letter-spacing: 2px;
    font-size: 12px;
}

.footer-desc {
    color: rgb(85, 85, 85);
    font-size: 16px;
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(34, 34, 34);
}

.footer-links {
    list-style: none;
    padding: 0px;
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    color: rgb(85, 85, 85);
    font-size: 16px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-links i {
    color: var(--red);
    font-size: 16px;
    vertical-align: middle;
}

.footer-contact {
    list-style: none;
    padding: 0px;
}

.footer-contact li {
    color: rgb(85, 85, 85);
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact i {
    margin-top: 2px;
    flex-shrink: 0;
    color: var(--fa-icon-color, var(--red)) !important;
}

.footer-contact a {
    color: rgb(85, 85, 85);
}

.footer-contact a:hover {
    color: var(--red);
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgb(42, 42, 42);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgb(85, 85, 85);
    font-size: 14px;
    margin-right: 6px;
    transition: 0.2s;
}

.footer-socials a:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

.footer-divider {
    border-color: rgb(26, 26, 26);
}

.footer-copy {
    font-size: 16px;
    color: rgb(68, 68, 68);
}

.rock-footer .text-danger {
    color: var(--fa-icon-color, var(--red)) !important;
}

.footer-counter-wrap {
    border-top-width: medium;
    border-top-style: none;
    border-top-color: currentcolor;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(26, 26, 26);
    padding: 10px 0px;
}

.footer-counter-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.02), rgba(204, 0, 51, 0.02));
    border: 1px solid rgb(36, 36, 36);
    border-radius: 12px;
    padding: 22px 24px;
    overflow: hidden;
}

.footer-counter-head {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgb(137, 137, 137);
    font-size: 16px;
    margin-bottom: 8px;
}

.footer-counter-title {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 38px;
    letter-spacing: 1px;
    color: rgb(240, 240, 240);
    margin: 0px 0px 16px;
}

.footer-counter-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-top: 12px;
    max-width: 100%;
    flex-wrap: wrap;
}

.footer-counter-item {
    width: 64px;
    max-width: 64px;
    flex: 0 0 64px;
    text-align: center;
}

.footer-counter-bar {
    height: 0px;
    border-radius: 4px 4px 0px 0px;
    background: linear-gradient(180deg, var(--footer-counter-bar, #fe0616) 0%, var(--footer-counter-bar-end, #a00510) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    transition: height 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.footer-counter-bar.is-ready {
    height: calc(var(--counter-height, 50) * 2.35px);
}

.footer-counter-value {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    color: rgb(17, 17, 17);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-counter-day {
    display: block;
    margin-top: 8px;
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 1px;
    color: rgb(240, 240, 240);
}

.footer-counter-day--accent {
    color: var(--bs-orange);
}

.footer-counter-total {
    margin-top: 18px;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgb(42, 42, 42);
    padding-top: 14px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.footer-counter-total span {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    color: rgb(199, 199, 199);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

.footer-counter-total strong {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    color: rgb(255, 255, 255);
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: 1px;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.sponsor-section {
    position: relative;
}

.sponsor-header {
    margin-bottom: 18px;
}

.sponsor-marquee {
    overflow: hidden;
    border: 1px solid rgb(36, 36, 36);
    border-radius: 12px;
    background: linear-gradient(135deg, rgb(15, 16, 20) 0%, rgb(19, 24, 36) 100%);
    padding: 12px 0px;
}

.sponsor-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    animation: 32s linear infinite sponsor-scroll;
}

.sponsor-marquee:hover .sponsor-track {
    animation-play-state: paused;
}

.sponsor-item {
    flex: 0 0 auto;
}

.sponsor-link {
    width: 240px;
    height: 92px;
    border-radius: 10px;
    border: 1px solid rgb(46, 52, 67);
    background: rgb(15, 19, 28);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: border-color 0.2s, transform 0.2s;
}

.sponsor-link:hover {
    border-color: var(--red);
    transform: translateY(-1px);
}

.sponsor-link img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) saturate(.85) contrast(1.03);
    transition: filter .25s ease;
}

.sponsor-link:hover img {
    filter: grayscale(0%) saturate(1.05) contrast(1.03);
}

@keyframes sponsor-scroll {
    0% {
        transform: translateX(0px);
    }

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

.stream-code {
    display: block;
    background: rgb(17, 17, 17);
    border: 1px solid rgb(42, 42, 42);
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 11px;
    color: var(--red);
    word-break: break-all;
}

.team-card {
    background: var(--dark2);
    border: 1px solid rgb(30, 30, 30);
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    transition: 0.25s;
}

.team-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--red);
    margin: 0px auto 16px;
    background: rgb(34, 34, 34);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--red);
    overflow: hidden;
}

.team-name {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 20px;
    color: var(--white);
}

.team-role {
    font-size: 12px;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.team-bio {
    font-size: 13px;
    color: rgb(102, 102, 102);
    margin-top: 10px;
}

.text-red {
    color: var(--red) !important;
}

.bg-dark2 {
    background: var(--dark2) !important;
}

.border-red {
    border-color: var(--red) !important;
}

.rock-badge {
    background: var(--red);
    color: rgb(255, 255, 255);
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--red-dark);
    border-radius: 3px;
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        aspect-ratio: 16 / 9;
        padding: 0;
    }

    .hero-content .row {
        min-height: auto;
    }

    .hero-main-col {
        min-height: auto;
    }

    .hero-cta-stack {
        margin-top: 0px;
    }

    .hero-btns {
        justify-content: flex-start;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .btn-rock-outline {
        margin-left: 0px;
        margin-top: 0px;
    }

    .section-header.d-flex {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start !important;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .hero-bg {
        background-size: var(--hero-bg-mode-tablet, cover);
        background-position: var(--hero-bg-pos-tablet, center center);
    }

    .hero-content.hero-align-tablet-left .hero-main-col { align-items: flex-start; text-align: left; }
    .hero-content.hero-align-tablet-center .hero-main-col { align-items: center; text-align: center; }
    .hero-content.hero-align-tablet-right .hero-main-col { align-items: flex-end; text-align: right; }
    .hero-content.hero-align-tablet-center .hero-btns,
    .hero-content.hero-align-tablet-center .hero-stats { justify-content: center; }
    .hero-content.hero-align-tablet-right .hero-btns,
    .hero-content.hero-align-tablet-right .hero-stats { justify-content: flex-end; }

    .hero-row {
        align-items: flex-end !important;
    }

    .hero-main-col {
        justify-content: flex-end;
        min-height: auto;
    }

    .hero-right-col {
        min-height: auto;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .hero-right-col .now-playing-card {
        margin-top: 40px;
        max-width: 380px;
    }

    .hero-title {
        font-size: clamp(44px, 9vw, 72px);
    }

    .hero-subtitle {
        font-size: 15px;
        margin: 12px 0 20px;
    }
}

@media (max-width: 1200px) {
    .sticky-player .row {
        flex-wrap: wrap;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    body {
        padding-top: 130px;
    }

    .rock-navbar .navbar-brand {
        margin-right: 0px;
    }

    .rock-navbar .navbar-toggler {
        margin-left: auto;
    }

    .hero-section {
        min-height: auto;
        padding: 56px 0px 44px;
    }

    .hero-content .row {
        min-height: auto;
        text-align: right;
        justify-content: flex-end;
    }

    .hero-main-col {
        min-height: auto;
        align-items: flex-end;
        justify-content: flex-start;
        margin-left: auto;
        margin-right: 42px;
        max-width: 46%;
    }

    .hero-title {
        font-size: clamp(56px, 8vw, 84px);
    }

    .hero-subtitle {
        font-size: 16px;
        margin: 14px 0px 22px;
    }

    .hero-btns, .hero-stats {
        justify-content: flex-end;
    }

    .hero-stats {
        gap: 24px;
        margin-top: 18px;
    }

    .hero-right-col {
        display: none !important;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: calc(112px + var(--announcement-height, 0px));
    }

    .sticky-player {
        padding: 5px 0px;
    }

    .rock-navbar {
        top: calc(56px + var(--announcement-height, 0px));
    }

    .announcement-bar {
        top: 56px;
        min-height: 32px;
        font-size: 11px;
    }

    .now-playing-title {
        max-width: 140px;
        font-size: 13px;
    }

    .now-playing-artist {
        max-width: 140px;
    }

    .album-art {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .btn-play {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .now-playing-label {
        display: none;
    }

    .logo-pma, .logo-radio {
        font-size: 26px;
    }

    .logo-tagline {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .hero-section {
        min-height: auto;
        aspect-ratio: 16 / 9;
        padding: 0;
    }

    .hero-title {
        font-size: clamp(38px, 13vw, 68px);
    }

    .hero-subtitle {
        font-size: 14px;
        margin: 12px 0 20px;
    }

    .hero-cta-stack {
        margin-top: 0px;
    }

    .hero-stats {
        gap: 16px;
        margin-top: 22px;
        padding-top: 14px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .hero-stat-number {
        font-size: 28px;
    }

    .hero-stat-label {
        font-size: 10px;
    }

    .btn-rock {
        padding: 12px 20px;
        font-size: 12px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px !important;
    }

    .btn-rock-outline {
        margin-left: 0 !important;
    }

    .hero-bg {
        background-size: var(--hero-bg-mode-mobile, cover);
        background-position: var(--hero-bg-pos-mobile, center top);
    }

    .hero-content.hero-align-mobile-left .hero-main-col { align-items: flex-start; text-align: left; }
    .hero-content.hero-align-mobile-center .hero-main-col { align-items: center; text-align: center; }
    .hero-content.hero-align-mobile-right .hero-main-col { align-items: flex-end; text-align: right; }
    .hero-content.hero-align-mobile-center .hero-btns,
    .hero-content.hero-align-mobile-center .hero-stats { justify-content: center; }
    .hero-content.hero-align-mobile-right .hero-btns,
    .hero-content.hero-align-mobile-right .hero-stats { justify-content: flex-end; }

    .hero-main-col {
        min-height: auto;
        padding-bottom: 12px;
    }

    .hero-right-col {
        display: none !important;
    }

    .now-playing-card-mobile {
        display: block;
        margin: 0px auto;
        max-width: 100%;
    }

    .hero-content .row {
        text-align: left;
    }

    .section-label {
        font-size: 10px;
    }

    .section-title {
        font-size: clamp(24px, 7vw, 36px);
    }

    .section-header {
        margin-bottom: 28px;
    }

    .page-hero {
        padding: 44px 0px 28px;
        margin-bottom: 36px;
    }

    .page-hero-title {
        font-size: clamp(32px, 10vw, 64px);
    }

    .track-row {
        padding: 10px 12px;
        gap: 10px;
    }

    .track-cover {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .track-title {
        font-size: 13px;
    }

    .track-artist {
        font-size: 11px;
    }

    .track-time {
        font-size: 11px;
    }

    .track-num {
        font-size: 16px;
        width: 22px;
    }

    .sponsor-marquee {
        overflow: auto hidden;
        padding: 10px;
    }

    .sponsor-track {
        width: max-content;
        gap: 10px;
        animation: auto !important;
        transform: none !important;
    }

    .sponsor-link {
        width: 170px;
        height: 72px;
        flex-shrink: 0;
    }

    .fp10-row {
        padding: 10px 12px;
    }

    .fp10-rank {
        width: 40px;
    }

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

    .fp10-title {
        font-size: 15px;
    }

    .top-rank {
        font-size: 36px;
        width: 44px;
    }

    .programme-card {
        flex-direction: column;
        gap: 8px;
        padding: 14px 16px;
    }

    .programme-time {
        width: auto;
        padding: 6px 12px;
        font-size: 13px;
    }

    .artist-avatar {
        width: 72px;
        height: 72px;
        font-size: 26px;
    }

    .artist-name {
        font-size: 15px;
    }

    .team-photo {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }

    .team-name {
        font-size: 17px;
    }

    .news-card .card-img {
        height: 160px;
    }

    .news-card .card-body {
        padding: 14px;
    }

    .news-card .card-title {
        font-size: 16px;
    }

    .rock-footer {
        padding-top: 40px;
    }

    .footer-brand {
        margin-bottom: 28px;
        text-align: center;
    }

    .footer-brand .logo-pma, .footer-brand .logo-radio {
        font-size: 24px;
    }

    .footer-heading {
        margin-top: 20px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-copy {
        text-align: center;
        font-size: 11px;
    }

    .footer-counter-title {
        font-size: 30px;
        text-align: center;
    }

    .footer-counter-bars {
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: hidden;
        padding-bottom: 4px;
    }

    .footer-counter-item {
        width: 56px;
        max-width: 56px;
        flex: 0 0 56px;
    }

    .footer-counter-value {
        font-size: 19px;
    }

    .footer-counter-day {
        font-size: 20px;
    }

    .footer-counter-total {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sponsor-link {
        width: 190px;
        height: 78px;
    }

    .sponsor-track {
        gap: 10px;
        animation-duration: 24s;
    }
}

/* Hero fix: keep full frame behavior consistent across breakpoints */
.hero-section {
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 !important;
}

@media (max-width: 480px) {
    body {
        padding-top: 108px;
    }

    .hero-section {
        padding: 28px 0px 24px;
    }

    .rock-navbar {
        top: 54px;
    }

    .now-playing-title {
        max-width: 110px;
    }

    .now-playing-artist {
        max-width: 110px;
    }

    .hero-title {
        font-size: clamp(44px, 16vw, 70px);
    }

    .hero-stats {
        gap: 14px;
    }

    .hero-stat-number {
        font-size: 28px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn-rock {
        text-align: center;
    }

    .btn-rock-outline {
        margin-left: 0px !important;
    }

    .vote-btn .vote-label {
        display: none;
    }

    .vote-btn {
        padding: 4px 8px;
    }

    .top-rank {
        font-size: 28px;
        width: 36px;
    }

    .track-cover {
        width: 36px;
        height: 36px;
    }
}

.vote-btn {
    background: none;
    border: 1px solid rgb(51, 51, 51);
    color: rgb(85, 85, 85);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.vote-btn:hover:not(:disabled) {
    border-color: var(--red);
    color: var(--red);
    background: rgba(204, 0, 51, 0.08);
}

.vote-btn.voted {
    border-color: var(--red);
    color: var(--red);
    background: rgba(204, 0, 51, 0.12);
}

.vote-btn:disabled {
    cursor: default;
}

.article-content h1, .article-content h2, .article-content h3 {
    font-family: var(--font-heading, 'Bebas Neue'), sans-serif;
    color: rgb(240, 240, 240);
    margin: 28px 0px 12px;
}

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

.article-content h3 {
    font-size: 22px;
}

.article-content p {
    margin-bottom: 18px;
}

.article-content a {
    color: var(--red);
    text-decoration: none;
}

.article-content a:hover {
    text-decoration: underline;
}

.article-content ul, .article-content ol {
    color: rgb(153, 153, 153);
    padding-left: 24px;
    margin-bottom: 18px;
}

.article-content ul li, .article-content ol li {
    margin-bottom: 6px;
}

.article-content blockquote {
    border-left: 3px solid var(--red);
    padding: 12px 20px;
    margin: 24px 0px;
    background: rgb(15, 15, 15);
    border-radius: 0px 8px 8px 0px;
    color: rgb(170, 170, 170);
    font-style: italic;
}

.article-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 16px 0px;
}

.article-content strong {
    color: rgb(240, 240, 240);
}

.article-content hr {
    border-color: rgb(30, 30, 30);
    margin: 24px 0px;
}

.cookie-banner {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 9999;
    padding: 0px 16px 16px;
    transform: translateY(110%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.cookie-banner--show {
    transform: translateY(0px);
    pointer-events: all;
}

.cookie-inner {
    max-width: 860px;
    margin: 0px auto;
    background: linear-gradient(135deg, rgb(26, 0, 0), rgb(20, 20, 20));
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-color: rgb(42, 42, 42);
    border-bottom-color: rgb(42, 42, 42);
    border-left-color: rgb(42, 42, 42);
    border-image: none;
    border-top: 3px solid var(--red);
    border-radius: 10px;
    box-shadow: rgba(204, 0, 51, 0.18) 0px -4px 32px, rgba(0, 0, 0, 0.6) 0px 8px 32px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 36px;
    flex-shrink: 0;
    filter: drop-shadow(rgba(204, 0, 51, 0.4) 0px 0px 8px);
}

.cookie-text {
    flex: 1 1 0%;
    min-width: 200px;
}

.cookie-text strong {
    display: block;
    font-family: var(--font-heading, 'Oswald'), "Arial Narrow", sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 6px;
}

.cookie-text p {
    font-size: 13px;
    color: rgb(119, 119, 119);
    margin: 0px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    font-family: var(--font-heading, 'Oswald'), "Arial Narrow", sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
    border: 2px solid transparent;
}

.cookie-btn-accept {
    background: var(--red);
    color: rgb(255, 255, 255);
    border-color: var(--red);
}

.cookie-btn-accept:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

.cookie-btn-decline {
    background: none;
    color: rgb(102, 102, 102);
    border-color: rgb(51, 51, 51);
}

.cookie-btn-decline:hover {
    border-color: rgb(102, 102, 102);
    color: rgb(153, 153, 153);
}

@media (max-width: 600px) {
    .cookie-inner {
        padding: 16px;
        gap: 14px;
    }

    .cookie-icon {
        font-size: 28px;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1 1 0%;
        text-align: center;
        padding: 10px 12px;
        font-size: 12px;
    }
}

.prog-day-tabs {
    display: flex;
    gap: 6px;
    background: rgb(13, 13, 13);
    padding: 10px;
    border-radius: 14px;
    overflow-x: auto;
    scrollbar-width: none;
}

.prog-day-tabs::-webkit-scrollbar {
    display: none;
}

.prog-day-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: rgb(85, 85, 85);
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.2s;
    white-space: nowrap;
    flex: 1 1 0%;
    min-width: 58px;
    position: relative;
}

.prog-day-tab:hover {
    color: rgb(187, 187, 187);
    background: rgb(22, 22, 22);
}

.prog-day-tab.active {
    background: var(--red);
    color: rgb(255, 255, 255);
}

.prog-day-tab.today:not(.active) {
    color: rgb(238, 85, 0);
    border: 1px solid rgba(229, 85, 0, 0.3);
}

.day-short {
    font-size: 15px;
    font-weight: 700;
}

.day-full {
    font-size: 10px;
    letter-spacing: 1px;
    opacity: 0.7;
}

.today-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
}

.prog-day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgb(13, 13, 13);
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid var(--red);
}

.prog-day-badge {
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: rgb(255, 255, 255);
}

.prog-day-name {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 20px;
    color: rgb(240, 240, 240);
}

.prog-today-label {
    font-size: 11px;
    color: var(--red);
    letter-spacing: 1px;
}

.prog-now-time {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 28px;
    color: var(--red);
    letter-spacing: 2px;
}

.prog-timeline {
    position: relative;
}

.prog-item {
    display: flex;
    gap: 0px;
    margin-bottom: 8px;
    position: relative;
}

.prog-time-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 48px;
    flex-shrink: 0;
    padding-top: 4px;
}

.prog-time-start {
    font-size: 11px;
    color: rgb(85, 85, 85);
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    letter-spacing: 1px;
}

.prog-time-end {
    font-size: 10px;
    color: rgb(51, 51, 51);
    font-family: var(--font-heading, 'Oswald'), sans-serif;
}

.prog-time-line {
    flex: 1 1 0%;
    width: 1px;
    background: rgb(26, 26, 26);
    margin: 4px 0px;
    min-height: 20px;
}

.prog-dot {
    width: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 6px;
    position: relative;
}

.prog-dot::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(34, 34, 34);
    border: 2px solid rgb(51, 51, 51);
    display: block;
}

.prog-dot--active::before {
    background: var(--red);
    border-color: var(--red);
    box-shadow: rgba(204, 0, 51, 0.5) 0px 0px 10px;
}

.prog-dot-pulse {
    position: absolute;
    top: 4px;
    left: -3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(204, 0, 51, 0.3);
    animation: 1.5s ease-out infinite dotPulse;
}

@keyframes dotPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.prog-card {
    flex: 1 1 0%;
    background: rgb(13, 13, 13);
    border-radius: 12px;
    margin-left: 10px;
    overflow: hidden;
    border: 1px solid rgb(22, 22, 22);
    transition: border-color 0.2s;
}

.prog-card:hover {
    border-color: rgb(42, 42, 42);
}

.prog-card--current {
    background: rgba(204, 0, 51, 0.04);
    border-color: var(--red) !important;
}

.prog-on-air {
    background: var(--red);
    color: rgb(255, 255, 255);
    font-size: 10px;
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    letter-spacing: 3px;
    padding: 4px 14px;
    animation: 2s ease-in-out infinite onAirBlink;
}

@keyframes onAirBlink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.prog-card-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
}

.prog-img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.prog-img-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: rgb(22, 22, 22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(51, 51, 51);
    font-size: 20px;
    flex-shrink: 0;
}

.prog-info {
    flex: 1 1 0%;
    min-width: 0px;
}

.prog-title {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 15px;
    color: rgb(240, 240, 240);
    margin-bottom: 3px;
}

.prog-host {
    font-size: 12px;
    color: rgb(102, 102, 102);
    margin-bottom: 4px;
}

.prog-desc {
    font-size: 12px;
    color: rgb(68, 68, 68);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prog-duration {
    font-size: 11px;
    color: rgb(51, 51, 51);
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    letter-spacing: 1px;
    white-space: nowrap;
}

.prog-week-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: rgb(102, 102, 102);
    transition: 0.2s;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(13, 13, 13);
    font-size: 13px;
}

.prog-week-row:hover {
    background: rgb(13, 13, 13);
    color: rgb(187, 187, 187);
}

.prog-week-row.active {
    background: rgba(204, 0, 51, 0.08);
    color: rgb(240, 240, 240);
    border-color: var(--red);
}

.prog-week-row.today .prog-week-day {
    color: rgb(238, 85, 0);
}

.prog-week-day {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 14px;
    width: 70px;
    flex-shrink: 0;
}

.prog-week-info {
    flex: 1 1 0%;
}

@media (max-width: 768px) {
    .prog-day-tab {
        padding: 8px 10px;
        min-width: 46px;
    }

    .day-full {
        display: none;
    }

    .prog-now-time {
        font-size: 20px;
    }

    .prog-time-col {
        width: 38px;
    }

    .prog-duration {
        display: none;
    }
}

.sleep-timer-wrap {
    position: relative;
}

.sleep-btn {
    background: none;
    border: 1px solid rgb(42, 42, 42);
    color: rgb(85, 85, 85);
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: 0.2s;
    padding: 0px 10px;
    white-space: nowrap;
}

.sleep-btn:hover {
    color: rgb(170, 170, 170);
    border-color: rgb(68, 68, 68);
    background: rgb(17, 17, 17);
}

.sleep-btn--active {
    color: rgb(68, 170, 255);
    border-color: rgb(68, 170, 255);
    background: rgba(68, 170, 255, 0.08);
    width: auto;
}

.sleep-countdown {
    font-family: var(--font-heading, 'Oswald'), monospace;
    font-size: 12px;
    letter-spacing: 1px;
    color: rgb(68, 170, 255);
}

.sleep-menu {
    background: rgb(17, 17, 17);
    border: 1px solid rgb(42, 42, 42);
    border-radius: 12px;
    padding: 10px;
    min-width: 170px;
    box-shadow: rgba(0, 0, 0, 0.8) 0px 8px 32px;
}

.sleep-menu-title {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgb(68, 68, 68);
    text-transform: uppercase;
    padding: 0px 6px 8px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(26, 26, 26);
    margin-bottom: 8px;
}

.sleep-option {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: medium;
    color: rgb(187, 187, 187);
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.15s;
}

.sleep-option:hover {
    background: rgb(26, 26, 26);
    color: rgb(255, 255, 255);
}

.sleep-option--cancel {
    color: rgb(238, 85, 85);
    margin-top: 4px;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgb(26, 26, 26);
    padding-top: 10px;
}

.sleep-option--cancel:hover {
    background: rgba(204, 0, 51, 0.1);
    color: rgb(255, 136, 136);
}

.page-content-body {
    color: rgb(204, 204, 204);
    line-height: 1.9;
    font-size: 15px;
}

.page-content-body h1, .page-content-body h2, .page-content-body h3 {
    font-family: var(--font-heading, 'Oswald'), sans-serif;
    color: rgb(240, 240, 240);
    margin: 24px 0px 12px;
}

.page-content-body h2 {
    border-left: 3px solid var(--red);
    padding-left: 12px;
}

.page-content-body a {
    color: var(--red);
}

.page-content-body img {
    max-width: 100%;
    border-radius: 8px;
    margin: 16px 0px;
}

.page-content-body blockquote {
    border-left: 3px solid var(--red);
    margin: 16px 0px;
    padding: 10px 16px;
    background: rgb(13, 13, 13);
    border-radius: 0px 8px 8px 0px;
    color: rgb(170, 170, 170);
    font-style: italic;
}

.page-content-body hr {
    border-color: rgb(26, 26, 26);
}
