/* =========================================
   FOOTER ASTRAL BORZ
   ========================================= */
.main-footer {
    background-color: #0f131f;
    border-top: 1px solid #334155;
    padding: 60px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--accent); /* Hereda el Morado Astral del styles.css */
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Botón Exclusivo de Discord para el Footer */
.btn-discord-footer {
    display: inline-block;
    background-color: #5865F2; /* Color oficial de Discord */
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-discord-footer:hover {
    background-color: #4752C4;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #64748b;
    font-size: 0.85rem;
}