.video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 48px 0 64px 0;
    width: 100%;
}

.video-title {
    font-size: 2em;
    color: #790502;
    margin-bottom: 28px;
    text-align: center;
    letter-spacing: 0.04em;
    font-weight: bold;
}

.video-container {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(121,5,2,0.08);
    padding: 18px;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
}

.video-container video {
    width: 100%;
    max-width: 640px;
    border-radius: 10px;
    background: #000;
}

.video-download {
    margin-top: 10px;
}

.download-btn {
    display: inline-block;
    background: #c11520;
    color: #fff;
    padding: 10px 22px;
    border-radius: 22px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s;
}

.download-btn:hover {
    background: #a10f18;
}

@media (max-width: 700px) {
    .video-container video {
        max-width: 98vw;
        height: auto;
    }
    .video-section {
        margin: 24px 0 32px 0;
    }
}