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

:root {
    --red: #C8302A;
    --red-dark: #8B1F1A;
    --red-bright: #E8403A;
    --gold: #F0A500;
    --gold-light: #FFD060;
    --cream: #F5EFE0;
    --black: #0A0A0A;
    --dark: #111111;
    --mid: #1C1C1C;
    --text-muted: #888;
    --font-display: 'Bebas Neue', sans-serif;
    --font-ui: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
}

/* NOISE OVERLAY */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 1000;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 24px 60px;
    overflow: hidden;
}

/* Desert horizon glow */
.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 400px;
    background: radial-gradient(ellipse at center bottom, rgba(200, 48, 42, 0.25) 0%, rgba(240, 165, 0, 0.08) 40%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.2s;
}

.hero-logo {
    position: relative;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.4s;
}

/* Retro extruded wordmark — pure CSS */
.wordmark {
    font-family: var(--font-display);
    font-size: clamp(72px, 16vw, 160px);
    line-height: 0.9;
    letter-spacing: 0.02em;
    background: linear-gradient(180deg, #FFD060 0%, #F0A500 35%, #E8403A 65%, #C8302A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: block;
    filter: drop-shadow(4px 4px 0px rgba(139, 31, 26, 0.8)) drop-shadow(8px 8px 0px rgba(0, 0, 0, 0.6));
}

.wordmark-sub {
    display: block;
    font-family: var(--font-ui);
    font-size: clamp(14px, 2.5vw, 20px);
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 12px;
}

.hero-tagline {
    font-family: var(--font-ui);
    font-size: clamp(16px, 3vw, 22px);
    font-weight: 400;
    color: var(--cream);
    opacity: 0.7;
    max-width: 480px;
    margin: 0 auto 48px;
    line-height: 1.4;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.7s;
}

/* LINKS SECTION */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    max-width: 640px;
    width: 100%;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.9s;
}

.link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: var(--cream);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.link-card:hover {
    background: rgba(200, 48, 42, 0.12);
    border-color: rgba(200, 48, 42, 0.4);
    transform: translateY(-3px);
}

.link-card:hover::before {
    transform: scaleX(1);
}

.link-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--gold);
}

.link-label {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 239, 224, 0.8);
}

/* DIVIDER */
.section-divider {
    width: 100%;
    max-width: 640px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 48, 42, 0.5), rgba(240, 165, 0, 0.5), transparent);
    margin: 60px auto 0;
    opacity: 0;
    animation: fadeUp 0.5s ease forwards 1.1s;
}

/* LATEST EPISODES */
.episodes {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 1.2s;
}

.section-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red-bright);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.episode-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.episode-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.episode-item:hover {
    background: rgba(200, 48, 42, 0.08);
    border-left-color: var(--red);
}

.ep-number {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--red);
    opacity: 0.5;
    min-width: 48px;
    line-height: 1;
}

.ep-info {
    flex: 1;
}

.ep-title {
    font-family: var(--font-ui);
    font-size: 17px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.ep-meta {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
}

.ep-tag {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    background: rgba(200, 48, 42, 0.15);
    color: var(--red-bright);
    border: 1px solid rgba(200, 48, 42, 0.25);
}

/* HOSTS */
.hosts {
    background: var(--mid);
    padding: 60px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hosts-inner {
    max-width: 860px;
    margin: 0 auto;
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 600px) {
    .hosts-grid {
        grid-template-columns: 1fr;
    }

    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.host-card {
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    overflow: hidden;
}

.host-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--gold));
}

.host-name {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 6px;
}

.host-role {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.host-bio {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FOOTER */
footer {
    padding: 40px 24px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 32px;
    background: linear-gradient(180deg, var(--gold-light), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.footer-byline {
    font-family: var(--font-ui);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.footer-links a {
    font-family: var(--font-ui);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 12px;
    color: rgba(136, 136, 136, 0.5);
}

/* Red horizontal rule decoration */
.red-rule {
    width: 48px;
    height: 3px;
    background: var(--red);
    margin: 0 auto 32px;
}

/* COMING SOON BANNER */
.coming-soon-banner {
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
    padding: 10px 24px;
    text-align: center;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.coming-soon-banner::before {
    content: '🔥 FULL SITE COMING SOON 🔥 FULL SITE COMING SOON 🔥 FULL SITE COMING SOON 🔥 FULL SITE COMING SOON 🔥 FULL SITE COMING SOON 🔥 FULL SITE COMING SOON 🔥 FULL SITE COMING SOON 🔥 FULL SITE COMING SOON 🔥';
    position: absolute;
    white-space: nowrap;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.coming-soon-banner {
    overflow: hidden;
    height: 38px;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}