.footer {
    background: #000;
    border-top: 2px solid #ff1a1a;
    box-shadow: 0 -10px 25px rgba(255, 0, 0, 0.25);
    padding: 50px 20px 30px;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #aaa;
    text-decoration: none;
    width: fit-content;
    transition: color 0.3s ease;
}

.footer-links a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #ff1a1a;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-icons {
    display: flex;
    gap: 20px;
}

.footer-icons a {
    font-size: 20px;
    color: #888;
    transition: all 0.3s ease;
}

.footer-icons a:hover {
    color: #ff1a1a;
    transform: translateY(-3px);
    text-shadow: 0 0 12px rgba(255, 0, 0, 0.7);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 0, 0, 0.5),
        transparent
    );
    margin: 35px 0 20px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #888;
}

@media (max-width: 768px) {

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .footer-links {
        justify-content: center;
        gap: 18px;
    }

}

.footer-steam {
    color: #aaa;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-steam:hover {
    color: #ff1a1a;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
}