@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

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

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

body {
    font-family: 'IBM Plex Mono', monospace;
    line-height: 1.6;
    background: #000;
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'FranklinGothicHeavy', sans-serif;
}

h2 {
    font-size: clamp(1.55rem, 2.4vw, 2.3rem);
    line-height: 1.15;
    margin: 1.25rem 0 1rem;
    padding: .15rem 0;
}

body.player-active {
    padding-bottom: 72px;
}

.container {
    max-width: min(1680px, calc(100vw - 32px));
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    background: #000;
    color: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #222;
}

/* Header fixe (activé via réglages admin) */
body.header-sticky .site-header {
    position: sticky;
    top: 0;
    z-index: 200;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}

.site-logo-link {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 12;
}

.site-logo {
    height: 52px;
    width: auto;
    filter: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.site-nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.site-header nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
}

.site-header nav a:hover {
    color: #ccc;
}

.theme-toggle {
    appearance: none;
    border: 1px solid rgba(255,255,255,.45);
    background: transparent;
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font: inherit;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}

.theme-toggle:hover {
    background: rgba(255,255,255,.08);
}

.theme-picker-label {
    color: #b9b9b9;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-nav-theme {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.theme-select {
    appearance: none;
    border: 1px solid rgba(255,255,255,.45);
    background: #0d0d0d;
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font: inherit;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}

.theme-select:hover,
.theme-select:focus {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.75);
    outline: none;
}

.site-menu-toggle,
.site-nav-close {
    appearance: none;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.04);
    color: #fff;
    cursor: pointer;
}

.site-menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
    position: relative;
    z-index: 12;
}

.site-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.site-menu-toggle:hover,
.site-menu-toggle:focus-visible,
.site-nav-close:hover,
.site-nav-close:focus-visible {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.45);
    outline: none;
}

.site-nav-header {
    display: none;
}

.site-nav-title {
    font-family: 'FranklinGothicHeavy', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
}

.site-nav-close {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 1.8rem;
    line-height: 1;
}

.site-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(3, 8, 10, .72);
    backdrop-filter: blur(4px);
    z-index: 10;
}

/* Hero */
.hero-section {
    background: #111;
    color: #fff;
    padding: 0rem 0;
    text-align: center;
}

/* Sections */
section {
    padding: 0rem 0;
    padding-top:10px;
    padding-bottom: 5px;;
}

/* Sliders */
.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;
    cursor: grab;
}

.slider.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.slider-container {
    display: flex;
    transition: transform 0.3s ease;
}

.slide {
    min-width: 220px;
    margin-right: 16px;
}

.slide-media {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.slide-media a {
    display: block;
}

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

.slide img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transform: scale(1);
    transition: transform .28s ease;
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-radius: 8px;
}

.slide h3,
.slide h4 {
    margin-top: 8px;
    font-size: 0.95rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

.radio-slider .slider-container {
    align-items: stretch;
}

.radio-slide {
    min-width: clamp(240px, 18vw, 300px);
    display: flex;
    flex-direction: column;
}

.radio-slide-media {
    position: relative;
    aspect-ratio: 748 / 927;
    overflow: hidden;
    border-radius: 8px;
    background: #0b0b0b;
}

.radio-slide-media a,
.radio-slide-media .placeholder-image {
    width: 100%;
    height: 100%;
}

.radio-slide-media .placeholder-image {
    aspect-ratio: auto;
}

.radio-slide-poster {
    position: relative;
    width: 100%;
    height: 100%;
    background: #141414;
}

.radio-slide-header-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 8px;
}

.radio-slide-header-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.radio-slide-brand {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 0;
    padding: 0;
    background: transparent;
    z-index: 2;
}

.radio-slide-brand-logo {
    display: block;
    width: auto;
    max-width: 140px;
    max-height: 72px;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.radio-slide-brand-name {
    font-family: 'FranklinGothicHeavy', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.8rem);
    line-height: 0.95;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    max-width: 180px;
}

.radio-slide-live-badge {
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d80000;
}

.radio-slide-live-badge::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 6px;
    border-radius: 50%;
    background: currentColor;
    vertical-align: middle;
}

.radio-slide-cover-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    z-index: 1;
    overflow: hidden;
}

.radio-slide-cover-image,
.radio-slide-cover-placeholder {
    width: 100%;
    height: 100% !important;
    display: block;
    object-fit: cover;
    border-radius: 0 !important;
    aspect-ratio: 1 / 1 !important;
}

.radio-slide-cover-image {
    object-position: center;
}

.radio-slide-cover-placeholder {
    font-size: 2.5rem;
}

.radio-slide-title {
    min-height: 2.6em;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.radio-slide .now-playing-track {
    min-height: 4.8em;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.episode-date {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 4px;
}

/* Play button overlay */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(231, 76, 60, 0.85);
    color: white;
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
}

.play-btn:hover {
    background: rgba(192, 57, 43, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Slider nav buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    padding: 10px 12px;
    cursor: pointer;
    font-size: 18px;
    z-index: 3;
    border-radius: 4px;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-btn.prev { left: 4px; }
.slider-btn.next { right: 4px; }

/* Feed sliders */
.feed-slider {
    margin-bottom: 3rem;
}

.feed-slider > h2,
.feed-slider > h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.feed-slider > h2 a,
.feed-slider > h3 a {
    color: inherit;
    text-decoration: none;
}

.feed-slider > h2 a:visited,
.feed-slider > h3 a:visited {
    color: inherit;
}

.feed-slider > h2 a:hover,
.feed-slider > h3 a:hover {
    color: var(--accent, #e74c3c);
}

.placeholder-episode {
    background: #111;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    color: #888;
}

/* Pages */
.page-section {
    padding: 3rem 0;
}

.page-section h1 {
    margin-bottom: 2rem;
    color: #fff;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #aaa;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #fff;
}

/* Cards grid (radios / podcasts) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.card {
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    border: 1px solid #222;
    transition: border-color 0.2s;
}

.card:hover {
    border-color: #444;
}

.card-media {
    position: relative;
    overflow: hidden;
}

.card-media a {
    display: block;
}

.card-media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform .28s ease;
}

.card-media .placeholder-image {
    border-radius: 0;
}

.card-body {
    padding: 12px 14px 16px;
}

.card-title {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #fff;
}

.card-title a {
    color: inherit;
    text-decoration: none;
}

.card-meta {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 6px;
}

.card-desc {
    font-size: 0.88rem;
    color: #aaa;
    line-height: 1.4;
    margin-bottom: 10px;
}

.radio-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    align-items: stretch;
}

.radio-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.radio-card-media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #0b0b0b;
}

.radio-card-media a,
.radio-card-media img,
.radio-card-media .placeholder-image {
    width: 100%;
    height: 100%;
}

.radio-card-media img,
.radio-card-media .placeholder-image {
    aspect-ratio: auto;
}

.radio-card-body {
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    gap: 8px;
    min-height: 230px;
}

.radio-card .card-title {
    margin-bottom: 0;
    line-height: 1.25;
    min-height: 2.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.radio-card .card-meta {
    margin-bottom: 0;
    min-height: 1.2em;
}

.radio-card .card-desc {
    margin-bottom: 0;
    min-height: 3.8em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.radio-card .now-playing-track {
    align-self: end;
    margin-top: 2px;
    min-height: 4.8em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.radio-now-playing {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: start;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.radio-now-playing-cover-wrap {
    width: 56px;
    height: 56px;
}

.radio-now-playing-cover {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
    background: #181818;
}

.radio-now-playing-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.radio-now-playing-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7d7d7d;
}

.radio-now-playing-artist,
.radio-now-playing-title {
    line-height: 1.35;
    word-break: break-word;
}

.radio-now-playing-artist {
    font-size: 0.88rem;
    color: #f0f0f0;
}

.radio-now-playing-title {
    font-size: 0.82rem;
    color: #a9a9a9;
}

.radios-page h1 {
    max-width: 12ch;
    margin-bottom: 1.4rem;
}

.btn-episodes {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 4px;
}

.btn-episodes:hover {
    background: #c0392b;
}

/* ===== GRILLE DES PROGRAMMES ===== */
.grille-hero {
    padding: 3rem 0 1.5rem;
    text-align: center;
}
.grille-hero-title {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    margin: 0 0 .5rem;
    color: #fff;
}
.grille-hero-arrow {
    font-size: 1.6rem;
    margin: 0;
    color: var(--accent, #e74c3c);
    animation: grille-bounce .9s infinite alternate ease-in-out;
}
@keyframes grille-bounce {
    from { transform: translateY(0); }
    to   { transform: translateY(6px); }
}

/* Day tabs */
.grille-tabs {
    display: flex;
    width: 100%;
    background: #6236e0;
    overflow-x: auto;
    scrollbar-width: none;
}
.grille-tabs::-webkit-scrollbar { display: none; }

.grille-tab {
    flex: 1 0 auto;
    padding: 14px 10px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,.65);
    font-family: inherit;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
    white-space: nowrap;
    transition: color .15s, background .15s;
}
.grille-tab:hover { color: #fff; background: rgba(255,255,255,.08); }
.grille-tab--active { color: #fff; background: rgba(255,255,255,.15); border-bottom: 3px solid #fff; }

/* Programs */
.grille-section { padding-top: 0; }
.grille-empty { color: var(--muted, #888); padding: 2rem 0; }

.grille-program {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--panel2, #1a1a1a);
}
.grille-program:last-child { border-bottom: none; }

.grille-program-image img,
.grille-program-placeholder {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
.grille-program-placeholder {
    background: var(--panel, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.grille-program-time {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--muted, #888);
    font-family: 'IBM Plex Mono', monospace;
}
.grille-program-title {
    margin: 0 0 12px;
    font-size: 1.6rem;
    line-height: 1.2;
    color: #fff;
}
.grille-program-desc {
    margin: 0 0 16px;
    color: var(--muted, #888);
    line-height: 1.65;
    font-size: .95rem;
}
.grille-program-btn {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 24px;
    background: var(--accent, #e74c3c);
    color: #fff;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 700;
    transition: opacity .2s;
}
.grille-program-btn:hover { opacity: .85; }

@media (max-width: 700px) {
    .grille-tab { font-size: .75rem; padding: 12px 8px; }
    .grille-program {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 1.5rem 0;
    }
    .grille-program-image img,
    .grille-program-placeholder {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
    .grille-program-title { font-size: 1.3rem; }
}

/* ===== PODCASTS PAGE HERO ===== */
.podcast-page-hero { border-bottom: 1px solid var(--panel2, #1a1a1a); }

.podcast-hero-label {
    margin: 0;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--accent, #e74c3c);
}
.podcast-hero-label a {
    color: inherit;
    text-decoration: none;
}
.podcast-hero-label a:hover { opacity: .8; }

.podcast-hero-title {
    margin: 0;
    font-size: 1.9rem;
    line-height: 1.2;
}
.podcast-hero-title a {
    color: inherit;
    text-decoration: none;
}
.podcast-hero-title a:hover { color: var(--accent, #e74c3c); }

.podcast-hero-meta {
    margin: 0;
    font-size: .87rem;
    color: var(--muted, #888);
}

.podcast-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.podcast-hero-btn-secondary {
    display: inline-block;
    align-self: flex-start;
    padding: 10px 24px;
    border-radius: 24px;
    border: 1px solid var(--muted, #888);
    color: var(--muted, #888);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
    transition: border-color .2s, color .2s;
}
.podcast-hero-btn-secondary:hover {
    border-color: var(--text, #fff);
    color: var(--text, #fff);
}

/* Feed header */
.feed-header-section {
    background: #111;
    padding: 2.5rem 0;
    border-bottom: 1px solid #222;
}

.feed-header {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.feed-cover {
    width: 180px;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.feed-header-info h1 {
    margin-bottom: 6px;
    color: #fff;
}

.feed-author {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.feed-description {
    font-size: 0.92rem;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 10px;
}

.feed-stats {
    font-size: 0.88rem;
    color: #666;
}

/* Episodes list */
.episodes-section {
    padding: 2.5rem 0;
}

.episodes-section h2 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.episodes-list {
    display: flex;
    flex-direction: column;
}

.episode-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #222;
}

.episode-row:last-child {
    border-bottom: none;
}

.episode-thumb {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.episode-thumb img {
    width: 80px;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.placeholder-image-sm {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 6px;
}

.play-btn-sm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(231, 76, 60, 0.85);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.play-btn-sm:hover {
    background: rgba(192, 57, 43, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.episode-info {
    flex: 1;
    min-width: 0;
}

.episode-title {
    font-size: 1rem;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

@media (max-width: 700px) {
    .feed-header-section { padding: 1.5rem 0; }
    .feed-header {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }
    .feed-cover {
        width: 140px;
    }
    .feed-header-info h1 {
        font-size: 1.5rem;
    }
    .feed-description {
        font-size: 0.88rem;
    }
    .breadcrumb {
        font-size: 0.8rem;
        justify-content: center;
    }
    .episode-title {
        white-space: normal;
        overflow: visible;
        text-overflow: initial;
        font-size: 0.95rem;
    }
    .episode-summary {
        display: none;
    }
}

.episode-title a {
    color: inherit;
    text-decoration: none;
}

.episode-title a:hover {
    color: #ccc;
}

.episode-date {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 6px;
}

.episode-summary {
    font-size: 0.88rem;
    color: #aaa;
    line-height: 1.4;
}

/* Radio / Episode detail */
.radio-detail,
.episode-detail {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.radio-cover,
.episode-cover {
    width: 200px;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    display: block;
}

.radio-detail-media,
.episode-detail-media {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.radio-detail-info h1,
.episode-detail-info h1 {
    margin-bottom: 8px;
    color: #fff;
}

.radio-genre,
.feed-meta,
.episode-meta {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.episode-meta a {
    color: #aaa;
    text-decoration: none;
}

.episode-meta a:hover {
    color: #fff;
}

.radio-description,
.episode-summary {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
    margin-top: 10px;
}

.episode-transcript-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 9px 18px;
    background: transparent;
    border: 1px solid #444;
    color: #ccc;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.episode-transcript-btn:hover {
    border-color: #aaa;
    color: #fff;
}

.episode-transcript {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}
.episode-transcript.is-open { display: block; }
.episode-transcript h2 {
    font-size: 1rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 14px;
}
.episode-transcript-body {
    font-size: 0.92rem;
    color: #ccc;
    line-height: 1.7;
    max-height: 400px;
    overflow-y: auto;
    white-space: pre-wrap;
}
.episode-transcript-error {
    font-size: 0.88rem;
    color: #888;
    font-style: italic;
    margin: 0;
}
.episode-row .episode-transcript {
    margin-top: 12px;
    grid-column: 1 / -1;
}

.btn-play-large {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}

.btn-play-large:hover {
    background: #c0392b;
}

/* Newsletter */
.newsletter-section {
    background: var(--bg2, #111);
    border-top: 1px solid #222;
    padding: 56px 0;
}
.newsletter-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}
.newsletter-copy { flex: 1; min-width: 0; }
.newsletter-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.newsletter-text {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.newsletter-input {
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.95rem;
    width: 280px;
    outline: none;
    transition: border-color .2s;
}
.newsletter-input:focus { border-color: var(--accent, #e74c3c); }
.newsletter-btn {
    padding: 12px 22px;
    border-radius: 6px;
    border: none;
    background: var(--accent, #e74c3c);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .2s;
}
.newsletter-btn:hover { opacity: .85; }
.newsletter-btn:disabled { opacity: .5; cursor: default; }
.newsletter-feedback {
    margin-top: 12px;
    font-size: 0.9rem;
}
.newsletter-feedback.is-success { color: #4caf50; }
.newsletter-feedback.is-error   { color: #e74c3c; }
@media (max-width: 700px) {
    .newsletter-inner {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    .newsletter-form { flex-direction: column; }
    .newsletter-input { width: 100%; }
    .newsletter-btn { width: 100%; }
}

/* Social */
.social-section {
    background: #0a0a0a;
    border-top: 1px solid #1e1e1e;
    padding: 28px 0;
}
.social-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.social-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
    white-space: nowrap;
    margin: 0;
}
.social-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.social-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid #222;
    color: #aaa;
    text-decoration: none;
    font-size: 0.85rem;
    transition: border-color .2s, color .2s;
}
.social-link:hover { border-color: #555; color: #fff; }
.social-link svg { width: 16px; height: 16px; flex-shrink: 0; }
@media (max-width: 700px) {
    .social-inner { align-items: center; gap: 14px; }
    .social-link span { display: none; }
    .social-link { padding: 10px; }
    .social-link svg { width: 20px; height: 20px; }
}

/* Footer */
.site-footer {
    background: #000;
    color: #666;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #222;
}

main#main-content {
    min-height: calc(100vh - 220px);
}

.footer-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-static-pages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-category-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.04);
    color: #d5d5d5;
    text-decoration: none;
    font-size: 0.82rem;
    transition: background .2s, border-color .2s, color .2s;
}

.footer-static-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.04);
    color: #d5d5d5;
    text-decoration: none;
    font-size: 0.82rem;
    transition: background .2s, border-color .2s, color .2s;
}

.footer-category-link:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.32);
    color: #fff;
}

.footer-static-link:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.32);
    color: #fff;
}

/* Persistent player bar */
.player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: #111;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    z-index: 1000;
    border-top: 1px solid #333;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.6);
}

.player-bar.hidden {
    display: none;
}

.player-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.player-info {
    flex: 1;
    min-width: 0;
}

.player-info span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    font-size: 0.95rem;
}

.player-controls {
    flex-shrink: 0;
}

.player-play-btn {
    background: none;
    border: 2px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.player-play-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.player-progress {
    flex: 2;
    min-width: 80px;
}

.player-progress input[type=range] {
    width: 100%;
    accent-color: #e74c3c;
    cursor: pointer;
}

.player-close-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    flex-shrink: 0;
}

.player-close-btn:hover {
    color: white;
}

/* Article listen button */
.article-listen-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent, #f43f5e);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 8px 18px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s;
    white-space: nowrap;
}
.article-listen-btn:hover { opacity: .82; }
.article-listen-btn .listen-icon { font-size: .9rem; }

/* Wrapper pour les cards grid5 (pour pouvoir y mettre le bouton hors du <a>) */
.articles-grid5-featured-wrap,
.articles-grid5-item-wrap {
    display: contents;
}
.articles-grid5-featured-wrap { display: flex; flex-direction: column; }
.articles-grid5-item-wrap { display: flex; flex-direction: column; }
.articles-grid5-featured-wrap .article-listen-btn,
.articles-grid5-item-wrap .article-listen-btn {
    margin: 6px 0 0 0;
    align-self: flex-start;
}

/* Track page */
.track-page-container { padding: 36px 20px 72px; }
.track-hero { display:grid; grid-template-columns: 280px 1fr; gap:28px; align-items:center; margin-bottom:28px; }
.track-cover { width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:20px; display:block; }
.track-cover--placeholder {
    display:flex;
    align-items:center;
    justify-content:center;
    background:radial-gradient(circle at top, rgba(244,63,94,.35), transparent 45%), linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
    color:#fff;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.track-kicker { margin:0 0 8px; font-size:12px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--accent,#f43f5e); }
.track-hero-info h1 { margin:0 0 8px; font-size:clamp(2rem, 4vw, 3.4rem); line-height:1.02; }
.track-artist { margin:0 0 14px; color:var(--muted,#a1a1aa); font-size:1.05rem; }
.track-meta-line { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:16px; color:var(--muted,#a1a1aa); }
.track-meta-line span { padding:5px 10px; border-radius:999px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); font-size:.85rem; }
.track-platform-links { display:flex; gap:12px; flex-wrap:wrap; }
.track-platform-links a {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:11px 16px;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    background:var(--accent,#f43f5e);
    color:#fff;
}
.track-layout { display:grid; grid-template-columns:minmax(0, 1.6fr) minmax(280px, .9fr); gap:22px; }
.track-panel {
    padding:20px;
    border-radius:18px;
    background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
    border:1px solid rgba(255,255,255,.08);
    margin-bottom:20px;
}
.track-panel h2 { margin:0 0 14px; font-size:1.05rem; }
.track-panel p { margin:0; color:var(--muted,#d0d0d8); line-height:1.65; }
.track-lyrics { margin:0; white-space:pre-wrap; word-break:break-word; font-family:inherit; line-height:1.65; color:var(--muted,#d8d8de); }
.track-plays-list { display:flex; flex-direction:column; gap:10px; }
.track-play-item { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:12px 0; border-bottom:1px solid rgba(255,255,255,.08); }
.track-play-item:last-child { border-bottom:none; padding-bottom:0; }
.track-play-radio { display:flex; align-items:center; gap:10px; min-width:0; }
.track-play-radio img,
.track-play-radio-ph {
    width:42px;
    height:42px;
    border-radius:10px;
    object-fit:cover;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.06);
    font-size:.8rem;
    font-weight:800;
}
.track-play-radio a,
.track-radio-card a { color:inherit; text-decoration:none; font-weight:700; }
.track-play-radio a:hover,
.track-radio-card a:hover { color:var(--accent,#f43f5e); }
.track-artist-image { width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:16px; display:block; }
.track-radio-summary { display:flex; flex-direction:column; gap:12px; }
.track-radio-card { padding:14px; border-radius:14px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07); }
.track-radio-card-top { display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.track-radio-card-top img,
.track-radio-card-top .track-play-radio-ph { width:42px; height:42px; border-radius:10px; object-fit:cover; }
.track-radio-card p { margin:4px 0 0; font-size:.88rem; }
.track-empty { color:var(--muted,#a1a1aa); }
@media (max-width: 900px) {
    .track-hero { grid-template-columns:1fr; }
    .track-layout { grid-template-columns:1fr; }
}

@media (max-width: 900px) {
    .container {
        max-width: calc(100vw - 20px);
        padding: 0 14px;
    }

    .site-header {
        padding: .85rem 0;
    }

    .site-header .container {
        min-height: 64px;
    }

    .site-logo {
        height: 46px;
    }

    .site-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(86vw, 360px);
        margin-left: 0;
        padding: 20px 18px 24px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 22px;
        background:
            radial-gradient(circle at top left, rgba(0,255,170,.12), transparent 42%),
            linear-gradient(180deg, rgba(10,22,28,.98), rgba(6,12,15,.98));
        border-left: 1px solid rgba(255,255,255,.08);
        box-shadow: -22px 0 50px rgba(0,0,0,.45);
        transform: translateX(104%);
        transition: transform .28s ease;
        z-index: 11;
        overflow-y: auto;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    body.mobile-menu-open .site-nav {
        transform: translateX(0);
    }

    body.mobile-menu-open .site-nav-backdrop {
        display: block;
    }

    body.mobile-menu-open .site-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.mobile-menu-open .site-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.mobile-menu-open .site-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .site-nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .site-nav a {
        display: block;
        margin: 0;
        padding: 14px 16px;
        border-radius: 16px;
        font-size: 1.02rem;
        background: rgba(255,255,255,.03);
        border: 1px solid transparent;
    }

    .site-nav a:hover,
    .site-nav a:focus-visible {
        background: rgba(255,255,255,.08);
        border-color: rgba(255,255,255,.16);
        color: #fff;
        outline: none;
    }

    .site-nav-theme {
        display: grid;
        gap: 8px;
        padding-top: 4px;
    }

    .theme-picker-label {
        font-size: 0.76rem;
    }

    .theme-select {
        width: 100%;
        min-height: 48px;
        border-radius: 16px;
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .page-section {
        padding: 2.2rem 0;
    }

    .page-section h1 {
        margin-bottom: 1.25rem;
    }

    .site-footer {
        padding: 1.4rem 0;
    }
}

@media (max-width: 640px) {
    .site-logo {
        height: 42px;
    }

    .site-header {
        padding: .7rem 0;
    }

    .site-header .container {
        min-height: 58px;
    }

    .site-menu-toggle {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .site-nav {
        width: 100%;
        padding: 18px 16px 22px;
    }

    .footer-categories,
    .footer-static-pages {
        gap: 8px;
    }
}

/* Shared front helpers */
.admin-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 8000;
    background: #f43f5e;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,.4);
    transition: background .15s, transform .15s;
}

.admin-edit-btn:hover {
    background: #e11d48;
    transform: translateY(-2px);
}

.breadcrumb {
    font-size: 13px;
    color: var(--muted, #888);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.breadcrumb a {
    color: var(--muted, #888);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent, #f43f5e);
}

.breadcrumb-sep { opacity: .5; }
.breadcrumb-current { color: var(--text, #e8e8e8); }

/* Front error page */
.front-error {
    text-align: center;
    padding: 4rem 0;
}

.front-error-message {
    margin-top: 1rem;
    color: #666;
}

.front-error-link {
    display: inline-block;
    margin-top: 2rem;
}

/* Article page */
.article-page { color: var(--text, #e8e8e8); }
.article-hero { width: 100%; max-height: 480px; overflow: hidden; }
.article-hero-img { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.article-hero-ad { width: 100%; padding: 48px 0; text-align: center; }
.article-hero-ad .ads-core-placer { display: inline-block !important; width: auto !important; }
.article-container { max-width: 1180px; margin: 0 auto; padding: 32px 20px 64px; }
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 780px) 300px;
    gap: 40px;
    align-items: start;
}
.article-main {
    min-width: 0;
}
.article-sidebar {
    min-width: 0;
    padding-top: 150px;
}
.article-ad-slot {
    position: sticky;
    top: 104px;
}
.article-ad-slot .ads-core-placer {
    min-height: 250px;
}
.article-header { margin-bottom: 36px; }
.article-category-badge {
    display: inline-block;
    background: var(--accent, #f43f5e);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.article-title { font-size: clamp(1.6rem, 4vw, 2.4rem); line-height: 1.2; margin: 0 0 16px; color: var(--text, #e8e8e8); }
.article-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--muted, #888); margin-bottom: 20px; }
.article-date::before { content: '🗓 '; }
.article-reading-time::before { content: '⏱ '; }
.article-excerpt-lead { font-size: 1.1rem; line-height: 1.6; color: var(--muted, #aaa); border-left: 3px solid var(--accent, #f43f5e); padding-left: 16px; margin: 0; }
.article-agenda-meta {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    font-size: 13px;
    color: var(--muted, #d7d7df);
}
.article-agenda-meta strong {
    color: #fff;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.article-listen-wrap { margin-top: 20px; }
.article-body { font-size: 1rem; line-height: 1.75; color: var(--text, #e0e0e0); }
.article-body h2 { font-size: 1.4rem; margin: 2rem 0 .75rem; color: var(--text, #fff); }
.article-body h3 { font-size: 1.2rem; margin: 1.5rem 0 .5rem; color: var(--text, #fff); }
.article-body p { margin: 0 0 1.2rem; }
.article-body a {
    color: var(--accent, #f43f5e);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 0.14em;
}
.article-body a:hover,
.article-body a:focus-visible {
    color: color-mix(in srgb, var(--accent, #f43f5e) 72%, #ffffff 28%);
}
.article-body .youtube-link-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin: 0 0 1.2rem; }
.article-body a.youtube-modal-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--accent, #f43f5e) 45%, #ffffff 10%);
    background: color-mix(in srgb, var(--accent, #f43f5e) 12%, transparent);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}
.article-body a.youtube-modal-trigger::before {
    content: '▶';
    font-size: 12px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--accent, #f43f5e);
    color: #fff;
}
.article-body a.youtube-modal-trigger:hover { opacity: .9; text-decoration: none; }
.article-body img { max-width: 100%; border-radius: 8px; margin: 1rem 0; }
.article-body .wp-block-embed,
.article-body figure.wp-block-embed {
    margin: 1.4rem 0;
}
.article-body .wp-block-embed__wrapper {
    width: 100%;
}
.article-body .wp-block-embed__wrapper iframe,
.article-body iframe {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
    border: 0;
    display: block;
    border-radius: 10px;
    background: #000;
}
.article-contest-box {
    margin-top: 34px;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.article-contest-copy h2 {
    margin: 0 0 8px;
}
.article-contest-copy p {
    margin: 0;
    color: var(--muted, #b8b8c1);
    line-height: 1.65;
}
.article-contest-kicker {
    margin: 0 0 8px;
    color: var(--accent, #f43f5e);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.article-contest-alert {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: .92rem;
}
.article-contest-alert.is-success {
    background: rgba(16, 185, 129, .16);
    border: 1px solid rgba(16, 185, 129, .28);
    color: #d1fae5;
}
.article-contest-alert.is-error {
    background: rgba(244, 63, 94, .14);
    border: 1px solid rgba(244, 63, 94, .25);
    color: #ffe4ea;
}
.article-contest-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}
.article-contest-form label {
    display: grid;
    gap: 6px;
}
.article-contest-form label.is-wide {
    grid-column: 1 / -1;
}
.article-contest-form span {
    font-size: 12px;
    color: var(--muted, #b8b8c1);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.article-contest-form input {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    color: inherit;
    font: inherit;
}
.article-contest-submit {
    justify-self: start;
    appearance: none;
    border: 0;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f43f5e, #f59e0b);
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}
.article-body blockquote {
    border-left: 3px solid var(--accent, #f43f5e);
    margin: 1.5rem 0;
    padding: .75rem 1.25rem;
    background: var(--panel, #1a1a2e);
    border-radius: 0 8px 8px 0;
    color: var(--muted, #ccc);
    font-style: italic;
}
.article-body ul,
.article-body ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.article-body li { margin-bottom: .4rem; }
.article-footer { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line, #2a2a2a); }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.article-tag {
    background: var(--panel, #1a1a2e);
    color: var(--muted, #aaa);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--line, #2a2a2a);
}

/* Video modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: none;
    pointer-events: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.video-modal.is-open { display: flex; pointer-events: auto; }
.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(8px);
}
.video-modal-dialog {
    position: relative;
    width: min(960px, 100%);
    background: #0f0f13;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
    overflow: hidden;
}
.video-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.video-modal-title { color: #fff; font-size: 14px; font-weight: 700; line-height: 1.4; }
.video-modal-close {
    appearance: none;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.video-modal-frame-wrap { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.video-modal-frame-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
body.video-modal-open { overflow: hidden; }

/* Static page */
.static-page-container { max-width: 860px; margin: 0 auto; padding: 36px 20px 72px; }
.static-page-header { margin-bottom: 28px; }
.static-page-title { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.15; margin: 0 0 10px; }
.static-page-date { display: block; font-size: 13px; color: var(--muted, #888); margin-bottom: 18px; }
.static-page-excerpt {
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--muted, #aaa);
    border-left: 3px solid var(--accent, #f43f5e);
    padding-left: 16px;
    margin: 0;
}
.static-page-body { font-size: 1rem; line-height: 1.8; color: var(--text, #e0e0e0); }
.static-page-body h2 { font-size: 1.45rem; margin: 2rem 0 .8rem; }
.static-page-body h3 { font-size: 1.2rem; margin: 1.4rem 0 .6rem; }
.static-page-body p { margin: 0 0 1.2rem; }
.static-page-body a { color: var(--accent, #f43f5e); }
.static-page-body ul,
.static-page-body ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.static-page-body li { margin-bottom: .4rem; }
.static-page-body img { max-width: 100%; height: auto; border-radius: 10px; margin: 1rem 0; }
.static-page-body blockquote {
    border-left: 3px solid var(--accent, #f43f5e);
    margin: 1.5rem 0;
    padding: .75rem 1.25rem;
    background: var(--panel, #1a1a2e);
    border-radius: 0 8px 8px 0;
    color: var(--muted, #ccc);
    font-style: italic;
}

/* Frequencies page */
.frequencies-container {
    padding: 36px 20px 72px;
}
.frequencies-header {
    max-width: 820px;
    margin: 0 auto 32px;
    text-align: center;
}
.frequencies-kicker {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent, #f43f5e);
}
.frequencies-header h1 {
    margin: 0 0 14px;
    font-size: clamp(2.4rem, 8vw, 5.6rem);
    line-height: .95;
    text-transform: uppercase;
}
.frequencies-intro {
    margin: 0 auto;
    max-width: 720px;
    color: var(--muted, #a1a1aa);
    line-height: 1.7;
}
.frequencies-meta,
.frequencies-source {
    margin-top: 14px;
    font-size: .92rem;
    color: var(--muted, #8b8b95);
}
.frequencies-source {
    text-align: center;
}
.frequencies-source a {
    color: var(--accent, #f43f5e);
}
.frequencies-layout {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(320px, 1fr);
    gap: 28px;
    align-items: start;
}
.frequencies-list,
.frequencies-display {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(244,63,94,.12), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
    backdrop-filter: blur(10px);
}
.frequencies-list {
    display: grid;
    gap: 4px;
    max-height: 72vh;
    overflow: auto;
    padding: 18px;
}
.frequencies-city {
    appearance: none;
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text, #fff);
    font: inherit;
    font-size: clamp(1.05rem, 2vw, 1.55rem);
    font-weight: 800;
    letter-spacing: -.02em;
    text-transform: uppercase;
    text-align: left;
    padding: 10px 12px;
    border-radius: 14px;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}
.frequencies-city::before {
    content: '›';
    display: inline-block;
    width: 22px;
    color: transparent;
    transform: translateX(-4px);
    transition: color .18s ease, transform .18s ease;
}
.frequencies-city:hover,
.frequencies-city:focus-visible,
.frequencies-city.is-active {
    background: rgba(255,255,255,.04);
    color: var(--accent, #ff4b48);
    outline: none;
}
.frequencies-city:hover::before,
.frequencies-city:focus-visible::before,
.frequencies-city.is-active::before {
    color: var(--accent, #ff4b48);
    transform: translateX(0);
}
.frequencies-display {
    min-height: 100%;
    padding: clamp(28px, 5vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.frequencies-display-label {
    margin: 0 0 10px;
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted, #9ca3af);
}
.frequencies-display-value {
    margin: 0;
    font-size: clamp(3.8rem, 13vw, 9rem);
    line-height: .88;
    font-weight: 900;
    letter-spacing: -.05em;
    color: var(--accent, #ff4b48);
    word-break: break-word;
}
.frequencies-display-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.frequencies-badge {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.frequencies-badge.is-visible {
    display: inline-flex;
}
.frequencies-display-note {
    margin: 18px 0 0;
    max-width: 36ch;
    color: var(--muted, #c4c4cf);
    line-height: 1.7;
}
@media (max-width: 960px) {
    .frequencies-layout {
        grid-template-columns: 1fr;
    }
    .frequencies-list {
        max-height: none;
    }
    .frequencies-display {
        min-height: 280px;
    }
}

/* Shop page */
.shop-page-container { padding: 36px 20px 72px; }
.shop-page-header { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
.shop-kicker { margin: 0 0 8px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent, #f43f5e); }
.shop-page-header h1 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; }
.shop-intro { margin: 0; max-width: 720px; color: var(--muted, #a1a1aa); line-height: 1.7; }
.shop-page-cta,
.shop-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    background: var(--accent, #f43f5e);
    color: #fff;
    transition: opacity .2s;
}
.shop-page-cta:hover,
.shop-card-link:hover { opacity: .88; }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.shop-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    overflow: hidden;
}
.shop-card-media img,
.shop-card-placeholder { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.shop-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, rgba(244,63,94,.35), transparent 45%), linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
    color: #fff;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.shop-card-body { display: flex; flex: 1; flex-direction: column; gap: 12px; padding: 16px; }
.shop-card-body h2 { margin: 0; font-size: 1rem; line-height: 1.35; }
.shop-card-body h2 a { color: inherit; text-decoration: none; }
.shop-card-body h2 a:hover { color: var(--accent, #f43f5e); }
.shop-card-variant { margin: -6px 0 0; color: var(--muted, #a1a1aa); font-size: .9rem; }
.shop-card-meta { display: flex; justify-content: space-between; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: auto; }
.shop-card-price { font-size: 1rem; }
.shop-card-stock { color: var(--muted, #a1a1aa); font-size: .85rem; }
.shop-empty { padding: 28px; border-radius: 18px; background: var(--panel, #171717); border: 1px solid rgba(255,255,255,.08); }
.shop-empty p { margin-top: 0; }
.shop-empty a { color: var(--accent, #f43f5e); }

/* Tracks page */
.tracks-page {
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, .16), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(244, 63, 94, .18), transparent 26%),
        linear-gradient(180deg, rgba(255,255,255,.03), transparent 40%);
}
.tracks-page-container { padding: 36px 20px 72px; }
.tracks-hero { display:grid; grid-template-columns:minmax(0, 1.4fr) minmax(260px, .7fr); gap:24px; align-items:stretch; margin-bottom:28px; }
.tracks-hero-copy,
.tracks-count-card,
.tracks-note-card,
.track-card,
.tracks-empty {
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 45px rgba(0,0,0,.14);
}
.tracks-hero-copy {
    padding:30px;
    border-radius:26px;
    background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.015)), radial-gradient(circle at 20% 10%, rgba(244,63,94,.22), transparent 30%);
}
.tracks-kicker { margin:0 0 10px; font-size:12px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:#f59e0b; }
.tracks-hero-copy h1 { margin:0 0 14px; font-size:clamp(2.2rem, 5vw, 4.3rem); line-height:.95; max-width:10ch; }
.tracks-intro { margin:0; max-width:60ch; color:var(--muted,#b2b2ba); line-height:1.75; font-size:1.02rem; }
.tracks-hero-side { display:grid; gap:16px; }
.tracks-count-card,
.tracks-note-card { border-radius:22px; padding:22px; background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); }
.tracks-count-card strong { display:block; font-size:2.3rem; line-height:1; margin-bottom:8px; }
.tracks-count-card span,
.tracks-note-card p { color:var(--muted,#b2b2ba); margin:0; line-height:1.6; }
.tracks-toolbar { margin-bottom:24px; }
.tracks-search { display:flex; gap:12px; flex-wrap:wrap; }
.tracks-search input {
    flex:1;
    min-width:220px;
    padding:14px 16px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.04);
    color:inherit;
}
.tracks-search button,
.tracks-reset,
.track-card-more {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 18px;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    border:none;
}
.tracks-search button,
.track-card-more { background:linear-gradient(135deg, #f43f5e, #f59e0b); color:#fff; }
.tracks-reset { background:rgba(255,255,255,.06); color:inherit; }
.track-card-placeholder {
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    background: radial-gradient(circle at top, rgba(245,158,11,.34), transparent 42%), radial-gradient(circle at 70% 25%, rgba(244,63,94,.30), transparent 34%), linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.015));
}
.track-card-body h2 a { color:inherit; text-decoration:none; }
.track-card-body h2 a:hover { color:#f59e0b; }
.track-card-id { margin:0; color:var(--muted,#a1a1aa); font-size:.84rem; }
.track-card-id span { margin-left:10px; }
.track-card-description { margin:0; color:var(--muted,#d5d5dc); line-height:1.68; }
.tracks-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(280px, 1fr)); gap:20px; }
.track-card { display:flex; flex-direction:column; border-radius:22px; overflow:hidden; background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); }
.track-card-media img,
.track-card-placeholder { width:100%; aspect-ratio: 4 / 3; object-fit:cover; display:block; }
.track-card-media {
    overflow: hidden;
}
.track-card-media img {
    transform: scale(1);
    transition: transform .28s ease;
}
.track-card-body { display:flex; flex-direction:column; gap:14px; padding:18px; flex:1; }
.track-card-artist { margin:0; color:#f59e0b; text-transform:uppercase; font-size:.72rem; font-weight:700; letter-spacing:.12em; }
.track-card-body h2 { margin:0; font-size:1.22rem; line-height:1.18; }
.track-card-badges { display:flex; flex-wrap:wrap; gap:8px; }
.track-card-badges span {
    padding:4px 8px;
    border-radius:999px;
    font-size:11px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    color:var(--muted,#c8c8d0);
}
.track-card-links { display:flex; gap:12px; flex-wrap:wrap; align-items:center; }
.track-card-links a { color:#f59e0b; text-decoration:none; font-weight:700; }
.track-card-links a:hover { text-decoration:underline; }
.track-card-footer { margin-top:auto; display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap; }
.tracks-empty { padding:30px; border-radius:22px; background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); }
.tracks-pagination { display:flex; gap:8px; flex-wrap:wrap; margin-top:30px; }
.tracks-pagination a {
    min-width:42px;
    padding:10px 12px;
    text-align:center;
    border-radius:12px;
    text-decoration:none;
    background:rgba(255,255,255,.04);
    color:inherit;
    border:1px solid rgba(255,255,255,.08);
}
.tracks-pagination a.is-active { background:linear-gradient(135deg, #f43f5e, #f59e0b); color:#fff; border-color:transparent; }

/* Agenda page */
.agenda-page {
    background:
        radial-gradient(circle at top right, rgba(244,63,94,.14), transparent 24%),
        radial-gradient(circle at 10% 10%, rgba(245,158,11,.12), transparent 22%),
        linear-gradient(180deg, rgba(255,255,255,.03), transparent 35%);
}
.agenda-page-container { padding: 36px 20px 72px; }
.agenda-page-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 24px;
}
.agenda-page-copy { max-width: 760px; }
.agenda-page-kicker {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #f59e0b;
}
.agenda-page-header h1 { margin: 0 0 12px; font-size: clamp(2rem, 5vw, 3.8rem); line-height: .96; }
.agenda-page-intro { margin: 0; color: var(--muted, #b9b9c2); line-height: 1.7; }
.agenda-view-switch {
    display: inline-flex;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}
.agenda-view-switch a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 10px 14px;
    border-radius: 999px;
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}
.agenda-view-switch a.is-active {
    background: linear-gradient(135deg, #f43f5e, #f59e0b);
    color: #fff;
}
.agenda-month-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}
.agenda-month-bar h2 { margin: 0; font-size: clamp(1.2rem, 2vw, 1.7rem); }
.agenda-month-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: inherit;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}
.agenda-calendar-shell,
.agenda-list-card,
.agenda-empty {
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
}
.agenda-calendar-shell {
    border-radius: 22px;
    overflow: hidden;
}
.agenda-calendar-head,
.agenda-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}
.agenda-calendar-head div {
    padding: 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted, #a6a6af);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.agenda-calendar-day {
    min-height: 152px;
    padding: 10px;
    border-right: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.agenda-calendar-day:nth-child(7n) { border-right: none; }
.agenda-calendar-day.is-muted { background: rgba(255,255,255,.015); }
.agenda-calendar-date {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--muted, #d8d8df);
}
.agenda-calendar-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.agenda-calendar-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    background: rgba(255,255,255,.05);
}
.agenda-calendar-item:hover { background: rgba(255,255,255,.09); }
.agenda-calendar-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}
.agenda-calendar-time {
    color: #f59e0b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.agenda-calendar-item span {
    color: var(--muted, #bbbbc4);
    font-size: 12px;
    line-height: 1.45;
}
.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.agenda-list-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
}
.agenda-list-media img,
.agenda-list-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}
.agenda-list-media {
    overflow: hidden;
}
.agenda-list-media img {
    transform: scale(1);
    transition: transform .28s ease;
}
.agenda-list-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(244,63,94,.28), rgba(245,158,11,.18));
    color: #fff;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.agenda-list-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.agenda-list-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--muted, #a7a7b0);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.agenda-list-body h3 { margin: 0; font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1.15; }
.agenda-list-body h3 a { color: inherit; text-decoration: none; }
.agenda-list-body h3 a:hover { color: #f59e0b; }
.agenda-list-category {
    margin: 0;
    color: #f59e0b;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
}
.agenda-list-location,
.agenda-list-excerpt {
    margin: 0;
    color: var(--muted, #cbcbd4);
    line-height: 1.68;
}
.agenda-empty {
    padding: 26px;
    border-radius: 18px;
}

/* What was that page */
.wwt-page {
    padding: 3rem 0 4rem;
    background: radial-gradient(circle at top left, color-mix(in srgb, var(--accent, #e5001c) 10%, transparent) 0%, transparent 34%), linear-gradient(180deg, color-mix(in srgb, var(--panel, #17171c) 72%, transparent), transparent 40%);
}
.wwt-hero { text-align: center; margin-bottom: 2.5rem; }
.wwt-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; letter-spacing: -.02em; }
.wwt-subtitle { color: var(--muted, #8a8a93); margin-top: .5rem; }
.wwt-radio-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
.wwt-radio-tile { display: flex; flex-direction: column; align-items: center; gap: .5rem; text-decoration: none; color: inherit; width: 100px; transition: transform .15s, opacity .15s; }
.wwt-radio-tile:hover { transform: translateY(-3px); opacity: .95; }
.wwt-radio-tile--active .wwt-radio-img { outline: 3px solid var(--accent, #e5001c); outline-offset: 3px; }
.wwt-radio-tile--active .wwt-radio-name { color: var(--accent, #e5001c); font-weight: 700; }
.wwt-radio-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    background: var(--panel, #18181e);
    border: 1px solid color-mix(in srgb, var(--text, #fff) 8%, transparent);
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.wwt-radio-img--placeholder { background: var(--panel2, #222); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.wwt-radio-name { font-size: .75rem; text-align: center; line-height: 1.3; }
.wwt-section-title { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--accent, #e5001c); margin-bottom: 1rem; }
.wwt-now { margin-bottom: 2.5rem; }
.wwt-now-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: color-mix(in srgb, var(--panel, #1a1a1a) 92%, transparent);
    border: 1px solid color-mix(in srgb, var(--text, #fff) 8%, transparent);
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 18px 40px rgba(0,0,0,.14);
}
.wwt-now-cover-wrap { flex-shrink: 0; }
.wwt-now-cover { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
.wwt-cover-ph { background: var(--panel2, #222); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.wwt-now-info { display: flex; flex-direction: column; gap: .3rem; min-width: 0; }
.wwt-now-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent, #e5001c); font-weight: 700; }
.wwt-now-artist { font-size: .85rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.wwt-now-song { font-size: 1.2rem; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.btn-play-inline {
    margin-top: .5rem;
    padding: .4rem 1rem;
    border-radius: 20px;
    background: var(--accent, #e5001c);
    color: #fff;
    border: none;
    font-size: .85rem;
    font-weight: 700;
    cursor: pointer;
    width: fit-content;
}
.btn-play-inline:hover { opacity: .85; }
.wwt-date-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; margin-bottom: 1rem; }
.wwt-date-form { display: flex; align-items: center; gap: .5rem; }
.wwt-date-input {
    padding: .55rem .75rem;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--text, #fff) 12%, transparent);
    background: color-mix(in srgb, var(--panel, #1a1a1a) 92%, transparent);
    color: inherit;
    font-size: .9rem;
}
.wwt-date-reset { font-size: .85rem; color: var(--muted); text-decoration: none; }
.wwt-date-reset:hover { color: var(--accent); }
.wwt-empty {
    color: var(--muted);
    background: color-mix(in srgb, var(--panel, #1a1a1a) 92%, transparent);
    border: 1px solid color-mix(in srgb, var(--text, #fff) 8%, transparent);
    border-radius: 16px;
    padding: 1rem 1.2rem;
}
.wwt-plays {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: color-mix(in srgb, var(--panel, #1a1a1a) 92%, transparent);
    border: 1px solid color-mix(in srgb, var(--text, #fff) 8%, transparent);
    border-radius: 18px;
    overflow: hidden;
}
.wwt-day-group { margin-bottom: 1.5rem; padding: 0 1rem 1rem; }
.wwt-day-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding: .5rem 0; border-bottom: 1px solid var(--border, #333); margin-bottom: .5rem; }
.wwt-play-item { display: flex; align-items: center; gap: 1rem; padding: .8rem 1rem; border-bottom: 1px solid var(--border-light, #26262d); }
.wwt-play-item:last-child { border-bottom: none; }
.wwt-play-time { font-size: .85rem; color: var(--muted); width: 3.2rem; flex-shrink: 0; font-variant-numeric: tabular-nums; }
.wwt-play-cover { width: 44px; height: 44px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.wwt-play-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.wwt-play-artist { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wwt-play-title { font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wwt-play-links { display:flex; gap:10px; flex-wrap:wrap; margin-top:4px; }
.wwt-play-links a { color: var(--accent, #e5001c); text-decoration: none; font-size: .8rem; font-weight: 700; }
.wwt-play-links a:hover { text-decoration: underline; }
body.theme-light .wwt-page {
    background: radial-gradient(circle at top left, rgba(229, 0, 28, .08) 0%, transparent 34%), linear-gradient(180deg, rgba(255,255,255,.45), transparent 40%);
}
body.theme-light .wwt-now-card,
body.theme-light .wwt-plays,
body.theme-light .wwt-empty,
body.theme-light .wwt-date-input,
body.theme-light .wwt-radio-img {
    background: #fffaf0;
    border-color: #ddd0bc;
    box-shadow: 0 12px 28px rgba(77, 57, 25, .08);
}
body.theme-light .wwt-cover-ph,
body.theme-light .wwt-radio-img--placeholder { background: #e8dcc9; color: #7a6f60; }
body.theme-light .wwt-day-label,
body.theme-light .wwt-play-item { border-color: #e5d9c8; }

/* Video playlist page */
.video-playlist-page { color: var(--text, #e8e8e8); }
.video-playlist-container { max-width: min(1680px, calc(100vw - 32px)); margin: 0 auto; padding: 32px 24px 64px; }
.video-playlist-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 28px; }
.video-playlist-kicker { margin: 0 0 8px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent, #f43f5e); font-weight: 700; }
.video-playlist-header h1 { margin: 0 0 12px; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1; }
.video-playlist-description { margin: 0; max-width: 760px; color: var(--muted, #aaa); line-height: 1.7; }
.video-playlist-external {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--accent, #f43f5e);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}
.video-playlist-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.video-playlist-empty { color: var(--muted); }
.video-card { border-radius: 14px; overflow: hidden; background: var(--panel, #12151d); border: 1px solid rgba(255,255,255,.06); }
.video-card-media { position: relative; }
.video-card-media img { width: 100%; aspect-ratio: var(--thumb-ratio, 16/9); object-fit: cover; display: block; }
.video-card-media {
    overflow: hidden;
}
.video-card-media img {
    transform: scale(1);
    transition: transform .28s ease;
}
.video-card-body { padding: 14px 16px 18px; }
.video-card-body h2 { font-size: 1rem; line-height: 1.4; margin: 0 0 10px; }
.video-card-meta { display: flex; gap: 12px; flex-wrap: wrap; color: var(--muted, #888); font-size: 12px; margin-bottom: 12px; }
.video-card-link { color: var(--accent, #f43f5e); text-decoration: none; font-weight: 600; }
.video-play-link { display: block; position: relative; }
.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    background: rgba(0,0,0,.35);
    border-radius: 0;
    opacity: 0;
    transition: opacity .2s;
}
.video-play-link:hover .video-play-btn { opacity: 1; }

@media (hover: hover) and (pointer: fine) {
    .slide-media:hover img,
    .card-media:hover img,
    .track-card-media:hover img,
    .agenda-list-media:hover img,
    .video-card-media:hover img,
    .video-play-link:hover img {
        transform: scale(1.045);
    }
}

@media (max-width: 980px) {
    .video-playlist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .article-sidebar {
        display: none;
        padding-top: 0;
    }
    .tracks-hero { grid-template-columns:1fr; }
    .agenda-page-header,
    .agenda-list-card { grid-template-columns: 1fr; }
    .agenda-page-header { align-items: start; }
    .agenda-calendar-head,
    .agenda-calendar-grid { grid-template-columns: 1fr; }
    .agenda-calendar-head { display: none; }
    .agenda-calendar-day {
        min-height: 0;
        border-right: none;
    }

    .slider {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }

    .slider::-webkit-scrollbar {
        display: none;
    }

    .slider-container {
        width: max-content;
        min-width: 100%;
        gap: 12px;
        padding-right: 14px;
        transition: none;
        transform: none !important;
    }

    .slide {
        margin-right: 0;
        scroll-snap-align: start;
    }

    .slider-btn {
        display: none;
    }

    .radios-page {
        padding-top: 1.5rem;
    }

    .radios-page h1 {
        margin-bottom: 1.1rem;
        font-size: clamp(2rem, 8vw, 2.6rem);
    }

    .radio-cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
    }

    .radio-card {
        border-radius: 18px;
    }

    .radio-card-body {
        min-height: 0;
        padding: 14px 14px 16px;
        gap: 10px;
    }

    .radio-now-playing {
        grid-template-columns: 48px 1fr;
        gap: 10px;
        padding-top: 8px;
    }

    .radio-now-playing-cover-wrap,
    .radio-now-playing-cover {
        width: 48px;
        height: 48px;
    }

    .tracks-page-container,
    .agenda-page-container {
        padding: 22px 0 52px;
    }

    .tracks-hero,
    .agenda-page-header {
        gap: 18px;
        margin-bottom: 18px;
    }

    .tracks-hero-copy {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .tracks-hero-copy h1,
    .agenda-page-header h1 {
        max-width: none;
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .tracks-intro,
    .agenda-page-intro {
        font-size: .96rem;
        line-height: 1.65;
    }

    .tracks-hero-side {
        grid-template-columns: 1fr 1fr;
    }

    .tracks-count-card,
    .tracks-note-card {
        padding: 18px;
        border-radius: 18px;
    }

    .tracks-toolbar {
        margin-bottom: 18px;
    }

    .tracks-search {
        gap: 10px;
    }

    .tracks-search input {
        min-width: 0;
        width: 100%;
        padding: 13px 14px;
        border-radius: 14px;
    }

    .tracks-search button,
    .tracks-reset,
    .track-card-more {
        min-height: 46px;
        padding: 11px 16px;
    }

    .tracks-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }

    .track-card {
        border-radius: 18px;
    }

    .track-card-body {
        gap: 12px;
        padding: 16px;
    }

    .track-card-body h2 {
        font-size: 1.08rem;
    }

    .track-card-description {
        font-size: .92rem;
        line-height: 1.58;
    }

    .agenda-view-switch {
        width: 100%;
    }

    .agenda-view-switch a {
        flex: 1;
        min-width: 0;
    }

    .agenda-month-bar {
        gap: 12px;
        margin-bottom: 14px;
    }

    .agenda-month-nav {
        min-height: 44px;
        padding: 10px 13px;
    }

    .agenda-calendar-shell {
        border-radius: 18px;
    }

    .agenda-calendar-day {
        padding: 12px;
    }

    .agenda-calendar-date {
        margin-bottom: 8px;
        font-size: 12px;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: #f59e0b;
    }

    .agenda-calendar-items {
        gap: 10px;
    }

    .agenda-calendar-item {
        padding: 10px;
        border-radius: 14px;
    }

    .agenda-calendar-thumb {
        border-radius: 10px;
    }

    .agenda-list {
        gap: 14px;
    }

    .agenda-list-card {
        border-radius: 18px;
    }

    .agenda-list-media img,
    .agenda-list-placeholder {
        min-height: 180px;
    }

    .agenda-list-body {
        padding: 18px 16px;
        gap: 8px;
    }
}

@media (max-width: 700px) {
    .container {
        max-width: none;
        padding: 0 14px;
    }

    .feed-slider {
        margin-bottom: 2rem;
    }

    .feed-slider > h2,
    .feed-slider > h3,
    .radios-section h2 {
        margin-bottom: .8rem;
    }

    .home-horizontal-slider {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 6px;
    }

    .home-horizontal-slider::-webkit-scrollbar {
        display: none;
    }

    .home-horizontal-slider .home-slider-track {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(84vw, 84vw);
        gap: 14px;
        width: max-content;
        min-width: 100%;
        padding-right: 14px;
        transition: none;
        transform: none !important;
    }

    .home-horizontal-slider .home-card-slide,
    .home-horizontal-slider .radio-slide {
        min-width: 0;
        width: 84vw;
        margin-right: 0;
        scroll-snap-align: start;
    }

    .home-horizontal-slider .slider-btn {
        display: none;
    }

    .slide h3,
    .slide h4,
    .radio-slide-title {
        white-space: normal;
        overflow: visible;
        text-overflow: initial;
        text-align: left;
    }

    .radio-slide .now-playing-track,
    .article-excerpt,
    .card-desc {
        min-height: 0;
        -webkit-line-clamp: unset;
        display: block;
    }

    .radio-slide-title {
        min-height: 0;
        margin-top: 10px;
    }

    .radio-slide .now-playing-track {
        margin-top: 6px;
    }

    .article-slide-link,
    .shop-slide-link {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .article-slide-link h4,
    .shop-slide-link h4,
    .video-card-body h2 {
        font-size: 1rem;
        line-height: 1.35;
    }

    .article-listen-btn,
    .btn-episodes,
    .podcast-featured-btn,
    .articles-hero-btn {
        width: 100%;
        justify-content: center;
    }

    .podcast-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .podcast-hero-btn-secondary {
        text-align: center;
    }
    .podcast-hero-title { font-size: 1.4rem; }

    .podcast-featured-header {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 18px;
    }

    .podcast-featured-cover {
        order: 1;
    }

    .podcast-featured-cover a,
    .podcast-featured-cover img,
    .podcast-featured-cover .placeholder-image {
        width: 100%;
        display: block;
    }

    .podcast-featured-cover img,
    .podcast-featured-cover .placeholder-image {
        aspect-ratio: 1 / 1;
        height: auto;
    }

    .podcast-featured-info {
        order: 2;
        gap: 10px;
    }

    .podcast-featured-desc {
        font-size: .92rem;
        line-height: 1.55;
    }

    .shop-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .shop-section-link {
        font-size: .82rem;
    }

    .shop-page-header { align-items: start; flex-direction: column; }
    .video-playlist-header { flex-direction: column; }
    .video-playlist-grid { grid-template-columns: 1fr; }
    .agenda-month-bar { flex-direction: column; align-items: start; }
    .agenda-view-switch { width: 100%; }
    .agenda-view-switch a { flex: 1; }
    .article-contest-box {
        padding: 18px 16px;
        border-radius: 18px;
    }
    .article-contest-form {
        grid-template-columns: 1fr;
    }
    .article-contest-submit {
        width: 100%;
        justify-self: stretch;
    }

    .radio-cards-grid,
    .tracks-grid {
        grid-template-columns: 1fr;
    }

    .radio-card .card-desc {
        min-height: 0;
    }

    .tracks-hero-side {
        grid-template-columns: 1fr;
    }

    .tracks-search button,
    .tracks-reset {
        flex: 1 1 calc(50% - 5px);
    }

    .track-card-footer {
        align-items: stretch;
    }

    .track-card-links,
    .track-card-more {
        width: 100%;
    }

    .track-card-more {
        justify-content: center;
    }

    .agenda-calendar-item {
        gap: 7px;
    }

    .agenda-calendar-item strong {
        line-height: 1.25;
    }

    .agenda-list-media img,
    .agenda-list-placeholder {
        min-height: 160px;
    }
}

@media (max-width: 520px) {
    .tracks-page-container,
    .agenda-page-container {
        padding: 18px 0 44px;
    }

    .breadcrumb {
        font-size: .82rem;
        margin-bottom: .8rem;
    }

    .tracks-hero-copy,
    .tracks-count-card,
    .tracks-note-card,
    .agenda-calendar-shell,
    .agenda-list-card,
    .tracks-empty {
        box-shadow: 0 10px 26px rgba(0,0,0,.12);
    }

    .tracks-hero-copy {
        padding: 18px 16px;
    }

    .tracks-kicker,
    .agenda-page-kicker {
        font-size: 11px;
        letter-spacing: .14em;
    }

    .tracks-count-card strong {
        font-size: 2rem;
    }

    .tracks-note-card p,
    .agenda-list-excerpt,
    .agenda-list-location {
        font-size: .92rem;
        line-height: 1.58;
    }

    .track-card-badges {
        gap: 6px;
    }

    .track-card-badges span {
        font-size: 10px;
    }

    .agenda-month-nav,
    .agenda-view-switch a {
        font-size: .9rem;
    }
}

/* ============================================================
   Habillage publicitaire (arche)
   ============================================================ */

/* Couleur de fond du site-wrap par thème (masque l'arche derrière le contenu) */
:root                  { --arch-wrap-bg: #000; }
body.theme-light       { --arch-wrap-bg: #f5f1e8; }
body.theme-gamer       { --arch-wrap-bg: #031019; }
body.theme-synthwave   { --arch-wrap-bg: #0d0018; }
body.theme-msdos,
body.theme-msdos-red   { --arch-wrap-bg: #000080; }
body.theme-the-matrix  { --arch-wrap-bg: #000; }

/* Élément de fond cliquable — caché par défaut */
#arch-background {
    display: none;
}

/* Site-wrap — aucun style par défaut */
#site-wrap {
    /* transparent par défaut */
}

/* Quand l'arche est visible (classe ajoutée par JS selon la largeur d'écran) */
body.arch-visible #arch-background {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image: var(--arch-bg-image);
    background-size: auto 100vh;
    background-position: center top;
    background-repeat: no-repeat;
    cursor: pointer;
    text-decoration: none;
    color: transparent;
    font-size: 0;
    overflow: hidden;
}

body.arch-visible #site-wrap {
    position: relative;
    z-index: 1;
    max-width: var(--arch-content-width, 1280px);
    margin-left: auto;
    margin-right: auto;
    background: transparent;
    min-height: 100vh;
}

/* Header transparent : l'arche est visible à travers la barre de navigation
   (#site-wrap dans le sélecteur pour surpasser la spécificité des thèmes) */
body.arch-visible #site-wrap .site-header {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

/* Header scrollé : s'opacifie avec un léger flou */
body.arch-visible.header-scrolled #site-wrap .site-header {
    background: rgba(0, 0, 0, 0.82) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4) !important;
}

/* Espace entre le header et le contenu : révèle l'arche */
body.arch-visible main#main-content {
    margin-top: 60px;
    background: var(--arch-wrap-bg, #000);
}

/* Footer sur fond solide pour rester lisible */
body.arch-visible .site-footer {
    background: var(--arch-wrap-bg, #000);
}

/* ===== GRILLE — ACTIONS BUTTONS ===== */
.grille-program-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}
.grille-program-btn--secondary {
    background: transparent;
    border: 2px solid var(--accent, #e74c3c);
    color: var(--accent, #e74c3c);
}
.grille-program-btn--secondary:hover { opacity: .75; }
.grille-program-title a {
    color: inherit;
    text-decoration: none;
}
.grille-program-title a:hover { opacity: .8; }

/* ===== EMISSION PAGE ===== */
.emission-header-section {
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--panel2, #1a1a1a);
}
.emission-header {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: flex-start;
}
.emission-cover {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    flex-shrink: 0;
}
.emission-cover--placeholder {
    background: var(--panel2, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--muted, #888);
}
.emission-kicker {
    margin: 0 0 8px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--accent, #e74c3c);
}
.emission-header-info h1 {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.1;
}
.emission-presenter {
    margin: 0 0 12px;
    font-size: 1rem;
    color: var(--muted, #888);
    font-style: italic;
}
.emission-schedule {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    font-size: .9rem;
    font-family: 'IBM Plex Mono', monospace;
    color: var(--muted, #888);
}
.emission-schedule-sep { opacity: .5; }
.emission-description {
    margin: 0 0 24px;
    line-height: 1.7;
    color: var(--text-secondary, #ccc);
    max-width: 600px;
}
.emission-header-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.emission-episodes-section,
.emission-videos-section {
    padding: 48px 0;
    border-bottom: 1px solid var(--panel2, #1a1a1a);
}
.emission-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
}
.emission-section-header h2 {
    margin: 0;
    font-size: 1.4rem;
}
.emission-see-all {
    color: var(--accent, #e74c3c);
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}
.emission-see-all:hover { opacity: .8; }
.emission-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .emission-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .emission-cover {
        width: 200px;
        height: 200px;
    }
    .emission-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .emission-header-section { padding: 28px 0 24px; }
    .emission-cover { width: 160px; height: 160px; border-radius: 12px; }
    .emission-videos-grid { grid-template-columns: 1fr; }
}
