

.video-section {
    max-width: 1000px;
    margin: 0 auto 120px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.video-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}
.video-section .section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

.video-container {
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 32px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 40%
    );
    pointer-events: none;
    opacity: 0.6;
    transition: 0.5s;
}

.video-container:hover {
    background: rgba(20, 20, 20, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    border-top-color: rgba(255, 255, 255, 0.4);
    box-shadow:
        0 40px 100px rgba(0,0,0,0.6),
        inset 0 0 40px rgba(var(--primary-rgb), 0.15);
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}