/* ============================================
   CONTRAST PODCAST — Főstíluslap v2
   Paletta: #0a0a0a, #111, #1a1a1a, #F5C518
   ============================================ */

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

:root {
    --gold: #F5C518;
    --gold-dim: #c99a0e;
    --gold-glow: rgba(245, 197, 24, 0.15);
    --gold-glow2: rgba(245, 197, 24, 0.06);
    --bg: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #161616;
    --border: rgba(245, 197, 24, 0.18);
    --border-subtle: rgba(255,255,255,0.06);
    --text: #e8e8e8;
    --text-muted: #888;
    --text-faint: #444;
    --radius: 6px;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.site-main { flex: 1; }

/* ---- Layout ---- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   ANIMATED BACKGROUND CANVAS
   ============================================ */
#bg-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
}

.site-header, .site-main, .site-footer {
    position: relative;
    z-index: 1;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    gap: 2rem;
}

.logo img {
    height: 120px !important;
    width: auto !important;
    border-radius: 0 !important;
    display: block;
    transition: transform 0.3s, filter 0.3s;
}
.logo:hover img {
    transform: rotate(8deg) scale(1.08);
    filter: drop-shadow(0 0 10px rgba(245,197,24,0.5));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.main-nav a:hover,
.main-nav a.active { color: var(--gold); }

.main-nav .yt-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius);
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.main-nav .yt-link::after { display: none; }
.main-nav .yt-link:hover {
    background: var(--gold-glow);
    border-color: var(--gold);
    box-shadow: 0 0 16px rgba(245,197,24,0.15);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 6rem 0 5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at top, rgba(245,197,24,0.1) 0%, transparent 65%);
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50%       { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

.hero-eyebrow {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    animation: fadeUp 0.8s 0.2s both;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.25rem;
    animation: fadeUp 0.8s 0.4s both;
}

.hero h1 span { color: var(--gold); }

.hero-sub {
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    animation: fadeUp 0.8s 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.8s both;
}

.hero-scroll {
    position: absolute;
    bottom: 1.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-faint);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll svg { opacity: 0.4; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

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

/* ============================================
   EPISODES SECTION
   ============================================ */
.episodes-section { padding: 4rem 0; }

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

.section-title span { color: var(--gold); }

/* ---- Cards ---- */
.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.episode-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
    opacity: 0;
    transform: translateY(20px);
}

.episode-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.episode-card:hover {
    border-color: var(--gold);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(245,197,24,0.08), 0 2px 8px rgba(0,0,0,0.4);
}

.episode-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #1a1a1a;
}

.episode-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.episode-card:hover .episode-thumb img { transform: scale(1.06); }

.episode-thumb .play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    transition: opacity 0.2s;
}

.episode-card:hover .play-btn { opacity: 1; }

.play-btn svg {
    width: 56px;
    height: 56px;
    fill: var(--gold);
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.9));
    transform: scale(0.85);
    transition: transform 0.2s;
}

.episode-card:hover .play-btn svg { transform: scale(1); }

.ep-num {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--gold);
    color: #000;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
}

.episode-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.episode-guest {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.episode-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.episode-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.episode-date {
    font-size: 0.8rem;
    color: var(--text-faint);
    margin-top: auto;
}

/* ============================================
   PARTNEREK SZEKCIÓ
   ============================================ */
.partners-section {
    padding: 3.5rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.partners-label {
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 2rem;
}

.partners-track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partners-track {
    display: flex;
    gap: 3.5rem;
    align-items: center;
    width: max-content;
    animation: marquee 32s linear infinite;
    padding-left: 3.5rem;
}

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

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    opacity: 0.45;
    transition: opacity 0.3s;
    cursor: default;
    text-decoration: none;
    color: var(--text);
}

.partner-item:hover { opacity: 1; }

.partner-logo-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    flex-shrink: 0;
}

.partner-logo-img {
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
    filter: brightness(0.7) grayscale(0.4);
    transition: filter 0.3s;
}

.partner-item:hover .partner-logo-img {
    filter: brightness(1) grayscale(0);
}

/* Ha van logó kép, a szöveget elrejtjük */
.partner-item:has(.partner-logo-img) .partner-name {
    display: none;
}

.partner-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ============================================
   STÚDIÓ SZEKCIÓ
   ============================================ */
.studio-section {
    padding: 5rem 0;
}

.studio-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.studio-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.studio-badge span {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.studio-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.studio-text h2 em {
    font-style: normal;
    color: var(--gold);
}

.studio-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 440px;
}

.studio-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.studio-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.studio-feature::before {
    content: '';
    width: 20px; height: 20px;
    background: var(--gold-glow);
    border: 1px solid var(--border);
    border-radius: 4px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23F5C518' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.studio-visual {
    position: relative;
}

.studio-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.studio-card-inner {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a0a 50%, #0f0f0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Animated studio visual */
.studio-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.studio-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(245,197,24,0.15);
    animation: ringPulse 4s ease-in-out infinite;
}

.studio-ring:nth-child(1) { width: 120px; height: 120px; animation-delay: 0s; }
.studio-ring:nth-child(2) { width: 200px; height: 200px; animation-delay: 0.6s; border-color: rgba(245,197,24,0.1); }
.studio-ring:nth-child(3) { width: 290px; height: 290px; animation-delay: 1.2s; border-color: rgba(245,197,24,0.06); }
.studio-ring:nth-child(4) { width: 380px; height: 380px; animation-delay: 1.8s; border-color: rgba(245,197,24,0.04); }

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.05); opacity: 0.5; }
}

.studio-mic-icon {
    position: relative;
    z-index: 2;
    width: 64px; height: 64px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(245,197,24,0.4), 0 0 80px rgba(245,197,24,0.15);
    animation: micGlow 3s ease-in-out infinite;
}

@keyframes micGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(245,197,24,0.4), 0 0 60px rgba(245,197,24,0.15); }
    50%       { box-shadow: 0 0 50px rgba(245,197,24,0.6), 0 0 100px rgba(245,197,24,0.25); }
}

.studio-mic-icon svg { width: 28px; height: 28px; color: #000; }

.studio-card-footer {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
}

.studio-card-footer .studio-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
}

.studio-card-footer .studio-tag {
    font-size: 0.75rem;
    color: var(--gold);
    background: var(--gold-glow);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    border: 1px solid var(--border);
}

.studio-float-badge {
    position: absolute;
    top: -12px; right: -12px;
    background: var(--gold);
    color: #000;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(245,197,24,0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%       { transform: translateY(-6px) rotate(1deg); }
}

/* ============================================
   EPISODE DETAIL PAGE
   ============================================ */
.episode-detail { padding: 3rem 0 5rem; }

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: color 0.2s;
}
.back-link:hover { color: var(--gold); }

.episode-player {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.episode-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.episode-detail-header { margin-bottom: 1.5rem; }

.episode-detail-header .ep-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.episode-detail-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
}

.episode-detail-body {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 720px;
}

.episode-detail-body a { color: var(--gold); }
.episode-detail-body a:hover { color: var(--gold-dim); }
.episode-detail-body p { margin-bottom: 0.5rem; line-height: 1.8; }
.episode-detail-body p:empty,
.episode-detail-body p br:only-child { margin: 0; line-height: 0; font-size: 0; }
.episode-detail-body ul, .episode-detail-body ol { margin: 1rem 0 1rem 1.5rem; }
.episode-detail-body li { margin-bottom: 0.4rem; }
.episode-detail-body h3 { color: #fff; font-family: var(--font-display); font-size: 1.3rem; margin: 1.5rem 0 0.5rem; }
.episode-detail-body blockquote { border-left: 3px solid var(--gold); padding-left: 1rem; color: var(--text-muted); font-style: italic; margin: 1rem 0; }
.episode-detail-body strong,
.episode-detail-body b { color: #fff; }

/* ============================================
   STATIC PAGES
   ============================================ */
.page-content { padding: 4rem 0; max-width: 720px; }

.page-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-content .gold-line {
    width: 60px; height: 3px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.page-content p, .page-content li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.page-content p:empty,
.page-content p br:only-child { margin: 0; line-height: 0; font-size: 0; }

.page-content strong,
.page-content b { color: #fff; }

.page-content a { color: var(--gold); }
.page-content a:hover { color: var(--gold-dim); }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245,197,24,0.08);
}

.form-group textarea { resize: vertical; min-height: 140px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: #000;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 2rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:hover {
    background: var(--gold-dim);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,197,24,0.25);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold-glow);
    box-shadow: 0 4px 16px rgba(245,197,24,0.15);
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.alert-success { background: rgba(39,174,96,0.12); border: 1px solid rgba(39,174,96,0.4); color: #4caf8a; }
.alert-error   { background: rgba(231,76,60,0.12);  border: 1px solid rgba(231,76,60,0.4);  color: #e57373; }

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-faint);
}
.empty-state svg { margin-bottom: 1rem; opacity: 0.3; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    margin-top: auto;
    position: relative;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-logo img { height: 240px; width: auto; border-radius: 0; }

.footer-tagline {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social a {
    color: var(--text-faint);
    transition: color 0.2s, transform 0.2s;
    display: flex;
}

.footer-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-copy { color: var(--text-faint); font-size: 0.82rem; }

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-muted);
    transition: all 0.2s;
}

.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current { background: var(--gold); color: #000; border-color: var(--gold); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .studio-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .studio-visual { max-width: 440px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 120px; left: 0; right: 0;
        height: calc(100dvh - 120px);
        background: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 99;
        padding: 2rem;
        overflow-y: auto;
    }

    .main-nav.open { transform: translateX(0); }
    .main-nav a { font-size: 1.2rem; }
    .main-nav a::after { display: none; }
    .main-nav .yt-link { font-size: 1rem; justify-content: center; }

    .episodes-grid { grid-template-columns: 1fr; }
    .section-header { flex-direction: column; gap: 0.75rem; }
    .hero-cta { flex-direction: column; align-items: center; }
}

/* ============================================
   KIEMELT EPIZÓD KÁRTYA
   ============================================ */
.featured-episode-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    margin-bottom: 2rem;
    background: var(--bg-card);
    transition: transform 0.25s, box-shadow 0.25s;
}

.featured-episode-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245,197,24,0.12);
}

.featured-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.featured-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.featured-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.featured-episode-card:hover .featured-overlay { opacity: 1; }

.featured-play {
    width: 64px; height: 64px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.featured-badge {
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    background: var(--gold);
    color: #000;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 3px;
}

.featured-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    justify-content: center;
}

.featured-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
}

.featured-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.featured-cta {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

@media (max-width: 700px) {
    .featured-episode-card { grid-template-columns: 1fr; }
    .featured-thumb { aspect-ratio: 16/9; }
}

/* ============================================
   HAMAROSAN BLOKK
   ============================================ */
.coming-soon-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    flex-wrap: wrap;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    white-space: nowrap;
}

.pulseDot {
    width: 7px; height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
    display: inline-block;
}

.coming-soon-content { flex: 1; }

.coming-soon-guest {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.coming-soon-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.coming-soon-date {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ============================================
   BANNER
   ============================================ */
.banner-item {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: border-color 0.2s, transform 0.2s;
}

.banner-item:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.banner-item img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.banner-placeholder {
    background: var(--bg-card);
    padding: 2rem;
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* ============================================
   MEGOSZTÁS GOMBOK
   ============================================ */
.episode-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-label {
    font-size: 0.8rem;
    color: var(--text-faint);
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
    background: transparent;
    cursor: pointer;
}

.share-btn:hover { border-color: var(--gold); color: var(--gold); }
.share-fb:hover { border-color: #1877f2; color: #1877f2; }
.share-wa:hover { border-color: #25d366; color: #25d366; }

/* ============================================
   CTA BLOKK
   ============================================ */
.cta-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, #111 0%, #1a1a0a 100%);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem 2.5rem;
    flex-wrap: wrap;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.4rem;
}

.cta-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 500px;
}

/* ============================================
   KÖVETKEZŐ / ELŐZŐ NAVIGÁCIÓ
   ============================================ */
.episode-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.ep-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, background 0.2s;
}

.ep-nav-btn:hover { border-color: var(--gold); background: var(--bg-card-hover); }

.ep-nav-btn span {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ep-nav-btn small {
    font-size: 0.72rem;
    color: var(--text-faint);
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ep-nav-btn svg { flex-shrink: 0; color: var(--gold); }
.ep-nav-next { justify-content: flex-end; text-align: right; }

@media (max-width: 600px) {
    .episode-nav { grid-template-columns: 1fr; }
    .ep-nav-next { justify-content: flex-start; text-align: left; }
    .cta-block { flex-direction: column; }
}
