@font-face {
    font-family: vazir;
    src: url("../font/Vazir-Medium.ttf");
}

body {
    font-family: vazir;
    background: linear-gradient(180deg, #f8f9fb, #f1f3f8);
    color: #333;
}

.video-detail-card {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 50px;
}

.video-detail-card video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-detail-content {
    padding: 30px;
}

.video-detail-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.video-detail-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.video-detail-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.back-btn {
    margin-top: 20px;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    background: linear-gradient(135deg, #f5c542, #f0b400);
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.back-btn:hover {
    box-shadow: 0 15px 40px rgba(245, 197, 66, .6);
    transform: translateY(-2px);
}

a {
    color: white !important;
    text-decoration: none !important;
}