.novel-header {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
    justify-content: center;
        }
        
        .novel-cover-large {
            width: 200px;
            height: 300px;
            background-color: #555;
            border-radius: 8px;
            flex-shrink: 0;
            margin-left: 1.5rem;
    margin-right: 1.5rem;
        }
        
        @media (max-width: 768px) {
            .novel-cover-large {
                margin-left: auto;
                margin-right: auto;
                display: block;
            }
        }
        
        .novel-info-large {
            flex: 1;
            min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
        }
        
        .novel-title {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .novel-meta-large {
            color: #888;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        
        .action-buttons {
            display: flex;
            gap: 1rem;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            cursor: pointer;
        }
        
        .btn-secondary {
            background-color: var(--card-bg-dark);
            color: var(--text-dark);
            border: 1px solid #444;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            cursor: pointer;
        }
        
        .tabs {
            display: flex;
            border-bottom: 1px solid #444;
            margin-bottom: 2rem;
    justify-content: center;
        }
        
        .tab {
            padding: 1rem 2rem;
            background: none;
            border: none;
            color: var(--text-dark);
            cursor: pointer;
            border-bottom: 2px solid transparent;
    text-align: center;
        }

        .light-mode .tab {
            color: #222;
        }
        .dark-mode .tab {
            color: #fff;
        }
        
        .light-mode .chapter-list {
            color: #222;
        }
        .dark-mode .chapter-list {
            color: #fff;
        }

        .tab.active {
            border-bottom: 2px solid var(--primary-color);
            color: var(--primary-color);
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .chapter-list {
            max-height: 400px;
            overflow-y: auto;
    margin-left: auto;
    margin-right: auto;
        }
        
        .chapter-item {
            padding: 1rem;
            border-bottom: 1px solid #444;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .chapter-item:last-child {
            border-bottom: none;
        }
        
        .chapter-link {
            color: var(--text-dark);
            text-decoration: none;
        }
        
        .chapter-link:hover {
            color: var(--primary-color);
        }
        
        .genre-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
                margin: 1rem 1.5rem;
        }
        
        .genre-tag {
            background: rgba(253, 126, 20, 0.2);
            color: var(--primary-color);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
                margin-left: 0.25rem;
                margin-right: 0.25rem;
        }
        
        @media (max-width: 768px) {
                .genre-tags {
                    margin-left: 0.5rem;
                    margin-right: 0.5rem;
                }
                .genre-tag {
                    margin-left: 0.1rem;
                    margin-right: 0.1rem;
                }
            .novel-header {
                flex-direction: column;
                text-align: center;
            }
            
            .novel-cover-large {
                align-self: center;
            }
            
            .action-buttons {
                justify-content: center;
            }
            
            .tabs {
                flex-wrap: wrap;
        justify-content: center;
            }
            
            .tab {
                flex: 1;
                min-width: 120px;
                text-align: center;
            }
        }
        .light-mode .chapter-link {
    color: #222;
}
.dark-mode .chapter-link {
    color: #fff;
}
.chapter-link {
    transition: color 0.2s;
}
.light-mode .chapter-item {
    border-bottom: 1px solid #ddd;
    color: #222;
}
.dark-mode .chapter-item {
    border-bottom: 1px solid #444;
    color: #fff;
}