@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* ----------------------------------
 * Base & Utilities
 * -----------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: rgb(16, 16, 16);
    overflow-x: hidden;
    cursor: none;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.01em;
}

.section-title-small {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ----------------------------------
 * Buttons & Interactive Elements
 * -----------------------------------*/
.btn-header,
.btn-primary,
.btn-secondary,
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 12px;
    cursor: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-header::after,
.btn-primary::after,
.btn-secondary::after,
.btn-cta::after {
    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.6s ease;
    z-index: 2;
}

.btn-header {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.arrow-svg-wrapper {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.arrow-svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.btn-header:hover .arrow-svg-wrapper,
.btn-primary:hover .arrow-svg-wrapper,
.btn-secondary:hover .arrow-svg-wrapper,
.btn-cta:hover .arrow-svg-wrapper {
    transform: translateX(4px);
}

.btn-header:hover::after,
.btn-primary:hover::after,
.btn-secondary:hover::after,
.btn-cta:hover::after {
    left: 100%;
}

.btn-header:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.hero-link {
    color: #3b82f6;
    transition: color 0.3s ease;
    font-weight: 500;
}

.hero-link:hover {
    color: #1d4ed8;
}

/* ----------------------------------
 * Header & Footer
 * -----------------------------------*/
.header {
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    margin-top: 2px;
}

.pixel-font {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    color: white;
}

.footer {
    background: rgb(16, 16, 16);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
}

.ressources {
    max-width: 1200px;
    margin: auto;
    padding: 0.2rem;
    color: #3f3f3f;
    font-size: 0.8rem;
    text-align: center;
}

/* ----------------------------------
 * Sections & Layouts
 * -----------------------------------*/
.hero {
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(16, 16, 16) 0%, rgb(24, 24, 24) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.accident-section,
.inscription-section,
.ai-section,
.video-section,
.testimonials,
.formation-content,
.faq-section {
    padding: 100px 0;
}

.accident-section {
    background: rgb(16, 16, 16);
    text-align: center;
}

.inscription-section {
    background: rgb(20, 20, 20);
    text-align: center;
}

.ai-section {
    background: rgb(16, 16, 16);
}

.video-section {
    background: rgb(20, 20, 20);
    text-align: center;
}

.testimonials {
    background: rgb(16, 16, 16);
    text-align: center;
}

.testimonial-header {
    margin-bottom: 60px;
}

.formation-content {
    background: rgb(20, 20, 20);
}

.formation-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.faq-section {
    background: rgb(16, 16, 16);
}

.final-cta-section {
    background: rgb(20, 20, 20);
    padding: 80px 0;
    text-align: center;
}

.cta-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.cta-title-minimalist {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.cta-subtitle-minimalist {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
}

.map-section {
    padding: 100px 0;
    background: rgb(20, 20, 20);
    text-align: center;
}

.map-image-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-image {
    width: 100%;
    height: auto;
}

/* ----------------------------------
 * Grids & Cards
 * -----------------------------------*/
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    transform: scale(1.05);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-item h3 {
    color: #3b82f6;
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.ai-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.ai-card:hover {
    transform: scale(1.05);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 60px rgba(59, 130, 246, 0.1);
}

.ai-image {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-image img {
    width: 100%;
    height: auto;
}

.ai-text {
    padding: 32px;
}

.ai-card a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

.ai-features li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-features li svg {
    flex-shrink: 0;
    color: #3b82f6;
}

.testimonial-carousel {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
    /* Ajout du padding pour que le carrousel ne touche pas les flèches */
    padding: 0 60px;
}

.testimonial-slider-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    border-radius: 20px;
}

.testimonial-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonial-slider {
    display: flex;
    gap: 14px;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: none;
    z-index: 1;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
}

.testimonial-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.testimonial-card:hover .testimonial-screenshot {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

.testimonial-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    cursor: none;
    object-position: left center;
    transition: transform 0.3s ease-in-out;
}

.carousel-nav {
    display: none; /* Masquer par défaut (mobile-first) */
}

.carousel-nav button {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.carousel-nav button:hover {
    background-color: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.carousel-nav svg {
    width: 20px;
    height: 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-item h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.content-list {
    max-width: 800px;
    margin: 60px auto;
}

.content-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-item:hover {
    transform: translateX(8px);
    border-color: rgba(59, 130, 246, 0.3);
}

.content-number {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 18px;
}

.content-text h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.content-text p {
    color: rgba(255, 255, 255, 0.7);
}

/* ----------------------------------
 * Video Components
 * -----------------------------------*/
.video-container {
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 60px;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.youtube-facade {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.youtube-facade .youtube-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.youtube-facade:hover .youtube-thumbnail {
    filter: brightness(0.7);
}

.youtube-facade .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.youtube-facade .play-button::before {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
}

.youtube-facade:hover .play-button {
    background-color: rgba(255, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-facade iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ----------------------------------
 * Social Links
 * -----------------------------------*/
.social-links-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-top: 20px;
}

.social-links-container a {
    text-decoration: none;
    cursor: none;
}

.social-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon {
    font-size: 1.5rem;
    color: #fff;
}

.social-icon-wrapper:hover {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: scale(1.1);
    border-color: #3b82f6;
}

/* ----------------------------------
 * Lightbox
 * -----------------------------------*/
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    display: block;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2001;
    cursor: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    color: #fff;
}

.lightbox-close:hover {
    background-color: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    transform: scale(1.1);
}

/* ----------------------------------
 * Animations & Effects
 * -----------------------------------*/
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease, background-color 0.2s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

@keyframes ripple-animation {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.section-title {
    animation: fadeInUp 0.8s ease-out;
}

.section-visible {
    animation: sectionFadeIn 0.8s ease-out;
}

/* ----------------------------------
 * Scroll-to-top Button
 * -----------------------------------*/
.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: -100px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: none;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    text-decoration: none;
}

.scroll-to-top.show {
    bottom: 20px;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background-color: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* ----------------------------------
 * Media Queries
 * -----------------------------------*/

/* PC (écrans > 1024px) */
@media (min-width: 1025px) {
    .testimonial-carousel {
        padding: 0 70px;
    }

    .carousel-nav {
        display: flex;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        justify-content: space-between;
        pointer-events: none; /* Empêche de bloquer les clics sur le carrousel */
        z-index: 20;
    }

    .carousel-nav button {
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        pointer-events: auto; /* Rend les boutons cliquables */
    }
}

/* Tablette et Mobile (écrans <= 1024px) */
@media (max-width: 1024px) {
    /* Cache le curseur personnalisé sur les écrans tactiles */
    .custom-cursor {
        display: none;
    }
    
    body {
        cursor: auto; /* Rétablit le curseur par défaut du système */
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .cta-title-minimalist {
        font-size: 2rem;
    }

    .testimonial-carousel {
        padding: 0;
    }
    
    .testimonial-slider-wrapper {
        padding: 0 16px;
    }

    .carousel-nav {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
        position: relative;
        z-index: 10;
    }

    .carousel-nav button {
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .btn-header {
        display: none;
    }

    .pixel-font {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title-small {
        font-size: 1.8rem;
    }
    
    .cta-title-minimalist {
        font-size: 1.8rem;
    }

    .video-title {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .ai-grid,
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .header .container {
        justify-content: center;
    }
    
    .testimonial-carousel {
        width: 100%;
        margin-left: 0;
        overflow: hidden;
    }
    
    .testimonial-slider-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        padding: 0 16px;
    }

    .testimonial-slider {
        justify-content: flex-start;
        display: flex;
        gap: 16px;
        padding-bottom: 20px;
        transition: none;
        transform: none !important;
    }
    
    .testimonial-card {
        flex-shrink: 0;
        width: calc(100vw - 32px);
        scroll-snap-align: start;
    }
    
    .content-item {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        padding: 80px 0;
    }

    .accident-section,
    .inscription-section,
    .ai-section,
    .video-section,
    .testimonials,
    .formation-content,
    .faq-section {
        padding: 80px 0;
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
        right: 15px;
        bottom: -80px;
    }

    .scroll-to-top.show {
        bottom: 15px;
    }

    .ressources {
        max-width: 350px;
    }

    .carousel-nav {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
        position: relative;
        z-index: 10;
    }

    .carousel-nav button {
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}