/* Podstawowy reset stylów */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Press Start 2P', cursive;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Nakładka z liniami skanowania (efekt CRT) */
.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient( to bottom, rgba(0,0,0,0), rgba(0,0,0,0) 1px, rgba(0,0,0,0.3) 2px, rgba(0,0,0,0.3) 3px );
    pointer-events: none;
}

/* Filtr retro - animowany szum/ziarno */
body::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiGAAAAUVBMVEVsbGyTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5OTk5NTk5NSo3obAAAAHHRSTlMAEBDPz3yP7+9Qv28gUGB/bzr++a+gn4eFh4eGhn4m9gAAALVJREFUeJy9z9sOgjAQQNFgYyAL26r//7dYQytrjK3Slpc5YBz8uLg4ODg42D/wcXFxcXHx/+Kih4uLg4uLi4ePS4uLg4uLg4+Li4uLi4uLj4uLi4uLi4uPi4uLi4uLi4+Li4uLi4uLi4+Li4uLi4uLi4uPi4uLi4uLi4uPq4uLi4uLi4+Li4uLi4uLi4+ri4uLg4uLi4uLi4uLi4uPq4uLi4uLi4urv53wMf/AnwA8uIoSozTz+cAAAAASUVORK5CYII=");
    opacity: 0.08;
    animation: noise-animation 0.2s infinite;
    pointer-events: none;
}

@keyframes noise-animation {
    0% { transform: translate(0,0); } 10% { transform: translate(-5%,-5%); } 20% { transform: translate(-10%,5%); } 30% { transform: translate(5%,-10%); } 40% { transform: translate(-5%,15%); } 50% { transform: translate(-10%,-5%); } 60% { transform: translate(15%,0%); } 70% { transform: translate(0%,10%); } 80% { translate(-15%,0%); } 90% { transform: translate(10%,5%); } 100% { transform: translate(5%,0%); }
}

/* Główny kontener na treść */
.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    padding: 20px;
}

.logo {
    max-width: 100%; 
    width: 280px;
    image-rendering: pixelated;
    display: block;
    margin-bottom: 25px;
}

.slogan {
    color: #a0a0a0;
    font-size: 0.65rem;
    line-height: 1.6;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.instagram-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.7rem;
    padding: 5px 8px;
    transition: all 0.2s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

.instagram-link:hover {
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Style dla linku e-mail */
.email-link {
    margin-top: 30px;
    font-size: 0.35rem; /* ZMIENIONA WARTOŚĆ: ciut większy, ale wciąż bardzo mały */
    color: #777;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.2s ease-in-out;
}

.email-link:hover {
    color: #a0a0a0;
}