@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav li {
        margin: 0.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .info-container {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .copyright, .visit-counter, .admin-button {
        min-width: auto;
        margin: 0;
    }

    .language-selector {
        margin-right: 1rem;
        order: 2;
    }

    .header-content {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    nav {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }

    /* Splash screen mobile */
    #splash-screen .logo-half {
        background-size: contain;
        background-repeat: no-repeat;
        background-color: #000;
    }

    #splash-screen .left-half {
        background-position: left center;
    }

    #splash-screen .right-half {
        background-position: right center;
    }

    #splash-screen .click-instruction {
        font-size: 1rem;
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    #splash-screen .click-instruction {
        font-size: 0.9rem;
        bottom: 20px;
    }
}