* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-main: #0a0a0a;
    --bg-secondary: #1a0d2e;
    --bg-card: #1f1b2e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --purple-primary: #9333ea;
    --purple-secondary: #a855f7;
    --purple-accent: #c084fc;
    --purple-glow: rgba(147, 51, 234, 0.3);
    --pink-accent: #ec4899;
    --neon-pink: #ff00ff;
    --neon-pink-glow: rgba(255, 0, 255, 0.6);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}


/* Canvas pour les particules */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* Background avec pattern mesh */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 50%, rgba(147, 51, 234, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #1a0d2e 0%, #0a0a0a 100%);
    background-size: 100% 100%;
    opacity: 0.9;
}

/* Mesh pattern overlay */
.mesh-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(255, 0, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.6;
}

/* Glow effects animés */
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0;
    will-change: transform;
    pointer-events: none;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--purple-primary);
    top: -300px;
    left: -300px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--pink-accent);
    bottom: -250px;
    right: -250px;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: var(--purple-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--neon-pink-glow);
    padding: 1rem 2rem;
    transform: translateY(-100%);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--purple-glow));
}

.logo span {
    color: var(--purple-primary);
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(147, 51, 234, 0.3);
}

.logo:hover span {
    color: var(--purple-primary);
    text-shadow: 
        0 0 10px rgba(147, 51, 234, 0.6),
        0 0 20px rgba(147, 51, 234, 0.4),
        0 0 30px rgba(147, 51, 234, 0.2);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    opacity: 0;
    font-weight: 500;
}

/* Menu Burger */
.menu-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.menu-burger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.menu-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-burger.active span:nth-child(2) {
    opacity: 0;
}

.menu-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--neon-pink-glow);
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.1);
}

.mobile-menu a:hover {
    color: var(--purple-accent);
    transform: translateX(5px);
}

/* Language Selector Mobile */
.mobile-language-selector {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 0, 255, 0.2);
}

.mobile-language-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-language-options {
    display: flex;
    gap: 1rem;
}

.mobile-language-option {
    flex: 1;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.mobile-language-option:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: var(--purple-primary);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.3);
}

.mobile-language-option.active {
    background: rgba(147, 51, 234, 0.3);
    border-color: var(--purple-primary);
    color: var(--purple-primary);
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.5);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple-primary);
    transition: width 0.3s;
    box-shadow: 0 0 8px rgba(147, 51, 234, 0.6), 0 0 12px rgba(147, 51, 234, 0.4);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.8), 0 0 20px rgba(147, 51, 234, 0.6), 0 0 30px rgba(147, 51, 234, 0.4);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(147, 51, 234, 0.3);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.language-btn:hover {
    border-color: var(--purple-primary);
    background: rgba(147, 51, 234, 0.1);
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.3);
}

.language-btn svg {
    transition: transform 0.3s ease;
}

.language-selector.active .language-btn svg {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--neon-pink-glow);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 500;
}

.language-option:hover {
    background: rgba(147, 51, 234, 0.2);
    color: var(--text-primary);
}

.language-option[data-lang="fr"],
.language-option[data-lang="en"] {
    font-weight: 600;
}

.btn-buy {
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-accent));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    opacity: 0;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--purple-glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    z-index: 10;
    width: 100%;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--purple-accent) 50%, var(--pink-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    will-change: transform, opacity;
    line-height: 1.1;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    cursor: default;
}

.hero h1:hover {
    transform: scale(1.02);
}

.hero p {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    color: var(--text-primary);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.hero p:hover {
    transform: translateY(-2px);
}

.hero .highlight {
    color: var(--purple-accent);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
    margin-top: 2rem;
}

/* Hero Logo Container */
.hero-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    will-change: transform, opacity;
}

/* Fallback si GSAP n'est pas chargé - le logo sera visible après 1 seconde */
.hero-logo-container {
    animation: logoFallback 0.1s 1s forwards;
}

@keyframes logoFallback {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-logo {
    width: 600px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(147, 51, 234, 0.6)) drop-shadow(0 0 60px rgba(147, 51, 234, 0.4));
    transition: all 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-logo:hover {
    transform: scale(1.05);
    animation-play-state: paused;
}

.hero-logo-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.5) 0%, rgba(236, 72, 153, 0.3) 50%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-accent));
    color: white;
    box-shadow: 0 10px 30px var(--purple-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px var(--neon-pink-glow), 0 0 25px var(--neon-pink-glow);
}

.btn-secondary {
    background: rgba(147, 51, 234, 0.1);
    color: var(--purple-accent);
    border: 2px solid var(--neon-pink);
}

.btn-secondary:hover {
    background: rgba(147, 51, 234, 0.2);
    transform: translateY(-3px) scale(1.02);
    border-color: var(--neon-pink);
}

/* Section Styles */
section {
    position: relative;
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* La section hero est déjà animée par GSAP */
section#hero {
    opacity: 1;
    transform: none;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--purple-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(15px) scale(0.98);
    will-change: transform, opacity;
    transition: all 0.3s ease;
    cursor: default;
}

.section-subtitle {
    text-align: center;
    color: var(--text-primary);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(15px);
    will-change: transform, opacity;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.section-subtitle:hover {
    transform: translateY(-2px);
}

/* Features Grid - 3 colonnes pour 6 cartes (3x3) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

/* Pour les tablettes, passer à 2 colonnes */
@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    background: rgba(20, 15, 35, 0.02);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    border: 1px solid rgba(255, 0, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    will-change: transform, opacity;
    position: relative;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05), rgba(236, 72, 153, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-pink);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.2), 0 0 15px rgba(255, 0, 255, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -20px;
    right: 20px;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(147, 51, 234, 0.4),
        0 0 0 0 rgba(147, 51, 234, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-accent));
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    filter: blur(4px);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: translateY(-5px) scale(1.05) rotate(5deg);
    box-shadow: 
        0 12px 32px rgba(147, 51, 234, 0.6),
        0 0 20px rgba(236, 72, 153, 0.4),
        0 0 0 2px rgba(147, 51, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-card:hover .feature-icon::before {
    opacity: 0.6;
    transform: translateY(-5px) scale(1.05) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    padding-right: 4rem;
}

.feature-card:hover h3 {
    transform: translateX(5px);
    color: var(--purple-accent);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Command Cards - 3 colonnes pour 6 cartes (3x3) */
.commands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Pour les tablettes, passer à 2 colonnes */
@media (max-width: 1024px) and (min-width: 769px) {
    .commands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.command-card {
    background: rgba(20, 15, 35, 0.02);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    border: 1px solid rgba(255, 0, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.command-card:hover {
    border-color: var(--neon-pink);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.2), 0 0 12px rgba(255, 0, 255, 0.15);
}

.command-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-accent));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(147, 51, 234, 0.35),
        0 0 0 0 rgba(147, 51, 234, 0.1);
    position: relative;
}

.command-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-accent));
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    filter: blur(3px);
}

.command-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.command-card:hover .command-icon {
    transform: translateY(-3px) scale(1.08) rotate(-5deg);
    box-shadow: 
        0 10px 28px rgba(147, 51, 234, 0.5),
        0 0 16px rgba(236, 72, 153, 0.3),
        0 0 0 2px rgba(147, 51, 234, 0.3);
}

.command-card:hover .command-icon::after {
    opacity: 0.6;
    transform: translateY(-3px) scale(1.08) rotate(-5deg);
}

.command-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.command-card:hover .command-info h4 {
    transform: translateX(5px);
    color: var(--purple-accent);
}

.command-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}


/* Footer */
footer {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--neon-pink-glow);
    margin-top: 4rem;
    position: relative;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(15px);
    will-change: transform, opacity;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-primary), var(--pink-accent));
    transition: width 0.3s;
}

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

.footer-links a:hover::after {
    width: 100%;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Section Screenshots */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

/* Pour les tablettes, passer à 2 colonnes */
@media (max-width: 1024px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.screenshot-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(20, 15, 35, 0.3);
    border: 1px solid rgba(255, 0, 255, 0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.95) translateY(20px);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.screenshot-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-pink);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.2);
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(147, 51, 234, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(147, 51, 234, 0.8);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: rgba(147, 51, 234, 1);
    transform: rotate(90deg);
}

/* Carrousel d'avis - TEMPORAIREMENT DÉSACTIVÉ */
#testimonials {
    display: none !important;
}

.testimonials-container {
    position: relative;
    margin-top: 4rem;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 2rem;
    background: rgba(20, 15, 35, 0.3);
    border: 1px solid rgba(255, 0, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(50px);
    margin: 0 1rem;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-btn {
    background: rgba(147, 51, 234, 0.3);
    border: 1px solid var(--purple-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-btn:hover {
    background: rgba(147, 51, 234, 0.5);
    transform: translateY(-2px);
}

/* Section mises à jour */
.updates-list {
    margin-top: 4rem;
}

.update-item {
    background: rgba(20, 15, 35, 0.3);
    border: 1px solid rgba(255, 0, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(50px);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.update-item:hover {
    border-color: var(--neon-pink);
    transform: translateX(0);
}

.update-date {
    color: var(--purple-accent);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.update-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-accent));
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 1rem;
}

/* Compteur de téléchargements dans hero */
.download-counter {
    text-align: center;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.download-counter-label {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
}

.download-counter-number {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--pink-accent);
    line-height: 1.5;
    filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.9)) 
            drop-shadow(0 0 16px rgba(236, 72, 153, 0.7)) 
            drop-shadow(0 0 24px rgba(236, 72, 153, 0.5))
            drop-shadow(0 0 32px rgba(255, 20, 147, 0.3));
}

.counter-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 1.5em;
    vertical-align: bottom;
}

.counter-digit {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    transform: translateY(0);
    opacity: 1;
}

.counter-digit.old {
    transform: translateY(-100%);
    opacity: 0;
}

.counter-digit.new {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    opacity: 0;
}

.counter-digit.new.animate {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-right {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .language-selector {
        display: none;
    }

    .menu-burger {
        display: flex;
    }

    /* Logo adjustments for mobile */
    .logo {
        font-size: 1.2rem;
        gap: 0.5rem;
    }

    .logo img {
        height: 32px;
        width: auto;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .hero {
        padding: 6rem 1rem 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-logo {
        width: 400px;
    }

    .hero-logo-glow {
        width: 600px;
        height: 600px;
    }

    section {
        padding: 4rem 1rem;
    }

    .features-grid,
    .commands-grid {
        grid-template-columns: 1fr;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }


    .download-counter {
        flex-direction: column;
        gap: 0.3rem;
    }

    .download-counter-label {
        font-size: 1rem;
    }

    .download-counter-number {
        font-size: 1rem;
    }

    .testimonial-card {
        min-width: 100%;
        margin: 0;
    }
}

