/* Footer style aligned with site theme */
.steam-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 420px at 12% -40%, rgba(44, 243, 200, 0.2), transparent 56%),
        radial-gradient(780px 360px at 88% -35%, rgba(36, 214, 243, 0.16), transparent 58%),
        linear-gradient(160deg, rgba(5, 16, 28, 0.98), rgba(3, 10, 19, 0.98));
    color: #d4e7fb;
    padding: 32px 0 12px;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, sans-serif;
    font-size: 13px;
    width: 100%;
    border-top: 1px solid rgba(130, 206, 244, 0.24);
}

.steam-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(44, 243, 200, 0.06), transparent 35%, transparent 65%, rgba(36, 214, 243, 0.07));
    pointer-events: none;
}

.steam-footer > * {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.steam-footer .footer-top {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(130, 206, 244, 0.2);
}

.steam-footer .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.steam-footer .footer-contact,
.steam-footer .footer-socials {
    flex: 1 1 320px;
}

.steam-footer .footer-contact {
    max-width: 460px;
}

.steam-footer .footer-kicker {
    margin: 0 0 8px;
    color: #eaf7ff;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.steam-footer .footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: #f5fbff;
    text-decoration: none;
    border-bottom: 1px dashed rgba(167, 229, 255, 0.5);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.steam-footer .footer-email:hover {
    color: #2cf3c8;
    border-color: rgba(44, 243, 200, 0.8);
}

.steam-footer .footer-note {
    margin: 10px 0 0;
    color: #9fbad5;
    max-width: 48ch;
}

.steam-footer h4 {
    color: #f4fbff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.steam-footer p {
    color: #9fbad5;
    margin-bottom: 10px;
}

.steam-footer span {
    color: inherit;
}

.steam-footer .social-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.steam-footer .social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(130, 206, 244, 0.34);
    background: rgba(8, 26, 42, 0.74);
    color: #e8f6ff;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.steam-footer .social-link:hover {
    color: #f8fdff;
    transform: translateY(-1px);
    border-color: rgba(44, 243, 200, 0.65);
    box-shadow: 0 10px 22px rgba(2, 9, 16, 0.45), 0 0 0 1px rgba(44, 243, 200, 0.25);
}

.steam-footer .social-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 34, 55, 0.9);
    border: 1px solid rgba(130, 206, 244, 0.35);
    color: #ebf8ff;
}

.steam-footer .social-link--tiktok .social-icon {
    box-shadow: 0 0 0 1px rgba(238, 72, 147, 0.25), 0 0 14px rgba(238, 72, 147, 0.22);
}

.steam-footer .social-link--telegram .social-icon {
    box-shadow: 0 0 0 1px rgba(76, 170, 255, 0.25), 0 0 14px rgba(76, 170, 255, 0.2);
}

.steam-footer .social-link--instagram .social-icon {
    box-shadow: 0 0 0 1px rgba(54, 191, 255, 0.26), 0 0 14px rgba(54, 191, 255, 0.2);
}

.steam-footer .social-label {
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.steam-footer .copyright {
    margin-top: 14px !important;
    padding: 10px 0;
    color: #7f99b4;
    font-size: 11px;
    text-align: center;
}

.steam-footer .copyright strong {
    color: #c8def3;
    font-weight: 700;
}

@media (max-width: 768px) {
    .steam-footer {
        padding: 18px 0 8px;
    }

    .steam-footer > * {
        padding: 0 12px;
    }

    .steam-footer .footer-top {
        padding-bottom: 12px;
    }

    .steam-footer .row {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
    }

    .steam-footer .footer-contact,
    .steam-footer .footer-socials {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .steam-footer h4 {
        margin-bottom: 4px;
    }

    .steam-footer p {
        margin-bottom: 6px;
    }

    .steam-footer .footer-note {
        margin-top: 7px;
        margin-bottom: 0;
        max-width: none;
    }

    .steam-footer .social-links {
        margin-top: 8px;
        justify-content: center;
    }

    .steam-footer .social-link {
        padding: 7px 10px;
    }

    .steam-footer .social-label {
        display: none;
    }

    .steam-footer .copyright {
        margin-top: 8px !important;
        padding: 7px 0 4px;
    }
}

@media (max-width: 480px) {
    .steam-footer {
        font-size: 12px;
        padding-top: 14px;
    }

    .steam-footer h4 {
        font-size: 13px;
    }
}
