@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background: #0b0b0b;
    color: white;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.1s ease-out;
}

/* Effet de flash avec image */
.eclair {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('eclair.png') no-repeat center center;
    background-size: cover;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.1s;
    pointer-events: none;
}

/* Animation de secousse */
@keyframes shake {
    0% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(-4px, 2px);
    }

    40% {
        transform: translate(3px, -2px);
    }

    60% {
        transform: translate(-3px, 2px);
    }

    80% {
        transform: translate(2px, -1px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.shake {
    animation: shake 0.25s;
}

.container {
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.logo {
    width: 50%;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
    margin-bottom: 20px;
    max-width: 180px;
    height: auto;
}


h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffffff;
}

p {
    font-size: 1.2rem;
    color: #cccccc;
}