:root {
    --primary: #8b5cf6;
    --primary-dim: rgba(139, 92, 246, 0.15);
    --bg: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --text: #e5e5e5;
    --text-dim: #888;
    --text-bright: #fff;
    --border: rgba(255, 255, 255, 0.08);
    --radius: 12px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --spotify: #1DB954;
    --apple: #9b59b6;
    --youtube: #FF0000;
    --google: #4285F4;
}

/* === LIGHT THEME === */
[data-theme="light"] {
    --bg: #f5f5f7; --bg-card: #ffffff; --bg-card-hover: #f0f0f2;
    --text: #374151; --text-dim: #6b7280; --text-bright: #111827;
    --border: rgba(0, 0, 0, 0.1); --primary-dim: rgba(139, 92, 246, 0.1);
}
.theme-toggle-float {
    position: fixed; bottom: 1.25rem; right: 1.25rem; width: 40px; height: 40px;
    border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-dim); cursor: pointer; display: flex; align-items: center;
    justify-content: center; z-index: 1000; transition: all 0.2s;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.theme-toggle-float:hover { color: var(--text-bright); transform: scale(1.1); }
@media print { .theme-toggle-float { display: none !important; } }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: transform 0.3s;
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-bright);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-logo-icon { color: var(--primary); }
.nav-links { display: flex; gap: 0.25rem; }
.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
    color: var(--text-bright);
    background: var(--bg-card);
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1.5rem 3rem;
    position: relative;
}
.hero-content { max-width: 680px; }
.hero-cover {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto 2rem;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
    border: 2px solid var(--border);
}
.hero-cover img { width: 100%; height: 100%; object-fit: cover; }
.hero-cover-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    color: var(--primary);
}
.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: var(--primary-dim);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.hero-name {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--text-bright);
    line-height: 1.1;
    margin-bottom: 0.75rem;
}
.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}
.hero-desc {
    font-size: 1rem;
    color: var(--text-dim);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Platform link buttons */
.platform-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    border: none;
    cursor: pointer;
    color: #fff;
}
.platform-btn:hover { transform: translateY(-2px); }
.platform-spotify {
    background: var(--spotify);
    box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
}
.platform-spotify:hover { box-shadow: 0 6px 25px rgba(29, 185, 84, 0.4); }
.platform-apple {
    background: var(--apple);
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
}
.platform-apple:hover { box-shadow: 0 6px 25px rgba(155, 89, 182, 0.4); }
.platform-youtube {
    background: var(--youtube);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}
.platform-youtube:hover { box-shadow: 0 6px 25px rgba(255, 0, 0, 0.4); }
.platform-google {
    background: var(--google);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}
.platform-google:hover { box-shadow: 0 6px 25px rgba(66, 133, 244, 0.4); }

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.hero-scroll span { font-size: 0.7rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.15em; }
.scroll-indicator {
    width: 20px;
    height: 32px;
    border: 2px solid var(--border);
    border-radius: 10px;
    position: relative;
}
.scroll-indicator::after {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; top: 4px; }
    50% { opacity: 0.3; top: 16px; }
}

/* === SECTIONS === */
.section { padding: 5rem 1.5rem; }
.section:nth-child(even) { background: rgba(255, 255, 255, 0.015); }
.container { max-width: 900px; margin: 0 auto; }
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* === EPISODES === */
.episodes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.episode-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.episode-card:hover {
    transform: translateX(4px);
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--bg-card-hover);
}
.episode-number-badge {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--primary-dim);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}
.episode-number-badge-lg {
    width: 72px;
    height: 72px;
    font-size: 1rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}
.episode-info { flex: 1; min-width: 0; }
.episode-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 0.375rem;
    line-height: 1.3;
}
.episode-desc {
    font-size: 0.875rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.episode-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.episode-date,
.episode-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    color: var(--text-dim);
}
.episode-date svg,
.episode-duration svg { opacity: 0.6; }
.episode-play {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}
.episode-card:hover .episode-play {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

/* === HOSTS === */
.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.host-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.3s;
}
.host-card:hover { border-color: rgba(255, 255, 255, 0.15); }
.host-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--border);
}
.host-photo img { width: 100%; height: 100%; object-fit: cover; }
.host-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dim);
    color: var(--primary);
}
.host-info { flex: 1; min-width: 0; }
.host-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 0.25rem;
}
.host-role {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.host-bio {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* === CONTACT === */
.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.contact-text {
    font-size: 1.05rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}
.btn-primary:hover { box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4); }

/* Social icons */
.contact-platforms {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}
.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, transform 0.2s, background 0.2s;
}
.social-icon:hover { transform: scale(1.1); }
.social-spotify:hover { color: var(--spotify); border-color: var(--spotify); background: rgba(29, 185, 84, 0.1); }
.social-apple:hover { color: var(--apple); border-color: var(--apple); background: rgba(155, 89, 182, 0.1); }
.social-youtube:hover { color: var(--youtube); border-color: var(--youtube); background: rgba(255, 0, 0, 0.1); }

/* === EPISODE DETAIL === */
.episode-detail {
    padding: 7rem 1.5rem 4rem;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color 0.2s;
}
.back-link:hover { color: var(--primary); }
.episode-header {
    margin-bottom: 2.5rem;
}
.episode-detail-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-bright);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.episode-detail-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.episode-detail-meta .episode-date,
.episode-detail-meta .episode-duration {
    font-size: 0.9rem;
}

/* Audio player */
.audio-player {
    margin-bottom: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    overflow: hidden;
}
.audio-player iframe {
    display: block;
    border-radius: 8px;
}
.audio-native {
    width: 100%;
    border-radius: 8px;
}
.audio-native::-webkit-media-controls-panel {
    background: rgba(255, 255, 255, 0.05);
}

/* Episode description */
.episode-description {
    margin-bottom: 2.5rem;
}
.episode-description p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
}

/* Show notes */
.show-notes {
    margin-bottom: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}
.show-notes-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.show-notes-title::before {
    content: '';
    width: 4px;
    height: 1.25rem;
    background: var(--primary);
    border-radius: 2px;
}
.show-notes-content {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.8;
}

/* Episode platforms */
.episode-platforms {
    margin-bottom: 3rem;
    text-align: center;
}
.episode-platforms-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

/* Episode navigation */
.episode-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.episode-nav-link {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: border-color 0.3s, background 0.3s;
}
.episode-nav-link:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--bg-card-hover);
}
.episode-nav-next { text-align: right; }
.episode-nav-label {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
}
.episode-nav-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-bright);
    line-height: 1.3;
}

/* === ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .nav-link { padding: 0.75rem 1rem; }
    .hero { padding: 5rem 1.25rem 3rem; }
    .hero-cover { width: 160px; height: 160px; }
    .section { padding: 3.5rem 1.25rem; }
    .episode-card {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .episode-number-badge {
        width: 48px;
        height: 48px;
        font-size: 0.7rem;
    }
    .episode-play { display: none; }
    .hosts-grid { grid-template-columns: 1fr; }
    .host-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .platform-links { gap: 0.5rem; }
    .platform-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    .episode-nav {
        grid-template-columns: 1fr;
    }
    .episode-nav-next { text-align: left; }
    .episode-detail { padding: 5.5rem 1.25rem 3rem; }
}

/* === PRINT === */
@media print {
    * { background: #fff !important; color: #111 !important; box-shadow: none !important; }
    .nav, .hero-scroll, .platform-links, .contact-platforms, .episode-play, .audio-player { display: none !important; }
    .hero { min-height: auto; padding: 2rem 0; }
    .hero-name { font-size: 2rem; }
    .hero-tagline { color: #555 !important; }
    .section { padding: 1.5rem 0; page-break-inside: avoid; }
    .section:nth-child(even) { background: transparent !important; }
    .episode-card, .host-card, .show-notes {
        border: 1px solid #ddd !important;
        background: #fafafa !important;
    }
    .fade-in { opacity: 1 !important; transform: none !important; }
    a { text-decoration: none; }
}
