/* تنسيقات صفحات الفيديو */
.video-content {
    padding-top: 100px;
    min-height: 100vh;
}

.back-button {
    margin-bottom: 2rem;
}

.btn-back {
    background: rgba(255, 255, 255, 0.1);
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-back:hover {
    background: #FFD700;
    color: #000000;
    transform: translateX(-5px);
}

.video-title {
    font-size: 2.5rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3rem;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info-section {
    max-width: 900px;
    margin: 0 auto;
}

.video-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.video-stats span {
    color: #cccccc;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.video-description {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-description h2 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #FF0000;
    padding-bottom: 0.5rem;
}

.video-description h3 {
    color: #FF0000;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.video-description p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #ffffff;
}

.video-description ul {
    margin: 1rem 0;
    padding-right: 1.5rem;
}

.video-description li {
    margin-bottom: 0.5rem;
    color: #cccccc;
    line-height: 1.6;
}

.download-section {
    background: rgba(255, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.download-section h2 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.download-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-link:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.download-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.download-info h4 {
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.download-info p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.related-videos {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.related-videos h2 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.related-video {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.related-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.related-video img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-info {
    padding: 1rem;
}

.related-info h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-info span {
    color: #cccccc;
    font-size: 0.8rem;
}

/* الاستجابة للهواتف */
@media (max-width: 768px) {
    .video-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .video-wrapper {
        margin: 0 1rem 2rem;
        max-width: calc(100% - 2rem);
    }
    
    .video-info-section {
        padding: 0 1rem;
    }
    
    .video-description,
    .download-section,
    .related-videos {
        margin: 0 1rem 2rem;
        padding: 1.5rem;
    }
    
    .download-links {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .video-stats {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .video-title {
        font-size: 1.5rem;
    }
    
    .video-description h2,
    .download-section h2,
    .related-videos h2 {
        font-size: 1.5rem;
    }
    
    .download-link {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .download-icon {
        margin-bottom: 0.5rem;
    }
}

