/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FFFFFF;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 120px 0 0; /* Account for header */
}

/* Manga Viewer Page Styles */
.manga-page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.manga-header h1 {
    font-size: 3.5rem;
    background: linear-gradient(90deg, #ffb187, #e521d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    letter-spacing: 2px;
}

.manga-header p {
    font-size: 1.2rem;
    color: #555;
}

/* Manga Pages Styling */
.manga-viewer {
    text-align: center;
}

.manga-pages {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.manga-page {
    width: 48%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .manga-header h1 {
        font-size: 2.5rem;
    }

    .manga-pages {
        flex-direction: column;
        align-items: center;
    }

    .manga-page {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .manga-header h1 {
        font-size: 2.5rem;
    }
}