    /* كود CSS للمشغل الوهمي */
    .fake-player-container {
        position: relative;
        width: 100%;
        max-width: 900px;
        aspect-ratio: 16 / 9;
        background-color: #000;
        cursor: pointer;
        overflow: hidden;
    }
    .video-display {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .play-button-icon {
        width: 70px;
        height: 70px;
        opacity: 0.8;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.7);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .fake-player-container:hover .play-button-icon {
        transform: scale(1.1);
        opacity: 1;
    }
    .controls-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
        padding: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .fake-player-container:hover .controls-bar {
        opacity: 1;
    }
    .play-pause-btn, .volume-btn, .fullscreen-btn {
        background: none;
        border: none;
        cursor: pointer;
    }
    .controls-bar img {
        width: 24px;
        filter: invert(1);
    }
    .progress-bar-container {
        flex-grow: 1;
        height: 5px;
        background: #555;
        border-radius: 5px;
        position: relative;
        cursor: pointer;
    }
    .progress-bar {
        height: 100%;
        width: 0%;
        background: #ff5555;
        border-radius: 5px;
        transition: width 0.1s linear;
    }
    
    /* تنسيقات زر الإغلاق */
    .close-popup {
        position: absolute;
        top: 0;
        right: 10px;
        font-size: 30px;
        font-weight: bold;
        color: #fff;
        cursor: pointer;
        transition: color 0.3s;
    }
    .close-popup:hover {
        color: #f9c818;
    }
    
    /* تنسيقات النافذة المنبثقة للشاشات الكبيرة (الحاسوب) */
    .login-popup {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.85);
        border-radius: 10px;
        color: white;
        padding: 30px;
        text-align: center;
        max-width: 400px;
        width: 90%;
        z-index: 100;
        display: none;
    }
    .login-popup h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .login-popup p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .login-popup form input {
        width: calc(100% - 20px);
        padding: 10px;
        margin-bottom: 15px;
        border: none;
        border-radius: 5px;
        background-color: #333;
        color: white;
        font-size: 16px;
    }
    .login-btn {
        width: 100%;
        padding: 12px;
        background-color: #2c7a1a;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    .login-btn:hover {
        background-color: #246315;
    }
    .registration-links {
        margin-top: 15px;
        display: flex;
        justify-content: space-between;
    }
    .link-btn {
        color: #f9c818;
        text-decoration: none;
        font-size: 14px;
        font-weight: bold;
        transition: color 0.3s;
    }
    .link-btn:hover {
        color: #ffde54;
    }

    /* التنسيقات الخاصة بالهاتف (شاشة بعرض 768px أو أقل) */
    @media (max-width: 768px) {
        .login-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            max-width: none;
            border-radius: 0;
            transform: none;
            padding: 20px;
            box-sizing: border-box;
            display: none;
        }
        .login-popup-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 350px;
            width: 90%;
            background-color: rgba(0, 0, 0, 0.85);
            border-radius: 10px;
            padding: 20px;
        }
        .login-popup h3 {
            font-size: 20px;
        }
        .login-popup p {
            font-size: 14px;
        }
        .login-popup form input, .login-btn {
            font-size: 14px;
        }
        .link-btn {
            font-size: 12px;
        }
    }