        body {
            background-color: #000;
            color: #fff;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            margin: 0;
            padding: 0;
        }

        .video-header {
            width: 100%;
            padding: 15px;
            background-color: #000;
            display: flex;
            align-items: center;
        }

        .video-header .material-icons {
            font-size: 24px;
            color: #fff;
            margin-right: 15px;
            cursor: pointer;
        }

        .video-title {
            font-size: 16px;
            font-weight: 500;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
        }

        .edge-to-edge-player {
            width: 100%;
            background-color: #000;
            position: relative;
            cursor: pointer;
            border: none;
            border-radius: 0;
        }

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

        .bottom-gradient {
            position: absolute;
            bottom: 0; left: 0; width: 100%; height: 50px;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
            z-index: 1;
        }

        .center-action-wrapper {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 70px; 
            height: 70px;
            z-index: 10;
        }

        .ios-play-btn {
            position: absolute;
            top: 0; left: 0;
            width: 100%; 
            height: 100%;
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .ios-play-btn .material-icons {
            font-size: 40px;
            color: #fff;
            margin-left: 4px;
        }

.loading-ring {
            position: absolute;
            top: 0; left: 0;
            width: 100%; 
            height: 100%;
            border: 3px solid transparent;
            border-top-color: #fff;
            border-right-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            display: block; /* CHANGED THIS: Make the loading ring visible and spinning automatically */
            z-index: 3;
            box-sizing: border-box;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .ios-bottom-controls {
            position: absolute;
            bottom: 12px; left: 0; width: 100%;
            padding: 0 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            z-index: 5;
        }

        .time-text {
            color: #fff;
            font-size: 13px;
            font-weight: 500;
            font-variant-numeric: tabular-nums;
            opacity: 0.9;
        }

        .progress-bar-bg {
            flex-grow: 1;
            height: 3px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            position: relative;
        }

        .progress-bar-fill {
            position: absolute;
            top: 0; left: 0; height: 100%; width: 0%;
            background: #fff;
            border-radius: 2px;
        }

        .ios-bottom-controls .material-icons {
            font-size: 20px;
            color: #fff;
            opacity: 0.9;
        }

        /* === ANTI-ADBLOCK STYLES === */
        #antiAdblockOverlay {
            display: none; /* Hidden by default */
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 999999;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
        }

        .panel-adblock {
            max-width: 400px;
            width: 90%;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }

        .icon-warning {
            font-size: 50px;
            color: #d9534f;
            margin-bottom: 15px;
        }
