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

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0a0a0a;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
    position: relative;
}

/* Grid background minimaliste */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 101, 72, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 101, 72, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

/* Logo en haut à gauche */
.logo {
    position: fixed;
    top: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    z-index: 10;
}

.logo-dot {
    color: #8b6548;
    font-size: 1rem;
}

.container {
    text-align: center;
    padding: 40px;
    max-width: 900px;
    z-index: 1;
    animation: fadeIn 1.2s ease-out;
}

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

/* Badge statut */
.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(139, 101, 72, 0.1);
    border: 1px solid rgba(139, 101, 72, 0.3);
    border-radius: 50px;
    color: #c4956d;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
    color: white;
}

.accent-text {
    color: #8b6548;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Animation minimaliste */
.animation-container {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: #8b6548;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Barre de progression minimaliste */
.progress-wrapper {
    margin: 3rem 0;
}

.progress-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.progress-container {
    width: 100%;
    max-width: 400px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #8b6548 0%, #c4956d 100%);
    animation: progress 2.5s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 0%;
        opacity: 0.5;
    }
    50% {
        width: 70%;
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 0.5;
    }
}

/* Message */
.message {
    font-size: 1rem;
    line-height: 1.8;
    margin: 3rem 0;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* Liens sociaux minimalistes */
.social-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: #8b6548;
    color: #c4956d;
    transform: translateY(-2px);
}

/* Particules subtiles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(139, 101, 72, 0.3);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.6;
    }
}

/* Footer minimaliste */
.footer {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        top: 1.5rem;
        left: 1.5rem;
        font-size: 1.2rem;
    }

    .container {
        padding: 20px;
    }

    .status-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }

    h1 {
        margin-bottom: 1rem;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .social-links {
        gap: 0.8rem;
    }

    .social-link {
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
    }

    .footer {
        bottom: 1.5rem;
        font-size: 0.65rem;
    }
}
