/* Style Apple II Boot Screen - RCCA Edition */
#apple-ii-boot-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease-out;
    
    /* Effet CRT léger */
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 100%);
}

#apple-ii-boot-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

#boot-content {
    width: 90%;
    max-width: 800px;
    font-family: "Space Mono", monospace;
    font-size: 16px;
    line-height: 1.4;
    /* Couleur Apple II classique - Vert phosphorescent */
    color: #33ff33;
    text-shadow: 0 0 5px #33ff33, 0 0 10px rgba(51, 255, 51, 0.5);
    padding: 20px;
    
    /* VARIATIONS DE COULEURS RÉTRO - Décommentez celle que vous voulez :
    
    Apple II Green (défaut):
    color: #33ff33;
    text-shadow: 0 0 5px #33ff33, 0 0 10px rgba(51, 255, 51, 0.5);
    
    IBM Amber:
    color: #ffb000;
    text-shadow: 0 0 5px #ffb000, 0 0 10px rgba(255, 176, 0, 0.5);
    
    Commodore White:
    color: #f0f0f0;
    text-shadow: 0 0 5px #ffffff, 0 0 10px rgba(255, 255, 255, 0.4);
    
    VT100 Cyan:
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff, 0 0 10px rgba(0, 255, 255, 0.5);
    
    Amstrad Green:
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00, 0 0 10px rgba(0, 255, 0, 0.5);
    */
}

#boot-text {
    margin: 0;
    padding: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

#boot-cursor {
    display: inline-block;
    animation: blink 0.8s infinite;
    color: #33ff33;
    text-shadow: 0 0 5px #33ff33;
    font-size: 16px;
    margin-left: 2px;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* Effet scanline pour plus d'authenticité */
#apple-ii-boot-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 1;
}

#boot-content {
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    #boot-content {
        font-size: 14px;
        width: 95%;
        padding: 15px;
    }
    
    #boot-cursor {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    #boot-content {
        font-size: 12px;
        padding: 10px;
    }
    
    #boot-cursor {
        font-size: 12px;
    }
}
