
:root {
    --bg: #0f172a;
    --bg-soft: #111827;
    --card: rgba(255,255,255,0.08);
    --line: rgba(255,255,255,0.12);
    --text: #f8fafc;
    --muted: #cbd5e1;
    --accent: #f59e0b;
    --accent-2: #f97316;
    --shadow: 0 20px 40px rgba(0,0,0,0.35);
    --radius: 22px;
    --max: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
    radial-gradient(circle at top left, rgba(245,158,11,0.15), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(249,115,22,0.12), transparent 25%),
    linear-gradient(180deg, #020617 0%, #0f172a 45%, #111827 100%);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(92%, var(--max));
    margin: 0 auto;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.95rem;
    backdrop-filter: blur(12px);
}

.tag::before {
    content: "●";
    color: var(--accent);
    font-size: 0.8rem;
}

header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(14px);
    background: rgba(2,6,23,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #111827;
    font-size: 1.15rem;
    box-shadow: var(--shadow);
}

.brand span {
    font-size: 1.05rem;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 26px;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.menu-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
}

.hero {
    padding: 90px 0 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 38px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin: 18px 0 22px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 60ch;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #111827;
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: rgba(255,255,255,0.06);
    border-color: var(--line);
    color: var(--text);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.stat {
    flex: 1 1 150px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    border-radius: 18px;
    backdrop-filter: blur(10px);
}

.stat strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.hero-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 24px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: auto -50px -50px auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,158,11,0.35), transparent 65%);
}

.mic-visual {
    min-height: 360px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
    linear-gradient(145deg, rgba(245,158,11,0.18), rgba(255,255,255,0.03)),
    rgba(2,6,23,0.85);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.mic {
    width: 130px;
    height: 210px;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.mic-head {
    width: 100px;
    height: 120px;
    border: 6px solid var(--accent);
    border-radius: 50px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 35px rgba(245,158,11,0.18);
}

.mic-head::before,
.mic-head::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    border-top: 4px solid rgba(255,255,255,0.25);
}

.mic-head::before { top: 30px; }
.mic-head::after { top: 62px; }

.mic-body {
    width: 14px;
    height: 60px;
    background: var(--accent);
    margin: -2px auto 0;
    border-radius: 20px;
}

.mic-stand {
    width: 90px;
    height: 50px;
    border: 6px solid var(--accent);
    border-top: 0;
    border-radius: 0 0 50px 50px;
    margin: 0 auto;
    position: relative;
}

.mic-stand::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -24px;
    width: 100px;
    height: 6px;
    background: var(--accent);
    border-radius: 999px;
}

.waves {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(245,158,11,0.22);
    border-radius: 50%;
    animation: pulse 2.8s linear infinite;
}

.wave:nth-child(1) { width: 180px; height: 180px; }
.wave:nth-child(2) { width: 260px; height: 260px; animation-delay: 0.7s; }
.wave:nth-child(3) { width: 340px; height: 340px; animation-delay: 1.4s; }

section {
    padding: 38px 0 42px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 24px;
}

.section-head h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.05;
    margin-top: 10px;
}

.section-head p {
    color: var(--muted);
    max-width: 58ch;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.card h3 {
    margin: 14px 0 10px;
    font-size: 1.2rem;
}

.card p,
.card li {
    color: var(--muted);
}

.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(245,158,11,0.14);
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 1.35rem;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.episode {
    position: relative;
    overflow: hidden;
}

.episode-badge {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(245,158,11,0.14);
    color: #fde68a;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.episode h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.episode-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 14px 0 18px;
    color: var(--muted);
    font-size: 0.95rem;
}

.player {
    padding: 14px;
    border-radius: 18px;
    background: rgba(2,6,23,0.55);
    border: 1px solid rgba(255,255,255,0.08);
}

.player-actions p {
    margin: 14px 0 18px;
}

.player-label {
    color: #fde68a;
    font-size: 0.92rem;
}

.episode-link {
    width: 100%;
}

.progress {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
    margin: 14px 0 12px;
}

.progress span {
    display: block;
    height: 100%;
    width: 35%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: inherit;
}

.player-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.play-btn {
    border: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #111827;
    border-radius: 14px;
    padding: 10px 16px;
    font-weight: 800;
    cursor: pointer;
}

.hosts {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: stretch;
}

.hosts-panel {
    min-height: 100%;
}

.host-list {
    display: grid;
    gap: 16px;
}

.host {
    display: flex;
    gap: 16px;
    align-items: start;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.avatar {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(245,158,11,0.9), rgba(249,115,22,0.9));
    color: #111827;
    font-weight: 900;
    font-size: 1.2rem;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.pill {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--muted);
    background: rgba(255,255,255,0.04);
    font-size: 0.92rem;
}

.newsletter {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    margin-top: 24px;
}

.newsletter input {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.06);
    color: var(--text);
    outline: none;
}

.newsletter input::placeholder {
    color: #94a3b8;
}

.newsletter button {
    border: 0;
    border-radius: 16px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #111827;
    font-weight: 800;
    cursor: pointer;
}

.platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.platform {
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--muted);
}

footer {
    padding: 28px 0 50px;
}

.footer-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
}

.player-layout {
    align-items: stretch;
}

.player-hero {
    padding-bottom: 44px;
}

.video-preview {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 10px;
}

.video-preview-badge {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(245,158,11,0.14);
    color: #fde68a;
    font-size: 0.9rem;
}

.video-preview h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.08;
}

.video-preview p {
    color: var(--muted);
}

.video-player-card {
    display: grid;
    gap: 20px;
}

.podcast-video {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #020617;
    box-shadow: var(--shadow);
}

.video-details {
    display: grid;
    gap: 10px;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1);
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .hosts,
    .grid-3,
    .episodes-grid {
    grid-template-columns: 1fr;
    }

    .nav-links {
    position: absolute;
    right: 4%;
    top: 84px;
    width: min(300px, 92vw);
    padding: 18px;
    background: rgba(2,6,23,0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    display: none;
    flex-direction: column;
    box-shadow: var(--shadow);
    }

    .nav-links.open {
    display: flex;
    }

    .menu-btn {
    display: inline-flex;
    }
}

@media (max-width: 640px) {
    .hero {
    padding-top: 60px;
    }

    .hero h1 {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
    }

    .section-head {
    align-items: start;
    flex-direction: column;
    }

    .newsletter {
    grid-template-columns: 1fr;
    }

    .footer-box {
    flex-direction: column;
    align-items: start;
    }
}
