/* Mobile styles */
@media screen and (max-width: 768px) {
    /* Footer styles - Using 375x667 as reference point for scaling */
    footer {
        position: relative;
        width: 100%;
        padding: 1rem;
        text-align: center;
        z-index: var(--z-footer);
    }

    .footer-section {
        padding: 1rem 0;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-section h2 {
        font-size: 4.375rem;
        margin: 0 0 0.5rem 0;
        padding: 0;
        line-height: 1;
    }

    .footer-section h2 a {
        text-decoration: none;
    }


    .social-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 0 0 0.5rem 0;
        padding: 0;
        width: min(300px, 90%);
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        padding: 0;
        margin: 0;
        width: 100%;
        line-height: 1;
        text-decoration: none;
    }

    .social-link i {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        margin-right: 0.75rem;
        font-size: 2.5rem;
    }

    .social-link span {
        font-size: 2.5rem;
        line-height: 1;
    }

    .footer-bottom {
        width: 90%;
        margin: 0.5rem auto 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .footer-bottom p {
        margin: 0;
        padding: 0;
        font-size: 1rem;
        line-height: 1.2;
        opacity: 0.6;
        -webkit-text-stroke: 0.2px rgba(0, 0, 0, 0.5);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .live-count {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        opacity: 1;
    }

    #activeVisitors {
        background: rgba(0, 255, 255, 0.1);
        padding: 0.15rem 0.5rem;
        border-radius: 5px;
        border: 1px solid var(--accent-cyan);
        font-size: 1rem;
        min-width: 2.5rem;
        text-align: center;
    }
}