/* ==========================================================================
   MAIN.CSS - Feuille de style principale consolidée
   Portfolio Professionnel - Version 1.0
   ========================================================================== */

/* ==========================================================================
   1. RESET ET VARIABLES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: none;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

:root {
    /* Couleurs principales */
    --color-creno: #ffc605;
    --color-pixshare: #10B981;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray: rgba(255, 255, 255, 0.7);
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Transitions */
    --transition-fast: 0.3s ease-out;
    --transition-normal: 0.6s ease-out;
    --transition-slow: 1s ease-out;
}

/* ==========================================================================
   2. TYPOGRAPHIE
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.headline-massive {
    font-size: clamp(4rem, 10vw, 12rem);
}

.product-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: var(--spacing-xs);
}

.product-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 300;
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
}

/* ==========================================================================
   3. LAYOUT ET CONTAINERS
   ========================================================================== */

.section-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
}

section {
    position: relative;
    min-height: 100vh;
}

/* ==========================================================================
   4. NAVIGATION
   ========================================================================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition-fast);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-white);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--color-creno);
}

/* Styles pour les menus déroulants */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 1001;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-white);
    text-decoration: none;
    transition: all var(--transition-fast);
    border-radius: 4px;
    margin: 0 0.5rem;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-creno);
}

/* Menu mobile */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        min-width: auto;
        margin: 0;
        padding: 0;
    }
    
    .dropdown-menu a {
        margin: 0;
        padding: 0.5rem 0;
    }
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */

.hero-zoom {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

/* Animation de la flèche */
@keyframes bounce-arrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.bounce-arrow {
    animation: bounce-arrow 2s ease-in-out infinite;
}

/* ==========================================================================
   6. ANIMATIONS DJI STYLE
   ========================================================================== */

/* Container principal pour l'animation */
.creno-animation-container,
.pixshare-animation-container {
    position: relative;
    height: 80vh;
    background: var(--color-black);
    overflow: hidden;
}

/* Section sticky */
.animation-sticky-section {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Logo central */
.creno-logo-zoom,
.pixshare-logo-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 20;
    transition: transform var(--transition-fast);
    will-change: transform;
}

.creno-logo-zoom img,
.pixshare-logo-zoom img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
}

/* Texte et indicateur de scroll */
.creno-text-content,
.pixshare-text-content {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    z-index: 15;
    transition: all var(--transition-fast);
    will-change: opacity, transform;
}

.scroll-indicator {
    display: inline-block;
    text-align: center;
    opacity: 0.5;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--spacing-xs);
}

.scroll-indicator i {
    display: block;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

/* Container des statistiques */
.creno-stats-container,
.pixshare-stats-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 1000px;
    height: 80vh;
    display: none;
    opacity: 0;
    pointer-events: none;
    z-index: 30;
    transition: opacity var(--transition-normal);
}

/* Container des statistiques mobile - Carrousel */
@media (max-width: 768px) {
    .creno-stats-container,
    .pixshare-stats-container {
        position: absolute;
        top: 35%;
        left: 0;
        right: 0;
        transform: translateY(-100%);
        width: 100%;
        height: auto;
        overflow: hidden;
        padding: 0;
        z-index: 35;
    }
    
    /* Wrapper pour le carrousel */
    .stats-carousel-wrapper {
        display: flex;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        width: 100%;
    }
    
    /* Indicateurs de navigation (dots) */
    .carousel-indicators {
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 40;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .carousel-dot.active {
        width: 24px;
        border-radius: 4px;
        background: var(--color-creno);
    }
    
    .pixshare-stats-container .carousel-dot.active {
        background: var(--color-pixshare);
    }
}

/* Items de statistiques */
.creno-stat-item,
.pixshare-stat-item {
    position: absolute;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: all var(--transition-normal) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Positionnement des stats desktop */
.stat-item-1 { top: 15%; left: 10%; }
.stat-item-2 { top: 15%; right: 10%; }
.stat-item-3 { bottom: 25%; left: 15%; }
.stat-item-4 { bottom: 15%; right: 12%; }

/* Style spécifique pour la box de disponibilité des stores */
.availability-box {
    background: linear-gradient(135deg, rgba(26, 49, 92, 0.15) 0%, rgba(26, 49, 92, 0.08) 100%) !important;
    border-color: rgba(26, 49, 92, 0.3) !important;
    padding: 1rem 1.2rem !important;
    min-width: 140px !important;
    transform: scale(0.85) rotate(3deg);
}

.store-logos {
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.availability-box .stat-label {
    font-size: 0.75rem;
    opacity: 0.85;
}

/* Style spécifique pour la box de disponibilité Fakt */
.availability-box-fakt {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.12) 0%, rgba(135, 206, 235, 0.06) 100%) !important;
    border-color: rgba(135, 206, 235, 0.25) !important;
    padding: 1rem 1.2rem !important;
    min-width: 140px !important;
    transform: scale(0.85) rotate(3deg);
}

.demand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.availability-box-fakt .stat-label {
    font-size: 0.75rem;
    opacity: 0.85;
}

/* Positionnement des stats mobile - Items du carrousel */
@media (max-width: 768px) {
    .creno-stat-item,
    .pixshare-stat-item {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        flex: 0 0 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
    }
}

/* Boîtes de stats */
.stat-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem 3rem;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Styles spécifiques Créno - Bleu marine */
.creno-stat-item .stat-box {
    background: linear-gradient(135deg, rgba(26, 49, 92, 0.15) 0%, rgba(26, 49, 92, 0.08) 100%);
    border-color: rgba(26, 49, 92, 0.3);
}

.creno-stat-item .stat-counter {
    color: #1a315c;
    text-shadow: 0 0 20px rgba(26, 49, 92, 0.6);
}

/* Styles spécifiques PixShare */
.pixshare-stat-item .stat-box {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(147, 51, 234, 0.05) 100%);
    border-color: rgba(147, 51, 234, 0.2);
}

.pixshare-stat-item .stat-counter {
    color: var(--color-pixshare);
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.4);
}

/* Styles spécifiques FindMyCourt - Jaune */
.findmycourt-stat-item .stat-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0.06) 100%);
    border-color: rgba(255, 215, 0, 0.25);
}

.findmycourt-stat-item .stat-counter {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Compteurs et labels */
.stat-counter {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   7. SECTIONS DE CONTENU
   ========================================================================== */

.scroll-section {
    background: #111;
    padding: var(--spacing-xl) 0;
    min-height: auto;
}

.transition-section {
    height: 100vh;
    background: linear-gradient(180deg, #111 0%, #000 50%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-reveal {
    background: linear-gradient(180deg, #000 0%, #111 100%);
}

/* ==========================================================================
   8. PROJETS
   ========================================================================== */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: transform var(--transition-fast);
}

.project-card:hover {
    transform: translateY(-10px);
}

/* ==========================================================================
   8. UPCOMING PROJECTS CAROUSEL
   ========================================================================== */

.upcoming-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    overflow: hidden;
}

.upcoming-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    font-weight: 800;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.carousel-item {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    margin: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.carousel-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.carousel-item:hover img {
    width: 120px;
    height: 120px;
    margin-bottom: 0;
}

.carousel-item:hover p {
    opacity: 0;
    transform: translateY(10px);
}

.carousel-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.carousel-item p {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0.9;
    margin: 0;
    transition: all 0.3s ease;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .upcoming-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .carousel-item {
        width: 150px;
        height: 150px;
        margin: 0 1rem;
    }
    
    .carousel-item img {
        width: 60px;
        height: 60px;
    }
    
    .carousel-item p {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   9. CONTACT
   ========================================================================== */

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: var(--spacing-lg);
}

.contact-links a {
    color: var(--color-white);
    font-size: 2rem;
    transition: var(--transition-fast);
}

.contact-links a:hover {
    color: var(--color-creno);
    transform: scale(1.2);
}

/* ==========================================================================
   10. UTILITAIRES
   ========================================================================== */

.fade-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all var(--transition-slow);
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.hover-lift {
    transition: transform var(--transition-fast);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Animation slide-in depuis la gauche */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-200px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* État initial pour l'animation */
.slide-animation-ready {
    opacity: 0 !important;
    transform: translateX(-200px) !important;
    transition: none !important;
}

/* Animation active */
.slide-animation-active {
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* ==========================================================================
   11. RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    /* Navigation mobile */
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-links.active {
        display: flex;
        transform: translateY(0);
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--color-white);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1000;
    }
    
    /* Animations DJI mobile */
    .creno-animation-container,
    .pixshare-animation-container {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .animation-sticky-section {
        position: relative;
        height: auto;
        min-height: 100vh;
    }
    
    .creno-logo-zoom img,
    .pixshare-logo-zoom img {
        width: 140px;
        height: 140px;
    }
    
    .creno-logo-zoom,
    .pixshare-logo-zoom {
        top: 50%;
        z-index: 10;
    }
    
    .product-title {
        font-size: 2.5rem;
    }
    
    .product-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-counter {
        font-size: 2rem;
    }
    
    .stat-box {
        padding: 1.8rem 2.2rem;
        min-width: 200px;
        max-width: 280px;
        margin: 0 auto;
        transform: scale(0.85);
    }
    
    /* Animation d'entrée pour le carrousel */
    @keyframes slideInStat {
        from {
            opacity: 0;
            transform: scale(0.8) translateY(20px);
        }
        to {
            opacity: 1;
            transform: scale(0.9) translateY(0);
        }
    }
    
    .stat-box.animate-in {
        animation: slideInStat 0.5s ease-out forwards;
    }
    
    /* Grille projets mobile */
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Menu mobile */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* ==========================================================================
   12. LOADING SCREEN
   ========================================================================== */

#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out;
}

#loadingScreen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-creno);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   13. SUPPRESSION DES ANCIENS ÉLÉMENTS
   ========================================================================== */

.animation-wrapper,
.creno-wrapper,
.pixshare-wrapper,
.creno-placeholder,
.pixshare-placeholder {
    display: none !important;
}

/* ==========================================================================
   14. FINDMYCOURT SHOWCASE STYLES
   ========================================================================== */

/* FindMyCourt Animation Container */
.findmycourt-animation-container {
    position: relative;
    height: 80vh;
    background: var(--color-black);
    overflow: hidden;
}

/* Logo central FindMyCourt */
.findmycourt-logo-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 1s ease-out;
}

.findmycourt-logo-zoom img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.3));
}

/* Conteneur des statistiques FindMyCourt */
.findmycourt-stats-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Items de statistiques FindMyCourt */
.findmycourt-stat-item {
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.findmycourt-stat-item.stat-item-1 {
    top: 15%;
    left: 12%;
}

.findmycourt-stat-item.stat-item-2 {
    top: 25%;
    right: 8%;
}

.findmycourt-stat-item.stat-item-3 {
    bottom: 30%;
    left: 15%;
}

.findmycourt-stat-item.stat-item-4 {
    bottom: 25%;
    right: 18%;
}

/* Contenu texte FindMyCourt */
.findmycourt-text-content {
    position: absolute;
    bottom: 10%;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    text-align: center !important;
    opacity: 1 !important;
    transition: opacity 1s ease-out 0.5s;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
}

.findmycourt-text-content .product-title {
    text-align: center !important;
    margin: 0 auto !important;
    display: block !important;
    width: 100% !important;
}

.findmycourt-text-content .product-subtitle {
    text-align: center !important;
    margin: 0 auto !important;
    display: block !important;
    width: 100% !important;
}

.findmycourt-text-content .scroll-indicator {
    text-align: center !important;
    margin: 0 auto !important;
    display: block !important;
    width: 100% !important;
}

/* ==========================================================================
   FAKT SHOWCASE ANIMATIONS
   ========================================================================== */

.fakt-animation-container {
    position: relative;
    height: 80vh;
    background: var(--color-black);
    overflow: hidden;
}

/* Logo central Fakt */
.fakt-logo-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 1s ease-out;
}

.fakt-logo-zoom img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(135, 206, 235, 0.3));
}

/* Conteneur des statistiques Fakt */
.fakt-stats-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Items de statistiques Fakt */
.fakt-stat-item {
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.fakt-stat-item.stat-item-1 {
    top: 15%;
    left: 12%;
}

.fakt-stat-item.stat-item-2 {
    top: 25%;
    right: 8%;
}

.fakt-stat-item.stat-item-3 {
    bottom: 30%;
    left: 15%;
}

.fakt-stat-item.stat-item-4 {
    bottom: 25%;
    right: 18%;
}

.fakt-stat-item .stat-box {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.12) 0%, rgba(135, 206, 235, 0.06) 100%);
    border: 1px solid rgba(135, 206, 235, 0.25);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    min-width: 160px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(135, 206, 235, 0.1);
}

.fakt-stat-item .stat-counter {
    font-size: 2.5rem;
    font-weight: 800;
    color: #87CEEB;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.fakt-stat-item .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Contenu texte Fakt */
.fakt-text-content {
    position: absolute;
    bottom: 10%;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    text-align: center !important;
    opacity: 1 !important;
    transition: opacity 1s ease-out 0.5s;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
}

.fakt-text-content .product-title {
    text-align: center !important;
    margin: 0 auto !important;
    display: block !important;
    width: 100% !important;
}

.fakt-text-content .product-subtitle {
    text-align: center !important;
    margin: 0 auto !important;
    display: block !important;
    width: 100% !important;
}

.fakt-text-content .scroll-indicator {
    text-align: center !important;
    margin: 0 auto !important;
    display: block !important;
    width: 100% !important;
}

/* Responsive Fakt */
@media (max-width: 768px) {
    .fakt-animation-container {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .fakt-logo-zoom img {
        width: 140px;
        height: 140px;
    }
    
    .fakt-logo-zoom {
        top: 50%;
        left: 50%;
    }
    
    .fakt-stat-item.stat-item-1 {
        top: 25%;
        left: 10%;
    }
    
    .fakt-stat-item.stat-item-2 {
        top: 20%;
        right: 5%;
    }
    
    .fakt-stat-item.stat-item-3 {
        bottom: 35%;
        left: 8%;
    }
    
    .fakt-stat-item.stat-item-4 {
        bottom: 30%;
        right: 12%;
    }
    
    .fakt-stat-item .stat-box {
        padding: 1rem 1.5rem;
        min-width: 120px;
    }
    
    .fakt-stat-item .stat-counter {
        font-size: 2rem;
    }
    
    .fakt-stat-item .stat-label {
        font-size: 0.8rem;
    }
    
    .fakt-text-content {
        bottom: 5%;
    }
}

/* Responsive FindMyCourt */
@media (max-width: 768px) {
    .findmycourt-animation-container {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .findmycourt-logo-zoom img {
        width: 140px;
        height: 140px;
    }
    
    .findmycourt-logo-zoom {
        top: 50%;
        left: 50%;
    }
    
    .findmycourt-stat-item.stat-item-1 {
        top: 25%;
        left: 10%;
    }
    
    .findmycourt-stat-item.stat-item-2 {
        top: 25%;
        right: 10%;
    }
    
    .findmycourt-stat-item.stat-item-3 {
        bottom: 25%;
        left: 10%;
    }
    
    .findmycourt-stat-item.stat-item-4 {
        bottom: 25%;
        right: 10%;
    }
}