:root {
    --bg-color: #052618; /* Ciemna zieleń dopasowana do tła logo */
    --gold-color: #d4af37; /* Klasyczne złoto */
    --gold-light: #f9e29b; /* Jasne złoto do akcentów */
    --text-color: #e0e0e0; /* Jasny szary dla czytelności */
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Lato', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    text-align: center;
}

.container {
    max-width: 800px;
    padding: 20px;
    animation: fadeIn 2s ease-in-out;
}

.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2));
}

h1 {
    font-family: 'Cinzel', serif; /* Font o charakterze klasycznym/fantasy, pasuje do smoka */
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--gold-light);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: lowercase;
    opacity: 0.9;
}

footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* Prosta animacja wejścia */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsywność dla urządzeń mobilnych */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
}
