       /* Reset CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
            overflow: hidden;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #000;
            color: white;
        }

        /* Variabel Warna */
        :root {
            --bg-primary: #0F0F0F;
            --bg-secondary: #272727;
            --bg-tertiary: #3A3A3A;
            --text-primary: #FFFFFF;
            --text-secondary: #AAAAAA;
            --text-tertiary: #888888;
            --accent-red: #033EAE;
            --accent-blue: #3B82F6;
            --border-color: #333333;
        }


        /* Embed Container - Full Screen */
        .embed-container {
            width: 100vw;
            height: 100vh;
            position: fixed;
            top: 0;
            left: 0;
            overflow: hidden;
        }

        /* Video Player Container - Full Screen */
        .video-player-container {
            width: 100%;
            height: 100%;
            position: relative;
            background-color: #000;
        }

        .video-iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo {
            width: 2.25rem;
            height: 2.25rem;
            background-color: var(--accent-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .logo i {
            color: white;
            margin-left: 0.125rem;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: -0.025em;
        }

        .embed-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--bg-tertiary);
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            transition: background-color 0.15s ease-in-out;
            border: none;
            color: var(--text-primary);
            cursor: pointer;
        }

        .action-btn:hover {
            background-color: var(--bg-secondary);
        }

        .action-btn i {
            font-size: 1rem;
        }

        /* Watermark */
        .watermark {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background-color: rgba(0, 0, 0, 0.36);
            padding: 0.5rem 0.75rem;
            border-radius: 0.5rem;
            z-index: 5;
            pointer-events: none;
        }

        .watermark-logo {
            width: 1.5rem;
            height: 1.5rem;
            background-color: #FFFFFF2E;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .watermark-logo i {
            color: rgba(0, 0, 0, 0.36);
            font-size: 0.875rem;
            margin-left: 0.0625rem;
        }

        .watermark-text {
            color: #ffffff57;
            font-size: 0.875rem;
            font-weight: 800;
        }
        
        /* Container utama */
.embed-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #000;
}

/* Video container */
.video-player-container {
    position: relative;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-cover-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #000;
    overflow: hidden;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
}

.play-button:hover {
    background-color: rgba(255, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: white;
    font-size: 30px;
    margin-left: 5px;
}

.video-iframe {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; /* Menghilangkan border iframe */
}

.video-iframe.active {
    display: block;
}

.video-cover.hidden {
    display: none;
}

.play-button.hidden {
    display: none;
}

/* Video info */
.video-info {
    padding: 15px;
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
    color: #333;
}

.video-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.video-stats {
    display: flex;
    gap: 15px;
}

.video-actions {
    display: flex;
    gap: 10px;
}

.video-actions button {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    font-size: 16px;
    padding: 5px;
}

.video-actions button:hover {
    color: #000;
}

.video-description {
    margin-top: 15px;
    font-size: 14px;
    color: #333;
}

.video-description p {
    margin-bottom: 8px;
}

/* Fullscreen styles */
.video-player-container:fullscreen {
    width: 100vw;
    height: 100vh;
}

.video-player-container:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
}

.video-player-container:-moz-full-screen {
    width: 100vw;
    height: 100vh;
}

.video-player-container:-ms-fullscreen {
    width: 100vw;
    height: 100vh;
}

/* Menghilangkan border di fullscreen mode */
.video-player-container:fullscreen .video-info {
    display: none;
}

.video-player-container:-webkit-full-screen .video-info {
    display: none;
}

.video-player-container:-moz-full-screen .video-info {
    display: none;
}

.video-player-container:-ms-fullscreen .video-info {
    display: none;
}


        /* Responsive */
        @media (max-width: 768px) {
            .embed-header {
                padding: 0.5rem 0.75rem;
            }
            
            .logo {
                width: 1.75rem;
                height: 1.75rem;
            }
            
            .logo-text {
                font-size: 11px;
            }
            
            .action-btn {
                width: 2rem;
                height: 2rem;
            }
            
            .watermark {
                bottom: 0.5rem;
                right: 0.5rem;
                padding: 0.2rem;
            }
            
            .watermark-logo {
                width: 1.25rem;
                height: 1.25rem;
            }
            
            .watermark-logo i {
                font-size: 0.75rem;
            }
            
            .watermark-text {
                font-size: 0.75rem;
            }
        }