@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,800&family=Source+Sans+3:wght@400;600;700&display=swap");

/* ============================================================
   INTER FONT + HEADER/MENU COMPAT
   ============================================================ */
@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    src: url(/cf-fonts/v/inter/5.0.16/cyrillic/wght/normal.woff2) format("woff2");
    unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
    font-display: swap;
}
@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    src: url(/cf-fonts/v/inter/5.0.16/latin/wght/normal.woff2) format("woff2");
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
    font-display: swap;
}
@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    src: url(/cf-fonts/v/inter/5.0.16/latin-ext/wght/normal.woff2) format("woff2");
    unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
    font-display: swap;
}
@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    src: url(/cf-fonts/v/inter/5.0.16/vietnamese/wght/normal.woff2) format("woff2");
    unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
    font-display: swap;
}

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --accent: #e51222;
    --paper: #040406;
    --ink: #f3f3f3;
    --header-ticker-h: 28px;
    --header-menu-h: 56px;
    --header-total-h: 84px;
    --font-display: "Montserrat", "Segoe UI", sans-serif;
    --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

.proradio-menu,
.proradio-internal-menu,
.givewp-campaign-donations-block,
.givewp-campaign-donors-block {
    font-family: Inter, var(--font-body), sans-serif;
}

.proradio-internal-menu,
.proradio-menu {
    text-rendering: geometricPrecision;
}

#proradio-headerbar.proradio-headerbar__sticky {
    position: sticky;
    top: 0;
    inset: auto 0;
}

.proradio-headerbar__content.proradio-paper {
    background-color: rgba(4, 4, 6, 0.9);
}

#proradio-headerbar.is-stuck .proradio-headerbar__content.proradio-paper {
    background-color: #ffffff;
}

.proradio-menu.proradio-paper {
    background-color: transparent;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.proradio-body {
    margin: 0;
    font-family: var(--font-body);
    background: #040406;
    color: var(--ink);
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
p { margin: 0; }
h1,h2,h3,h4,h5,h6 { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
button { cursor: pointer; border: 0; background: none; padding: 0; }

.proradio-txtfx {
    font-size: 125px;
    font-weight: 900;
}

#proradio-body a.proradio-cat-card h6,
.proradio-body a.proradio-cat-card h6 {
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.72);
    background-color: #101010;
    padding: 3px 10px;
    border: 2px solid #ffffff;
    display: inline-block;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.proradio-apl-preloader {
    position: fixed; inset: 0;
    z-index: 9999;
    display: grid; place-items: center;
    background: #040406;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.proradio-apl-preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.proradio-apl-preloader__spinner {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.15);
    border-top-color: var(--accent);
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   HEADER WRAPPER — fixed, full width
   ============================================================ */
#proradio-headerbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 200;
}
#proradio-headerbar-content {
    display: flex;
    flex-direction: column;
}

/* ============================================================
   TOP TICKER BAR  (always visible, black)
   ============================================================ */
#proradio-secondary-header {
    display: block !important;
    height: var(--header-ticker-h);
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rr-ticker-bar {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
}
/* Left: live icon + now playing */
.rr-ticker-left {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
    white-space: nowrap;
}
.rr-ticker-liveicon {
    color: var(--accent);
    font-size: 14px;
    line-height: 1;
    animation: blink 1.4s ease infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.rr-ticker-nowplaying {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: #fff;
}
.rr-ticker-nowplaying em {
    font-style: normal;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    margin-left: 4px;
}
/* Center: scrolling text */
.rr-ticker-scroll {
    overflow: hidden;
    min-width: 0;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.rr-ticker-run {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    white-space: nowrap;
    animation: tickerRun 28s linear infinite;
}
.rr-ticker-run:hover { animation-play-state: paused; }
.rr-ticker-run span {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}
@keyframes tickerRun {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
/* Right: secondary links + social */
.rr-ticker-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.rr-ticker-links {
    display: flex;
    align-items: center;
    gap: 0;
}
.rr-ticker-links a {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    padding: 0 8px;
    border-right: 1px solid rgba(255,255,255,0.15);
    line-height: 1;
    transition: color 0.2s;
}
.rr-ticker-links a:last-child { border-right: 0; }
.rr-ticker-links a:hover { color: #fff; }
.rr-ticker-socials {
    display: flex;
    align-items: center;
    gap: 6px;
}
.rr-ticker-socials a {
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    line-height: 1;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}
.rr-ticker-socials a:hover { color: #fff; }

/* ============================================================
   MAIN MENU BAR
   ============================================================ */
#proradio-menu {
    height: var(--header-menu-h);
    background: transparent !important;
    border: 0 !important;
    transition: background 0.3s ease;
}
/* On scroll: white bg */
#proradio-headerbar.is-stuck #proradio-menu {
    background: #ffffff !important;
    box-shadow: 0 2px 18px rgba(0,0,0,0.1);
}
/* Transition on ticker too */
#proradio-headerbar.is-stuck #proradio-secondary-header {
    background: #f0f0f0;
    border-bottom-color: rgba(0,0,0,0.1);
}
#proradio-headerbar.is-stuck .rr-ticker-nowplaying { color: #111; }
#proradio-headerbar.is-stuck .rr-ticker-nowplaying em { color: #666; }
#proradio-headerbar.is-stuck .rr-ticker-run span { color: rgba(0,0,0,0.5); }
#proradio-headerbar.is-stuck .rr-ticker-links a { color: rgba(0,0,0,0.65); }
#proradio-headerbar.is-stuck .rr-ticker-links a:hover { color: #000; }
#proradio-headerbar.is-stuck .rr-ticker-socials a { color: rgba(0,0,0,0.5); }

/* Menu container — strict 3-column: logo | nav | buttons */
.proradio-menu__cont {
    height: var(--header-menu-h);
    width: 100%;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 0;
}

/* ── LOGO (left, fixed width) ───────────────────────────── */
.proradio-menu__logo {
    flex: 0 0 auto;
    margin: 0;
    margin-right: 32px;
}
.proradio-logolink {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}
.proradio-logolink img {
    max-height: 34px;
    width: auto;
}
.proradio-logo_header,
.proradio-logo_header_transparent {
    max-height: 34px;
    width: auto;
}
.proradio-logo_header_mob {
    max-height: 30px;
    width: auto;
}
/* Show only transparent (light) logo by default */
.proradio-logo_header         { display: none !important; }
.proradio-logo_header_mob     { display: none !important; }
.proradio-logo_header_transparent { display: block !important; }
/* On white header: swap to dark */
#proradio-headerbar.is-stuck .proradio-logo_header               { display: block !important; }
#proradio-headerbar.is-stuck .proradio-logo_header_transparent   { display: none !important; }
/* Mobile: use mobile logo */
@media (max-width: 860px) {
    .proradio-logo_header_transparent { display: none !important; }
    .proradio-logo_header_mob         { display: block !important; max-height: 30px; }
    #proradio-headerbar.is-stuck .proradio-logo_header_mob { display: block !important; }
    #proradio-headerbar.is-stuck .proradio-logo_header     { display: none !important; }
}
/* Fallback text logo */
.proradio-logotext { display: none !important; }
.rr-logo-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.5px;
    color: #fff;
    transition: color 0.3s ease;
}
.rr-logo-text em { font-style: normal; color: var(--accent); }
#proradio-headerbar.is-stuck .rr-logo-text { color: #111; }
.rr-logo-shield {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    background: #fff;
    border-radius: 3px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 900;
    font-family: var(--font-display);
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}
#proradio-headerbar.is-stuck .rr-logo-shield {
    background: var(--accent);
    color: #fff;
}

/* ── NAV (center, flexible) ────────────────────────────── */
.proradio-menu-horizontal {
    flex: 1 1 auto;
    display: flex !important;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
}
.proradio-menu-horizontal_c { width: 100%; }
.proradio-menubar-default {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
}
/* Each nav item with "+" separator */
.proradio-menubar-default > .menu-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.proradio-menubar-default > .menu-item + .menu-item::before {
    content: "+";
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    margin: 0 10px;
    pointer-events: none;
    flex-shrink: 0;
    transition: color 0.3s ease;
}
#proradio-headerbar.is-stuck .proradio-menubar-default > .menu-item + .menu-item::before {
    color: rgba(0,0,0,0.22);
}
.proradio-menubar-default > .menu-item > a {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9) !important;
    padding: 6px 0;
    background: transparent !important;
    border: 0;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s ease;
}
/* Active underline */
.proradio-menubar-default > .menu-item > a::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 100%;
    height: 2px;
    background: var(--accent);
    transition: right 0.25s ease;
}
.proradio-menubar-default > .menu-item.is-current > a::after,
.proradio-menubar-default > .menu-item > a:hover::after { right: 0; }
/* On white header */
#proradio-headerbar.is-stuck .proradio-menubar-default > .menu-item > a {
    color: #111 !important;
}
#proradio-headerbar.is-stuck .proradio-menubar-default > .menu-item > a:hover,
#proradio-headerbar.is-stuck .proradio-menubar-default > .menu-item.is-current > a {
    color: var(--accent) !important;
}
/* Dropdown */
.proradio-menubar-default .menu-item-has-children:hover > .sub-menu {
    opacity: 1; pointer-events: auto; transform: translateY(0);
}
.proradio-menubar .sub-menu {
    position: absolute;
    left: 0; top: calc(100% + 8px);
    background: rgba(4,4,6,0.97);
    border: 1px solid rgba(255,255,255,0.12);
    min-width: 180px;
    padding: 8px;
    list-style: none;
    opacity: 0; pointer-events: none;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 50;
}
#proradio-headerbar.is-stuck .proradio-menubar .sub-menu {
    background: #fff;
    border-color: rgba(0,0,0,0.1);
}
.proradio-menubar .sub-menu .menu-item a {
    display: block;
    padding: 8px 10px;
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    border-radius: 3px;
    transition: color 0.2s, background 0.2s;
}
.proradio-menu-horizontal .proradio-menubar > li > ul li a {
    background-image: linear-gradient(45deg, #ed393a 0%, #d41e1f 100%, #fff 100%);
}
.proradio-menubar .sub-menu .menu-item a:hover { color: #fff; background: rgba(255,255,255,0.07); }
#proradio-headerbar.is-stuck .proradio-menubar .sub-menu .menu-item a { color: #333; }
#proradio-headerbar.is-stuck .proradio-menubar .sub-menu .menu-item a:hover { color: var(--accent); background: rgba(0,0,0,0.04); }

/* ── RIGHT BUTTONS (flex-shrink 0, stays right) ─────────── */
.proradio-menubtns {
    flex: 0 0 auto;
    margin-left: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}
/* The two circle buttons — play (stop icon) + next */
.rr-hdr-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.45);
    background: transparent;
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}
.rr-hdr-btn .material-icons { font-size: 16px; }
.rr-hdr-btn:hover { border-color: #fff; }
#proradio-headerbar.is-stuck .rr-hdr-btn {
    border-color: rgba(0,0,0,0.2);
    color: #333;
    background: #f4f4f4;
}
#proradio-headerbar.is-stuck .rr-hdr-btn:hover {
    border-color: rgba(0,0,0,0.5);
}
/* Hamburger button */
.rr-hdr-ham {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.45);
    background: transparent;
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}
.rr-hdr-ham .material-icons { font-size: 16px; }
#proradio-headerbar.is-stuck .rr-hdr-ham {
    border-color: rgba(0,0,0,0.2);
    color: #333;
    background: #f4f4f4;
}

/* ============================================================
   OFF-CANVAS OVERLAY
   ============================================================ */
.proradio-overlay {
    position: fixed;
    top: 0; right: 0;
    width: min(360px, 92vw);
    height: 100vh;
    z-index: 300;
    background: #0b0d12;
    border-left: 1px solid rgba(255,255,255,0.1);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.26s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -16px 0 40px rgba(0,0,0,0.5);
}
.proradio-overlayopen .proradio-overlay { transform: translateX(0); }
.proradio-overlay__pagemask {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 250;
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease;
}
.proradio-overlayopen .proradio-overlay__pagemask { opacity: 1; pointer-events: auto; }
.proradio-overlay__closebar {
    padding: 14px 14px 0;
    display: flex; justify-content: flex-end;
}
.proradio-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.proradio-menu-tree { padding: 0 14px; }
.proradio-menu-tree .menu-item {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: relative;
}
.proradio-menu-tree a {
    display: block;
    padding: 11px 6px;
    font-family: var(--font-display);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.9px; text-transform: uppercase;
    color: #eee;
}
.proradio-menu-tree .sub-menu { list-style: none; padding: 0 0 8px 12px; display: none; }
.proradio-menu-tree .menu-item-has-children.is-open > .sub-menu { display: block; }
.proradio-openthis {
    position: absolute; right: 0; top: 0;
    width: 38px; padding: 10px 0; text-align: center;
    color: #aaa; cursor: pointer;
}
.proradio-overlay__social {
    padding: 16px 14px;
    display: flex; flex-wrap: wrap; gap: 8px;
}
.proradio-overlay__social .proradio-soc-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    display: inline-flex; align-items: center; justify-content: center;
    color: #ccc; font-size: 14px;
    transition: color 0.2s, border-color 0.2s;
}
.proradio-overlay__social .proradio-soc-icon:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
.proradio-sidebar__offcanvas { padding: 14px; }
.proradio-widget {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 12px;
    background: rgba(255,255,255,0.02);
    margin-bottom: 12px;
}
.proradio-widget__title {
    font-family: var(--font-display);
    font-size: 11px; font-weight: 800;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: #fff; margin-bottom: 10px;
}
.proradio-post__inline {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 8px;
    background: #101523;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 8px;
    margin-bottom: 8px;
    align-items: start;
}
.proradio-thumb img { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; }
.proradio-post__inline h6 { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.proradio-meta { font-size: 11px; color: #8a96aa; }

/* ============================================================
   MASTER (push below fixed header)
   ============================================================ */
.proradio-master { padding-top: 0; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.rr-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
}
/* Bottom fade */
.rr-hero::before {
    content: "";
    position: absolute; inset: auto 0 0;
    height: 32vh; z-index: 4;
    background: linear-gradient(180deg, transparent 0%, rgba(4,4,6,0.92) 100%);
    pointer-events: none;
}
/* Grain overlay */
.rr-hero::after {
    content: "";
    position: absolute; inset: 0; z-index: 5;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    background-size: 160px 160px;
    opacity: 0.4; mix-blend-mode: overlay;
}
/* Left brand label */
.rr-hero-leftnote {
    position: absolute;
    left: 20px; top: calc(var(--header-total-h) + 20px);
    z-index: 8;
    display: grid; gap: 3px;
    max-width: 240px;
}
.rr-hero-leftnote strong {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.2vw, 46px);
    font-weight: 900; letter-spacing: -0.5px;
    line-height: 1; color: #fff; text-transform: uppercase;
}
.rr-hero-leftnote small {
    font-size: 9px; letter-spacing: 1.2px;
    text-transform: uppercase; color: rgba(255,255,255,0.55);
}
/* Slides */
.rr-hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    background-size: cover; background-position: center;
    transform: scale(1.03);
    transition: opacity 0.7s ease, transform 8s ease;
    z-index: 1;
}
.rr-hero-slide.is-active { opacity: 1; transform: scale(1); z-index: 2; }
/* Color grade overlays */
.rr-hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(104deg, rgba(0,0,0,0.94) 4%, rgba(0,0,0,0.28) 44%, rgba(0,0,0,0.75) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.52) 100%);
}
/* Red halftone splatter */
.rr-hero-noise {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 16% 22%, rgba(215,25,25,0.45) 0 26%, transparent 27%),
        radial-gradient(circle at 70% 14%, rgba(195,45,45,0.22) 0 20%, transparent 21%),
        radial-gradient(ellipse at 44% 68%, rgba(0,0,0,0.62) 0 18%, transparent 19%);
    mix-blend-mode: hard-light; opacity: 0.88;
}
.rr-hero-noise::after {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,0,0,0.22) 1px, transparent 0);
    background-size: 7px 7px;
    mix-blend-mode: screen; opacity: 0.55;
}
/* Content */
.rr-hero-content {
    position: absolute;
    left: clamp(20px, 9vw, 460px);
    bottom: clamp(90px, 14vh, 165px);
    max-width: min(840px, 90vw);
    z-index: 8;
}
.rr-hero-content > * { opacity: 0; transform: translateY(22px); }
.rr-hero-slide.is-active .rr-hero-content > * {
    animation: revealUp 0.65s cubic-bezier(0.2,0.8,0.2,1) forwards;
}
.rr-hero-slide.is-active .rr-hero-tags          { animation-delay: 0.05s; }
.rr-hero-slide.is-active h1                     { animation-delay: 0.14s; }
.rr-hero-slide.is-active h2                     { animation-delay: 0.24s; }
.rr-hero-slide.is-active .rr-hero-content p     { animation-delay: 0.32s; }
.rr-hero-slide.is-active .rr-hero-actions       { animation-delay: 0.40s; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

.rr-hero-tags { display: flex; gap: 6px; margin-bottom: 14px; }
.rr-hero-tags span {
    border: 1px solid rgba(255,255,255,0.5);
    padding: 3px 9px;
    font-family: var(--font-display);
    font-size: 9px; font-weight: 800;
    letter-spacing: 1.3px; text-transform: uppercase; color: #fff;
}
.rr-hero-tags span:first-child { background: var(--accent); border-color: var(--accent); }
.rr-hero-tags span:last-child { background: rgba(255,255,255,0.06); }

.rr-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 8vw, 124px);
    font-weight: 900; line-height: 0.85;
    letter-spacing: -1px; text-transform: uppercase; color: #fff;
}
.rr-hero-content h2 {
    font-family: var(--font-display);
    font-size: clamp(15px, 1.8vw, 30px);
    font-weight: 800; letter-spacing: 1.4px;
    text-transform: uppercase; color: #fff; margin-top: 10px;
}
.rr-hero-content h2::after {
    content: "";
    display: block; width: min(100%, 700px);
    height: 6px; margin-top: 7px;
    background: var(--accent);
}
.rr-hero-content p {
    font-size: 11px; letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
    margin-top: 11px;
    display: flex; align-items: center; gap: 5px;
}
.rr-hero-content p .material-icons { font-size: 13px; color: var(--accent); }
.rr-hero-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.rr-pill-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 35px; padding: 0 20px;
    border-radius: 999px; border: 1px solid transparent;
    background: var(--accent); color: #fff;
    font-family: var(--font-display);
    font-size: 10px; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.rr-pill-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.rr-pill-btn--ghost {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.42);
}
.rr-pill-btn--ghost:hover { background: rgba(255,255,255,0.13); }
/* Dots */
.rr-hero-dots {
    position: absolute; left: 24px; bottom: 26px;
    z-index: 8; display: flex; gap: 8px;
}
.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.7);
    background: transparent; cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    padding: 0;
}
.hero-dot:hover { transform: scale(1.12); }
.hero-dot.is-active { background: #fff; }

/* ============================================================
   MID SECTION
   ============================================================ */
.rr-midwrap {
    position: relative;
    padding: 56px 0 44px;
    background:
        radial-gradient(circle at 50% 0, rgba(255,255,255,0.04), transparent 46%),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 220px),
        #05070b;
}
.rr-midgrid {
    width: min(780px, calc(100% - 28px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0,1fr) 310px;
    gap: 28px; align-items: start;
}
.rr-midtitle {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 900; line-height: 0.84;
    letter-spacing: 0.4px; color: #fff;
    text-transform: uppercase; margin-bottom: 16px;
}
.rr-midtitle--sp { margin-top: 28px; }
/* News cards */
.rr-news-card {
    position: relative; margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.07); overflow: hidden;
}
.rr-news-card a { position: relative; display: block; }
.rr-news-card img {
    width: 100%; height: 355px;
    object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.rr-news-card:hover img { transform: scale(1.03); }
.rr-news-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.04) 30%, rgba(0,0,0,0.86) 100%);
}
.rr-news-cat,.rr-news-title,.rr-news-meta {
    position: absolute; left: 16px; right: 16px; z-index: 2;
}
.rr-news-cat {
    bottom: 84px;
    font-family: var(--font-display);
    font-size: 9px; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase; color: var(--accent);
}
.rr-news-title {
    bottom: 42px;
    font-family: var(--font-display);
    font-size: 20px; font-weight: 900;
    line-height: 0.96; letter-spacing: 0.4px;
    color: #fff; text-transform: uppercase;
}
.rr-news-meta {
    bottom: 15px; font-size: 11px;
    line-height: 1.2; letter-spacing: 0.4px;
    color: rgba(255,255,255,0.7);
}
/* Chart */
.rr-chartlist { display: grid; gap: 3px; }
.rr-chartrow {
    display: grid;
    grid-template-columns: 26px 40px 1fr 28px;
    gap: 8px; align-items: center;
    min-height: 48px; padding: 4px 8px;
    background: #ebebeb;
    border: 1px solid rgba(0,0,0,0.2);
    cursor: pointer; transition: background 0.2s;
}
.rr-chartrow:hover { background: #f8f8f8; }
.rr-rank {
    width: 22px; height: 22px; border-radius: 50%;
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-size: 11px; font-weight: 900;
    background: #121212; color: #fff; flex-shrink: 0;
}
.rr-chartrow img { width: 40px; height: 40px; object-fit: cover; }
.rr-chartmeta strong {
    display: block;
    font-family: var(--font-display);
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.6px; text-transform: uppercase;
    color: #080808; line-height: 1;
}
.rr-chartmeta small {
    display: block; margin-top: 3px;
    font-size: 10px; letter-spacing: 0.5px;
    text-transform: uppercase; color: #555;
}
.rr-cart { display: inline-flex; justify-content: center; color: var(--accent); }
.rr-cart .material-icons { font-size: 15px; }
/* Play card */
.rr-playcard {
    position: relative; width: 100%; max-width: 230px;
    border: 1px solid rgba(255,255,255,0.08); overflow: hidden;
}
.rr-playcard img {
    width: 100%; height: 230px; object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.rr-playcard:hover img { transform: scale(1.04); }
.rr-playbig {
    position: absolute; left: 50%; top: 50%;
    width: 68px; height: 68px; border-radius: 50%;
    transform: translate(-50%,-50%);
    display: inline-flex; align-items: center; justify-content: center;
    border: 2px solid rgba(255,255,255,0.72);
    background: rgba(0,0,0,0.36); color: #fff; z-index: 2;
    transition: transform 0.2s, background 0.2s;
}
.rr-playbig:hover { transform: translate(-50%,-50%) scale(1.08); background: rgba(229,18,34,0.5); }
.rr-playbig .material-icons { font-size: 36px; }
.rr-empty { color: #8a96aa; font-size: 13px; padding: 8px 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.proradio-megafooter__container {
    padding: 50px 0 100px;
    background:
        radial-gradient(circle at 76% 22%, rgba(255,255,255,0.1), transparent 30%),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 240px),
        #06080d;
    color: #e4ebfa;
}
.proradio-megafooter__itemcontent {
    width: min(780px, calc(100% - 28px));
    margin-inline: auto;
}
.proradio-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.8fr 1.1fr;
    gap: 24px;
}
.proradio-footer-grid h2 {
    font-family: var(--font-display);
    font-size: 30px; font-weight: 900;
    color: var(--accent); text-transform: uppercase;
    letter-spacing: -0.3px; line-height: 0.88; margin-bottom: 10px;
}
.proradio-footer-grid p { font-size: 13px; color: #8a96aa; line-height: 1.5; }
.proradio-footer-grid ul { display: grid; gap: 7px; }
.proradio-footer-grid li {
    font-size: 13px; color: #8a96aa;
    display: flex; align-items: center; gap: 7px;
}
.proradio-footer-grid li i { color: var(--accent); font-size: 13px; }
.proradio-footer-grid a { color: var(--accent); transition: opacity 0.2s; }
.proradio-footer-grid a:hover { opacity: 0.8; }
.proradio-footer-grid img { max-width: 160px; max-height: 50px; object-fit: contain; margin-bottom: 10px; }
.proradio-btn-primary {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 9px 16px; border-radius: 999px;
    background: var(--accent); color: #fff;
    font-family: var(--font-display);
    font-size: 10px; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase;
    border: 0; margin-top: 10px; cursor: pointer;
    transition: opacity 0.2s;
}
.proradio-btn-primary:hover { opacity: 0.88; }
/* Copy bar */
.proradio-footer { border-top: 1px solid rgba(255,255,255,0.08); }
.proradio-footer__copy { background: #020305 !important; padding: 10px 0; }
.proradio-container {
    width: min(780px, calc(100% - 24px));
    margin-inline: auto;
}
.proradio-footer__copy .proradio-container {
    display: flex; align-items: center;
    justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.proradio-footer__copy p {
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.2px; color: #6a7589;
}
.proradio-menubar__footer { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.proradio-menubar__footer a {
    font-size: 10px; letter-spacing: 0.8px;
    text-transform: uppercase; font-weight: 700;
    color: #6a7589; padding: 4px 7px; transition: color 0.2s;
}
.proradio-menubar__footer a:hover { color: #fff; }
.proradio-menubar__footer__separator {
    width: 1px; height: 12px;
    background: rgba(255,255,255,0.2); margin-inline: 4px;
}
.proradio-menubar__footer .proradio-social a {
    color: #6a7589; font-size: 13px; transition: color 0.2s;
}
.proradio-menubar__footer .proradio-social a:hover { color: #fff; }

/* ============================================================
   BOTTOM PLAYER — birebir görseldeki gibi
   ============================================================ */
.proradio-playercontainer--footer {
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 150;
    background: #111;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.proradio-player-footer-placeholder { height: 76px; }

/* Player inner layout */
.qtmplayer__container--footer { width: 100%; }
.qtmplayer__basic {
    width: 100%;
    height: 76px;
    display: grid;
    grid-template-columns: 76px max-content 1fr 1fr auto;
    align-items: center;
    gap: 0;
    padding: 0;
    overflow: hidden;
}
/* 1. Album cover square */
.qtmplayer__cover-sq {
    width: 76px; height: 76px;
    flex-shrink: 0;
    overflow: hidden;
}
.qtmplayer__cover-sq img {
    width: 76px; height: 76px;
    object-fit: cover; display: block;
}
/* 2. Play controls */
.qtmplayer__controls-row {
    display: flex; align-items: center;
    gap: 2px;
    padding: 0 12px;
    flex-shrink: 0;
}
.qtmplayer__ctrl-btn {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    background: transparent; color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; transition: border-color 0.2s, background 0.2s;
    flex-shrink: 0;
}
.qtmplayer__ctrl-btn .material-icons { font-size: 14px; }
.qtmplayer__ctrl-btn:hover { border-color: #fff; }
/* Main play button slightly larger */
.qtmplayer__ctrl-btn--play {
    width: 32px; height: 32px;
    border-color: rgba(255,255,255,0.5);
}
.qtmplayer__ctrl-btn--play .material-icons { font-size: 16px; }
/* 3. Track info */
.qtmplayer__info {
    padding: 0 16px 0 6px;
    min-width: 0;
    display: flex; flex-direction: column; justify-content: center;
}
.qtmplayer__title {
    font-family: var(--font-display);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.5px; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.qtmplayer__artist {
    font-size: 10px; letter-spacing: 0.4px;
    color: rgba(255,255,255,0.55);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    margin-top: 2px;
}
/* 4. Progress bar area */
.qtmplayer__progress-col {
    padding: 0 20px;
    display: flex; flex-direction: column;
    justify-content: center; gap: 6px;
    min-width: 0;
}
.qtmplayer__time-row {
    display: flex; justify-content: space-between;
    font-size: 10px; letter-spacing: 0.5px;
    color: rgba(255,255,255,0.5);
}
.qtmplayer__track {
    position: relative; height: 3px;
    background: rgba(255,255,255,0.15); border-radius: 2px;
    cursor: pointer; overflow: visible;
}
.qtmplayer__track-fill {
    position: absolute; left: 0; top: 0; bottom: 0;
    background: #fff; border-radius: 2px;
    width: 0%; transition: width 0.3s;
}
.qtmplayer__track-dot {
    position: absolute; right: -4px; top: 50%;
    width: 8px; height: 8px; border-radius: 50%;
    background: #fff; transform: translateY(-50%);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}
/* 5. Right: volume + extra buttons */
.qtmplayer__right-col {
    display: flex; align-items: center;
    gap: 10px; padding: 0 16px;
    flex-shrink: 0;
}
.qtmplayer__vol-row {
    display: flex; align-items: center; gap: 7px;
}
.qtmplayer__vol-icon { color: rgba(255,255,255,0.6); font-size: 16px; }
.qtmplayer__vcontrol {
    position: relative; width: 72px; height: 3px;
    background: rgba(255,255,255,0.18); border-radius: 2px; cursor: pointer;
}
.qtmplayer__vfill {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 80%; background: #fff; border-radius: 2px;
}
.qtmplayer__vball {
    position: absolute; right: -4px; top: 50%;
    width: 8px; height: 8px; border-radius: 50%;
    background: #fff; transform: translateY(-50%);
}
.qtmplayer__extra-btn {
    width: 26px; height: 26px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent; color: rgba(255,255,255,0.65);
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; transition: color 0.2s, border-color 0.2s;
}
.qtmplayer__extra-btn .material-icons { font-size: 14px; }
.qtmplayer__extra-btn:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* Legacy selectors (for qtmplayer.js compatibility) */
#qtmplayerPlay { /* handled by .qtmplayer__ctrl-btn--play */ }
.qtmplayer__play { display: none; } /* hide old play btn if present */
.qtmplayer__songdata { display: none; } /* hide old songdata if present */
.qtmplayer__openbtn { display: none; }
.qtmplayer__bgimg { display: none; }
.qtmplayer__advanced { display: none !important; }
.qtmplayer__playlistcontainer { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
    .proradio-menu-horizontal { display: none !important; }

    .proradio-menu__cont { padding: 0 14px; }
    .proradio-menu__logo { margin-right: 0; }

    .rr-midgrid {
        grid-template-columns: 1fr;
        width: min(780px, calc(100% - 20px));
    }
    .proradio-footer-grid { grid-template-columns: 1fr 1fr; }
    .rr-hero-leftnote { display: none; }

    /* Player: simpler on mobile */
    .qtmplayer__basic {
        grid-template-columns: 56px auto 1fr auto;
        height: 60px;
    }
    .qtmplayer__cover-sq { width: 56px; height: 60px; }
    .qtmplayer__cover-sq img { width: 56px; height: 60px; }
    .qtmplayer__progress-col { display: none; }
    .qtmplayer__right-col { padding: 0 12px; gap: 8px; }
    .qtmplayer__vol-row { display: none; }
    .proradio-player-footer-placeholder { height: 60px; }

    /* Ticker on mobile: hide scroll, keep links */
    .rr-ticker-scroll { display: none; }
    .rr-ticker-bar { grid-template-columns: max-content 1fr; }
}

@media (max-width: 640px) {
    :root { --header-ticker-h: 24px; --header-menu-h: 50px; --header-total-h: 74px; }
    .proradio-footer-grid { grid-template-columns: 1fr; }
    .rr-midtitle { font-size: 34px; }
    .rr-news-card img { height: 290px; }
    .rr-hero-content h1 { font-size: clamp(36px, 12vw, 70px); }
    .rr-hero-content h2 { font-size: clamp(13px, 5vw, 22px); }
    .rr-hero-content { left: 14px; right: 14px; max-width: none; bottom: 74px; }
    .proradio-footer__copy .proradio-container { justify-content: center; text-align: center; }
    .rr-ticker-right { display: none; }
    .rr-ticker-bar { grid-template-columns: 1fr; justify-items: center; }
}

/* ============================================================
   NEWS CARDS — updated for multi-card layout
   ============================================================ */
.rr-section-title {
    font-family: var(--font-display);
    font-size: clamp(28px,4vw,44px);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: 0.6px;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 14px;
}
.rr-section-title--sp { margin-top: 24px; }

.rr-news-card {
    position: relative;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    display: block;
}
.rr-news-card a { position: relative; display: block; }
.rr-news-card img {
    width: 100%; height: 240px;
    object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.rr-news-card:hover img { transform: scale(1.03); }
.rr-news-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,rgba(0,0,0,0.04) 28%,rgba(0,0,0,0.88) 100%);
}
.rr-news-badge,.rr-news-title,.rr-news-meta,.rr-news-share {
    position: absolute; z-index: 2;
}
.rr-news-badge {
    bottom: 74px; left: 14px;
    font-family: var(--font-display);
    font-size: 9px; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase;
    color: #fff;
    background: var(--accent);
    padding: 2px 7px;
}
.rr-news-title {
    bottom: 36px; left: 14px; right: 38px;
    font-family: var(--font-display);
    font-size: 16px; font-weight: 900;
    line-height: 1; letter-spacing: 0.3px;
    color: #fff; text-transform: uppercase;
}
.rr-news-meta {
    bottom: 13px; left: 14px; right: 38px;
    font-size: 10px; line-height: 1.2;
    color: rgba(255,255,255,0.65);
}
.rr-news-share {
    bottom: 10px; right: 12px;
    width: 26px; height: 26px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%; color: rgba(255,255,255,0.7);
    transition: border-color 0.2s, color 0.2s;
}
.rr-news-card:hover .rr-news-share { border-color: #fff; color: #fff; }
.rr-news-share .material-icons { font-size: 13px; }

/* MORE NEWS button */
.rr-more-wrap { text-align: center; margin-top: 12px; }
.rr-more-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 32px; padding: 0 22px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent; color: rgba(255,255,255,0.75);
    font-family: var(--font-display);
    font-size: 10px; font-weight: 800;
    letter-spacing: 1.1px; text-transform: uppercase;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.rr-more-btn:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,0.05); }

/* PLAY IT LOUD card */
.rr-playcard {
    position: relative; width: 100%;
    border: 1px solid rgba(255,255,255,0.08); overflow: hidden;
}
.rr-playcard img {
    width: 100%; height: 200px;
    object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.rr-playcard:hover img { transform: scale(1.03); }
.rr-playcard-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.72) 100%);
}
.rr-playbig {
    position: absolute; left: 50%; top: 40%;
    width: 56px; height: 56px; border-radius: 50%;
    transform: translate(-50%,-50%);
    display: inline-flex; align-items: center; justify-content: center;
    border: 2px solid rgba(255,255,255,0.75);
    background: rgba(0,0,0,0.35); color: #fff; z-index: 2;
    transition: transform 0.2s, background 0.2s;
}
.rr-playbig:hover { transform: translate(-50%,-50%) scale(1.1); background: rgba(229,18,34,0.55); }
.rr-playbig .material-icons { font-size: 30px; }
.rr-playcard-brand {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 2;
    display: flex; align-items: center; gap: 8px;
    padding: 10px 12px;
    background: rgba(0,0,0,0.55);
}
.rr-playcard-icon {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: #fff;
}
.rr-playcard-icon .material-icons { font-size: 16px; }
.rr-playcard-brand strong {
    display: block;
    font-family: var(--font-display);
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.7px; text-transform: uppercase; color: #fff;
}
.rr-playcard-brand small {
    display: block; font-size: 9px;
    letter-spacing: 0.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 1px;
}

/* ============================================================
   PRICING / MEMBERSHIP SECTION
   ============================================================ */
.rr-pricing-section {
    background:
        url('https://images.unsplash.com/photo-1477925518-a8e34fbb76f5?auto=format&fit=crop&w=1600&q=60')
        center/cover no-repeat fixed;
    position: relative;
    padding: 60px 0 52px;
}
.rr-pricing-section::before {
    content:"";
    position:absolute; inset:0;
    background: rgba(220,220,218,0.88);
}
.rr-pricing-inner {
    position: relative; z-index: 2;
    width: min(780px, calc(100% - 28px));
    margin-inline: auto;
    text-align: center;
}
.rr-pricing-heading {
    font-family: var(--font-display);
    font-size: clamp(28px,4vw,48px);
    font-weight: 900; line-height: 0.9;
    letter-spacing: 0.5px; text-transform: uppercase;
    color: #111;
    margin: 0 0 36px;
}
.rr-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
}
/* Plan card */
.rr-plan {
    background: #1a1a1e;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 24px 20px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rr-plan:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,0.4); }
.rr-plan--featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}
.rr-plan-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    display: inline-flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.04);
}
.rr-plan--featured .rr-plan-icon { border-color: var(--accent); color: var(--accent); }
.rr-plan-icon .material-icons { font-size: 22px; }
.rr-plan-name {
    font-family: var(--font-display);
    font-size: 13px; font-weight: 900;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: #fff; line-height: 1.1;
}
.rr-plan-sub {
    font-family: var(--font-display);
    font-size: 9px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin: 3px 0 10px;
}
.rr-plan-price {
    font-family: var(--font-display);
    font-size: 44px; font-weight: 900;
    color: #fff; line-height: 1;
    margin-bottom: 2px;
}
.rr-plan-price sup {
    font-size: 18px; vertical-align: super;
    margin-right: 1px; font-weight: 700;
}
.rr-plan-price sub {
    font-size: 14px; vertical-align: sub;
    font-weight: 600; color: rgba(255,255,255,0.7);
}
.rr-plan-divider {
    border: 0;
    border-top: 1px dashed rgba(255,255,255,0.15);
    margin: 14px 0;
}
.rr-plan-features {
    list-style: none; margin: 0; padding: 0;
    display: grid; gap: 6px;
    text-align: left;
}
.rr-plan-features li {
    font-family: var(--font-display);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.4px;
    display: flex; align-items: center; gap: 6px;
}
.rr-plan-features li.yes { color: rgba(255,255,255,0.85); }
.rr-plan-features li.no  { color: rgba(255,255,255,0.28); text-decoration: line-through; }
.rr-plan-features li .material-icons { font-size: 14px; flex-shrink: 0; }
.rr-plan-features li.yes .material-icons { color: #4ade80; }
.rr-plan-features li.no  .material-icons { color: rgba(255,255,255,0.25); }
.rr-plan-btn {
    display: block; margin-top: 18px;
    padding: 9px 0;
    background: var(--accent); color: #fff;
    font-family: var(--font-display);
    font-size: 10px; font-weight: 800;
    letter-spacing: 1.1px; text-transform: uppercase;
    border: 0; text-align: center;
    transition: opacity 0.2s;
}
.rr-plan-btn:hover { opacity: 0.88; }
.rr-pricing-note {
    margin: 24px 0 0;
    font-family: var(--font-display);
    font-size: 10px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: rgba(0,0,0,0.4);
}

/* ── Footer updated ── */
.proradio-megafooter__container {
    padding: 50px 0 100px;
    background:
        radial-gradient(circle at 76% 22%, rgba(255,255,255,0.1), transparent 30%),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 240px),
        #06080d;
    color: #e4ebfa;
}
/* Footer grid: WHO WE ARE | LISTEN | NAVIGATORS | ROCKRADIO */
.proradio-footer-grid {
    grid-template-columns: 1.3fr 1fr 0.7fr 1.1fr !important;
}
.proradio-footer-grid h2 {
    font-family: var(--font-display) !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    color: var(--accent) !important;
    margin-bottom: 10px !important;
}

/* Responsive additions */
@media (max-width:980px) {
    .rr-pricing-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
    .proradio-footer-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width:640px) {
    .rr-news-card img { height: 200px; }
    .proradio-footer-grid { grid-template-columns: 1fr !important; }
}
