/* AG ONE Footer Styles */
/* Legacy footer styles - kept for backward compatibility with admin/internal pages */

/* Main Footer Container */
.agone-footer {
    background: #000000;
    color: white;
    padding: 60px 24px 0;
    margin-top: auto;
}

.agone-footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Footer Main Grid */
.agone-footer-grid {
    max-width: 1280px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
}

@media (max-width: 992px) {
    .agone-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .agone-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Footer Brand Section */
.agone-footer-brand {
    display: flex;
    flex-direction: column;
}

.agone-footer-brand-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: white;
}

.agone-footer-brand-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    max-width: 320px;
}

/* Social Icons */
.agone-footer-social {
    display: flex;
    gap: 12px;
}

.agone-footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 20%;
    background: rgba(254, 254, 255, 0.12);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
}

.agone-footer-social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.agone-footer-social-btn svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.7);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* Footer Links Columns */
.agone-footer-links {
    display: flex;
    flex-direction: column;
}

.agone-footer-links-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 20px;
}

.agone-footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 14px;
    transition: color 0.2s ease;
    display: block;
}

.agone-footer-link:hover {
    color: white;
}

/* Footer Bottom */
.agone-footer-bottom {
    max-width: 1280px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.agone-footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.agone-footer-legal {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.agone-footer-legal-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.agone-footer-legal-link:hover {
    color: white;
}

@media (max-width: 576px) {
    .agone-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .agone-footer-legal {
        gap: 20px;
    }
}
