/* Site-wide Footer — GameAssist landing style (from new landing var8) */

.site-footer {
    background: #1A1F35;
    border-top: 1px solid rgba(216, 88, 244, 0.2);
    padding: 3rem 5% 2rem;
    margin-top: auto;
    flex-shrink: 0;
    color: #d5c0d3;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem 3rem;
}

/* Brand block */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 320px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFB800;
    letter-spacing: -0.3px;
}

.footer-tagline {
    color: rgba(213, 192, 211, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #262937;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(213, 192, 211, 0.7);
    transition: color 0.2s ease, background 0.2s ease;
}

.footer-social-icon:hover {
    color: #FFB800;
    background: #2f3346;
}

/* Link columns */
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 3.5rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #f6adff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.55rem;
}

.footer-section a {
    color: rgba(213, 192, 211, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s ease;
}

.footer-section a:hover {
    color: #FFB800;
}

/* Bottom copyright bar */
.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(216, 88, 244, 0.12);
    text-align: center;
    color: rgba(213, 192, 211, 0.4);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

@media (max-width: 640px) {
    .footer-inner {
        flex-direction: column;
    }

    .footer-columns {
        gap: 2rem;
    }
}
