
body {
    background-color: #1e1e1e;
    margin: 0;
    padding: 0;
}

.video-gallery-section {
    background-color: #151716;
    padding: 30px 0;
}

.video-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.video-section-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.video-see-all-link {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.video-see-all-link:hover {
    color: white;
    opacity: 0.8;
}

.video-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.video-card-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card-wrapper:hover {
    transform: scale(1.02);
}

.video-thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.video-card-wrapper:hover .video-play-button {
    background-color: rgba(255, 255, 255, 1);
}

.video-play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #1a4d2e;
    margin-left: 5px;
}

.video-stats-container {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-likes-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

.video-like-icon {
    width: 18px;
    height: 18px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-like-icon::before {
    content: '♥';
    font-size: 10px;
    color: white;
}

.video-views-text {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .video-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .video-section-title {
        font-size: 1.2rem;
    }

    .video-play-button {
        width: 60px;
        height: 60px;
    }

    .video-play-icon {
        border-width: 10px 0 10px 16px;
    }
}

@media (max-width: 480px) {
    .video-grid-container {
        grid-template-columns: 1fr;
    }
}
