/* Pitch page styles */
.essay-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header styles */
header {
    margin-bottom: 60px;
}

/* Essay content */
.essay-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    color: #000;
}

.essay-content h1 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 2.5em;
    margin: 0 0 1em 0;
    line-height: 1.2;
    color: #000;
}

/* PDF container */
.pdf-container {
    width: 100%;
    margin-top: 20px;
}

.pdf-container embed {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.pdf-fallback {
    font-family: 'Space Mono', monospace;
    font-size: 0.9em;
    color: rgba(0, 0, 0, 0.6);
    text-align: center;
    margin-top: 1em;
}

.pdf-fallback a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.pdf-fallback a:hover {
    border-bottom-color: #000;
}

/* Back link */
.back-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .essay-container {
        padding: 20px;
    }

    .essay-content {
        padding: 30px 20px;
    }

    .essay-content h1 {
        font-size: 2em;
    }

    .pdf-container embed {
        height: 500px;
    }
}
