        :root {
            --primary: #53B6F8;
            --secondary: #2575fc;
            --dark: #0f0f1a;
            --dark-light: #1a1a2e;
            --text: #e2e2f6;
            --text-secondary: #a1a1c2;
            --accent: #ff4d7d;
            --card-bg: rgba(30, 30, 50, 0.6);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: var(--dark);
            color: var(--text);
            min-height: 100vh;
        }
        <!-- NAVIGATION -->
        .watch-nav {
            position: fixed;
            top: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            z-index: 1000;
            background: linear-gradient(to bottom, rgba(15,15,26,0.9) 0%, transparent 100%);
        }

        .watch-nav.scrolled {
            background: var(--dark);
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }

        .back-btn {
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .back-btn i {
            margin-right: 8px;
        }

        .watch-title {
            font-size: 1.2rem;
            font-weight: 600;
            text-align: center;
            flex-grow: 1;
        }

        /* Player Container */
        .player-container {
            width: 100%;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
            position: relative;
            background: #000;
            /* margin-top: 60px; */
            margin-top: 10px;
            margin-bottom: 10px;
        }

        #video-iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Content Below Player */
        .watch-content {
            padding: 30px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Series Info */
        .series-info {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }

        .series-poster {
            flex: 0 0 250px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        .series-poster img {
            width: 100%;
            display: block;
        }

        .series-details {
            flex: 1;
        }

        .series-title {
            font-weight: bold;
            margin-bottom: 1px;
            margin-top: -10px;
            background: linear-gradient(to right, #fff 0%, #c1c1ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .series-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
            color: var(--text-secondary);
        }

        .series-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .series-meta-item i {
            color: var(--accent);
            line-height: 1;
        }
        
        .series-meta-item p {
            color: white;
            margin: 0;
            line-height: 1;
        }

        .series-description {
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .series-actions {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .action-btn {
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }

        .action-btn-primary {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
        }

        .action-btn-secondary {
            background: rgba(255,255,255,0.1);
            color: white;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(106,17,203,0.4);
        }

        .series-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .series-tag {
            background: rgba(106,17,203,0.2);
            color: var(--text);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            border: 1px solid var(--primary);
        }

        /* Episodes Section */
        .episodes-section {
            margin-top: 40px;
        }

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

        .section-title {
            font-size: 1.5rem;
            position: relative;
            padding-left: 15px;
        }

        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 70%;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        .lecteur-selector {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
        }

        .season-selector {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
        }

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

        .episode-card {
            background: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            transition: all 0.3s;
            cursor: pointer;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .episode-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            border-color: var(--primary);
        }

        .episode-card.active {
            border-color: var(--accent);
            background: rgba(106,17,203,0.2);
        }

        .episode-thumbnail {
            flex: 0 0 120px;
            position: relative;
        }

        .episode-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .episode-number {
            position: absolute;
            top: 5px;
            left: 5px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
        }

        .episode-duration {
            position: absolute;
            bottom: 5px;
            right: 5px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.7rem;
        }

        .episode-info {
            padding: 12px;
            flex: 1;
        }

        .episode-title {
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .episode-description {
            font-size: 0.8rem;
            color: var(--text-secondary);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Recommendations */

        .anime-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 20px;
        }
        
    /* Recommendations Section */
.recommendations {
    margin-top: 50px;
}

.recommendations .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.recommendations .section-title {
    font-size: 1.5rem;
    position: relative;
    padding-left: 15px;
}

.recommendations .section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 2px;
}

.recommendations .section-nav {
    display: flex;
    gap: 10px;
}

.recommendations .section-nav-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.recommendations .section-nav-btn:hover {
    background: var(--primary);
}

/* Anime List Container */
.recommendations .anime-list-container {
    position: relative;
}

.recommendations .anime-list-wrapper {
    position: relative;
}

.recommendations .anime-list {
    display: flex;
    overflow-x: scroll;
    gap: 15px;
    padding: 10px 0;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}

.recommendations .anime-list::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Anime Cards */
.recommendations .anime-card {
    flex: 0 0 auto;
    width: 220px;
    position: relative;
    transition: all 0.3s;
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.recommendations .anime-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.recommendations .card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 2;
}

.recommendations .anime-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.recommendations .card-content {
    padding: 15px;
}

.recommendations .card-title {
    font-size: 1rem;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recommendations .card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.recommendations .card-rating {
    color: #ffc107;
}

/* Card Overlay */
.recommendations .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(106,17,203,0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    opacity: 0;
    transition: all 0.3s;
}

.recommendations .anime-card:hover .card-overlay {
    opacity: 1;
}

.recommendations .overlay-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.recommendations .overlay-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommendations .overlay-buttons {
    display: flex;
    gap: 10px;
}

.recommendations .overlay-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.recommendations .overlay-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
}

/* Navigation Arrow */
.recommendations .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-color: rgba(0,0,0,0.5);
    width: 40px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1;
    transition: opacity 0.3s;
}

/* Adulte PopUp */
.adult-warning-popup {
background: #1a1a2e; padding: 20px; border-radius: 30px; max-width: 80%; text-align: center; color: #e2e2f6;
}

.adult-warning-popup img { width: 50%; }

.adult-btn1 { padding: 30px 40px; background: linear-gradient(to left, #6a11cb, #2575fc); border: none; border-radius: 15px; color: white; cursor: pointer; font-size: 32px; }
.adult-btn2 { padding: 30px 40px; background: linear-gradient(to left, #6a11cb, #2575fc); border: none; border-radius: 15px; color: white; cursor: pointer; font-size: 32px; }

#adult-warning-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}
#adult-warning-popup.active {
    display: flex;
}

#adult-warning-popup h2 {
    margin-bottom: 15px;
    font-size: 3.5rem;
    color: red;
}
#adult-warning-popup p {
    margin-bottom: 20px;
    font-size: 3rem;
    color: #a1a1c2;
}

        /* Responsive Design */
        @media (max-width: 992px) {
            .series-info {
                flex-direction: column;
            }

            .series-poster {
                flex: 0 0 auto;
                max-width: 300px;
                margin: 0 auto;
            }
    .recommendations .anime-card {
        width: 200px;
    }
    
    .recommendations .anime-img {
        height: 280px;
    }
}

        @media (max-width: 768px) {
            .watch-nav {
                padding: 15px;
            }

            .watch-title {
                font-size: 1rem;
                text-align: right;
            }

            .series-title {
                font-size: 1.5rem;
            }

            .episodes-list {
                grid-template-columns: 1fr;
            }
    .recommendations .anime-card {
        width: 180px;
    }
    
    .recommendations .anime-img {
        height: 250px;
    }
    
    .recommendations .section-title {
        font-size: 1.3rem;
    }
    
    .adult-btn1 { padding: 10px 20px; background: linear-gradient(to right, #6a11cb, #2575fc); font-size: 1rem; }
.adult-btn2 { padding: 3px 9px; background: linear-gradient(to left, #6a11cb, #2575fc); font-size: 1rem; }

.adult-warning-popup {
max-width: 80%;
}

#adult-warning-popup h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: red;
}
#adult-warning-popup p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #a1a1c2;
}
}


        @media (max-width: 576px) {
            .series-actions {
                flex-direction: column;
            }

            .action-btn {
                justify-content: center;
            }

            .controls-bottom {
                flex-direction: column;
                gap: 10px;
            }

            .controls-left, .controls-right {
                width: 100%;
                justify-content: space-between;
            }
    .recommendations .anime-card {
        width: 160px;
    }
    
    .recommendations .anime-img {
        height: 220px;
    }
    
    .recommendations .overlay-desc {
        -webkit-line-clamp: 2;
    }
    
    .recommendations .arrow {
        display: none;
    }
}

        @media (max-width: 468px) {
        .adult-btn1 { padding: 3px 9px; background: linear-gradient(to right, #6a11cb, #2575fc); font-size: 1rem; }
.adult-btn2 { padding: 3px 9px; background: linear-gradient(to left, #6a11cb, #2575fc); font-size: 1rem; }
}