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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f1e8;
    color: #2b2520;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(245,241,232,0.95) 0%, rgba(245,241,232,0) 100%);
}

.back-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #5a4a3a;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
}

.back-link:hover {
    color: #2b2520;
}

.pitch-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #e8dfc8 0%, #f5f1e8 100%);
    position: relative;
}

.pitch-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 115, 85, 0.03) 2px, rgba(139, 115, 85, 0.03) 4px);
    pointer-events: none;
}

.pitch-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.pitch-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #3d3027;
    text-shadow: 2px 2px 4px rgba(139, 115, 85, 0.2);
}

.pitch-logline {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    text-align: center;
    color: #5a4a3a;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.era-label {
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    color: #8b7355;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.trailer-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    box-shadow:
        0 4px 16px rgba(59, 48, 39, 0.15),
        inset 0 0 0 1px rgba(139, 115, 85, 0.1);
    margin-bottom: 3rem;
    background: #3d3027;
}

.trailer-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pitch-tagline {
    text-align: center;
    margin-top: 3rem;
}

.pitch-tagline p {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.6;
    color: #3d3027;
}

.pitch-tagline em {
    font-style: italic;
    color: #5a4a3a;
    font-weight: 400;
}

.pitch-overview,
.pitch-why,
.pitch-structure {
    padding: 6rem 2rem;
    border-top: 1px solid rgba(139, 115, 85, 0.2);
}

.pitch-overview {
    background: #f5f1e8;
}

.pitch-structure {
    background: #ebe5d6;
}

.pitch-why {
    background: #f5f1e8;
}

.pitch-overview h2,
.pitch-why h2,
.pitch-structure h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #3d3027;
}

.pitch-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.9;
    color: #4a3d32;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pitch-description strong {
    font-weight: 600;
    color: #2b2520;
}

.pitch-description.highlight {
    font-size: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 115, 85, 0.2);
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.season-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(139, 115, 85, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 48, 39, 0.1);
}

.season-card:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(139, 115, 85, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(59, 48, 39, 0.15);
}

.season-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #8b7355;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.season-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: #3d3027;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.season-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: #5a4a3a;
}

.pitch-footer {
    padding: 4rem 2rem;
    border-top: 1px solid rgba(139, 115, 85, 0.2);
    text-align: center;
    background: #e8dfc8;
}

.pitch-footer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #5a4a3a;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.footer-credits {
    font-size: 1rem !important;
    color: #4a3d32 !important;
    margin-bottom: 0.75rem !important;
}

.footer-credits strong {
    color: #2b2520;
    font-weight: 600;
}

.footer-meta {
    font-size: 0.85rem !important;
    color: #8b7355 !important;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .pitch-title {
        font-size: 4rem;
    }

    .pitch-logline {
        font-size: 1rem;
        letter-spacing: 0.2em;
        margin-bottom: 0.75rem;
    }

    .era-label {
        font-size: 0.9rem;
        margin-bottom: 3rem;
    }

    .pitch-tagline p {
        font-size: 1.3rem;
    }

    .pitch-overview h2,
    .pitch-why h2,
    .pitch-structure h2 {
        font-size: 2.5rem;
    }

    .pitch-description {
        font-size: 1.1rem;
    }

    .pitch-overview,
    .pitch-why,
    .pitch-structure {
        padding: 4rem 1.5rem;
    }

    .nav {
        padding: 1.5rem;
    }

    .seasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .season-card {
        padding: 1.5rem;
    }

    .pitch-description.highlight {
        font-size: 1.2rem;
    }
}
