/* ===== VARIABLES CSS ===== */
:root {
    --primary-blue-gal: #1e3a8a;
    --secondary-blue-gal: #2563eb;
    --accent-orange: #ea580c;
    --accent-rose: #ec4899;
    --accent-yellow: #facc15;
    --accent-green: #22c55e;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ===== STYLES GÉNÉRAUX ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* ===== HEADER ===== */
.gal-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.gal-header .navbar {
    background: linear-gradient(
        135deg,
        var(--primary-blue-gal) 0%,
        var(--secondary-blue-gal) 100%
    ) !important;
    padding: 1rem 0;
}

.gal-header .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    transition: transform 0.3s ease;
}

.gal-header .navbar-brand:hover {
    transform: scale(1.05);
}

.gal-header .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.gal-header .navbar-nav .nav-link:hover,
.gal-header .navbar-nav .nav-link.active {
    color: var(--white) !important;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ===== SECTION HERO ===== */
.gal-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 4.8rem;
}

.gal-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 20% 50%,
        rgba(30, 58, 138, 0.05) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.gal-hero-title {
    color: var(--primary-blue-gal);
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.gal-hero-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.gal-hero-stats {
    position: relative;
    z-index: 2;
}

.gal-hero-stats h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.gal-hero-image {
    border-radius: 1rem;
    box-shadow: var(--shadow-large);
    transition: transform 0.3s ease;
}

.gal-hero-image:hover {
    transform: scale(1.02);
}

/* ===== NAVIGATION PAR SECTEURS ===== */
.gal-nav {
    background-color: var(--white);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: var(--shadow-light);
}

.gal-nav .nav-pills .nav-link {
    background-color: transparent;
    border: 2px solid transparent;
    color: var(--text-light);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    margin: 0.25rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gal-nav .nav-pills .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.gal-nav .nav-pills .nav-link:hover::before {
    left: 100%;
}

.gal-nav .nav-pills .nav-link:hover {
    color: var(--primary-blue-gal);
    border-color: var(--primary-blue-gal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.gal-nav .nav-pills .nav-link.active {
    background: linear-gradient(
        135deg,
        var(--primary-blue-gal) 0%,
        var(--secondary-blue-gal) 100%
    );
    color: var(--white);
    border-color: var(--primary-blue-gal);
    box-shadow: var(--shadow-medium);
}

.gal-nav .nav-pills .nav-link i {
    margin-right: 0.5rem;
}

/* ===== SECTION PRINCIPALE ===== */
.gal-main {
    background-color: var(--bg-light);
    min-height: 60vh;
}

.gal-section-header {
    margin-bottom: 3rem;
}

.gal-section-title {
    color: var(--primary-blue-gal);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.gal-section-title::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--accent-orange),
        var(--accent-rose)
    );
    border-radius: 2px;
}

.gal-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* ===== CARTES GALERIE ===== */
.gal-card {
    transition: all 0.3s ease;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--white);
    position: relative;
    height: 100%;
}

.gal-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(30, 58, 138, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gal-card:hover::before {
    opacity: 1;
}

.gal-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.gal-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gal-card:hover .card-img-top {
    transform: scale(1.05);
}

.gal-card .card-body {
    padding: 1.5rem;
}

.gal-card .card-title {
    color: var(--primary-blue-gal);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.gal-card .card-text {
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== SECTION STATISTIQUES ===== */
.gal-stats {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.gal-stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 80% 20%,
        rgba(234, 88, 12, 0.05) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.gal-stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.gal-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.gal-stat-icon {
    margin-bottom: 1rem;
}

.gal-stat-number {
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.gal-stat-text {
    color: var(--text-light);
    font-weight: 500;
}

/* ===== SECTION CTA ===== */
.gal-cta {
    background: linear-gradient(
        135deg,
        var(--primary-blue-gal) 0%,
        var(--secondary-blue-gal) 100%
    );
    position: relative;
    overflow: hidden;
}

.gal-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.gal-cta-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
}

.gal-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.gal-cta .btn {
    background: var(--white);
    color: var(--primary-blue-gal);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.gal-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    background: var(--accent-yellow);
    color: var(--primary-blue-gal);
}

/* ===== FOOTER ===== */
.gal-footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: var(--white);
}

.gal-footer-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.gal-footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gal-footer-links {
    list-style: none;
}

.gal-footer-links li {
    margin-bottom: 0.5rem;
}

.gal-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.gal-footer-links a:hover {
    color: var(--accent-yellow);
}

.gal-footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.gal-footer-social a:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

.gal-footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.gal-footer-contact i {
    color: var(--accent-green);
    width: 20px;
    margin-right: 0.5rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gal-card {
    animation: fadeInUp 0.6s ease-out;
}

.gal-card:nth-child(1) {
    animation-delay: 0.1s;
}
.gal-card:nth-child(2) {
    animation-delay: 0.2s;
}
.gal-card:nth-child(3) {
    animation-delay: 0.3s;
}
.gal-card:nth-child(4) {
    animation-delay: 0.4s;
}
.gal-card:nth-child(5) {
    animation-delay: 0.5s;
}
.gal-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .gal-hero {
        padding: 2rem 0;
    }

    .gal-hero-title {
        font-size: 2.5rem;
    }

    .gal-hero-stats {
        flex-direction: column;
        text-align: center;
    }

    .gal-hero-stats > div {
        margin-bottom: 1rem;
    }

    .gal-nav .nav-pills .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .gal-card .card-img-top {
        height: 200px;
    }

    .gal-cta .row {
        text-align: center;
    }

    .gal-cta .btn {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .gal-hero-title {
        font-size: 2rem;
    }

    .gal-hero-subtitle {
        font-size: 1rem;
    }

    .gal-nav .nav-pills {
        flex-direction: column;
        align-items: center;
    }

    .gal-nav .nav-pills .nav-link {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .gal-section-title {
        font-size: 1.5rem;
    }

    .gal-stat-number {
        font-size: 2rem;
    }
}

/* ===== MODES SOMBRES ET PRÉFÉRENCES ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== UTILITÉS ===== */
.text-primary {
    color: var(--primary-blue-gal) !important;
}

.text-success {
    color: var(--accent-green) !important;
}

.text-warning {
    color: var(--accent-yellow) !important;
}

.text-danger {
    color: var(--accent-rose) !important;
}

.bg-primary {
    background: linear-gradient(
        135deg,
        var(--primary-blue-gal) 0%,
        var(--secondary-blue-gal) 100%
    ) !important;
}

/* ===== ÉTATS DE FOCUS POUR L'ACCESSIBILITÉ ===== */
.nav-link:focus,
.btn:focus,
.gal-card:focus {
    outline: 3px solid var(--accent-yellow);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .gal-header,
    .gal-nav,
    .gal-cta,
    .gal-footer {
        display: none !important;
    }

    .gal-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd;
    }

    .gal-hero {
        background: none !important;
    }
}

/* ===== SECTION VIDEOS ===== */
/* Section BANANA PS en Action */
.banana-ps-action {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.banana-ps-action::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23f1f3f4" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.banana-ps-action > .container {
    position: relative;
    z-index: 2;
}

/* En-tête de section */
.banana-ps-header {
    margin-bottom: 3rem;
}

.banana-ps-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.banana-ps-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.banana-ps-badge i {
    font-size: 1.1rem;
}

.banana-ps-title {
    color: #2c3e50;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banana-ps-highlight {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.banana-ps-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.banana-ps-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 2px;
    margin: 2rem auto;
}

/* Vidéo principale mise en avant */
.banana-ps-featured {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}



.banana-ps-video-main {
    position: relative;
}

.banana-ps-video-container {
    position: relative;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.banana-ps-video-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

.banana-ps-video-container:hover .banana-ps-video-overlay {
    opacity: 1;
}

.banana-ps-video-info {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
}

.banana-ps-video-duration,
.banana-ps-video-quality {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.banana-ps-video-quality {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

/* Contenu de la vidéo principale */
.banana-ps-featured-content {
    padding-left: 2rem;
}

.banana-ps-featured-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
}

.banana-ps-featured-text {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.banana-ps-featured-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.banana-ps-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.banana-ps-stat-item i {
    color: #ff6b35;
    width: 20px;
    text-align: center;
}

/* Grille de vidéos */
.banana-ps-grid {
    margin-top: 3rem;
}

.banana-ps-video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

/* .banana-ps-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
} */

.banana-ps-video-thumbnail {
    position: relative;
    background: #000;
    overflow: hidden;
}

.banana-ps-video-thumbnail iframe {
    width: 100%;
    height: 200px;
    border: none;
    display: block;
}

.banana-ps-video-overlay-small {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.banana-ps-video-thumbnail:hover .banana-ps-video-overlay-small {
    opacity: 1;
}

.banana-ps-play-btn-small {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.banana-ps-play-btn-small:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.banana-ps-video-duration-small {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
}

.banana-ps-video-content {
    padding: 1.5rem;
}

.banana-ps-video-title {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.banana-ps-video-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.banana-ps-video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #9ca3af;
}

.banana-ps-video-views,
.banana-ps-video-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.banana-ps-video-views i,
.banana-ps-video-date i {
    color: #ff6b35;
}

/* Bouton YouTube */
.banana-ps-more {
    margin-top: 3rem;
}

.banana-ps-btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}



.banana-ps-btn-youtube i:first-child {
    font-size: 1.3rem;
}

.banana-ps-btn-youtube i:last-child {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .banana-ps-title {
        font-size: 2.5rem;
    }

    .banana-ps-featured-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .banana-ps-video-container iframe {
        height: 250px;
    }

    .banana-ps-featured-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .banana-ps-title {
        font-size: 2rem;
    }

    .banana-ps-subtitle {
        font-size: 1rem;
    }

    .banana-ps-featured {
        padding: 1.5rem;
    }

    .banana-ps-video-container iframe {
        height: 200px;
    }

    .banana-ps-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .banana-ps-featured-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .banana-ps-action {
        padding: 3rem 0;
    }

    .banana-ps-title {
        font-size: 1.8rem;
    }

    .banana-ps-featured {
        padding: 1rem;
    }

    .banana-ps-video-container iframe {
        height: 180px;
    }

    .banana-ps-video-thumbnail iframe {
        height: 150px;
    }

    .banana-ps-btn-youtube {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banana-ps-video-card {
    animation: fadeInUp 0.6s ease-out;
}

.banana-ps-video-card:nth-child(1) {
    animation-delay: 0.1s;
}
.banana-ps-video-card:nth-child(2) {
    animation-delay: 0.2s;
}
.banana-ps-video-card:nth-child(3) {
    animation-delay: 0.3s;
}
.banana-ps-video-card:nth-child(4) {
    animation-delay: 0.4s;
}
.banana-ps-video-card:nth-child(5) {
    animation-delay: 0.5s;
}
.banana-ps-video-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Effets de survol supplémentaires */
.banana-ps-video-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 53, 0.05) 0%,
        rgba(255, 140, 66, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.banana-ps-video-card:hover::before {
    opacity: 1;
}

.banana-ps-video-card > * {
    position: relative;
    z-index: 2;
}
