:root {
            --background: #080808;
            --background-secondary: #101010;
            --card: #181818;
            --card-light: #202020;
            --yellow: #ffd400;
            --yellow-hover: #ffe34d;
            --white: #ffffff;
            --text-muted: #a9a9a9;
            --border: rgba(255, 255, 255, 0.08);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            min-height: 100vh;
            margin: 0;
            background:
                radial-gradient(
                    circle at top right,
                    rgba(255, 212, 0, 0.13),
                    transparent 30%
                ),
                radial-gradient(
                    circle at bottom left,
                    rgba(255, 212, 0, 0.05),
                    transparent 30%
                ),
                var(--background);

            color: var(--white);
            font-family:
                Inter,
                Arial,
                Helvetica,
                sans-serif;
        }

        a {
            text-decoration: none;
        }

        /* NAVIGATION */

        .main-navbar {
            background: rgba(8, 8, 8, 0.94);
            border-bottom: 1px solid rgba(255, 212, 0, 0.22);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

        .navbar-brand {
            color: var(--white);
        }

        .navbar-brand:hover {
            color: var(--white);
        }

        .brand-logo {
            width: 48px;
            height: 48px;
            border: 2px solid var(--yellow);
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 0 22px rgba(255, 212, 0, 0.3);
        }

        .brand-title {
            display: block;
            font-size: 1.15rem;
            font-weight: 900;
            line-height: 1;
            letter-spacing: 0.8px;
            text-transform: uppercase;
        }

        .brand-title span {
            color: var(--yellow);
        }

        .brand-subtitle {
            display: block;
            margin-top: 5px;
            color: var(--text-muted);
            font-size: 0.72rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .navbar-toggler {
            border-color: rgba(255, 212, 0, 0.45);
            box-shadow: none !important;
        }

        .navbar-toggler-icon {
            filter: invert(1);
        }

        .nav-link {
            color: #d5d5d5;
            font-weight: 700;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--yellow);
        }


        @media (max-width: 991.98px) {

            .navbar-nav .nav-item {
                width: 100%;
                margin: 0 !important;
            }

            .navbar-nav .nav-item + .nav-item {
                margin-top: 8px !important;
            }

            .subscribe-button,
            .youtube-nav-button {
                display: flex;
                align-items: center;
                justify-content: center;

                width: 100%;
                min-height: 44px;

                margin: 0;

                padding: 10px 18px;

                line-height: 1.2;
            }
        }
        
        @media (max-width: 991px) {

                .main-navbar {
                    padding-top: 8px;
                    padding-bottom: 8px;
                }

                .navbar-collapse {
                    margin-top: 14px;
                    padding: 18px;

                    background: #101010;

                    border: 1px solid rgba(255, 255, 255, 0.1);
                    border-radius: 18px;

                    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
                }

                .navbar-nav {
                    align-items: stretch !important;
                    gap: 4px !important;
                }

                .navbar-nav .nav-item {
                    width: 100%;
                    margin: 0 !important;
                }

                .navbar-nav .nav-link {
                    display: block;

                    width: 100%;

                    padding: 11px 0;

                    color: #d8d8d8;

                    font-weight: 700;
                }

                .navbar-nav .nav-link:hover,
                .navbar-nav .nav-link:focus,
                .navbar-nav .nav-link.active {
                    color: #ffd400;
                }

                .subscribe-button,
                .youtube-nav-button {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;

                    width: 100%;

                    margin-top: 8px;

                    padding: 11px 18px;

                    text-align: center;
                }
            }

        .youtube-nav-button {
            padding: 10px 18px;
            background: var(--yellow);
            color: #111;
            border: none;
            border-radius: 999px;
            font-weight: 900;
            transition: 0.25s ease;
        }

        .youtube-nav-button:hover {
            background: var(--yellow-hover);
            color: #111;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(255, 212, 0, 0.2);
        }

        /* HERO */

        .hero {
            padding-top: 145px;
            padding-bottom: 65px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            color: var(--yellow);
            background: rgba(255, 212, 0, 0.1);
            border: 1px solid rgba(255, 212, 0, 0.38);
            border-radius: 999px;
            font-size: 0.82rem;
            font-weight: 900;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .hero-title {
            max-width: 900px;
            margin-top: 20px;
            margin-bottom: 20px;
            font-size: clamp(2.7rem, 7vw, 5.8rem);
            font-weight: 950;
            line-height: 0.95;
            letter-spacing: -3px;
            text-transform: uppercase;
        }

        .hero-title span {
            color: var(--yellow);
            text-shadow: 0 0 35px rgba(255, 212, 0, 0.22);
        }

        .hero-description {
            max-width: 730px;
            margin: 0;
            color: var(--text-muted);
            font-size: 1.06rem;
            line-height: 1.8;
        }

        /* RECHERCHE */

        .search-wrapper {
            position: relative;
            max-width: 520px;
            margin-top: 30px;
        }

        .search-wrapper i {
            position: absolute;
            top: 50%;
            left: 18px;
            color: var(--yellow);
            transform: translateY(-50%);
        }

        .search-input {
            width: 100%;
            padding: 14px 18px 14px 48px;
            color: var(--white);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border);
            border-radius: 999px;
            outline: none;
            transition: 0.25s ease;
        }

        .search-input::placeholder {
            color: #777;
        }

        .search-input:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 212, 0, 0.7);
            box-shadow: 0 0 0 4px rgba(255, 212, 0, 0.08);
        }

        /* TITRES */

        .section-title {
            display: flex;
            align-items: center;
            gap: 13px;
            margin-bottom: 28px;
            font-size: clamp(1.6rem, 4vw, 2.4rem);
            font-weight: 950;
            text-transform: uppercase;
        }

        .section-title::before {
            width: 7px;
            height: 35px;
            background: var(--yellow);
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255, 212, 0, 0.55);
            content: "";
        }

        /* DERNIÈRE VIDÉO */

        .featured-section {
            padding-bottom: 70px;
        }

        .featured-card {
            overflow: hidden;
            background:
                linear-gradient(
                    145deg,
                    rgba(255, 255, 255, 0.05),
                    rgba(255, 255, 255, 0.015)
                ),
                var(--card);

            border: 1px solid var(--border);
            border-radius: 26px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
        }

        .featured-player {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #000;
        }

        .featured-player iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .featured-content {
            padding: 30px;
        }

        .latest-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 16px;
            padding: 7px 12px;
            color: #111;
            background: var(--yellow);
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 950;
            letter-spacing: 0.7px;
            text-transform: uppercase;
        }

        .featured-title {
            margin-bottom: 16px;
            font-size: clamp(1.65rem, 4vw, 2.8rem);
            font-weight: 900;
            line-height: 1.18;
        }

        .featured-description {
            max-width: 950px;
            margin-bottom: 22px;
            color: #c3c3c3;
            line-height: 1.8;
            white-space: pre-line;
        }

        .stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
        }

        .stat-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 13px;
            color: #d4d4d4;
            background: rgba(255, 255, 255, 0.055);
            border: 1px solid var(--border);
            border-radius: 999px;
            font-size: 0.88rem;
        }

        .stat-item i {
            color: var(--yellow);
        }

        .watch-button {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 12px 20px;
            color: #111;
            background: var(--yellow);
            border-radius: 999px;
            font-weight: 900;
            transition: 0.25s ease;
        }

        .watch-button:hover {
            color: #111;
            background: var(--yellow-hover);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(255, 212, 0, 0.2);
        }

        /* LISTE DES VIDÉOS */

        .videos-section {
            padding-top: 25px;
            padding-bottom: 110px;
        }

        .video-list-card {
            overflow: hidden;
            height: 100%;
            margin-bottom: 25px;
            background:
                linear-gradient(
                    135deg,
                    rgba(255, 255, 255, 0.04),
                    rgba(255, 255, 255, 0)
                ),
                var(--card);

            border: 1px solid var(--border);
            border-radius: 22px;
            transition: 0.28s ease;
        }

        .video-list-card:hover {
            border-color: rgba(255, 212, 0, 0.55);
            transform: translateY(-5px);
            box-shadow:
                0 22px 50px rgba(0, 0, 0, 0.32),
                0 0 28px rgba(255, 212, 0, 0.04);
        }

        .thumbnail-wrapper {
            position: relative;
            overflow: hidden;
            height: 100%;
            min-height: 270px;
            background: #000;
        }

        .thumbnail-wrapper img {
            width: 100%;
            height: 100%;
            min-height: 270px;
            object-fit: cover;
            transition: 0.45s ease;
        }

        .video-list-card:hover .thumbnail-wrapper img {
            transform: scale(1.06);
        }

        .thumbnail-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.18);
            transition: 0.25s ease;
        }

        .video-list-card:hover .thumbnail-overlay {
            background: rgba(0, 0, 0, 0.35);
        }

        .play-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 66px;
            height: 66px;
            color: #111;
            background: var(--yellow);
            border-radius: 50%;
            font-size: 2rem;
            opacity: 0;
            transform: scale(0.8);
            transition: 0.25s ease;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
        }

        .video-list-card:hover .play-icon {
            opacity: 1;
            transform: scale(1);
        }

        .video-duration {
            position: absolute;
            right: 12px;
            bottom: 12px;
            padding: 5px 9px;
            color: white;
            background: rgba(0, 0, 0, 0.84);
            border-radius: 7px;
            font-size: 0.78rem;
            font-weight: 800;
        }

        .video-card-content {
            display: flex;
            flex-direction: column;
            height: 100%;
            padding: 26px;
        }

        .video-card-title {
            margin-bottom: 15px;
            color: var(--white);
            font-size: clamp(1.2rem, 2vw, 1.6rem);
            font-weight: 900;
            line-height: 1.28;
            transition: 0.2s ease;
        }

        .video-card-title:hover {
            color: var(--yellow);
        }

        .video-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            margin-bottom: 18px;
            color: var(--text-muted);
            font-size: 0.88rem;
        }

        .video-stats span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .video-stats i {
            color: var(--yellow);
        }

        .video-description {
            display: -webkit-box;
            overflow: hidden;
            margin-bottom: 22px;
            color: #c3c3c3;
            line-height: 1.72;
            white-space: pre-line;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 4;
        }

        .video-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            margin-top: auto;
        }

        .video-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 17px;
            color: #111;
            background: var(--yellow);
            border-radius: 999px;
            font-size: 0.9rem;
            font-weight: 900;
            transition: 0.25s ease;
        }

        .video-button:hover {
            color: #111;
            background: var(--yellow-hover);
            transform: translateY(-2px);
        }

        .video-number {
            color: #5f5f5f;
            font-size: 1.8rem;
            font-weight: 950;
        }

        /* MESSAGE AUCUN RÉSULTAT */

        .no-result {
            display: none;
            padding: 45px 20px;
            color: var(--text-muted);
            text-align: center;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 20px;
        }

        .no-result i {
            display: block;
            margin-bottom: 15px;
            color: var(--yellow);
            font-size: 2.5rem;
        }

        /* FOOTER */

        footer {
            padding: 55px 0 30px;
            color: var(--text-muted);
            background: #050505;
            border-top: 1px solid var(--border);
        }

        .footer-brand {
            margin-bottom: 10px;
            color: var(--white);
            font-size: 1.2rem;
            font-weight: 900;
            text-transform: uppercase;
        }

        .footer-brand span {
            color: var(--yellow);
        }

        .footer-socials {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
        }

        .footer-socials a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 43px;
            height: 43px;
            color: #111;
            background: var(--yellow);
            border-radius: 50%;
            transition: 0.25s ease;
        }

        .footer-socials a:hover {
            background: white;
            transform: translateY(-3px);
        }

        /* RESPONSIVE */

        @media (max-width: 991px) {
            .navbar-collapse {
                margin-top: 16px;
                padding: 18px;
                background: #111;
                border: 1px solid var(--border);
                border-radius: 18px;
            }

            .hero {
                padding-top: 125px;
            }

            .hero-title {
                letter-spacing: -2px;
            }

            .thumbnail-wrapper,
            .thumbnail-wrapper img {
                min-height: 230px;
            }
        }

        @media (max-width: 767px) {
            .hero {
                padding-top: 115px;
                padding-bottom: 45px;
            }

            .hero-title {
                font-size: 2.8rem;
                letter-spacing: -1px;
            }

            .featured-content,
            .video-card-content {
                padding: 21px;
            }

            .video-actions {
                align-items: flex-start;
            }

            .video-number {
                font-size: 1.45rem;
            }
        }

        @media (max-width: 575px) {
            .brand-subtitle {
                display: none;
            }

            .brand-title {
                font-size: 0.95rem;
            }

            .brand-logo {
                width: 42px;
                height: 42px;
            }

            .stats-row {
                gap: 8px;
            }

            .stat-item {
                padding: 8px 10px;
                font-size: 0.8rem;
            }
        }

        .stat-box{
            background:rgba(255,255,255,.05);
            border:1px solid rgba(255,255,255,.08);
            border-radius:22px;
            padding:35px 20px;
            transition:.3s;
            backdrop-filter:blur(8px);
        }

        .stat-box:hover{
            transform:translateY(-6px);
            border-color:#FFD400;
            box-shadow:0 15px 40px rgba(255,212,0,.15);
        }

        .stat-box i{
            font-size:42px;
            color:#FFD400;
            margin-bottom:15px;
        }

        .stat-value{
            font-size:2rem;
            font-weight:900;
            color:#FFF;
        }

        .stat-title{
            color:#AAA;
            text-transform:uppercase;
            letter-spacing:1px;
            margin-top:8px;
        }

        .subscribe-button{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            padding:10px 20px;

            background:#FF0000;
            color:#FFF;

            border-radius:999px;
            font-weight:800;

            transition:.25s;
        }

        .subscribe-button:hover{
            background:#d90000;
            color:#FFF;

            transform:translateY(-2px);

            box-shadow:0 10px 25px rgba(255,0,0,.35);
        }

        #commentsCarousel {
            position: relative;
            padding: 0 60px 40px;
        }

        #commentsCarousel .carousel-inner {
            overflow: hidden;
            border-radius: 20px;
        }

        .comment-card {
            display: flex;
            flex-direction: column;

            min-height: 180px;

            padding: 30px;

            background: #181818;
            color: #ffffff;

            border: 1px solid rgba(255,255,255,.08);
            border-radius: 20px;

            transition:
                background-color .25s ease,
                color .25s ease,
                border-color .25s ease;
        }

        /* Effet au survol */
        .comment-card:hover{
            background:#FFD400;
            color:#111;
            border-color:#FFD400;
        }

        .comment-user{
            display:flex;
            align-items:center;
            gap:15px;
            margin-bottom:20px;
        }

        .avatar{
            width:55px;
            height:55px;

            object-fit:cover;

            flex-shrink:0;

            border-radius:50%;

            border:2px solid rgba(255,212,0,.45);

            transition:border-color .25s ease;
        }

        .avatar-placeholder{
            display:flex;
            align-items:center;
            justify-content:center;

            width:55px;
            height:55px;

            border-radius:50%;

            background:#FFD400;
            color:#111;

            font-size:1.4rem;

            transition:
                background-color .25s ease,
                color .25s ease;
        }

        .comment-author{
            display:flex;
            flex-direction:column;
        }

        .comment-author strong{
            color:#FFF;
            font-size:1rem;
            font-weight:700;

            transition:color .25s ease;
        }

        .comment-author small{
            margin-top:4px;

            color:#999;

            font-size:.8rem;

            transition:color .25s ease;
        }

        .comment-text{
            margin:0;

            color:#DDD;

            line-height:1.7;

            transition:color .25s ease;
        }

        /* Couleurs au survol */

        .comment-card:hover .comment-author strong{
            color:#111;
        }

        .comment-card:hover .comment-author small{
            color:#444;
        }

        .comment-card:hover .comment-text{
            color:#111;
        }

        .comment-card:hover .avatar{
            border-color:#111;
        }

        .comment-card:hover .avatar-placeholder{
            background:#111;
            color:#FFD400;
        }

        /* Flèches */

        #commentsCarousel .carousel-control-prev,
        #commentsCarousel .carousel-control-next{
            width:45px;
        }

        #commentsCarousel .carousel-control-prev-icon,
        #commentsCarousel .carousel-control-next-icon{
            width:38px;
            height:38px;

            background-color:#FFD400;
            background-size:55%;

            border-radius:50%;
        }

        /* Pastilles */

        #commentsCarousel .carousel-indicators{
            bottom:5px;
            margin-bottom:0;
        }

        #commentsCarousel .carousel-indicators button{
            width:8px;
            height:8px;

            border-radius:50%;

            background:#FFD400;
        }

        /* Mobile */

        @media (max-width:767px){

            #commentsCarousel{
                padding:0 0 35px;
            }

            #commentsCarousel .carousel-control-prev,
            #commentsCarousel .carousel-control-next{
                display:none;
            }

            .comment-card{
                min-height:210px;
                padding:22px;
            }

        }