    <style>
        /* Bold fonts */
        body, .plyr__control, .plyr__progress__label, .plyr__progress__time, .plyr__progress__skip, 
        .plyr__menu__container, .plyr__tooltip {
            font-family: 'Cairo', sans-serif;
            font-weight: 800;
        }

        /* Transitions for all elements */
        * {
            transition: all 0.25s ease-in-out;
        }

        /* Plyr menu container styling */
        .plyr__menu__container {
            backdrop-filter: blur(15px); 
            background-color: rgba(0, 0, 0, 0.8) !important;
            border-radius: 8px;
            padding: 10px;
            color: #e0e0e0;
            text-align: right;
        }

        /* Remove any blue tint */
        .plyr__menu__options button, .plyr__menu__container .plyr__control--text,
        .plyr__menu__container .plyr__control--text:hover, .plyr__menu__options button:hover {
            background-color: transparent !important;
            color: #f5f5f5 !important;
            border: none !important;
            box-shadow: none !important;
        }

        .plyr__menu__options button:hover, .plyr__menu__container .plyr__control--text:hover {
            color: #ffffff !important;
            background-color: rgba(255, 255, 255, 0.1) !important;
        }

        /* Transparent background for all elements inside Plyr menu */
        .plyr__menu__container * {
            background-color: transparent !important;
            color: inherit;
        }

        /* Play button styling */
        #play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background-color: rgba(0, 123, 255, 0.9); 
            border-radius: 50%;
            cursor: pointer;
            display: none;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
        }

        #play-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(1);
            width: 0;
            height: 0;
            border-left: 20px solid white;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            transition: transform 0.3s ease-in-out;
        }

        #play-button:hover::before {
            transform: translate(-50%, -50%) scale(1.2);
        }

        #play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        /* Skip button styling */
        .plyr__progress__skip {
            position: absolute;
            right: 10px;
            left: auto;
            bottom: 70px;
            padding: 5px 10px;
            background-color: #1c1b1b;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.2s ease-in-out;
            display: none;
        }

        .plyr__progress__skip.show {
            display: block;
            opacity: 1;
        }

        /* Player container and video styling */
        #player {
            position: relative;
            max-width: 100%;
        }

        video {
            width: 100%;
            height: auto;
        }

        /* Time bar transition */
        .plyr__progress, .plyr__progress__fill {
            transition: width 0.2s ease-in-out;
        }

        /* PiP and Fullscreen transitions */
        .plyr--fullscreen video {
            transition: transform 0.35s ease-in-out;
            transform: scale(1.05);
        }

        .plyr--pip video {
            transition: transform 0.25s ease-in-out;
            transform: scale(0.95);
        }

        /* Marker hover effect */
        .plyr__marker {
            transition: transform 0.4s ease-in-out;
        }

        .plyr__marker:hover {
            transform: scale(1.15);
        }

        /* Plyr menu item styling */
        .plyr__menu__container .plyr__control--text, .plyr__menu__container .plyr__menu__options button {
            color: #f5f5f5;
            transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
        }

        .plyr__menu__container .plyr__control--text:hover, .plyr__menu__container .plyr__menu__options button:hover {
            color: #ffffff;
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Mobile devices */
        @media (max-width: 600px) {
            #play-button {
                width: 70px;
                height: 70px;
            }

            #play-button::before {
                border-left: 14px solid white;
                border-top: 9px solid transparent;
                border-bottom: 9px solid transparent;
            }
        }

        /* Body and HTML styling */
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            overflow: hidden;
            font-family: 'Cairo', sans-serif;
        }

        #player {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999; 
        }

        .plyr--full-ui {
            display: flex !important;
            align-items: center;
            justify-content: center;
            height: 100%;
            width: 100%;
        }

        .plyr__controls {
            position: absolute;
            bottom: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.3);
        }

        /* Keep player controls LTR */
        .plyr {
            direction: ltr;
        }
    </style>
