* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    height: 100vh;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* 1. ANIMACJA TŁA (GIF) */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('skurzak.gif') no-repeat center center;
    background-size: cover;
    z-index: -1;
    opacity: 0; /* Startujemy od zera */
    animation: fadeInPure 9s ease-out forwards;
}

/* 2. ANIMACJA ELEMENTÓW BODY (Linki i obrazki) */
.corner-image, .skurzak, .skurzaka {
    opacity: 0; /* Startujemy od zera */
    animation: fadeInPure 9s ease-out forwards;
}

/* Napis "Kliknij po prawdę" pojawi się z lekkim opóźnieniem dla efektu */
.skurzaka {
    animation-delay: 3s; 
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 5vw;
    font-weight: bold;
}

.corner-image {
    position: fixed;
    top: 15px;
    left: 15px;
}

.skurzak {
    position: fixed;
    bottom: 15px;
    left: 15px;
    font-size: 20px;
}

/* Wygląd linków i grafiki */
a {
    text-decoration: none;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
}

.corner-image img {
    width: 60px;
    height: auto;
    border-radius: 5px;
}

/* CZYSTE FADE IN (Tylko przezroczystość) */
@keyframes fadeInPure {
    from { 
        opacity: 0; 
    }
    to { 
        opacity: 1; 
    }
}