/* projects/drift/splash.css - STYL DLA EKRANU POWITALNEGO */

#splashScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b0b0d; /* Ciemne tło */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 200; /* Najwyższa warstwa */
    color: #f0f0f0;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.splash-text {
    font-size: 80px;
    font-weight: bold;
    color: #ff3333;
    letter-spacing: 10px;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.8);
    margin-bottom: 20px;
    animation: pulse 1.5s infinite alternate;
}

.splash-author {
    font-size: 24px;
    color: #999;
    margin-bottom: 50px;
}

#startButton {
    background: #cc0000;
    color: white;
    border: 3px solid #ff3333;
    border-radius: 8px;
    padding: 18px 40px; 
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.1s, border-color 0.2s;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

#startButton:hover {
    background: #ff3333;
    border-color: #fff;
    transform: translateY(-2px);
}

@keyframes pulse {
    from { opacity: 1; }
    to { opacity: 0.8; }
}