  :root {
            --primary: #2563eb;
            --bg: #f8fafc;
            --card-bg: #ffffff;
            --text-title: #1e293b;
            --text-body: #64748b;
            --radius: 12px;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg);
            margin: 0;
            color: var(--text-title);
        }

        .containerBeginner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .header_content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .btnAdd {
            background-color: #000;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btnAdd:hover {
            background-color: #333;
            transform: translateY(-2px);
        }

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

        .contentVideosIniciante {
            background: var(--card-bg);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            position: relative;
        }

        .contentVideosIniciante:hover {
            transform: translateY(-5px);
        }

        .videoWrapper {
            position: relative;
            width: 100%;
            padding-top: 56.25%;
            background: #000;
            cursor: pointer;
        }

        .videoWrapper img {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
        }

        .action-group {
            position: absolute;
            top: 10px;
            right: 10px;
            display: flex;
            gap: 8px;
            z-index: 10;
            opacity: 0;
            transition: all 0.3s ease;
            transform: translateY(-5px);
        }

        .contentVideosIniciante:hover .action-group {
            opacity: 1;
            transform: translateY(0);
        }

        .btn_action {
            width: 32px;
            height: 32px;
            background: #000;
            color: #fff;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .btn_action:hover { background: #333; }
        .btn_action.delete:hover { background: #dc3545; border-color: #dc3545; }

        .playOverlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .videoWrapper:hover .playOverlay { opacity: 1; }
        .playOverlay i {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            padding: 20px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .video-info_box {
            padding: 20px;
            text-align: center;
        }

        .video_position {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 8px;
        }

        .video_description {
            width: 100%;
            font-size: 14px;
            color: var(--text-body);
            border: none;
            background: transparent;
            resize: none;
            line-height: 1.5;
            height: 45px;
            text-align: center;
            font-family: inherit;
            overflow: hidden;
        }

        /* MODAL E PLAYER */
        #videoModal, .boxAddVideo {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.95);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(8px);
        }

        /* CAMADA DE PROTEÇÃO INTELIGENTE */
        .player-protection-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 82%; /* Bloqueia 82% do topo (impede double click no centro) */
            z-index: 999;
            background: transparent;
            pointer-events: auto; /* Intercepta cliques no centro */
        }

        /* Bloqueia APENAS o ícone do YouTube no canto inferior direito */
        .yt-logo-blocker {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100px; /* Largura do logo do YouTube */
            height: 50px;  /* Altura da área do logo */
            z-index: 1000;
            background: transparent;
            pointer-events: auto; /* Bloqueia o clique apenas aqui */
        }

        .containerAddVideo {
            background: white;
            width: 90%;
            max-width: 450px;
            padding: 30px;
            border-radius: 16px;
            position: relative;
        }

        .inputDefault, .textareaDescription {
            width: 100%;
            padding: 12px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            margin-top: 5px;
            box-sizing: border-box;
        }

        .btnSubmitAdd {
            width: 100%;
            background: #000;
            color: white;
            padding: 14px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            margin-top: 20px;
            cursor: pointer;
        }

        @media (max-width: 768px) {

            .header_content {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .containerVideosIniciante {
                grid-template-columns: 1fr;
            }

            .action-group {
                opacity: 1;
                transform: none;
            }

        }
