/* Resetowanie domyślnych styli */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Roboto', Arial, sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.logo {
    margin: 20px auto;
}

.home-banner {
    position: relative;
    text-align: center;
    padding: 40px 20px;
}

.home-banner-matrix {
    background-color: #111;
    height: auto;
    padding: 40px 0;
    border-radius: 10px;
}

.matrix-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-content: center;
    max-width: 900px;
    margin: 20px auto;
}

.matrix-links > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s, background 0.3s;
}

.matrix-links > a img {
    max-width: 80%;
    max-height: 80%;
}

.footer {
    margin-top: auto;
    padding: 20px;
    background-color: #222;
    font-size: 14px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

/* Responsywność */
@media (max-width: 900px) {
    .matrix-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .matrix-links > a {
        width: 45%;
        max-width: 160px;
    }
}