/* Podstawowe resety */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- ANIMACJE --- */

/* Płynące tło */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Połysk na tekście (efekt ceramiki/wosku) */
@keyframes shineText {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Delikatne wjechanie elementów od dołu */
@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(40px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    /* Animowane tło: głęboka czerń z subtelnymi odcieniami grafitu i granatu */
    background: linear-gradient(-45deg, #0a0a0a, #1a1a24, #0f0f11, #050505);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

/* Opcjonalna nakładka (przydatna, jeśli w przyszłości dodasz zdjęcie w tle) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 17, 0.6); 
    z-index: 1;
}

/* Główny kontener z animacją pojawiania się */
.container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 20px;
    opacity: 0; /* Zaczyna jako niewidoczny */
    animation: fadeInUp 1.5s ease-out forwards; /* Uruchomienie animacji */
}

/* Logo */
.logo {
    max-width: 250px;
    margin-bottom: 40px;
    /* Lekki cień, żeby logo oderwało się od tła */
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.5));
}

/* Typografia z efektem połysku */
h1 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    
    /* Konfiguracja efektu połysku */
    background: linear-gradient(
        90deg, 
        #888888 0%, 
        #ffffff 40%, 
        #ffffff 60%, 
        #888888 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shineText 4s linear infinite;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Stopka */
footer {
    margin-top: 50px;
    font-size: 0.8rem;a
    color: #555;
    letter-spacing: 1px;
}

/* Responsywność dla telefonów */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    .logo {
        max-width: 200px;
    }
}