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

body {
    background-color: #1e1e1e; /* Szare tło */
    color: #e0e0e0;
    font-family: 'Press Start 2P', monospace; /* Czcionka w stylu Minecraft */
    overflow: hidden; /* Ukryj paski przewijania */
}

/* Płótno z animacją */
#sparksCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none; /* Kliknięcia przechodzą przez płótno */
}

/* Główny kontener zawartości */
.content-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
}

h1 {
    font-size: 4rem;
    margin-bottom: 4rem;
    color: #cccccc; /* Jasnoszary tekst */
    text-shadow: 6px 6px 0px #000000; /* Ostry cień w pikselowym stylu */
    letter-spacing: 2px;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Wygląd linku / przycisku */
.link-btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
    border: 4px solid #777777;
    border-radius: 0; /* Ostre rogi */
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all 0.1s ease;
    box-shadow: 6px 6px 0px #000000; /* Ostry cień */
}

.link-btn:hover {
    background-color: #4a4a4a;
    border-color: #aaaaaa;
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0px #000000;
    color: #ffd700; /* Złoty akcent na hover */
}

.link-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px #000000;
}

/* Responsywność dla mniejszych ekranów */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .link-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Wygląd ikon na przyciskach */
.icon {
    margin-right: 15px;
    color: #ffd700; /* Złoty akcent */
}
