/* Desktop Footer styles */
@media screen and (min-width: 769px) {
    footer {
        position: relative;
        width: 100%;
        padding: 2rem 2rem;
        text-align: center;
        z-index: var(--z-footer);
    }

    .footer-section {
        padding: 1rem 0;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80%;
        max-width: 1200px;
    }

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

    .footer-section h2 a {
        font-size: 6rem;
        text-align: center;
        margin-bottom: 1rem;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 2px;
        white-space: nowrap;
        font-weight: 700;
        text-decoration: none;
    }

    .social-links {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin: 0 0 1rem 0;
        padding: 0;
        width: min(400px, 90%);
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        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: 3rem;
        margin-right: 0.5rem;
        font-size: 3rem;
    }

    .social-link:hover i {
        transform: scale(1.1);
    }

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

    /* Footer bottom styles */
    .footer-bottom {
        width: 80%;
        max-width: 1200px;
        margin: 1rem auto 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-bottom p {
        margin: 0;
        padding: 0;
        font-size: 1.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);
    }

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