/* --- Niska i kompaktowa stopka --- */
.main-footer {
    background: #0a0a0a;
    width: 100%; /* Wymuszenie pełnej szerokości */
    padding: 15px 20px;
    margin-top: 50px;
    border-top: 1px solid #363636;
    display: flex;
    justify-content: space-between; /* Rozłożenie na boki */
    align-items: center;
    box-sizing: border-box; /* Ważne dla paddingu */
}

/* Kontener główny - teraz w poziomie */
.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Lewa strona: Prawa autorskie */
.footer-bottom {
    font-size: 0.75rem;
    color: #666666;
}

/* Środek: Linki prawne */
.footer-links {
    display: flex;
    gap: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.footer-links a {
    color: #7e7e7e;
    text-decoration: none;
    transition: 0.3s all ease;
}

.footer-links a:hover {
    color: var(--accent);
}

/* Prawa strona: Ikona Discorda */
.footer-social {
    display: flex;
    align-items: center;
}

.footer-discord-icon {
    font-size: 1.4rem;
    color: #a1a1a1;
    transition: 0.3s all ease;
}

.footer-discord-icon:hover {
    color: var(--accent);
}

/* Responsywność - mobilnie */
@media (max-width: 600px) {
    .main-footer {
        flex-direction: column; /* Na małych ekranach zostawiamy pion, ale bardzo ciasny */
        gap: 10px;
        padding: 10px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 5px;
    }
}