.videos-section {
    padding: 60px 20px !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.videos-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #c49200;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    text-shadow: 0 0 18px rgba(196, 146, 0, 0.4);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-items: center;
}

.video-card {
    position: relative;
    width: 300px;
    aspect-ratio: 9 / 13 !important;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(145deg, #1a1a1a, #000);
    border: 2px solid rgba(196, 146, 0, 0.8);
    box-shadow: 0 0 25px rgba(196, 146, 0, 0.8);
    transition: all 0.4s ease;
}

.video-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #c49200;
    box-shadow: 0 0 40px rgba(196, 146, 0, 0.5);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 14px;
    font-size: 1rem;
    text-align: center;
    color: #fff;
    font-weight: 500;
}

@media (max-width: 700px) {
    .videos-section {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }

    .video-card {
        width: 90% !important;
    }
}