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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    /* Mobile optimization */
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 0;
    /* Mobile optimization */
    min-height: 60px;
}

.header-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Mobile optimization */
    min-height: 44px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.logo-section:hover {
    transform: scale(1.02);
}

.logo {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.site-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ff2e97;
    box-shadow: 0 0 10px #ff2e97;
}

/* Actions */
.actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    color: #ffffff;
    font-size: 0.875rem;
    width: 16rem;
    transition: all 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: #ff2e97;
    box-shadow: 0 0 0 3px rgba(255, 46, 151, 0.1);
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s ease;
}

.search-btn:hover {
    color: #ff2e97;
}

.action-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: scale(1.1);
}

.notification-dot {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    width: 0.5rem;
    height: 0.5rem;
    background: #ff2e97;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff2e97;
}



/* Main Content */
.main {
    padding: 4rem 0;
}

/* Shows Section */
.shows-section {
    padding: 4rem 0;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.section-controls {
    display: flex;
    gap: 0.5rem;
}

.view-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-toggle.active {
    background: #ff2e97;
    color: #ffffff;
    border-color: #ff2e97;
}

.view-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.shows-grid.list-view {
    grid-template-columns: 1fr;
}

.show-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Mobile optimization */
    will-change: transform;
    -webkit-tap-highlight-color: transparent;
}

.show-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ff2e97;
}

.show-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #1a1a1a;
}

.show-info {
    padding: 1.5rem;
}

.show-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.show-episodes {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Player Section */
.player-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.player-section.hidden {
    display: none;
}

.player-container {
    background: #1a1a1a;
    border-radius: 1rem;
    max-width: 1400px;
    width: 100%;
    max-height: 95vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.player-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.player-info {
    flex: 1;
}

.player-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.player-episode {
    color: #9ca3af;
    font-size: 0.875rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.player-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s ease;
}

.player-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    border: none;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    background: #000;
}

.video-quality-selector {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.video-quality-selector select {
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 0.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.video-quality-selector select:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: #ff2e97;
}

.video-quality-selector select:focus {
    outline: none;
    border-color: #ff2e97;
    box-shadow: 0 0 0 2px rgba(255, 46, 151, 0.2);
}

.player-info-panel {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 200px;
    overflow-y: auto;
}

.episode-list h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.episode-list-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.episode-list-container::-webkit-scrollbar {
    width: 6px;
}

.episode-list-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.episode-list-container::-webkit-scrollbar-thumb {
    background: rgba(255, 46, 151, 0.6);
    border-radius: 3px;
}

.episode-list-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 46, 151, 0.8);
}

.episode-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.episode-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 46, 151, 0.1), transparent);
    transition: left 0.5s ease;
}

.episode-item:hover::before {
    left: 100%;
}

.episode-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 46, 151, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 46, 151, 0.2);
}

.episode-item.active {
    background: rgba(255, 46, 151, 0.2);
    border-color: #ff2e97;
    box-shadow: 0 0 20px rgba(255, 46, 151, 0.4);
}

.episode-item.active::before {
    display: none;
}

.episode-item h5 {
    color: #ff2e97;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 46, 151, 0.5);
}

.episode-item p {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Backend Status */
.backend-status {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0 1.5rem;
}

.status-content {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 46, 151, 0.5);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(255, 46, 151, 0.2);
}

.status-icon {
    font-size: 1.25rem;
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-spinner.hidden {
    display: none;
}

.spinner {
    width: 3rem;
    height: 3rem;
    border: 3px solid rgba(255, 46, 151, 0.3);
    border-top: 3px solid #ff2e97;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 1600px) {
    .shows-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* === Mobile Responsive Design === */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .shows-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }
    
    .header-container {
        padding: 0 1rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .header {
        padding: 0.6rem 0;
        min-height: 50px;
    }
    
    .header-container {
        padding: 0 0.8rem;
        min-height: 40px;
    }
    
    .logo-section img {
        width: 32px;
        height: 32px;
    }
    
    .logo-section h1 {
        font-size: 1.1rem;
    }
    
    .nav {
        gap: 0.8rem;
    }
    
    .search-input {
        width: 10rem;
        font-size: 0.9rem;
    }
    
    .shows-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .show-card {
        border-radius: 0.8rem;
    }
    
    .show-thumbnail {
        height: 180px;
    }
    
    .show-title {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
    
    .player-section {
        padding: 0.8rem;
    }
    
    .player-container {
        max-height: 90vh;
        border-radius: 0.8rem;
    }
    
    .player-controls {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.8rem;
    }
    
    .episode-selector {
        width: 100%;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .section-controls {
        gap: 0.5rem;
    }
    
    .view-toggle {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0;
        min-height: 45px;
    }
    
    .header-container {
        padding: 0 0.6rem;
        min-height: 35px;
    }
    
    .logo-section img {
        width: 28px;
        height: 28px;
    }
    
    .logo-section h1 {
        font-size: 1rem;
    }
    
    .nav {
        gap: 0.6rem;
    }
    
    .search-input {
        width: 8rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .show-thumbnail {
        height: 160px;
    }
    
    .show-title {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    .player-section {
        padding: 0.6rem;
    }
    
    .player-container {
        max-height: 85vh;
        border-radius: 0.6rem;
    }
    
    .player-controls {
        padding: 0.6rem;
    }
    
    .episode-selector {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .view-toggle {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .container {
        padding: 0 0.6rem;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .show-thumbnail {
        height: 140px;
    }
    
    .show-title {
        font-size: 0.75rem;
        padding: 0.4rem;
    }
    
    .logo-section h1 {
        font-size: 0.9rem;
    }
    
    .search-input {
        width: 7rem;
        font-size: 0.75rem;
    }
}

/* Play button styles */
.play-btn {
    background: linear-gradient(90deg, #ff2e97, #ff6ba9);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 46, 151, 0.4);
}

/* === Anime Detail Popup Styles === */
.anime-detail-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    z-index: 9990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.anime-detail-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 9991;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.anime-detail-backdrop.active,
.anime-detail-popup.active {
    opacity: 1;
    pointer-events: auto;
}

.anime-detail-popup.active {
    transform: translate(-50%, -50%) scale(1);
}

.anime-detail-content {
    background: linear-gradient(135deg, #1a0a1a, #0a0a1a);
    border: 2px solid #ff2e97;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(255, 46, 151, 0.3);
    max-width: 800px;
    width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    /* Mobile optimization */
    -webkit-overflow-scrolling: touch;
}

.anime-detail-content .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 46, 151, 0.2);
    border: 1px solid #ff2e97;
    color: white;
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.anime-detail-content .close-btn:hover {
    background: #ff2e97;
    transform: scale(1.1);
}

#anime-detail-info {
    padding: 2rem;
}

.anime-detail-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.anime-detail-poster {
    flex-shrink: 0;
    width: 200px;
    height: 280px;
    border-radius: 1rem;
    object-fit: cover;
    border: 2px solid #ff2e97;
}

.anime-detail-meta {
    flex-grow: 1;
}

.anime-detail-title {
    color: #ff2e97;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.anime-detail-original-title {
    color: #ccc;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: normal;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.anime-detail-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.anime-detail-stat {
    background: rgba(255, 46, 151, 0.1);
    border: 1px solid #ff2e97;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.anime-detail-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.anime-detail-tags {
    color: #ff6ba9;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: rgba(255, 46, 151, 0.1);
    border-radius: 0.5rem;
    border-left: 3px solid #ff2e97;
}

.anime-detail-episodes {
    margin-top: 2rem;
}

.anime-detail-episodes h3 {
    color: #ff2e97;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.episode-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 46, 151, 0.3);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.episode-card:hover {
    background: rgba(255, 46, 151, 0.1);
    border-color: #ff2e97;
    transform: translateY(-2px);
}

.episode-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid #ff2e97;
}

.episode-info {
    flex-grow: 1;
}

.episode-title {
    color: white;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.3;
}

.episode-number {
    color: #ff2e97;
    font-size: 0.8rem;
    margin: 0;
}

.episode-watch-btn {
    background: linear-gradient(90deg, #ff2e97, #ff6ba9);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.episode-watch-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 46, 151, 0.4);
}

.episode-duration {
    color: #888;
    font-size: 0.8rem;
    margin: 0;
}

.anime-detail-actions {
    margin-top: 1rem;
}

.play-all-btn {
    background: linear-gradient(90deg, #ff2e97, #ff6ba9);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.play-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 46, 151, 0.4);
}

/* Mobile responsiveness for anime detail popup */
@media (max-width: 768px) {
    .anime-detail-content {
        width: 95vw;
        max-height: 90vh;
        border-radius: 1rem;
    }
    
    .anime-detail-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .anime-detail-poster {
        width: 150px;
        height: 200px;
        align-self: center;
        border-radius: 0.8rem;
    }
    
    .anime-detail-stats {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .anime-detail-stat {
        font-size: 0.8rem;
    }
    
    .anime-detail-title {
        font-size: 1.3rem;
    }
    
    .anime-detail-description {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .episodes-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .episode-card {
        flex-direction: row;
        padding: 0.8rem;
    }
    
    .episode-thumbnail {
        width: 80px;
        height: 60px;
        border-radius: 0.5rem;
    }
    
    .episode-info {
        flex: 1;
        margin-left: 0.8rem;
    }
    
    .episode-title {
        font-size: 0.9rem;
    }
    
    .episode-number {
        font-size: 0.8rem;
    }
    
    .episode-watch-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .play-all-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .anime-detail-content {
        width: 98vw;
        max-height: 95vh;
        border-radius: 0.8rem;
    }
    
    .anime-detail-poster {
        width: 120px;
        height: 160px;
    }
    
    .anime-detail-title {
        font-size: 1.1rem;
    }
    
    .anime-detail-description {
        font-size: 0.8rem;
    }
    
    .anime-detail-stats {
        gap: 0.6rem;
    }
    
    .anime-detail-stat {
        font-size: 0.75rem;
    }
    
    .episode-card {
        padding: 0.6rem;
    }
    
    .episode-thumbnail {
        width: 60px;
        height: 45px;
    }
    
    .episode-info {
        margin-left: 0.6rem;
    }
    
    .episode-title {
        font-size: 0.8rem;
    }
    
    .episode-number {
        font-size: 0.75rem;
    }
    
    .episode-watch-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .play-all-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}
    
    .episodes-grid {
        grid-template-columns: 1fr;
    }
    
    .episode-card {
        flex-direction: column;
        text-align: center;
    }
    
    .episode-thumbnail {
        width: 100px;
        height: 70px;
    }
}

/* Sponsorship system removed - clean, ad-free experience */