@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

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

body {
    font-family: 'Orbitron', sans-serif;
    color: #0ff;
    background: black;
    overflow: hidden;
}

/* Vidéo de fond */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Bruit blanc */
#white-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('white-noise.gif');
    opacity: 0.05;
    z-index: -1;
}

/* Conteneur principal */
main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Effet glitch sur le titre */
.glitch {
    font-size: 3rem;
    text-transform: uppercase;
    position: relative;
    animation: glitch 1s infinite, disappear 15s forwards;
}

@keyframes glitch {
    0% { text-shadow: 2px 0px red, -2px 0px cyan; }
    50% { text-shadow: -2px 0px red, 2px 0px cyan; }
    100% { text-shadow: 2px 0px red, -2px 0px cyan; }
}

/* Disparition progressive */
@keyframes disappear {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

/* Sous-titre */
.subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.8;
}

/* Sections des articles */
.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin-top: 40px;
}

article {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-left: 3px solid cyan;
    box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.5);
}

/* Monologue dramatique */
.monologue {
    margin-top: 50px;
}

.fade {
    font-size: 1.5rem;
    opacity: 1;
    animation: fadeOut 10s forwards;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}
