/* ========================================
   LIGHTBOX AFFICHES — SITE 1
   Carrousel cinématique — fond blanc opaque
   ======================================== */

:root {
    --ease-carousel: cubic-bezier(0.33, 1, 0.68, 1);
    --dur: 0.56s;
}

.affiches-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.affiches-lightbox.active {
    display: flex;
    opacity: 1;
}

/* ── Fond plein opaque ── */
.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: #ffffff;
    transition: background 0.4s ease;
}

/* ── Layout ── */
.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem 6rem;
    z-index: 1;
    gap: 1.2rem;
}

/* ── Vignette gauche/droite sur le carousel ── */
.lightbox-content::before,
.lightbox-content::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 280px;
    z-index: 15;
    pointer-events: none;
}
.lightbox-content::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, #ffffff 35%, transparent 100%);
}
.lightbox-content::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, #ffffff 35%, transparent 100%);
}
/* Dark theme variant */
.affiches-lightbox.lightbox-light .lightbox-content::before {
    background: linear-gradient(to right, #111009 0%, #111009 20%, transparent 100%);
}
.affiches-lightbox.lightbox-light .lightbox-content::after {
    background: linear-gradient(to left, #111009 0%, #111009 20%, transparent 100%);
}

/* ── Bouton fermer ── */
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 46px;
    height: 46px;
    background: #14120f;
    border: 2px solid rgba(20, 18, 15, 0.85);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}
.lightbox-close:hover {
    background: #333;
    border-color: #333;
    color: #ffffff;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

/* ========================================
   CARROUSEL — scale-based
   ======================================== */

.carousel-scene {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 64vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.carousel-scene.no-transition .carousel-slot {
    transition: none !important;
}
.carousel-scene.no-transition .carousel-slot::after {
    transition: none !important;
}

/* ── Base slot ── */
.carousel-slot {
    position: absolute;
    width: min(480px, 40vw);
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: transparent;
    transform-origin: center center;
    transition:
        transform  var(--dur) var(--ease-carousel),
        box-shadow var(--dur) var(--ease-carousel),
        opacity    var(--dur) var(--ease-carousel);
    contain: layout style paint;
}

.carousel-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

/* ── Overlay blanc sur les slots latéraux ── */
.carousel-slot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    opacity: 0;
    transition: opacity var(--dur) var(--ease-carousel);
    pointer-events: none;
    z-index: 2;
}

/* ── Slot central — image pleine, ombre forte ── */
.slot-0 {
    transform: translateX(0) translateY(0) rotate(0deg) scaleX(1) scaleY(1);
    opacity: 1;
    z-index: 9;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.14),
        0 32px 80px rgba(0, 0, 0, 0.22);
}
.slot-0::after { opacity: 0; }

.affiches-lightbox.lightbox-light .carousel-slot::after {
    background: #111009;
}

/* ── Rang 1 — légère inclinaison, recul ── */
.slot-1l {
    transform: translateX(-58%) translateY(2%) rotate(-2.5deg) scaleX(0.72) scaleY(0.90);
    opacity: 1;
    z-index: 8;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}
.slot-1l::after { opacity: 0.55; }

.slot-1r {
    transform: translateX(58%) translateY(2%) rotate(2.5deg) scaleX(0.72) scaleY(0.90);
    opacity: 1;
    z-index: 8;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}
.slot-1r::after { opacity: 0.55; }

/* ── Rang 2 — plus incliné, plus en retrait ── */
.slot-2l {
    transform: translateX(-102%) translateY(4%) rotate(-5deg) scaleX(0.52) scaleY(0.78);
    opacity: 1;
    z-index: 7;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.slot-2l::after { opacity: 0.74; }

.slot-2r {
    transform: translateX(102%) translateY(4%) rotate(5deg) scaleX(0.52) scaleY(0.78);
    opacity: 1;
    z-index: 7;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.slot-2r::after { opacity: 0.74; }

/* ── Rang 3 ── */
.slot-3l {
    transform: translateX(-140%) translateY(6%) rotate(-7deg) scaleX(0.38) scaleY(0.66);
    opacity: 1;
    z-index: 6;
    box-shadow: none;
}
.slot-3l::after { opacity: 0.88; }

.slot-3r {
    transform: translateX(140%) translateY(6%) rotate(7deg) scaleX(0.38) scaleY(0.66);
    opacity: 1;
    z-index: 6;
    box-shadow: none;
}
.slot-3r::after { opacity: 0.88; }

/* ── Rang 4 (hors champ) ── */
.slot-4l {
    transform: translateX(-174%) translateY(8%) rotate(-9deg) scaleX(0.28) scaleY(0.56);
    opacity: 0;
    z-index: 5;
    box-shadow: none;
    will-change: auto;
}
.slot-4l::after { opacity: 1; }

.slot-4r {
    transform: translateX(174%) translateY(8%) rotate(9deg) scaleX(0.28) scaleY(0.56);
    opacity: 0;
    z-index: 5;
    box-shadow: none;
    will-change: auto;
}
.slot-4r::after { opacity: 1; }

/* Slots visibles : hint GPU uniquement pendant l'animation */
.slot-0, .slot-1l, .slot-1r, .slot-2l, .slot-2r, .slot-3l, .slot-3r {
    will-change: transform;
}

/* ========================================
   ANIMATION GAUCHE (→ suivant)
   ======================================== */

/* → gauche */
.carousel-scene[data-dir="left"] .slot-0  { transform: translateX(-58%) translateY(2%) rotate(-2.5deg) scaleX(0.72) scaleY(0.90); z-index: 8; box-shadow: 0 8px 28px rgba(0,0,0,0.16); }
.carousel-scene[data-dir="left"] .slot-0::after  { opacity: 0.55; }
.carousel-scene[data-dir="left"] .slot-1r { transform: translateX(0) translateY(0) rotate(0deg) scaleX(1) scaleY(1); z-index: 9; box-shadow: 0 8px 24px rgba(0,0,0,0.14), 0 32px 80px rgba(0,0,0,0.22); }
.carousel-scene[data-dir="left"] .slot-1r::after { opacity: 0; }
.carousel-scene[data-dir="left"] .slot-1l { transform: translateX(-102%) translateY(4%) rotate(-5deg) scaleX(0.52) scaleY(0.78); z-index: 7; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.carousel-scene[data-dir="left"] .slot-1l::after { opacity: 0.74; }
.carousel-scene[data-dir="left"] .slot-2r { transform: translateX(58%) translateY(2%) rotate(2.5deg) scaleX(0.72) scaleY(0.90); z-index: 8; box-shadow: 0 8px 28px rgba(0,0,0,0.16); }
.carousel-scene[data-dir="left"] .slot-2r::after { opacity: 0.55; }
.carousel-scene[data-dir="left"] .slot-2l { transform: translateX(-140%) translateY(6%) rotate(-7deg) scaleX(0.38) scaleY(0.66); z-index: 6; box-shadow: none; }
.carousel-scene[data-dir="left"] .slot-2l::after { opacity: 0.88; }
.carousel-scene[data-dir="left"] .slot-3r { transform: translateX(102%) translateY(4%) rotate(5deg) scaleX(0.52) scaleY(0.78); z-index: 7; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.carousel-scene[data-dir="left"] .slot-3r::after { opacity: 0.74; }
.carousel-scene[data-dir="left"] .slot-3l { transform: translateX(-174%) translateY(8%) rotate(-9deg) scaleX(0.28) scaleY(0.56); opacity: 0; z-index: 5; }
.carousel-scene[data-dir="left"] .slot-3l::after { opacity: 1; }
.carousel-scene[data-dir="left"] .slot-4r { transform: translateX(140%) translateY(6%) rotate(7deg) scaleX(0.38) scaleY(0.66); z-index: 6; box-shadow: none; }
.carousel-scene[data-dir="left"] .slot-4r::after { opacity: 0.88; }
.carousel-scene[data-dir="left"] .slot-4l { transform: translateX(-205%) translateY(10%) rotate(-11deg) scaleX(0.18) scaleY(0.46); opacity: 0; z-index: 4; }
.carousel-scene[data-dir="left"] .slot-4l::after { opacity: 1; }

/* ← droite — symétrique */
.carousel-scene[data-dir="right"] .slot-0  { transform: translateX(58%) translateY(2%) rotate(2.5deg) scaleX(0.72) scaleY(0.90); z-index: 8; box-shadow: 0 8px 28px rgba(0,0,0,0.16); }
.carousel-scene[data-dir="right"] .slot-0::after  { opacity: 0.55; }
.carousel-scene[data-dir="right"] .slot-1l { transform: translateX(0) translateY(0) rotate(0deg) scaleX(1) scaleY(1); z-index: 9; box-shadow: 0 8px 24px rgba(0,0,0,0.14), 0 32px 80px rgba(0,0,0,0.22); }
.carousel-scene[data-dir="right"] .slot-1l::after { opacity: 0; }
.carousel-scene[data-dir="right"] .slot-1r { transform: translateX(102%) translateY(4%) rotate(5deg) scaleX(0.52) scaleY(0.78); z-index: 7; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.carousel-scene[data-dir="right"] .slot-1r::after { opacity: 0.74; }
.carousel-scene[data-dir="right"] .slot-2l { transform: translateX(-58%) translateY(2%) rotate(-2.5deg) scaleX(0.72) scaleY(0.90); z-index: 8; box-shadow: 0 8px 28px rgba(0,0,0,0.16); }
.carousel-scene[data-dir="right"] .slot-2l::after { opacity: 0.55; }
.carousel-scene[data-dir="right"] .slot-2r { transform: translateX(140%) translateY(6%) rotate(7deg) scaleX(0.38) scaleY(0.66); z-index: 6; box-shadow: none; }
.carousel-scene[data-dir="right"] .slot-2r::after { opacity: 0.88; }
.carousel-scene[data-dir="right"] .slot-3l { transform: translateX(-102%) translateY(4%) rotate(-5deg) scaleX(0.52) scaleY(0.78); z-index: 7; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.carousel-scene[data-dir="right"] .slot-3l::after { opacity: 0.74; }
.carousel-scene[data-dir="right"] .slot-3r { transform: translateX(174%) translateY(8%) rotate(9deg) scaleX(0.28) scaleY(0.56); opacity: 0; z-index: 5; }
.carousel-scene[data-dir="right"] .slot-3r::after { opacity: 1; }
.carousel-scene[data-dir="right"] .slot-4l { transform: translateX(-140%) translateY(6%) rotate(-7deg) scaleX(0.38) scaleY(0.66); z-index: 6; box-shadow: none; }
.carousel-scene[data-dir="right"] .slot-4l::after { opacity: 0.88; }
.carousel-scene[data-dir="right"] .slot-4r { transform: translateX(205%) translateY(10%) rotate(11deg) scaleX(0.18) scaleY(0.46); opacity: 0; z-index: 4; }
.carousel-scene[data-dir="right"] .slot-4r::after { opacity: 1; }

/* ========================================
   FLÈCHES — fixes sur les bords de l'écran
   ======================================== */

.lightbox-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 700px;
    justify-content: center;
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: #14120f;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-nav:hover {
    background: #14120f;
    border-color: #14120f;
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}

/* ========================================
   INFOS (titre + description)
   ======================================== */

.lightbox-info {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.lightbox-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #14120f;
    margin-bottom: 0.3rem;
    transition: color 0.4s ease;
}

.lightbox-description {
    font-size: 0.88rem;
    color: rgba(20, 18, 15, 0.5);
    transition: color 0.4s ease;
}

/* ========================================
   COMPTEUR
   ======================================== */

.lightbox-counter {
    color: rgba(20, 18, 15, 0.35);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: center;
    margin-top: -0.8rem;
    transition: color 0.4s ease;
}

/* ========================================
   FOOTER (bouton détail + thème) — inchangé
   ======================================== */

.lightbox-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
}

.lightbox-detail-btn {
    display: inline-block;
    padding: 0.65rem 1.6rem;
    background: transparent;
    border: 1.5px solid rgba(20, 18, 15, 0.2);
    border-radius: 50px;
    color: rgba(20, 18, 15, 0.75);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.25s;
}
.lightbox-detail-btn:hover {
    background: #14120f;
    border-color: #14120f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.lightbox-theme-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(20, 18, 15, 0.18);
    color: rgba(20, 18, 15, 0.65);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    flex-shrink: 0;
}
.lightbox-theme-btn:hover {
    background: rgba(20, 18, 15, 0.07);
    border-color: rgba(20, 18, 15, 0.35);
    transform: rotate(20deg) scale(1.1);
}

/* ========================================
   THÈME SOMBRE (toggle)
   ======================================== */

.affiches-lightbox.lightbox-light .lightbox-overlay {
    background: #111009;
}
.affiches-lightbox.lightbox-light .lightbox-title       { color: #f5f4f0; }
.affiches-lightbox.lightbox-light .lightbox-description { color: rgba(245, 244, 240, 0.5); }
.affiches-lightbox.lightbox-light .lightbox-counter     { color: rgba(245, 244, 240, 0.35); }
.affiches-lightbox.lightbox-light .lightbox-close {
    background: #f5f4f0;
    border-color: rgba(255, 255, 255, 0.85);
    color: #14120f;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}
.affiches-lightbox.lightbox-light .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}
.affiches-lightbox.lightbox-light .lightbox-nav {
    background: #1e1c18;
    border-color: rgba(255, 255, 255, 0.12);
    color: #f5f4f0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.affiches-lightbox.lightbox-light .lightbox-nav:hover {
    background: #f5f4f0;
    border-color: #f5f4f0;
    color: #14120f;
}
.affiches-lightbox.lightbox-light .lightbox-detail-btn {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(245, 244, 240, 0.75);
}
.affiches-lightbox.lightbox-light .lightbox-detail-btn:hover {
    background: #f5f4f0;
    border-color: #f5f4f0;
    color: #14120f;
}
.affiches-lightbox.lightbox-light .lightbox-theme-btn {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(245, 244, 240, 0.65);
}
.affiches-lightbox.lightbox-light .lightbox-theme-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}
.affiches-lightbox.lightbox-light .slot-0 {
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65);
}
/* Dark mode: même shadow sur le slot en cours d'animation vers le centre */
.affiches-lightbox.lightbox-light .carousel-scene[data-dir="left"]  .slot-1r,
.affiches-lightbox.lightbox-light .carousel-scene[data-dir="right"] .slot-1l {
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65);
}
.affiches-lightbox.lightbox-light .carousel-scene.no-transition .carousel-slot {
    transition: none !important;
}
.affiches-lightbox.lightbox-light .carousel-scene.no-transition .carousel-slot::after {
    transition: none !important;
}

/* ========================================
   RESPONSIVE MOBILE
   ======================================== */

@media (max-width: 768px) {
    /* ── Layout mobile simplifié ── */
    .lightbox-content {
        padding: 4rem 0 5rem;
        gap: 1rem;
        justify-content: center;
        overflow-y: auto;
    }

    /* ── Cache le carousel 3D, montre une seule image ── */
    .carousel-scene {
        width: 100vw;
        height: auto;
        flex-shrink: 0;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    /* Cache tous les slots sauf le central */
    .carousel-slot {
        display: none;
        width: 90vw;
        height: auto;
        position: relative;
        transform: none !important;
        opacity: 1 !important;
        box-shadow: 0 8px 40px rgba(0,0,0,0.4) !important;
        border-radius: 12px;
        overflow: hidden;
    }

    .slot-0 {
        display: block;
        transform: none !important;
        box-shadow: 0 8px 40px rgba(0,0,0,0.4) !important;
    }
    .slot-0::after { opacity: 0 !important; }

    /* Cache les slots latéraux */
    .slot-1l, .slot-1r, .slot-2l, .slot-2r,
    .slot-3l, .slot-3r, .slot-4l, .slot-4r {
        display: none !important;
    }

    /* Image prend toute la hauteur disponible */
    .carousel-slot .carousel-img {
        width: 90vw;
        height: auto;
        max-height: 60vh;
        object-fit: contain;
        display: block;
    }

    /* Désactive les animations de direction sur mobile */
    .carousel-scene[data-dir="left"] .slot-0,
    .carousel-scene[data-dir="right"] .slot-0 {
        transform: none !important;
        box-shadow: 0 8px 40px rgba(0,0,0,0.4) !important;
    }
    .carousel-scene[data-dir="left"] .slot-0::after,
    .carousel-scene[data-dir="right"] .slot-0::after { opacity: 0 !important; }

    /* Cache complètement les slots non-centraux en animation */
    .carousel-scene[data-dir="left"] .slot-1r,
    .carousel-scene[data-dir="right"] .slot-1l { display: none !important; }

    /* Flèches nav mobile */
    .lightbox-nav { width: 40px; height: 40px; }
    .lightbox-prev { left: 0.8rem; }
    .lightbox-next { right: 0.8rem; }

    /* Infos */
    .lightbox-title       { font-size: 1rem; }
    .lightbox-description { font-size: 0.82rem; }

    /* Bouton fermer */
    .lightbox-close { top: 0.8rem; right: 0.8rem; width: 38px; height: 38px; font-size: 1.3rem; }

    /* Dock */
    .lightbox-dock { bottom: 0.8rem; }
    .dock-thumb { width: 34px; height: 34px; }

    /* Vignettes sur les côtés (masque) */
    .lightbox-content::before,
    .lightbox-content::after { display: none; }

    /* Pas de transition sur mobile : changement instantané */
    .slot-0 {
        transition: none !important;
    }
    .carousel-scene[data-dir="left"] .slot-0,
    .carousel-scene[data-dir="right"] .slot-0 {
        opacity: 1 !important;
    }
    .carousel-scene.no-transition .slot-0 {
        transition: none !important;
    }
}

/* ========================================
   DOCK VIGNETTES — style macOS
   ======================================== */

.lightbox-dock {
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80vw;
    overflow: hidden;
    padding: 0 1rem;
}

.dock-track {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 8px 4px 0;
    -ms-overflow-style: none;
}
.dock-track::-webkit-scrollbar { display: none; }

.dock-thumb {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: bottom center;
    opacity: 0.5;
    border: 1.5px solid transparent;
}

.dock-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.dock-thumb:hover {
    opacity: 0.85;
}

.dock-thumb.active {
    opacity: 1;
    border-color: rgba(20, 18, 15, 0.35);
    transform: scale(1.25) translateY(-4px);
}

/* Mode sombre */
.affiches-lightbox.lightbox-light .dock-thumb.active {
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   BANNER DÉCOUVRIR AFFICHES
   ======================================== */

.discover-affiches-banner {
    margin: 2rem auto 3rem;
    max-width: 1000px;
    padding: 0 2rem;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.banner-content::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.6s;
}
.banner-content:hover::before { left: 100%; }
.banner-content:hover {
    border-color: rgba(99, 102, 241, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.banner-icon {
    flex-shrink: 0;
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 15px;
    color: var(--accent-light);
}

.banner-text { flex: 1; }
.banner-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}
.banner-text p {
    font-size: 0.95rem;
    color: rgba(232, 232, 240, 0.7);
    margin: 0;
}

.banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: rgba(99, 102, 241, 0.2);
    border: 2px solid rgba(99, 102, 241, 0.5);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}
.banner-cta:hover {
    background: rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.8);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.3);
}
.banner-cta svg { transition: transform 0.3s; }
.banner-cta:hover svg { transform: translateX(3px); }

@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    .banner-icon { width: 50px; height: 50px; }
    .banner-text h3 { font-size: 1.1rem; }
    .banner-text p  { font-size: 0.9rem; }
    .banner-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}

