.comic-reader-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.comic-carousel {
    display: flex;
    transition: transform 0.3s ease;

}
.comic-page {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comic-page .galleryItem-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: spinner 0.8s linear infinite;
}
.comic-page img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}
.comic-image {
    cursor: zoom-in;
    border-radius: 16px;
}
.comic-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    position: sticky;
    bottom: 0;
    z-index: 100;
    background: rgba(26,26,26,0.9);
    padding: 10px 0;
}
.comic-nav-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}
.comic-nav-btn:hover:not(:disabled) {
    background: rgba(255,255,255,0.4);
}
.comic-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.comic-page-indicator {
    color: white;
    font-size: 14px;
}

/* Mobile: 2x larger comic navigation */
@media (max-width: 768px) {
    .comic-nav-btn {
        width: 3.5rem !important;
        height: 3.5rem !important;
    }
    .comic-controls {
        gap: 1.875rem !important;
    }
}
