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;
    overscroll-behavior: none;
}

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

.writer-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 40px 20px;
    text-align: center;
    z-index: 1;
    box-sizing: border-box;
}

.profile-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #C3A16D;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.profile-name {
    font-size: 2.5rem;
    color: #C3A16D;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.profile-description {
    font-size: 1.5rem;
    color: #f8f1e4;
    max-width: 600px;
    margin-bottom: 25px;
    opacity: 0.8;
}

.writer-bio {
    max-width: 700px;
    text-align: justify;
    line-height: 1.6;
    background-color: rgba(39, 19, 14, 0.6);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    padding-bottom: 20px;
}

.nav-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid #C3A16D;
    color: #C3A16D;
    text-decoration: none;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: bold;
}

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

@media (max-width: 768px) {
    .writer-container {
        padding-top: 30px;
        justify-content: flex-start;
    }
    
    .profile-image {
        width: 180px;
        height: 180px;
        margin-bottom: 20px;
    }

    .profile-name {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .profile-description {
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .writer-bio {
        margin: 0 10px 25px;
        padding: 20px;
        font-size: 1rem;
    }
    
    .navigation {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .nav-button {
        width: 80%;
        text-align: center;
        padding: 12px 0;
    }
}
