@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;500;600&family=Teko:wght@300;400;500&display=swap');

:root {
    --bg-dark: #070707;
    --bg-darker: #040404;
    --bg-card: rgba(15, 15, 15, 0.7);
    --text-main: #dfdfdf;
    --text-muted: #888888;
    --accent-blue: #3d6a8a;
    --accent-cyan: #4dcad4;
    --accent-glow: rgba(77, 202, 212, 0.2);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-tech: 'Teko', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --navbar-height: 50px;
    --content-top: var(--navbar-height);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Dynamic Ambient Background - Galaxy Theme */
.ambient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(20, 25, 40, 0.4) 0%, var(--bg-darker) 100%),
        url('https://images.unsplash.com/photo-1462331940025-496dfbfc7564?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
    overflow: hidden;
    animation: drift 120s linear infinite alternate;
}

@keyframes drift {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.ambient-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Add subtle moving particles/stars overlay */
    background: transparent;
    box-shadow: 17vw 50vh 2px white, 82vw 10vh 1px rgba(255,255,255,0.8), 30vw 80vh 2px rgba(255,255,255,0.5), 5vw 40vh 1px white, 90vw 90vh 2px white;
    animation: twinkle 4s infinite alternate ease-in-out;
    opacity: 0.6;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    50% { opacity: 0.8; }
    100% { opacity: 0.5; }
}

/* Navbar Style - Blurred Strip */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--navbar-height);
    padding: 0 4%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background: rgba(4, 4, 4, 0.3); /* Increased opacity */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(77, 202, 212, 0.2);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
}

/* Search Bar Styles */
.search-container {
    position: relative;
    margin-left: 2rem;
}

.search-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(77, 202, 212, 0.2);
    color: var(--text-main);
    padding: 0.4rem 1rem 0.4rem 2.2rem;
    font-family: var(--font-tech);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    width: 200px;
    border-radius: 4px;
    transition: var(--transition);
    outline: none;
}

.search-input:focus {
    width: 280px;
    border-color: var(--accent-cyan);
    background: rgba(77, 202, 212, 0.05);
    box-shadow: 0 0 15px rgba(77, 202, 212, 0.1);
}

.search-container::before {
    content: '🔍';
    position: absolute;
    left: 0.8rem;
    top: 52%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    opacity: 0.5;
    pointer-events: none;
}

/* Homepage Content Layout */
.content-branding {
    width: 100%;
    margin: 40px 0 0;
    padding: 15px 5%;
    display: flex;
    justify-content: flex-start;
}

/* Homepage Layout Style */
/* Homepage Hero Styles */
.homepage-hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 5% 20px;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.2rem;
    letter-spacing: 0.5em;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    transition: var(--transition);
    cursor: default;
    padding-left: 0.5em; /* Offset for letter-spacing centering */
}

.hero-title:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 30px var(--accent-glow);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--accent-cyan);
    margin-top: 10px;
    opacity: 0.6;
    text-transform: uppercase;
}

.homepage-description-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 5% 4rem;
}

.homepage-description {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem 40px;
    text-align: center;
}

.homepage-description p {
    color: var(--text-main);
    font-size: 1.25rem;
    line-height: 1.85;
    font-weight: 300;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Improve readability on dynamic BG */
}

.logo-link {
    display: inline-block;
    transition: var(--transition);
}

.logo-link:hover {
    transform: translateY(-5px);
}

.content-logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(77, 202, 212, 0.3)) brightness(1.2);
    transition: var(--transition);
}

.logo-link:hover .content-logo {
    filter: drop-shadow(0 0 35px rgba(77, 202, 212, 0.5));
}

.navbar.scrolled {
    background-color: rgba(4, 4, 4, 0.95);
    /* Removed padding jump */
}

/* Removed old logo styles */

.nav-links {
    display: flex;
    gap: 3rem; /* Increased gap for better breathing room */
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    position: relative;
    opacity: 0.7;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    color: var(--accent-cyan);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-cyan);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
    box-shadow: 0 0 10px var(--accent-glow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: var(--content-top);
    height: calc(100vh - var(--content-top));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.glitch-text {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
    position: relative;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    border-radius: 2px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid rgba(77, 202, 212, 0.4);
    box-shadow: inset 0 0 20px rgba(77, 202, 212, 0);
}

.btn-primary:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px var(--accent-glow), inset 0 0 10px var(--accent-glow);
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.05);
}

/* YouTube Episode Button */
.btn-yt-episode {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 1rem 1.5rem;
    text-decoration: none;
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 50, 50, 0.35);
    border-radius: 2px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}

.btn-yt-icon {
    color: #ff4444;
    flex-shrink: 0;
    transition: var(--transition);
}

.btn-yt-episode:hover {
    border-color: #ff2222;
    color: #fff;
    background-color: rgba(255, 30, 30, 0.07);
    box-shadow: 0 0 20px rgba(255, 30, 30, 0.25), inset 0 0 10px rgba(255, 30, 30, 0.05);
    text-shadow: 0 0 8px rgba(255, 100, 100, 0.4);
}

.btn-yt-episode:hover .btn-yt-icon {
    color: #ff2222;
    filter: drop-shadow(0 0 6px rgba(255, 50, 50, 0.6));
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: var(--transition);
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-main);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: var(--text-main);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

.scroll-indicator p {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
}

/* Footer */
footer {
    padding: 4rem 5% 2rem;
    background-color: rgba(3, 3, 3, 0.4); /* Increased opacity */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-tech);
    font-weight: 300;
    font-size: 2.2rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    transition: var(--transition);
}

.footer-logo:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 15px var(--accent-glow);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a.btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Content Sections */
.content-section {
    padding: 4rem 5%;
    position: relative;
    z-index: 2;
}

/* Ensure first section always clears fixed header + navbar on any page */
main > section:first-child,
.content-section:first-child {
    padding-top: 2rem; /* Reduced since branding div occupies top space */
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.section-header p {
    color: var(--text-muted);
}

/* Timeline Layout for Podcasts */
.timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem; /* Consistent gap for dense grid */
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
}

/* Vertical divider line between columns - Emphasized and Centered */
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent, 
        var(--accent-cyan) 15%, 
        var(--accent-cyan) 85%, 
        transparent);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* Ensure perfect center */
    display: block;
    box-shadow: 0 0 15px rgba(77, 202, 212, 0.4);
    opacity: 0.6;
    z-index: 1;
}

/* Hide the potentially grid-breaking div from script.js */
.timeline-line {
    display: none;
}

.timeline-item {
    padding: 0;
    opacity: 1; /* Always visible to prevent "disappearing" issue */
    transition: all 0.5s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.left, .timeline-item.right {
    width: 100%;
    left: 0;
}

.timeline-dot {
    display: none; /* Dots don't make sense in a 2-column grid without a center line */
}

/* Hero section logo removed */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin: 3rem 0;
    padding: 1.25rem 2rem;
    border-top: 1px solid rgba(77, 202, 212, 0.1);
    position: relative;
}

.pagination-top {
    border-top: none;
    border-bottom: 1px solid rgba(77, 202, 212, 0.1);
    margin-bottom: 3rem;
    margin-top: 0;
}

.page-indicator {
    font-family: var(--font-tech);
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    color: var(--accent-cyan);
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.45rem 1.4rem;
    border: 1px solid rgba(77, 202, 212, 0.35);
    border-radius: 20px;
    background: rgba(77, 202, 212, 0.06);
    box-shadow: 0 0 12px rgba(77, 202, 212, 0.08);
    min-width: 130px;
    text-align: center;
    white-space: nowrap;
}

.btn-pagination {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    padding: 0.55rem 1.1rem;
    font-family: var(--font-tech);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
}

.pg-icon {
    font-size: 1.1rem;
    line-height: 1;
    opacity: 0.7;
    transition: var(--transition);
}

.pg-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}

.btn-pagination:hover:not(:disabled) {
    background: rgba(77, 202, 212, 0.08);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 18px rgba(77, 202, 212, 0.15);
}

.btn-pagination:hover:not(:disabled) .pg-icon {
    opacity: 1;
}

.btn-pagination:disabled {
    opacity: 0.25;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0.06);
}
.btn-play-card {
    background: radial-gradient(circle at center, rgba(77, 202, 212, 0.15), rgba(0, 0, 0, 0.8));
    border: 1px solid rgba(77, 202, 212, 0.4);
    color: var(--accent-cyan);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(77, 202, 212, 0.1);
    outline: none;
    padding: 0;
}

.btn-play-card .play-icon {
    font-size: 1.1rem;
    margin-left: 3px; /* Optically centered */
    transition: var(--transition);
}

.btn-play-card:hover {
    transform: scale(1.1);
    background: radial-gradient(circle at center, rgba(77, 202, 212, 0.3), rgba(0, 0, 0, 0.9));
    border-color: var(--accent-cyan);
    box-shadow: 0 0 25px rgba(77, 202, 212, 0.3);
}

.btn-play-card:hover .play-icon {
    text-shadow: 0 0 15px var(--accent-cyan);
}



.timeline-item.right .timeline-dot {
    left: -10px;
}

/* ===== PODCAST CARD ===== */
.podcast-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 240px;
    background: rgba(30, 40, 65, 0.45); /* Lighter, more tinted background */
    border: 1px solid rgba(77, 202, 212, 0.3); /* Slightly more prominent border */
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.podcast-card:hover {
    border-color: rgba(77, 202, 212, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(77, 202, 212, 0.1);
    transform: translateY(-4px);
}

.timeline-item .podcast-card { margin: 0; }

/* ── Image column ── */
.card-image {
    width: 240px;
    height: 240px;          
    background-color: #0b0f19;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
    align-self: start;      
    box-shadow: inset -10px 0 25px rgba(0,0,0,0.6);
    filter: brightness(0.6); /* Colored but dimmed by default */
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.podcast-card:hover .card-image {
    filter: brightness(1.1); /* Full color and glow on hover */
    transform: scale(1.05);
}

.mix-1 { background-image: linear-gradient(135deg, #091216, #1c3643, #0d2030); }
.mix-2 { background-image: linear-gradient(135deg, #050a0f, #182836, #0c1a26); }
.mix-3 { background-image: linear-gradient(135deg, #0a0a0a, #1a252c, #101c22); }

/* prominent ep# watermark */
.card-image::before {
    content: attr(data-ep);
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    color: rgba(77, 202, 212, 0.35);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -3px;
    z-index: 2;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
}

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 50%, rgba(12,15,22,0.6) 100%);
    pointer-events: none;
}

/* ── Content column ── */
.card-content {
    display: flex;
    flex-direction: column;
    min-height: 240px;      /* Consistent with image */
    min-width: 0;
}

/* TOP — title + date */
.card-header {
    flex-shrink: 0;
    padding: 1.25rem 1.5rem 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.podcast-card:hover .card-header h3 {
    color: var(--accent-cyan);
}

.card-header .date {
    font-size: 0.75rem;
    color: var(--accent-cyan);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* MIDDLE — description */
.card-body {
    flex: 1 1 auto;         /* Allow to expand to fit text */
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
}

.card-body .description {
    font-size: 0.85rem;      /* Slightly larger for readability */
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    /* Removed strict line-clamp to prevent cutoff */
}

/* BOTTOM — STREAM button */
.card-footer {
    flex-shrink: 0;
    padding: 0.8rem 1.5rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


.play-icon { font-size: 0.8rem; }

/* Episode detail page */
.episode-detail-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.episode-detail-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px var(--accent-glow);
}

.episode-detail-info h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.episode-detail-info .date {
    color: var(--accent-cyan);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.episode-detail-info .description {
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    overflow-wrap: anywhere;
}

/* ===== BILINGUAL CARD BLOCKS (podcast cards) ===== */
.card-lang-block {
    width: 100%;
    padding: 0.6rem 0;
}

.card-lang-block--hu {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(77, 202, 212, 0.2);
}

.card-lang-badge {
    display: inline-block;
    font-family: var(--font-tech);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #fff;
    background: rgba(77, 202, 212, 0.25);
    border: 1px solid rgba(77, 202, 212, 0.5);
    border-radius: 3px;
    padding: 2px 8px;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.card-lang-badge--hu {
    background: rgba(61, 106, 138, 0.3);
    border-color: rgba(61, 106, 138, 0.5);
}

.card-lang-text {
    font-size: 0.85rem;
    color: #ffffff;
    line-height: 1.65;
    margin: 0;
    overflow-wrap: anywhere;
}

.card-lang-text a {
    color: var(--accent-cyan);
    text-decoration: underline;
    pointer-events: auto;
    word-break: break-all;
}

.card-lang-text a:hover {
    opacity: 0.8;
}

/* ===== EPISODE DETAIL LANGUAGE BLOCKS ===== */
.ep-description-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1.5rem;
}

.ep-lang-block {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ep-lang-block:last-child {
    border-bottom: none;
}

.ep-lang-header {
    margin-bottom: 0.75rem;
}

.ep-lang-badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-tech);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 3px;
    color: #fff;
}

.ep-lang-badge--en {
    background: linear-gradient(90deg, rgba(77, 202, 212, 0.35), rgba(77, 202, 212, 0.15));
    border: 1px solid rgba(77, 202, 212, 0.5);
}

.ep-lang-badge--hu {
    background: linear-gradient(90deg, rgba(61, 106, 138, 0.4), rgba(61, 106, 138, 0.15));
    border: 1px solid rgba(61, 106, 138, 0.5);
}

.ep-lang-text {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.85;
    overflow-wrap: anywhere;
}

.ep-lang-text a {
    color: var(--accent-cyan);
    text-decoration: underline;
    word-break: break-all;
}

.ep-lang-text a:hover {
    opacity: 0.8;
}

.ep-genre-tag {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .episode-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .episode-detail-info h1 {
        font-size: 1.8rem;
        word-wrap: break-word;
    }
}


/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
}

.profile-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.profile-card-full {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem;
    align-items: stretch;
}

.profile-image-container {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(77, 202, 212, 0.2);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    transition: var(--transition);
}

.profile-card-full:hover .profile-photo {
    filter: brightness(1) contrast(1.1);
    transform: scale(1.05);
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-header-wide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(77, 202, 212, 0.2);
    padding-bottom: 1rem;
}

.profile-header-wide h3 {
    font-size: 2rem;
    color: var(--accent-cyan);
    margin: 0;
}

.profile-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.btn-secondary:hover {
    background: rgba(77, 202, 212, 0.1);
    border-color: var(--accent-cyan);
    color: var(--text-main);
}

.lang-section-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(77, 202, 212, 0.2), transparent);
    margin: 0.5rem 0;
}

@media (max-width: 900px) {
    .profile-card-full {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .profile-image-container {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .profile-header-wide {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .profile-actions {
        justify-content: center;
        width: 100%;
    }
}

.profile-bio {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lang-section {
    position: relative;
}

.lang-label {
    display: inline-block;
    font-size: 0.7rem;
    background: var(--accent-blue);
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 0.1rem;
    box-shadow: 0 0 15px rgba(61, 106, 138, 0.4);
    text-shadow: none;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

.about-content-full {
    max-width: 900px;
    margin: 0 auto;
}

.about-emphasized {
    color: var(--accent-cyan);
    font-weight: 700;
}

.about-social-links {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.social-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    border: 1px solid rgba(77, 202, 212, 0.3);
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.social-btn:hover {
    background: rgba(77, 202, 212, 0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.about-image-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.about-image-strip img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(0.5);
    transition: var(--transition);
}

.about-image-strip img:hover {
    filter: grayscale(0);
}

.visual-element::before, .visual-element::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.visual-element::before { top: -10px; left: -10px; animation: rotate 30s linear infinite reverse; }
.visual-element::after { top: 10px; left: 10px; border-style: dotted; animation: rotate 40s linear infinite; }

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

/* Events */
.events-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-row {
    display: flex;
    align-items: center;
    background-color: var(--bg-card);
    padding: 1.5rem 2rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.event-row:hover {
    border-color: rgba(77, 202, 212, 0.3);
    background-color: rgba(15, 15, 15, 0.9);
}

.event-date {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    min-width: 100px;
    color: var(--accent-cyan);
    display: flex;
    flex-direction: column;
}

.event-date span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.event-details {
    flex: 1;
    padding: 0 2rem;
}

.event-details h3 {
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.event-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Page Structure */
.hidden {
    display: none !important;
}

#about, #gallery, #events {
    display: none; 
}

.spa-content-visible {
    display: block !important;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    transition: var(--transition);
    filter: grayscale(80%) contrast(1.2);
}

.gallery-item:hover {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.02);
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .glitch-text {
        font-size: 3rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }

    /* Timeline Responsive */
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.right {
        left: 0%;
    }

    .timeline-item.left .podcast-card,
    .timeline-item.right .podcast-card {
        margin-left: 0;
        margin-right: 0;
    }

    .timeline-dot {
        left: 21px !important;
        right: auto !important;
    }
}

/* Global Audio Player */
/* Global Audio Player — Technical Hardware Style */
.global-player {
    position: fixed;
    bottom: -110px;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(77, 202, 212, 0.3);
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    transition: bottom 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0;
}

.global-player.active {
    bottom: 0;
}

.global-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-cyan), transparent);
    opacity: 0.5;
}

.player-container {
    padding: 0; 
    padding-right: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    height: 100px; /* Fixed height for player content */
}

/* Zone 1: Metadata */
.player-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    min-width: 0;
}

.player-artwork-container {
    width: 100px;
    height: 100px;
    background: #0b0f19;
    border-right: 1px solid rgba(77, 202, 212, 0.2);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

#player-artwork {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1; /* Full visibility */
    transition: opacity 0.5s ease;
}

.player-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
    justify-content: center;
}

#player-episode-name {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#player-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    margin-bottom: 0.1rem;
    overflow: hidden;
}

.marquee {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

.player-status-row {
    display: none; /* Requested removal */
}

#status-text {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Zone 2: Controls - Perfectly Centered */
.player-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.control-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    background: radial-gradient(circle at center, rgba(77, 202, 212, 0.15), rgba(0, 0, 0, 0.8));
    border: 1px solid rgba(77, 202, 212, 0.4);
    color: var(--accent-cyan);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 0 10px rgba(77, 202, 212, 0.1);
}

.nav-btn:hover {
    background: var(--accent-cyan);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--accent-glow);
}

.nav-icon {
    font-size: 1rem;
    line-height: 1;
}

#main-play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(77, 202, 212, 0.3), rgba(0, 0, 0, 0.8));
    border: 2px solid rgba(77, 202, 212, 0.6);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0;
    box-shadow: 0 0 20px rgba(77, 202, 212, 0.4);
}

#main-play-btn:hover {
    transform: scale(1.1);
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 35px var(--accent-cyan);
    border-color: #fff;
}

.play-icon-large {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
}

#main-play-btn:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(77, 202, 212, 0.4);
}

.progress-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 0; /* Reduced to avoid overflow */
}

.time-display {
    font-size: 0.65rem;
    font-family: monospace;
    color: var(--text-muted);
    min-width: 40px;
}

.seek-bar-wrapper {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

#seek-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}

/* Zone 3: Volume & Close */
.player-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: flex-end;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 120px;
}

.volume-icon {
    color: var(--text-muted);
    font-size: 0.9rem;
}

#volume-slider {
    flex: 1;
    height: 3px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    background: var(--accent-cyan);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px var(--accent-cyan);
}

.close-player-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-player-btn:hover {
    color: var(--accent-cyan);
}

/* Animations */
@keyframes statusPulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.transmitting {
    animation: statusPulse 1.5s infinite ease-in-out;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .timeline {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .timeline::after {
        display: none; /* Hide the vertical separator line when it becomes a single column */
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.3em;
        padding-left: 0.3em;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        background: rgba(4, 4, 4, 0.8);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 1000;
        padding: 2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.5rem;
        opacity: 1;
    }

    .search-container {
        margin-right: 1.5rem;
    }

    .homepage-hero {
        padding: 60px 5% 30px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 0.2em;
        padding-left: 0.2em;
    }

    .homepage-description {
        padding: 0 1.5rem 30px;
    }

    .homepage-description p {
        font-size: 1.05rem;
    }

    .podcast-card {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-bottom: 0.5rem;
    }

    .card-image {
        width: 100%;
        height: 200px; /* Stronger image focus */
    }

    .card-content {
        min-height: auto;
        padding: 0.1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .card-header {
        display: none !important;
    }
    
    .card-body {
        display: none !important;
    }
    
    .card-footer {
        display: flex;
        justify-content: center;
        padding: 0.5rem;
        width: 100%;
        margin: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        padding: 0 1rem;
    }

    .card-body .description {
        display: -webkit-box;
        line-clamp: 3;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 0.8rem;
    }

    .global-player {
        height: auto;
        padding-bottom: env(safe-area-inset-bottom, 15px);
    }

    .player-container {
        flex-direction: column;
        padding: 12px 16px;
        gap: 15px;
        height: auto;
        position: relative;
    }
    
    .player-info { 
        width: calc(100% - 35px);
        justify-content: flex-start;
        text-align: left;
    }

    .player-artwork-container {
        display: none; /* No artwork */
    }

    .player-meta {
        width: 100%;
    }

    #player-episode-name {
        font-size: 0.95rem;
        white-space: normal;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.3;
    }

    #player-title {
        display: none; /* Hide track name to save space */
    }

    .player-actions { 
        position: absolute;
        top: 10px;
        right: 12px;
        margin: 0;
    }

    .volume-control {
        display: none;
    }

    .close-player-btn {
        font-size: 1.6rem;
    }

    .player-controls { 
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .control-buttons {
        gap: 20px;
    }

    #main-play-btn {
        width: 44px;
        height: 44px;
    }

    #prev-track-btn, #next-track-btn {
        font-size: 1rem;
        padding: 0.5rem;
    }

    .progress-container {
        display: flex;
        width: 100%;
        padding: 5px 0;
    }

    .time-display {
        display: none;
    }

    .close-player-btn {
        font-size: 1.25rem;
    }

    .content-branding {
        padding: 10px 1.5rem;
    }

    .content-logo {
        height: 70px;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
    }

    .pagination-controls {
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-pagination {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
}

/* ===== GALLERY STYLES ===== */
.gallery-filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0 auto 3rem;
    max-width: 800px;
    padding: 0 5%;
}

.btn-filter {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
    letter-spacing: 0.15em;
}

.btn-filter.active, .btn-filter:hover {
    background: rgba(77, 202, 212, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(77, 202, 212, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(77, 202, 212, 0.15);
    aspect-ratio: 1; 
    background-color: #0b0f19;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: brightness(0.7) grayscale(30%);
}

.gallery-item:hover {
    border-color: rgba(77, 202, 212, 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 20px rgba(77, 202, 212, 0.2);
    transform: translateY(-5px);
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1) grayscale(0%);
}

.gallery-item.hidden {
    display: none;
}

/* Lightbox overlay */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 4, 4, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(0,0,0,0.8), 0 0 20px rgba(77, 202, 212, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    object-fit: contain;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-main);
    font-size: 3rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s ease;
    font-family: var(--font-heading);
}

.lightbox-close:hover {
    color: var(--accent-cyan);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 3rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 1rem;
    z-index: 2001;
}

.lightbox-nav:hover {
    color: var(--accent-cyan);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

/* Episode Back Button Icon */
.back-btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.back-btn-icon svg {
    transition: transform 0.3s ease;
}

.back-btn-icon:hover {
    color: var(--accent-cyan);
}

.back-btn-icon:hover svg {
    transform: translateX(-5px);
    filter: drop-shadow(0 0 5px var(--accent-cyan));
}

/* ===== UNIVERSAL INLINE LINK ===== */
.inline-link {
    color: var(--accent-cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-all;
    transition: opacity 0.2s ease;
    position: relative;
    z-index: 10;
}
.inline-link:hover {
    opacity: 0.75;
}

/* ===== EVENTS PAGE ===== */
.events-section {
    max-width: 1300px;
    margin: 0 auto;
}

/* Featured Event Card */
.event-card-featured {
    display: flex;
    flex-direction: column;
    background: rgba(20, 28, 50, 0.5);
    border: 1px solid rgba(77, 202, 212, 0.25);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(77,202,212,0.05);
    margin-bottom: 4rem;
}

/* Poster column — full width landscape on top */
.event-poster-col {
    width: 100%;
    height: 560px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: #050810;
}

.event-poster-link {
    display: block;
    height: 100%;
    position: relative;
}

.event-poster-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.95);
}

.event-poster-link:hover .event-poster-img {
    transform: scale(1.04);
    filter: brightness(1);
}

.event-poster-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-poster-link:hover .event-poster-overlay {
    opacity: 1;
}

.event-poster-overlay span {
    font-family: var(--font-tech);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: #fff;
    background: rgba(77, 202, 212, 0.3);
    border: 1px solid rgba(77, 202, 212, 0.6);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Info column */
.event-info-col {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Date badge */
.event-date-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 0.75rem;
}

.event-day {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-cyan);
    text-shadow: 0 0 30px rgba(77, 202, 212, 0.4);
}

.event-month-year {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.event-month {
    font-family: var(--font-tech);
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    color: #fff;
    line-height: 1.1;
}

.event-year {
    font-family: var(--font-tech);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

/* Title */
.event-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

.event-subtitle {
    font-family: var(--font-tech);
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    color: var(--accent-cyan);
    text-transform: uppercase;
    margin: -0.75rem 0 0;
    opacity: 0.8;
}

/* Meta row */
.event-meta-row {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.event-meta-item {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.event-meta-label {
    font-family: var(--font-tech);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--accent-cyan);
    text-transform: uppercase;
    min-width: 70px;
    opacity: 0.7;
}

.event-meta-value {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 400;
}

/* Lineup */
.event-lineup {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-lineup-label {
    font-family: var(--font-tech);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--accent-cyan);
    text-transform: uppercase;
    opacity: 0.7;
}

.event-artists {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.event-artist {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 0.35rem 0.85rem;
    transition: var(--transition);
}

.event-artist--headliner {
    background: rgba(77, 202, 212, 0.1);
    border-color: rgba(77, 202, 212, 0.4);
}

.artist-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
}

.event-artist--headliner .artist-name {
    color: var(--accent-cyan);
    font-size: 1rem;
}

.artist-role {
    font-family: var(--font-tech);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.artist-flag {
    font-size: 1rem;
}

/* Description */
.event-description {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: 0.92rem;
}

/* Action buttons */
.event-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.event-btn-ticket {
    background: linear-gradient(135deg, rgba(77,202,212,0.25), rgba(77,202,212,0.05));
    border-color: rgba(77, 202, 212, 0.5);
    font-size: 0.85rem;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
}

.event-btn-fb {
    font-size: 0.85rem;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
}

.event-venue-credit {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.05em;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 900px) {
    .event-poster-col {
        height: 250px;
    }
    .event-info-col {
        padding: 2rem;
    }
    .event-title {
        font-size: 1.8rem;
    }
    .event-day {
        font-size: 3.5rem;
    }
}
