/* --- FOOTER WRAPPER --- */
#aog-footer {
    width: 100%;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0 10px;
    color: #eee;
    font-family: 'Inter', sans-serif;
}

/* --- 3 COLUMN GRID (cols 3+4 merged) --- */
.aog-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 20px;
    padding: 0 40px;
}

/* --- TITLES --- */
.aog-section-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: #9ff2ff;
    text-shadow: 0 0 6px #00faff;
}

/* --- LINKS --- */
.aog-link {
    display: block;
    color: #ccc;
    margin: 4px 0;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.aog-link:hover {
    color: #00eaff;
    text-shadow: 0 0 4px #00eaff;
}

/* --- LOGO COLUMN --- */
.aog-logo-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aog-logo-wrap {
    position: relative;
    text-align: center;
}

.aog-logo-bg {
    width: 160px;
    opacity: 0.35;
    filter: drop-shadow(0 0 10px #00ffff55);
}

.aog-login-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    padding: 6px 14px;
    color: white;
    text-decoration: none;
    background: rgba(0,0,0,0.6);
    border: 1px solid #0ff;
    border-radius: 6px;
    text-shadow: 0 0 6px #0ff;
    transition: 0.2s;
}

.aog-login-link:hover {
    background: rgba(0,255,255,0.15);
    border-color: #00eaff;
}

/* --- COPYRIGHT ROW --- */
.aog-footer-copyright {
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
    margin-top: 15px;
}
