/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background-color: #fff;
    color: #f5576c;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #f5576c;
    transform: translateY(-3px);
}

.cover-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.cover-image:hover {
    transform: scale(1.05);
}

/* Comic Info Section */
.comic-info {
    padding: 4rem 0;
    background-color: white;
}

.comic-details h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.author-name {
    color: #667eea;
    font-weight: 600;
}

.status-ongoing {
    color: #28a745;
    font-weight: 600;
}

.genre-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.genre-tag {
    background-color: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.description {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.description h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* EEAT Elements */
.author-info-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.author-credentials {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.author-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #4caf50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
}

.badge-icon {
    font-size: 1.2rem;
}

.trust-indicators {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-weight: 500;
}

.trust-icon {
    font-size: 1.2rem;
}

/* Chapters Section */
.chapters-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.chapters-section h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.chapters-description {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
}

.chapters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.chapter-card {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.chapter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.chapter-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.chapter-info {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.chapter-preview {
    width: 100%;
    height: 150px;
    background-color: #f0f0f0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.chapter-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.chapter-card:hover .chapter-preview img {
    transform: scale(1.1);
}

.reading-guide {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.reading-guide h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.reading-guide ol {
    padding-left: 1.5rem;
}

.reading-guide li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* SEO Content Section */
.seo-content {
    padding: 4rem 0;
    background-color: white;
}

.content-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.content-block h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.content-block p {
    color: #666;
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h5 {
    margin-bottom: 1rem;
    color: #ecf0f1;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        gap: 1rem;
    }
    
    .chapters-grid {
        grid-template-columns: 1fr;
    }
    
    .author-credentials {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .trust-indicators {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .comic-info,
    .chapters-section,
    .seo-content {
        padding: 2rem 0;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional SEO Content Styles */
.detailed-content {
    margin-top: 3rem;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.detailed-content h3 {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
}

.reading-sections {
    display: grid;
    gap: 2rem;
}

.reading-section {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.reading-section h5 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.reading-section p {
    color: #666;
    line-height: 1.7;
}

/* Focus Styles for Accessibility */
.nav-link:focus,
.btn:focus,
.chapter-card:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Enhanced Chapter Card Keywords */
.chapter-keywords {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 5px;
    font-style: italic;
    color: #666;
}

/* SEO Enhancement Styles */
.seo-keywords {
    display: none; /* Hidden but readable by search engines */
}

/* Performance Optimization */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Advanced UI Enhancements */
.floating-nav {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.scroll-to-top {
    display: none;
}

.scroll-to-top.visible {
    display: flex;
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .chapter-reader {
        background-color: #1a1a1a;
    }
    
    .chapter-content {
        background-color: #2d2d2d;
    }
    
    .chapter-header,
    .chapter-footer {
        background-color: #2d2d2d;
        color: #e0e0e0;
    }
    
    .chapter-header h1 {
        color: #e0e0e0;
    }
    
    .chapter-meta {
        color: #b0b0b0;
    }
}

/* Image Zoom Feature */
.manga-page {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.manga-page.zoomed {
    cursor: zoom-out;
    transform: scale(1.5);
    z-index: 100;
    position: relative;
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Enhanced Chapter Navigation */
.chapter-quick-nav {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
}

.chapter-quick-nav.visible {
    display: block;
}

.chapter-quick-nav h4 {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    color: #333;
}

.chapter-quick-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
}

.chapter-quick-nav li {
    margin-bottom: 0.5rem;
}

.chapter-quick-nav a {
    color: #667eea;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0.3rem 0.5rem;
    border-radius: 5px;
    display: block;
    transition: background-color 0.3s;
}

.chapter-quick-nav a:hover {
    background-color: #f0f0f0;
}

.chapter-quick-nav a.current {
    background-color: #667eea;
    color: white;
}

/* Bookmark Feature */
.bookmark-btn {
    background: none;
    border: none;
    color: #ffd700;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.bookmark-btn:hover {
    transform: scale(1.2);
}

.bookmark-btn.bookmarked {
    color: #ff6b6b;
}

/* Share Feature */
.share-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.share-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.share-twitter {
    background-color: #1da1f2;
    color: white;
}

.share-facebook {
    background-color: #4267b2;
    color: white;
}

.share-reddit {
    background-color: #ff4500;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Comments Section */
.comments-section {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comments-section h3 {
    color: #333;
    margin-bottom: 1rem;
}

.comment-form {
    margin-bottom: 2rem;
}

.comment-form textarea {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    resize: vertical;
}

.comment-form button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: 500;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .floating-nav {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .chapter-quick-nav {
        left: 10px;
        padding: 0.8rem;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
    
    .comments-section {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .chapter-navigation,
    .floating-nav,
    .chapter-quick-nav,
    .comments-section {
        display: none !important;
    }
    
    .manga-page {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
}

/* Series Completion Styles */
.series-completion {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
}

.series-completion h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.series-completion p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Enhanced Chapter Cards for Main Page */
.chapter-card.featured {
    border: 2px solid #667eea;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.chapter-card.featured .chapter-title {
    color: #667eea;
    font-weight: 700;
}

/* Reading Statistics */
.reading-stats {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.reading-stats h4 {
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Recommendation Section */
.recommendations {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.recommendations h4 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.recommendation-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.recommendation-item:hover {
    transform: translateY(-5px);
}

.recommendation-item h5 {
    color: #333;
    margin-bottom: 0.5rem;
}

.recommendation-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Enhanced Mobile Experience */
@media (max-width: 480px) {
    .series-completion {
        padding: 1.5rem;
    }
    
    .series-completion h4 {
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .recommendation-grid {
        grid-template-columns: 1fr;
    }
}

/* Advanced Loading States */
.chapter-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.chapter-card.loading .chapter-preview img {
    filter: blur(2px);
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .chapter-card {
        border: 2px solid #000;
    }
    
    .nav-btn {
        border: 2px solid #000;
    }
    
    .floating-btn {
        border: 2px solid #000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .manga-page:hover {
        transform: none;
    }
    
    .chapter-card:hover {
        transform: none;
    }
}

/* Chapter Analysis Styles */
.chapter-analysis {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #667eea;
}

.chapter-analysis h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chapter-analysis p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.reader-engagement {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.reader-engagement h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.reader-engagement ul {
    list-style: none;
    padding: 0;
}

.reader-engagement li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.reader-engagement li::before {
    content: "💭";
    position: absolute;
    left: 0;
}

.acg-context {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #9c27b0;
}

.acg-context h4 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.acg-context p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.fan-reception {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.reader-quotes blockquote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem;
    border-left: 4px solid #667eea;
    margin: 1rem 0;
    font-style: italic;
    color: #555;
}

.acg-significance {
    background: linear-gradient(135deg, #fff3e0 0%, #fce4ec 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #ff9800;
}

.technical-analysis {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.technical-analysis ul {
    list-style: none;
    padding: 0;
}

.technical-analysis li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.technical-analysis strong {
    color: #667eea;
    font-weight: 600;
}

.critical-reception {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #4caf50;
}

.community-highlights {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.community-highlights ul {
    list-style: none;
    padding: 0;
}

.community-highlights li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.community-highlights li::before {
    content: "⭐";
    position: absolute;
    left: 0;
}

.expert-opinions blockquote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-left: 4px solid #4caf50;
    margin: 1rem 0;
    font-style: italic;
    color: #555;
    border-radius: 8px;
}

.thematic-analysis {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.theme-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.theme-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.theme-item h6 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.theme-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.reading-recommendations {
    background: linear-gradient(135deg, #fff8e1 0%, #f3e5f5 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #ffc107;
}

.finale-analysis {
    background: linear-gradient(135deg, #e1f5fe 0%, #f3e5f5 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #03a9f4;
}

.series-legacy {
    background: linear-gradient(135deg, #fff3e0 0%, #fce4ec 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #ff9800;
}

.impact-metrics {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.impact-metrics ul {
    list-style: none;
    padding: 0;
}

.impact-metrics li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.impact-metrics li::before {
    content: "🏆";
    position: absolute;
    left: 0;
}

.influence-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.influence-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.influence-item h6 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.influence-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.reader-reflection {
    background: linear-gradient(135deg, #f3e5f5 0%, #e8eaf6 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #9c27b0;
}

.reader-reflection ul {
    list-style: none;
    padding: 0;
}

.reader-reflection li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.reader-reflection li::before {
    content: "🤔";
    position: absolute;
    left: 0;
}

.final-appreciation {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.final-appreciation ul {
    list-style: none;
    padding: 0;
}

.final-appreciation li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.final-appreciation li::before {
    content: "🙏";
    position: absolute;
    left: 0;
}

/* Sitemap Page Styles */
.sitemap-page {
    padding: 2rem 0;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.sitemap-header {
    text-align: center;
    margin-bottom: 3rem;
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sitemap-header h1 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.sitemap-header p {
    color: #666;
    font-size: 1.1rem;
}

.sitemap-content {
    display: grid;
    gap: 2rem;
}

.sitemap-section {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sitemap-section h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.sitemap-section h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.sitemap-list li::before {
    content: "📄";
    position: absolute;
    left: 0;
    top: 0;
}

.sitemap-list.featured-chapters li::before {
    content: "⭐";
}

.sitemap-list a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sitemap-list a:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

.chapters-sitemap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.chapter-group {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.reading-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.info-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    margin-bottom: 0.5rem;
    color: #666;
    padding-left: 1rem;
    position: relative;
}

.info-card li::before {
    content: "•";
    color: #667eea;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ACG Culture Section Styles */
.acg-culture-section {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    border-left: 6px solid #4caf50;
}

.acg-culture-section h3 {
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.culture-content {
    display: grid;
    gap: 2rem;
}

.culture-block {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.culture-block h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.culture-block p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-highlight {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
}

.stat-highlight .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-highlight .stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Character Analysis Styles */
.character-analysis-section {
    background: linear-gradient(135deg, #fff3e0 0%, #fce4ec 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    border-left: 6px solid #ff9800;
}

.character-analysis-section h3 {
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.character-profile {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.character-profile h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.character-profile p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.character-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trait {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Themes Section Styles */
.themes-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    border-left: 6px solid #2196f3;
}

.themes-section h3 {
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.themes-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.theme-analysis {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #2196f3;
}

.theme-analysis h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.theme-analysis p {
    color: #666;
    line-height: 1.7;
}

/* Enhanced Recommendations */
.rec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 1rem;
}

.rec-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Creator Spotlight Styles */
.creator-spotlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    border-left: 6px solid #6c757d;
}

.creator-spotlight h3 {
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.creator-content {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.creator-info h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.creator-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.achievement {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.achievement-icon {
    font-size: 1.5rem;
}

.achievement-text {
    color: #666;
    font-weight: 500;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .acg-culture-section,
    .character-analysis-section,
    .themes-section,
    .creator-spotlight {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .acg-culture-section h3,
    .character-analysis-section h3,
    .themes-section h3,
    .creator-spotlight h3 {
        font-size: 1.5rem;
    }
    
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .character-grid {
        grid-template-columns: 1fr;
    }
    
    .themes-content {
        grid-template-columns: 1fr;
    }
    
    .creator-achievements {
        grid-template-columns: 1fr;
    }
    
    .character-traits,
    .rec-tags {
        justify-content: center;
    }
    
    .sitemap-header {
        padding: 1.5rem;
    }
    
    .sitemap-header h1 {
        font-size: 2rem;
    }
    
    .sitemap-section {
        padding: 1.5rem;
    }
    
    .chapters-sitemap {
        grid-template-columns: 1fr;
    }
    
    .reading-info {
        grid-template-columns: 1fr;
    }
}

/* ACG Guide Page Styles */
.acg-guide-page {
    padding: 2rem 0;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.guide-header {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.guide-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.guide-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.guide-section {
    background-color: white;
    margin: 3rem 0;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.guide-section h2 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    padding: 2rem;
    margin: 0;
    font-size: 1.8rem;
    border-left: 6px solid #667eea;
}

.series-overview {
    border-left: 6px solid #4caf50;
}

.character-deep-dive {
    border-left: 6px solid #ff9800;
}

.thematic-analysis {
    border-left: 6px solid #2196f3;
}

.cultural-impact {
    border-left: 6px solid #9c27b0;
}

.creator-analysis {
    border-left: 6px solid #f44336;
}

.reading-guide {
    border-left: 6px solid #607d8b;
}

.overview-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.overview-block h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.overview-block p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.stats-display {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.stat-card .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.character-analysis-grid {
    padding: 2rem;
    display: grid;
    gap: 2rem;
}

.main-character {
    background: linear-gradient(135deg, #fff3e0 0%, #fce4ec 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ff9800;
}

.main-character h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.character-details h4 {
    color: #333;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
}

.character-details p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.development-stages {
    list-style: none;
    padding: 0;
}

.development-stages li {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.development-stages strong {
    color: #667eea;
    font-weight: 600;
}

.supporting-characters {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2196f3;
}

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

.character-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2196f3;
}

.character-card h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.character-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.themes-grid {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.theme-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2196f3;
}

.theme-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.theme-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.theme-examples {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
}

.theme-examples h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.theme-examples ul {
    list-style: none;
    padding: 0;
}

.theme-examples li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    color: #666;
    font-size: 0.9rem;
}

.theme-examples li::before {
    content: "•";
    color: #2196f3;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.impact-content {
    padding: 2rem;
    display: grid;
    gap: 2rem;
}

.impact-area {
    background: linear-gradient(135deg, #f3e5f5 0%, #e8eaf6 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #9c27b0;
}

.impact-area h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.impact-area p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.impact-area h4 {
    color: #333;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.1rem;
}

.impact-area ul {
    list-style: none;
    padding: 0;
}

.impact-area li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.impact-area li::before {
    content: "⭐";
    position: absolute;
    left: 0;
}

.creator-content {
    padding: 2rem;
    display: grid;
    gap: 2rem;
}

.artistic-approach {
    background: linear-gradient(135deg, #ffebee 0%, #fce4ec 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #f44336;
}

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

.technique-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f44336;
}

.technique-item h5 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.technique-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.career-impact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #6c757d;
}

.achievements-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.achievement-icon {
    font-size: 2rem;
}

.achievement-details h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.achievement-details p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.reading-content {
    padding: 2rem;
    display: grid;
    gap: 2rem;
}

.reading-approach {
    background: linear-gradient(135deg, #e0f2f1 0%, #f1f8e9 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #607d8b;
}

.key-chapters {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.chapter-highlight {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #607d8b;
}

.chapter-highlight h5 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.chapter-highlight p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.discussion-topics {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #6c757d;
}

.topic-list {
    list-style: none;
    padding: 0;
}

.topic-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    color: #666;
}

/* Chapter Analysis Mobile Responsiveness */
@media (max-width: 768px) {
    .guide-header {
        padding: 2rem 1rem;
    }
    
    .guide-header h1 {
        font-size: 1.8rem;
    }
    
    .guide-header p {
        font-size: 1rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .stats-display {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .technique-grid {
        grid-template-columns: 1fr;
    }
    
    .character-grid {
        grid-template-columns: 1fr;
    }
    
    .chapter-analysis,
    .acg-context,
    .fan-reception,
    .technical-analysis,
    .critical-reception,
    .thematic-analysis,
    .finale-analysis,
    .series-legacy {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .theme-breakdown,
    .influence-areas {
        grid-template-columns: 1fr;
    }
    
    .community-highlights,
    .impact-metrics,
    .final-appreciation {
        padding: 1rem;
    }
}

/* Chapter Reader Styles */
.chapter-reader {
    padding: 2rem 0;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.chapter-header {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.chapter-header h1 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.chapter-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.chapter-meta {
    color: #666;
    font-size: 0.9rem;
}

.chapter-navigation {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-btn {
    padding: 0.6rem 1.2rem;
    background-color: #667eea;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-btn:hover:not(:disabled) {
    background-color: #5a6fd8;
    transform: translateY(-2px);
}

.nav-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.chapter-content {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.manga-page {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.manga-page:hover {
    transform: scale(1.02);
}

.chapter-footer {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.chapter-discussion {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.chapter-discussion h3 {
    color: #333;
    margin-bottom: 1rem;
}

.chapter-discussion p {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .chapter-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .chapter-navigation {
        width: 100%;
        justify-content: center;
    }
    
    .nav-btn {
        flex: 1;
        text-align: center;
        min-width: 120px;
    }
    
    .chapter-content,
    .chapter-header,
    .chapter-footer {
        padding: 1rem;
    }
}