        body {
            margin: 0;
            scrollbar-width: none;
            overflow: hidden;
            font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        /* OVERLAY */
        .player-overlay {
            position: fixed;
            inset: 0;
            background: #000;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .player-container {
            display: flex;
            width: 900px;
            max-width: 95%;
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* VIDEO */
        .video-box {
            flex: 1;
            background: #000;
        }

        .video-box iframe {
            width: 100%;
            height: 100%;
            min-height: 500px;
            border: none;
        }

        /* INFO */
        .info-box {
            width: 300px;
            padding: 20px;
            background: #f5f5f5;
        }

        .label {
            color: red;
            font-weight: bold;
        }

        .info-box h2 {
            font-size: 16px;
            margin: 10px 0;
        }

        .info-box p {
            font-size: 13px;
            color: #555;
        }

        .meta {
            margin-top: 10px;
            font-size: 12px;
            color: #777;
        }

        .meta a {
            float: right;
            text-decoration: none;
            color: #000;
        }

        /* URL SHARE */
        .actions {
            margin-top: 20px;
        }

        .actions input {
            width: 90%;
            padding: 10px;
            border-radius: 10px;
            border: none;
            background: #e0e0e0;
            font-size: 13px;
            cursor: pointer;
        }

        /* CLOSE BUTTON */
        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #111;
            color: #fff;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
        }

        /* RESPONSIVE */
        @media(max-width:768px) {
            .player-container {
                flex-direction: column;
                width: 90%;
            }

            .info-box {
                width: 100%;
                box-sizing: border-box;
                overflow-y: auto;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .info-box::-webkit-scrollbar {
                display: none;
            }
        }