body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.video-container {
    position: fixed; /* يثبت الفيديو في خلفية الشاشة */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: black; /* لون احتياطي حال عدم تحميل الفيديو */
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* لعرض الفيديو كاملاً بدون قص */
}

.content {
    /* يضع هذا الصندوق فوق الفيديو */
    position: absolute; 
    bottom: 15px;
    right: 15px;
    z-index: 10; /* للتأكد من أنه فوق كل شيء */
    
    /* تنسيق النص */
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

a {
    color: white;
}