body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Oswald', sans-serif;
    background: url('/images/background.jpg') center/cover no-repeat fixed;
    background-color: #27130E;
    color: #f8f1e4;
}

.page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(39, 19, 14, 0.7);
    pointer-events: none;
}

.synopsis-container {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background-color: rgba(39, 19, 14, 0.6);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.synopsis-title {
    font-size: 2.5rem;
    text-align: center;
    color: #C3A16D;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.synopsis-content {
    line-height: 1.6;
    text-align: justify;
    color: #f8f1e4;
}

.back-button {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    text-decoration: none;
    padding: 10px 20px;
    background-color: rgba(195, 161, 109, 0.2);
    border: 2px solid #C3A16D;
    color: #C3A16D;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #C3A16D;
    color: #27130E;
}

@media (max-width: 850px) {
    .synopsis-container {
        margin: 50px 20px;
        padding: 20px;
    }
}