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

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* شريط الأيقونات الأسود */
.top-bar {
    background: #1a1a1a;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.icon-link {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.icon-link:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.1);
}

/* أيقونة البث المباشر */
.live-button {
    position: fixed;
    top: 60px;
    right: 20px;
    background: #ff0000;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.live-button:hover {
    transform: scale(1.05);
    background: #cc0000;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

/* فيديو البث المباشر */
.live-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
}

.video-frame {
    position: relative;
    width: 90%;
    max-width: 600px;
    border: 3px solid #ffd700;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.close-button:hover {
    background: rgba(255,255,255,1);
}

#liveVideo {
    width: 100%;
    height: auto;
    display: block;
}

/* خلفية الدخان */
#smokeCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000;
}

/* الفيديو الرئيسي */
.main-video-container {
    margin-top: 120px;
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.main-video-container video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* النص */
.title {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 10;
}

.title h1 {
    color: #ffd700;
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700, 0 0 30px #ffd700;
    }
    to {
        text-shadow: 0 0 20px #ffd700, 0 0 30px #ffd700, 0 0 40px #ffd700;
    }
}

/* تحسينات للموبايل */
@media (max-width: 480px) {
    .top-bar {
        height: 45px;
    }
    
    .icon-link {
        font-size: 18px;
        width: 35px;
        height: 35px;
    }
    
    .live-button {
        top: 55px;
        right: 15px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .main-video-container {
        margin-top: 110px;
    }
    
    .title h1 {
        font-size: 2em;
    }
}

