:root {
    --primary-color: #4d69e4;    /* Bleu électrique */
    --secondary-color: #9916c0;  /* Violet profond */
    --accent-color: #3A0CA3;     /* Violet intense */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark: #1A1B1E;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: linear-gradient(135deg, 
        var(--primary-color),
        var(--secondary-color));
}

main {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Sections Générales */
section {
    width: 100%;
    margin: 0;
    padding: 6rem 5%;
    position: relative;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 6rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%,
        var(--secondary-color) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 90%;
    padding: 3rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    text-align: center;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.cta-button {
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: var(--light-gray);
}

h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    background: var(--white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.h2-stats {
    /* color: #4d69e4; */
    -webkit-text-fill-color: #000000;
}

/* Stats Section */
.stats-section {
    background: var(--gradient);
    width: 100%;
    margin: 0;
    padding: 8rem 0;
    position: relative;
}

.stats-grid {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Presentation Section */
#presentation, #features, #rejoindre {
    background: var(--white);
    width: 100%;
}

.features-grid, .features-list, .join-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Footer */
footer {
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--dark);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 5%;
}

/* Header et Navigation */
header {
    background: rgba(26, 27, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(67, 97, 238, 0.3));
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.logo-text::after {
    content: 'BETA';
    position: absolute;
    top: -8px;
    right: -40px;
    font-size: 0.7rem;
    background: var(--gradient);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--white);
    font-weight: 600;
    -webkit-text-fill-color: var(--white);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--white);
}

nav a:hover::after {
    width: 100%;
}

@media (max-width: 1024px) {
    header {
        padding: 1rem;
    }

    .logo-text {
        font-size: 1.6rem;
    }

    .logo-text::after {
        right: -35px;
        font-size: 0.6rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.8rem 1rem;
    }

    .logo-img {
        height: 35px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    nav {
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(67, 97, 238, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(114, 9, 183, 0.4) 0%, transparent 50%);
    z-index: 1;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.feature {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.stat-item {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.6rem;
    color: var(--white);
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 6rem 1.5rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 1.2rem;
    }
}

/* Join Section */
.join-section {
    background: var(--white);
    position: relative;
    padding: 4rem 1rem;
}

.join-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.join-content {
    text-align: center;
}

.join-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.discord-button, .forum-button {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .join-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .join-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
        order: -1;
    }

    .join-content {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .join-section {
        padding: 3rem 1rem;
    }

    .join-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step {
        padding: 1.5rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .discord-button, .forum-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .join-image-wrapper {
        aspect-ratio: 16/10;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .join-section {
        padding: 2rem 1rem;
    }

    .join-content h2 {
        font-size: 2rem;
    }

    .step {
        padding: 1.2rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .step h4 {
        font-size: 1.2rem;
    }

    .discord-button, .forum-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-section:first-child p {
    color: var(--light-gray);
    opacity: 0.8;
    max-width: 400px;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--light-gray);
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .logo {
        font-size: 1.8rem;
    }

    .logo::after {
        display: none;
    }

    nav ul {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-section:first-child p {
        max-width: 100%;
    }

    .footer-section ul li a {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(67, 97, 238, 0.3); }
    50% { box-shadow: 0 0 20px rgba(67, 97, 238, 0.6); }
    100% { box-shadow: 0 0 5px rgba(67, 97, 238, 0.3); }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Boutons avec animations */
.cta-button {
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.4);
    animation: none;
}

.cta-button:active {
    transform: translateY(2px) scale(0.95);
}

/* Cards avec animations */
.feature {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature:hover i {
    animation: float 2s ease-in-out infinite;
}

.feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(114, 9, 183, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover::after {
    opacity: 1;
}

/* Stats avec animations */
.stat-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    animation: glow 2s ease-in-out infinite;
}

/* Navigation avec animations */
nav a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Social Icons avec animations */
.social-icons a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: -1;
}

.social-icons a:hover::before {
    width: 150%;
    height: 150%;
}

.social-icons a:hover {
    transform: translateY(-5px) rotate(360deg);
    color: var(--white);
}

/* Steps avec animations */
.step {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step:hover .step-number {
    animation: pulse 2s infinite;
}

/* Footer Links avec animations */
.footer-section ul li a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section ul li a:hover {
    transform: translateX(10px);
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(67, 97, 238, 0.3);
}

/* Scroll Indicator avec animation */
.scroll-indicator {
    animation: float 2s infinite ease-in-out;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

/* Hero Content avec animation */
.hero-content {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

/* Logo avec animation */
.logo {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Discord et Forum buttons avec animations */
.discord-button, .forum-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.discord-button::before, .forum-button::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.7s ease;
}

.discord-button:hover::before, .forum-button:hover::before {
    left: 100%;
}

.discord-button:hover, .forum-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Canvas des particules */
.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.scroll-indicator {
    position: relative;
    z-index: 2;
}

/* Images des sections */
.section-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(5px);
    transform: scale(1.1);
    transition: all 0.5s ease;
}

.section-image-wrapper:hover .section-image {
    transform: scale(1);
    filter: blur(3px);
}

/* Background parallax */
.features-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.parallax-image {
    width: 100%;
    height: 120%;
    object-fit: cover;
    opacity: 0.15;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.features-background:hover .parallax-image {
    transform: translateY(-5%);
}

/* Stats background */
.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.8) contrast(1.2);
}

/* Join section avec image */
.join-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.join-image-wrapper {
    position: relative;
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: var(--gradient);
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background: transparent;
    border-radius: 18px;
}

.join-image-wrapper:hover .join-image {
    transform: scale(1.02);
}

/* Responsive design pour les images */
@media (max-width: 1024px) {
    .join-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .join-image-wrapper {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .join-image-wrapper {
        max-width: 100%;
    }
}

/* Section Boutique */
.boutique-hero {
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 6rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%,
        var(--secondary-color) 100%);
}

.boutique-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(67, 97, 238, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(114, 9, 183, 0.4) 0%, transparent 50%);
    z-index: 1;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    padding: 1.5rem 4rem;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.store-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: var(--light-gray);
}

.store-button i {
    font-size: 1.4rem;
}

/* Media queries pour la boutique */
@media (max-width: 768px) {
    .store-button {
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
    }
}

/* Section Boutique dans l'index */
.boutique-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 8rem 2rem;
}

.boutique-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.boutique-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: var(--dark);
    opacity: 0.9;
}

.boutique-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* Media queries pour la section boutique */
@media (max-width: 768px) {
    .boutique-section {
        padding: 6rem 1rem;
    }

    .boutique-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
}

/* Ajustements pour le contenu sur les images */
#presentation, #features, .stats-section {
    position: relative;
    z-index: 1;
}

.features-grid, .features-list, .stats-grid, .join-content {
    position: relative;
    z-index: 2;
}

/* Logo dans le header */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(67, 97, 238, 0.3));
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(67, 97, 238, 0.5));
}

.logo-text {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

/* Logo dans le hero */
.hero-logo {
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite, slideLeftRight 8s ease-in-out infinite;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.hero-logo:hover {
    animation-play-state: paused;
}

.hero-logo:hover .hero-logo-img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .hero-logo-img {
        height: 80px;
    }
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    margin-left: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.menu-toggle span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-toggle span:nth-child(1) {
    top: 12px;
    left: 8px;
    width: 24px;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
}

.menu-toggle span:nth-child(3) {
    bottom: 12px;
    left: 8px;
    width: 24px;
}

.menu-toggle.active {
    background: rgba(67, 97, 238, 0.1);
}

.menu-toggle.active span {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 10px rgba(67, 97, 238, 0.5);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    width: 24px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) translateX(15px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 24px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 27, 30, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    clip-path: circle(0% at 95% 5%);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    clip-path: circle(150% at 95% 5%);
}

.mobile-nav-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease 0.3s;
}

.mobile-nav.active .mobile-nav-content {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav a {
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 2rem;
    transition: all 0.3s ease;
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient);
    z-index: -1;
    border-radius: 30px;
    transition: width 0.3s ease;
}

.mobile-nav a:hover::before {
    width: 100%;
}

.mobile-nav a:hover {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
    }

    .mobile-nav {
        display: block;
    }
}

/* Animations supplémentaires pour le responsive */
@keyframes menuItemFadeIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav.active a {
    animation: menuItemFadeIn 0.5s ease forwards;
}

.mobile-nav.active a:nth-child(1) { animation-delay: 0.3s; }
.mobile-nav.active a:nth-child(2) { animation-delay: 0.4s; }
.mobile-nav.active a:nth-child(3) { animation-delay: 0.5s; }
.mobile-nav.active a:nth-child(4) { animation-delay: 0.6s; }

@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem;
    }

    .hero-content {
        padding: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.discord-button {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.forum-button {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(114, 9, 183, 0.3);
}

.discord-button:hover, .forum-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
}

/* Animation de l'image hero */
@keyframes slideLeftRight {
    0% {
        transform: translateX(-10px);
    }
    50% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(-10px);
    }
}

.hero-logo {
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite, slideLeftRight 8s ease-in-out infinite;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.hero-logo:hover {
    animation-play-state: paused;
}

.hero-logo:hover .hero-logo-img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
}

/* Bannière de cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem;
    text-align: center;
    z-index: 1000;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-buttons {
    margin-top: 1rem;
}

.cookie-buttons button {
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cookie-buttons #acceptCookies {
    background: #9916c0;
    color: white;
}

.cookie-buttons #refuseCookies {
    background: #666;
    color: white;
}

/* Header fixe pour les pages secondaires */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    padding: 1rem 0;
}

.fixed-header .logo a {
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: center;
}

/* Styles améliorés pour la politique de confidentialité */
.privacy-content {
    max-width: 1000px;
    margin: 8rem auto 4rem;
    padding: 0 2rem;
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--gradient);
    border-radius: 15px;
    color: var(--white);
}

.privacy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.last-update {
    font-size: 0.9rem;
    opacity: 0.8;
}

.privacy-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.privacy-navigation a {
    color: var(--accent-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.privacy-navigation a:hover {
    background: var(--gradient);
    color: var(--white);
}

.privacy-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.privacy-content h2 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
}

.privacy-content ul {
    list-style-type: none;
    padding-left: 0;
}

.privacy-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.privacy-content ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.contact-card {
    text-align: center;
}

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

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--white);
}

@media (max-width: 768px) {
    .privacy-navigation {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Styles communs pour toutes les pages secondaires */
.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--gradient);
    border-radius: 15px;
    color: var(--white);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Style pour la FAQ */
.faq-content {
    max-width: 1000px;
    margin: 8rem auto 4rem;
    padding: 0 2rem;
}

.faq-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

/* Style pour le Blog */
.blog-content {
    max-width: 1200px;
    margin: 8rem auto 4rem;
    padding: 0 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.blog-post {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Style pour les articles */
.article-content {
    max-width: 900px;
    margin: 8rem auto 4rem;
    padding: 0 2rem;
}

.article-header {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gradient);
    border-radius: 15px;
    color: var(--white);
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-body {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-body h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 2rem 0 1rem;
}

.article-body h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.article-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.article-body ul, 
.article-body ol {
    margin: 1rem 0 1.5rem 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-body strong {
    color: var(--accent-color);
}

.article-conclusion {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    text-align: center;
}

.article-conclusion h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Styles pour les listes spécifiques */
.event-details {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.event-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.event-details li:last-child {
    border-bottom: none;
}

.event-details i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .article-body {
        padding: 1.5rem;
    }

    .article-body h2 {
        font-size: 1.8rem;
    }

    .article-body h3 {
        font-size: 1.3rem;
    }
}

/* Section Points Forts */
.features-section {
    background: var(--white);
    padding: 6rem 5%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Section Dernières Actualités */
.latest-news-section {
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
    position: relative;
}

.news-tag {
    position: absolute;
    top: -12px;
    left: 1.5rem;
    background: var(--gradient);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.news-content h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: var(--accent-color);
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-meta i {
    color: var(--primary-color);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 0.8rem;
    color: var(--accent-color);
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

.news-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    margin-top: 3rem;
}

.news-cta i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .latest-news-section {
        padding: 4rem 1.5rem;
    }

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

    .news-content {
        padding: 1.2rem;
    }

    .news-content h3 {
        font-size: 1.3rem;
    }

    .news-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* About Page Styles */
.about-hero {
    padding-top: calc(6rem + 80px);  /* Ajout de l'espace pour le header fixe */
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-hero .hero-content {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .about-hero {
        padding-top: calc(4rem + 80px);
    }
}

/* Sections avec effet verre */
.glass-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4rem 0;
}

.glass-card {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37) !important;
}

.section-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.section-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

/* Améliorations des cartes */
.mission-card, .team-card, .stat-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.mission-card:hover, .team-card:hover, .stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(31, 38, 135, 0.4) !important;
}

.member-responsibilities {
    margin-top: 1.5rem;
}

.member-responsibilities li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.member-responsibilities li i {
    color: var(--primary-color);
}

/* Animation des icônes */
.section-icon i, .member-icon i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Effets modernes pour About */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

/* Timeline moderne */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--gradient);
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--gradient);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 1.5rem;
    position: relative;
    margin-left: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: 2rem;
}

/* Stats animées */
.animated-stats .stats-card {
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

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

.counter, .counter-decimal {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Animation pour les compteurs */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Nouvelles sections modernes */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--dark);
    max-width: 800px;
    margin: 1rem auto;
    line-height: 1.6;
}

.pulse-effect {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(77, 105, 228, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(77, 105, 228, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(77, 105, 228, 0);
    }
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.card-icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
}

.mission-card, .team-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.mission-card:hover .card-hover-effect,
.team-card:hover .card-hover-effect {
    opacity: 0.05;
}

.modern-list {
    list-style: none;
    padding: 0;
}

.modern-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modern-list li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.2);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gradient);
    border-radius: 50%;
    margin-right: 1rem;
}

.check-icon i {
    color: var(--white);
    font-size: 0.8rem;
}

/* Animations améliorées */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.mission-card, .team-card {
    animation: float 6s ease-in-out infinite;
}

.mission-card:nth-child(odd), .team-card:nth-child(odd) {
    animation-delay: 1s;
}

/* Style moderne pour content-wrapper dans about.html */
.about-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    overflow: hidden;
}

.about-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(var(--primary-color-rgb), 0.05) 0%,
        rgba(var(--secondary-color-rgb), 0.05) 100%
    );
    z-index: -1;
}

.mission-section .about-content-wrapper,
.team-section .about-content-wrapper {
    padding: 3rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out;
}

.mission-grid, .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.section-header {
    position: relative;
    padding-bottom: 3rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

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

@media (max-width: 768px) {
    .about-content-wrapper {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
} 