* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0806;
    --bg-secondary: #12100c;
    --bg-tertiary: #1a1814;
    --text-primary: #f4f4f1;
    --text-secondary: #d4cfc6;
    --accent-gold: #eab93f;
    --accent-brown: #574722;
    --accent-cream: #f9f6f0;
    --accent-darkbrown: #423419;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.mono {
    /* Current: Fira Code (modern developer) */
    /* Alt: font-family: 'VT323', monospace; (retro geeky) */
    /* Alt: font-family: 'Inconsolata', monospace; (minimalist & clean) */
    font-family: 'Fira Code', monospace;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 8, 6, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(234, 185, 63, 0.15);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo-wrapper:hover {
    opacity: 0.8;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Fira Code', monospace;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(234, 185, 63, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(87, 71, 34, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    /* Current: Fira Code | Headers: VT323 | Alt: 'Inconsolata' */
    font-family: 'Fira Code', monospace;
    letter-spacing: -2px;
}

.code-bracket {
    color: var(--accent-gold);
}

.hero h1 {
    color: var(--text-primary);
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-gold), #d4a860);
    color: var(--bg-primary);
    box-shadow: 0 8px 20px rgba(234, 185, 63, 0.2);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(234, 185, 63, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.cta-button.secondary:hover {
    background: rgba(234, 185, 63, 0.1);
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(234, 185, 63, 0.15));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    /* Current: Fira Code | Alt: 'VT323' | Alt: 'Inconsolata' */
    font-family: 'Fira Code', monospace;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-brown));
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--accent-gold);
}

.highlight {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Episodes Section */
.episodes {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
}

.coming-soon {
    text-align: center;
    padding: 3rem;
    background: rgba(234, 185, 63, 0.05);
    border: 2px dashed rgba(234, 185, 63, 0.3);
    border-radius: 12px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.coming-soon .mono {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 2px;
    margin: 1.5rem 0;
    animation: loading 2s infinite;
}

@keyframes loading {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.coming-soon p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Hosts Section */
.hosts {
    padding: 5rem 0;
    background-color: var(--bg-primary);
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.host-card {
    background: linear-gradient(135deg, rgba(234, 185, 63, 0.08), rgba(87, 71, 34, 0.08));
    border: 2px solid rgba(234, 185, 63, 0.2);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.host-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(234, 185, 63, 0.15), rgba(87, 71, 34, 0.15));
}

.host-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(234, 185, 63, 0.1);
    border-radius: 50%;
}

.host-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.plus-card .host-avatar {
    background: rgba(234, 185, 63, 0.15);
    color: var(--accent-gold);
}

.host-card h3 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.host-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.placeholder-hosts .host-card p {
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
}

.contact-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-button {
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid;
    font-size: 0.9rem;
    /* Current: Fira Code | Alt: 'VT323' | Alt: 'Inconsolata' */
    font-family: 'Fira Code', monospace;
    cursor: pointer;
    display: inline-block;
}

.social-button.spotify {
    color: #1DB954;
    border-color: #1DB954;
    background: transparent;
}

.social-button.spotify:hover {
    background: #1DB954;
    color: white;
}

.social-button.apple {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    background: transparent;
}

.social-button.apple:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.social-button.youtube {
    color: #FF0000;
    border-color: #FF0000;
    background: transparent;
}

.social-button.youtube:hover {
    background: #FF0000;
    color: white;
}

.social-button.email {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    background: transparent;
}

.social-button.email:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

/* Footer */
footer {
    background-color: #050403;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(234, 185, 63, 0.1);
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 0.6rem 0;
    }

    .navbar .container {
        gap: 0.8rem;
    }

    .logo-image {
        display: none;
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .nav-links {
        gap: 0.8rem;
        font-size: 0.75rem;
    }

    .nav-links a {
        font-size: 0.75rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .hero-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .hero-logo {
        max-width: 250px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.05rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .cta-group {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}
