/* Load More Button Styles */
.load-more-btn {
    background: linear-gradient(135deg, #6FC9CD 0%, #5bb5b9 100%);
    border: none;
    color: #000;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(111, 201, 205, 0.3);
    position: relative;
    overflow: hidden;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #5bb5b9 0%, #4a9fa3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 201, 205, 0.4);
    color: #000;
}

.load-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(111, 201, 205, 0.3);
}

.load-more-btn:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.load-more-btn .fa-spinner {
    margin-right: 8px;
}

/* Chapter list animations */
.chapter-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for multiple chapters */
.chapter-item:nth-child(1) { animation-delay: 0.1s; }
.chapter-item:nth-child(2) { animation-delay: 0.2s; }
.chapter-item:nth-child(3) { animation-delay: 0.3s; }
.chapter-item:nth-child(4) { animation-delay: 0.4s; }
.chapter-item:nth-child(5) { animation-delay: 0.5s; }
.chapter-item:nth-child(6) { animation-delay: 0.6s; }
.chapter-item:nth-child(7) { animation-delay: 0.7s; }
.chapter-item:nth-child(8) { animation-delay: 0.8s; }
.chapter-item:nth-child(9) { animation-delay: 0.9s; }
.chapter-item:nth-child(10) { animation-delay: 1.0s; }

/* Loading state */
.loading .btn-text {
    opacity: 0.7;
}

.loading .fa-spinner {
    display: inline-block !important;
}

/* No more chapters state */
.no-more .load-more-btn {
    background: #333;
    cursor: default;
}

.no-more .btn-text {
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .load-more-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .load-more-btn .fa-spinner {
        margin-right: 6px;
    }
}

/* Smooth transition for new chapters */
#chapters-list {
    transition: all 0.3s ease;
}

/* Hover effect for chapter items */
#chapters-list .list-group-item {
    transition: all 0.2s ease;
}

#chapters-list .list-group-item:hover {
    background: #2a2a2a !important;
    transform: translateX(5px);
}

/* Chapter counter */
.chapter-counter {
    color: #6FC9CD;
    font-size: 12px;
    margin-bottom: 10px;
    text-align: center;
}

/* Progress bar for loading */
.load-progress {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
    margin: 10px 0;
}

.load-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #6FC9CD, #5bb5b9);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
} 

/* Chapter List for PC */
.chapters-section {
    margin-top: 1.5rem;
    background: #23272b;
    border-radius: 12px;
    box-shadow: 0 2px 12px #0004;
    padding: 1.2rem 1.5rem;
}
.chapters-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.chapter-item {
    background: #23272b;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: transform 0.2s, background 0.2s;
    opacity: 1;
    transform: none;
}
.chapter-item.chapter-hidden {
    display: none;
}
.chapter-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-decoration: none;
    padding: 12px 16px;
    font-size: 1.05em;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.chapter-link:hover {
    background: #00e0ff;
    color: #23272b;
    transform: translateY(-2px);
}
.chapter-title {
    font-weight: 600;
}
.chapter-date {
    color: #bdbdbd;
    font-size: 0.95em;
}
.show-more-container {
    text-align: center;
    margin-top: 12px;
}
.show-more-btn {
    background: linear-gradient(90deg, #6FC9CD 0%, #00e0ff 100%);
    color: #18191a;
    border: none;
    border-radius: 24px;
    padding: 10px 32px;
    font-size: 1.08em;
    font-weight: 600;
    margin: 0 auto;
    box-shadow: 0 2px 12px #00e0ff22;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    outline: none;
    display: inline-block;
    letter-spacing: 0.5px;
}
.show-more-btn:hover, .show-more-btn:focus {
    background: linear-gradient(90deg, #5bb5b9 0%, #00bcd4 100%);
    color: #fff;
    box-shadow: 0 4px 16px #00e0ff44;
}
.show-more-btn:active {
    background: #5bb5b9;
    color: #fff;
} 