/*
Theme Name: Pantherholiker – Underground Broadcast
Author: Pantherholiker
Version: 40.0
*/

/* ================================================================
   CUSTOM FONT
   ================================================================ */
@font-face {
    font-family: 'Adumu';
    src: url('Adumu.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ================================================================
   DESIGN TOKENS — DARK MODE (default)
   ================================================================ */
:root,
[data-theme="dark"] {

    /* Surfaces */
    --s-base:    #07090e;
    --s-raised:  #0d1320;
    --s-card:    #111827;
    --s-panel:   #16202f;
    --s-border:  rgba(255,255,255,0.08);
    --s-hover:   rgba(255,255,255,0.04);

    /* Brand */
    --brand-cyan:   #00c3ff;
    --brand-blue:   #004aad;
    --brand-navy:   #001f5e;
    --brand-red:    #e63946;

    /* Text */
    --t-primary:   #f0f4ff;
    --t-secondary: #8fa3b8;
    --t-muted:     #4e6073;
    --t-inverse:   #07090e;

    /* Glow */
    --glow-cyan:  0 0 30px rgba(0,195,255,0.35);
    --glow-blue:  0 0 30px rgba(0,74,173,0.45);

    /* Misc */
    --theme-toggle-bg:   #1a2640;
    --theme-toggle-knob: #00c3ff;
    --ticker-bg:    var(--brand-cyan);
    --ticker-text:  #07090e;
}

/* ================================================================
   LIGHT MODE OVERRIDES
   ================================================================ */
[data-theme="light"] {

    --s-base:    #f2f5fa;
    --s-raised:  #ffffff;
    --s-card:    #ffffff;
    --s-panel:   #eaf0f8;
    --s-border:  rgba(0,0,0,0.09);
    --s-hover:   rgba(0,0,0,0.04);

    --brand-cyan:   #0077cc;
    --brand-blue:   #003d99;
    --brand-navy:   #001f5e;
    --brand-red:    #cc2233;

    --t-primary:   #08111e;
    --t-secondary: #3d5166;
    --t-muted:     #8fa3b8;
    --t-inverse:   #f0f4ff;

    --glow-cyan:  0 4px 20px rgba(0,119,204,0.18);
    --glow-blue:  0 4px 20px rgba(0,61,153,0.15);

    --theme-toggle-bg:   #c9ddf2;
    --theme-toggle-knob: #0077cc;
    --ticker-bg:    var(--brand-blue);
    --ticker-text:  #ffffff;
}

/* ================================================================
   RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    transition: background-color 0.35s, color 0.35s;
}

body {
    background: var(--s-base);
    color: var(--t-primary);
    font-family: 'Outfit', 'Helvetica Neue', sans-serif;
    font-size: 17px;
    line-height: 1.72;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.35s, color 0.35s;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

h1,h2,h3,h4,h5,h6 {
    font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--t-primary);
    line-height: 1.0;
}

.container {
    width: 92%;
    max-width: 1380px;
    margin: 0 auto;
}

/* ================================================================
   TOP BAR (slim info strip)
   ================================================================ */
.top-bar {
    background: var(--brand-navy);
    height: 34px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,195,255,0.2);
    transition: background 0.35s;
}

[data-theme="light"] .top-bar {
    background: var(--brand-navy);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.ticker-wrap {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: tickerMove 28s linear infinite;
}

.ticker-track span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.75);
    padding-right: 80px;
    text-transform: uppercase;
}

.ticker-track span::before {
    content: '◆ ';
    color: var(--brand-cyan);
    font-size: 0.5rem;
    vertical-align: middle;
}

@keyframes tickerMove {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 20px;
    flex-shrink: 0;
}

/* ================================================================
   THEME TOGGLE
   ================================================================ */
.theme-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    user-select: none;
}

.theme-icon {
    font-size: 0.75rem;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.theme-toggle-wrap:hover .theme-icon { opacity: 1; }

.theme-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.theme-slider {
    position: absolute;
    inset: 0;
    background: var(--theme-toggle-bg);
    border-radius: 20px;
    transition: background 0.3s;
    cursor: pointer;
}

.theme-slider::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--theme-toggle-knob);
    top: 3px;
    left: 3px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
    box-shadow: 0 0 8px rgba(0,195,255,0.5);
}

.theme-switch input:checked + .theme-slider::before {
    transform: translateX(20px);
}

/* ================================================================
   MAIN HEADER
   ================================================================ */
.site-header {
    background: var(--s-raised);
    border-bottom: 1px solid var(--s-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 78px;
    transition: background 0.35s, border-color 0.35s, box-shadow 0.3s;
}

.site-header.scrolled {
    box-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

[data-theme="light"] .site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    margin-right: 40px;
    text-decoration: none;
}

.site-logo img {
    height: 50px;
    width: auto;
    transition: filter 0.3s, transform 0.3s;
}

[data-theme="dark"] .site-logo img {
    filter: drop-shadow(0 0 8px rgba(0,195,255,0.3));
}

.site-logo:hover img {
    transform: scale(1.04);
}

.site-title {
    font-family: 'Adumu', 'Bebas Neue', sans-serif;
    font-size: 1.65rem;
    letter-spacing: 5px;
    color: var(--t-primary);
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
    transition: color 0.2s;
}

.site-logo:hover .site-title {
    color: var(--brand-cyan);
}

/* ================================================================
   DESKTOP NAV — HORIZONTAL
   ================================================================ */
.main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0;
}

.main-nav > ul > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-nav > ul > li > a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--t-secondary);
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
}

.main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--brand-cyan);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.current-menu-item > a,
.main-nav > ul > li.current-menu-ancestor > a {
    color: var(--t-primary);
}

.main-nav > ul > li > a:hover::after,
.main-nav > ul > li.current-menu-item > a::after,
.main-nav > ul > li.current-menu-ancestor > a::after {
    transform: scaleX(1);
}

/* Dropdown arrow indicator */
.main-nav > ul > li.menu-item-has-children > a::before {
    content: ' ▾';
    font-size: 0.65em;
    opacity: 0.6;
}

/* Desktop Dropdown */
.main-nav .sub-menu {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--s-card);
    border: 1px solid var(--s-border);
    border-top: 2px solid var(--brand-cyan);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 100;
    pointer-events: none;
}

[data-theme="light"] .main-nav .sub-menu {
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.main-nav > ul > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.main-nav .sub-menu li a {
    display: block;
    padding: 11px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--t-secondary);
    border-bottom: 1px solid var(--s-border);
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

.main-nav .sub-menu li:last-child a { border-bottom: none; }

.main-nav .sub-menu li a:hover {
    background: var(--s-hover);
    color: var(--t-primary);
    padding-left: 26px;
}

/* ================================================================
   HEADER RIGHT ACTIONS
   ================================================================ */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.header-podcast-logo {
    height: 46px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.2s, transform 0.2s;
}

.header-podcast-logo:hover {
    opacity: 1;
    transform: scale(1.04);
}

/* ================================================================
   MOBILE BURGER (hidden on desktop)
   ================================================================ */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: var(--s-panel);
    border: 1px solid var(--s-border);
    border-radius: 6px;
    padding: 10px 11px;
    cursor: pointer;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
}

.burger-btn:hover {
    border-color: var(--brand-cyan);
    background: var(--s-hover);
}

.burger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--t-primary);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.2s, background 0.2s;
    transform-origin: center;
}

.burger-btn.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(0, 7px);
    background: var(--brand-cyan);
}

.burger-btn.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-btn.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(0, -7px);
    background: var(--brand-cyan);
}

/* ================================================================
   MOBILE OVERLAY NAV
   ================================================================ */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1200;
    pointer-events: none;
}

.mobile-nav-overlay.is-open {
    pointer-events: auto;
}

.mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.35s;
}

.mobile-nav-overlay.is-open .mobile-nav-backdrop {
    opacity: 1;
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(85vw, 360px);
    height: 100%;
    background: var(--s-raised);
    border-left: 1px solid var(--s-border);
    padding: 80px 32px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.is-open .mobile-nav-panel {
    transform: translateX(0);
}

.mobile-nav-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
}

.mobile-nav-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--brand-cyan);
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--s-border);
}

.mobile-nav-list > li {
    border-bottom: 1px solid var(--s-border);
}

.mobile-nav-list > li > a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 2px;
    color: var(--t-primary);
    display: block;
    padding: 10px 0;
    line-height: 1;
    transition: color 0.2s, padding-left 0.2s;
    padding-right: 40px;
}

.mobile-nav-list > li > a:hover { color: var(--brand-cyan); padding-left: 8px; }

.mobile-sub-menu {
    display: none;
    padding: 4px 0 12px 16px;
    border-left: 2px solid var(--brand-cyan);
    margin: 0 0 8px;
}

.mobile-sub-menu.is-open { display: block; }

.mobile-sub-menu a {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--t-secondary);
    padding: 7px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.15s;
}

.mobile-sub-menu a:hover { color: var(--t-primary); }

.mobile-sub-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t-muted);
    cursor: pointer;
    font-size: 0.9rem;
    transition: transform 0.25s, color 0.2s;
}

.mobile-sub-toggle.is-open { transform: rotate(180deg); color: var(--brand-cyan); }

/* ================================================================
   HERO SLIDESHOW
   ================================================================ */
.site-hero {
    position: relative;
    width: 100%;
    height: 56vh;
    min-height: 400px;
    overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroSlide 35s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-slide:nth-child(4) { animation-delay: 15s; }
.hero-slide:nth-child(5) { animation-delay: 20s; }
.hero-slide:nth-child(6) { animation-delay: 25s; }
.hero-slide:nth-child(7) { animation-delay: 30s; }

@keyframes heroSlide {
    0%   { opacity: 0; transform: scale(1.0); }
    4%   { opacity: 1; }
    20%  { opacity: 1; }
    26%  { opacity: 0; transform: scale(1.06); }
    100% { opacity: 0; }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(7,9,14,0.15) 0%,
            rgba(7,9,14,0.45) 40%,
            rgba(7,9,14,0.97) 100%
        );
    z-index: 1;
}

/* Light mode: brighter hero overlay */
[data-theme="light"] .hero-gradient {
    background:
        linear-gradient(to bottom,
            rgba(242,245,250,0.05) 0%,
            rgba(242,245,250,0.35) 50%,
            rgba(242,245,250,0.97) 100%
        );
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 50px;
    text-align: center;
}

.hero-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--brand-cyan);
    margin-bottom: 14px;
    animation: fadeUp 0.8s 0.1s both;
}

.hero-title {
    font-family: 'Adumu', 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 11vw, 11rem);
    letter-spacing: 8px;
    color: #fff;
    text-shadow: 0 4px 60px rgba(0,0,0,0.6);
    line-height: 0.9;
    animation: fadeUp 0.8s 0.2s both;
}

[data-theme="light"] .hero-title {
    color: var(--t-primary);
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-sub {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(0.9rem, 2.2vw, 1.3rem);
    letter-spacing: 5px;
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
    text-transform: uppercase;
    animation: fadeUp 0.8s 0.35s both;
}

[data-theme="light"] .hero-sub { color: var(--t-secondary); }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   PAGE HERO (single/page)
   ================================================================ */
.page-hero {
    position: relative;
    width: 100%;
    height: 44vh;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.page-hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--s-base) 0%, rgba(7,9,14,0.2) 100%);
}

[data-theme="light"] .page-hero-veil {
    background: linear-gradient(to top, var(--s-base) 0%, rgba(242,245,250,0.3) 100%);
}

.page-hero-text {
    position: relative;
    z-index: 2;
    padding: 0 0 44px;
    width: 100%;
}

.page-hero-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.kicker-cat {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--brand-cyan);
    color: var(--t-inverse);
    padding: 3px 10px;
    border-radius: 3px;
}

.kicker-date {
    font-size: 0.82rem;
    color: var(--t-muted);
    font-family: 'Outfit', sans-serif;
}

.page-hero-title {
    font-family: 'Adumu', 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 5.5rem);
    letter-spacing: 3px;
    color: var(--t-primary);
    line-height: 0.95;
}

/* ================================================================
   LAYOUT WRAPPER
   ================================================================ */
.site-main { padding: 0 0 80px; }

/* ================================================================
   PODCAST HERO SECTION
   ================================================================ */
.podcast-hero-section {
    background: var(--s-raised);
    border-bottom: 1px solid var(--s-border);
    transition: background 0.35s;
}

.podcast-hero-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 260px;
}

/* Left: Cover Column */
.phero-cover-col {
    position: relative;
    overflow: hidden;
    background: var(--brand-navy);
}

.phero-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
    opacity: 0.9;
}

.podcast-hero-inner:hover .phero-cover-img {
    transform: scale(1.04);
}

.phero-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,74,173,0.35), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phero-play-ring {
    width: 64px;
    height: 64px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    padding-left: 5px;
    backdrop-filter: blur(4px);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.podcast-hero-inner:hover .phero-play-ring {
    border-color: var(--brand-cyan);
    background: rgba(0,195,255,0.15);
    transform: scale(1.1);
}

/* Right: Info Column */
.phero-info-col {
    padding: 36px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

/* Decorative background shape */
.phero-info-col::after {
    content: '▶';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18rem;
    color: var(--brand-cyan);
    opacity: 0.025;
    line-height: 1;
    pointer-events: none;
    font-family: sans-serif;
}

.phero-tag-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.live-dot {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-red);
}

.live-dot::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--brand-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-red);
    animation: blink 2s ease-in-out infinite;
}

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

.phero-ep-num {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--t-muted);
}

.phero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    letter-spacing: 1px;
    color: var(--t-primary);
    line-height: 1.0;
}

.phero-title a { color: inherit; transition: color 0.2s; }
.phero-title a:hover { color: var(--brand-cyan); }

.phero-desc {
    font-size: 0.92rem;
    color: var(--t-secondary);
    line-height: 1.65;
    max-width: 540px;
}

.phero-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 4px;
}

/* Action Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 4px;
    transition: all 0.2s;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.btn-cyan {
    background: var(--brand-cyan);
    color: var(--t-inverse);
}

.btn-cyan:hover {
    background: var(--t-primary);
    color: var(--t-inverse);
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
}

[data-theme="light"] .btn-cyan:hover {
    background: var(--brand-blue);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--t-primary);
    border: 1px solid var(--s-border);
}

.btn-ghost:hover {
    border-color: var(--t-muted);
    background: var(--s-hover);
    transform: translateY(-2px);
}

.btn-spotify {
    background: #1DB954;
    color: #fff;
}

.btn-spotify:hover {
    background: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29,185,84,0.4);
}

.phero-platforms {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 2px;
}

.phero-platforms-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--t-muted);
}

.phero-platform-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--t-muted);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: color 0.2s, text-decoration-color 0.2s;
}

.phero-platform-link:hover {
    color: var(--t-primary);
    text-decoration-color: var(--brand-cyan);
}

/* ================================================================
   NEWS SECTION
   ================================================================ */
.news-section {
    padding-top: 60px;
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--s-border);
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--brand-cyan);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: 3px;
    color: var(--t-primary);
}

.section-cta {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-cyan);
    white-space: nowrap;
    transition: color 0.2s;
}

.section-cta:hover { color: var(--t-primary); }

/* ================================================================
   POST GRID
   ================================================================ */
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--s-border);
    border: 1px solid var(--s-border);
    border-radius: 8px;
    overflow: hidden;
}

/* Feature Post spans full width */
.post-grid .post-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 55% 1fr;
}

.post-card {
    background: var(--s-card);
    display: flex;
    flex-direction: column;
    transition: background 0.2s;
}

.post-card:hover {
    background: var(--s-panel);
}

/* Thumbnail */
.post-thumb {
    position: relative;
    overflow: hidden;
    background: var(--s-panel);
}

/* Feature thumb: fills height */
.post-card:first-child .post-thumb {
    height: 100%;
    min-height: 340px;
}

/* Standard thumb: 16:9 */
.post-card:not(:first-child) .post-thumb {
    aspect-ratio: 16/10;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.post-card:hover .post-thumb img {
    transform: scale(1.04);
}

.post-thumb-fallback {
    width: 100%;
    height: 100%;
    min-height: 180px;
    background: linear-gradient(135deg, var(--s-raised), var(--s-panel));
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-thumb-fallback span {
    font-family: 'Adumu', 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 6px;
    opacity: 0.15;
    text-transform: uppercase;
}

.thumb-cat {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--brand-cyan);
    color: var(--t-inverse);
    padding: 3px 9px;
    border-radius: 3px;
}

/* Post Info */
.post-info {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.post-card:first-child .post-info {
    padding: 36px 40px;
    justify-content: center;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-meta-cat {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-cyan);
}

.post-meta-date {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    color: var(--t-muted);
}

.post-meta-date::before { content: '·'; margin-right: 10px; }

.post-title-link {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    color: var(--t-primary);
    transition: color 0.2s;
    display: block;
}

.post-card:first-child .post-title-link { font-size: clamp(1.8rem, 2.8vw, 2.8rem); }
.post-card:not(:first-child) .post-title-link { font-size: clamp(1.2rem, 1.8vw, 1.7rem); }

.post-title-link:hover { color: var(--brand-cyan); }

.post-excerpt {
    font-size: 0.88rem;
    color: var(--t-secondary);
    line-height: 1.65;
    flex: 1;
}

.post-read-more {
    font-family: 'Outfit', sans-serif;
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-cyan);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    transition: gap 0.2s, color 0.2s;
}

.post-read-more:hover { gap: 9px; color: var(--t-primary); }

/* ================================================================
   PAGINATION
   ================================================================ */
.pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.pagination .nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
}

.pagination .page-numbers {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    background: var(--s-card);
    border: 1px solid var(--s-border);
    border-radius: 4px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 1px;
    color: var(--t-secondary);
    transition: all 0.2s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--brand-cyan);
    border-color: var(--brand-cyan);
    color: var(--t-inverse);
}

/* ================================================================
   SINGLE / PAGE ARTICLE
   ================================================================ */
.article-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 0 80px;
}

.entry-content {
    font-size: 1.05rem;
    line-height: 1.82;
    color: var(--t-secondary);
}

.entry-content > * + * { margin-top: 1.3em; }

.entry-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--t-primary);
    margin-top: 2.5em;
    letter-spacing: 1px;
}

.entry-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--t-primary);
    margin-top: 2em;
    letter-spacing: 1px;
}

.entry-content a {
    color: var(--brand-cyan);
    text-decoration: underline;
    text-decoration-color: rgba(0,195,255,0.3);
    transition: text-decoration-color 0.2s;
}

.entry-content a:hover { text-decoration-color: var(--brand-cyan); }

.entry-content img {
    width: 100%;
    border-radius: 6px;
    margin: 2em 0;
}

.entry-content ul,
.entry-content ol {
    padding-left: 1.4em;
    color: var(--t-secondary);
}

.entry-content ul li { list-style: disc; }
.entry-content ol li { list-style: decimal; }

.entry-content blockquote {
    padding: 18px 24px 18px 28px;
    border-left: 3px solid var(--brand-cyan);
    background: var(--s-card);
    border-radius: 0 6px 6px 0;
    color: var(--t-muted);
    font-style: italic;
    margin: 2em 0;
}

.article-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--s-border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--t-muted);
}

.article-footer a { color: var(--brand-cyan); }
.article-footer a:hover { color: var(--t-primary); }

/* Page content */
.page-content-wrap {
    max-width: 920px;
    margin: 56px auto 80px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background: var(--s-raised);
    border-top: 1px solid var(--s-border);
    padding: 0;
    transition: background 0.35s;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 48px;
    padding: 48px 0 40px;
}

.footer-brand-col {}

.footer-logo-text {
    font-family: 'Adumu', 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 5px;
    color: var(--t-primary);
    text-transform: uppercase;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.footer-tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--brand-cyan);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--t-muted);
    line-height: 1.65;
    max-width: 260px;
}

.footer-nav-col {
    text-align: center;
}

.footer-nav-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 4px;
    color: var(--t-muted);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.footer-nav-col ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-nav-col a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--t-secondary);
    display: block;
    padding: 5px 0;
    transition: color 0.2s;
}

.footer-nav-col a:hover { color: var(--brand-cyan); }

.footer-right-col {
    text-align: right;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--t-muted);
    line-height: 1.7;
}

.footer-copy strong { color: var(--brand-cyan); font-weight: 700; }

.footer-bottom {
    border-top: 1px solid var(--s-border);
    padding: 16px 0;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--t-muted);
}

/* ================================================================
   TABLES / ERC STATS
   ================================================================ */
.erc-clean-wrapper { max-width: 1000px; margin: 0 auto; }
.erc-card { background: var(--s-card) !important; border-radius: 6px; overflow: hidden; margin-bottom: 20px; border: 1px solid var(--s-border); }
.erc-card-header { background: transparent !important; color: var(--brand-cyan) !important; padding: 14px 20px; font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 2px; text-transform: uppercase; border-bottom: 1px solid var(--s-border); }
.erc-table { width: 100%; border-collapse: collapse; }
.erc-table th { text-align: left; padding: 12px 20px; color: var(--t-muted) !important; font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid var(--s-border); }
.erc-table td { padding: 12px 20px; border-bottom: 1px solid var(--s-border); color: var(--t-primary) !important; font-size: 0.9rem; }
.erc-table tr:last-child td { border-bottom: none; }
.erc-table tr:hover { background: var(--s-hover) !important; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
    /* Hide desktop nav, show burger */
    .main-nav { display: none; }
    .burger-btn { display: flex; }
    .mobile-nav-overlay { display: block; }

    .site-logo { margin-right: 0; }
    .header-podcast-logo { display: none; }

    /* Hero */
    .site-hero { height: 48vh; min-height: 320px; }
    .hero-title { font-size: clamp(3rem, 9vw, 7rem); }

    /* Podcast hero */
    .podcast-hero-inner {
        grid-template-columns: 1fr;
    }

    .phero-cover-col { height: 220px; }
    .phero-info-col { padding: 28px 24px; }

    /* Grid */
    .post-grid { grid-template-columns: 1fr 1fr; }
    .post-grid .post-card:first-child {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }
    .post-card:first-child .post-thumb { min-height: 260px; height: auto; aspect-ratio: 16/9; }

    /* Footer */
    .footer-main { grid-template-columns: 1fr; text-align: center; gap: 32px; }
    .footer-right-col { text-align: center; }
    .footer-desc { max-width: 100%; }
}

@media (max-width: 620px) {
    .post-grid { grid-template-columns: 1fr; }
    .post-card:first-child { grid-template-columns: 1fr; }

    .phero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }

    .page-hero { height: 38vh; min-height: 260px; }
    .article-wrap { padding: 40px 0 60px; }
    .top-bar-right { display: none; }
}
