/* =========================================
   LigoGame - Footer (Gamified & Modern)
========================================= */

.ligogame-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-top: 6px solid #6366f1;
    border-radius: 40px 40px 0 0;
    margin-top: 60px;
    color: #f8fafc;
    font-family: "Vazirmatn", sans-serif;
    direction: rtl;
    padding-top: 50px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* عناوین ستون‌ها */
.footer-title {
    font-size: 18px;
    font-weight: 900;
    color: #c7d2fe;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* لیست لینک‌ها */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: "•";
    color: #6366f1;
    margin-left: 8px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(-5px);
}

.footer-links a:hover::before {
    color: #f472b6;
    transform: scale(1.5);
}

/* باکس نمادها (ای‌نماد) */
.footer-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.badge-box {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    font-weight: 900;
    color: #64748b;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.badge-box:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #6366f1;
}

/* شبکه‌های اجتماعی */
.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.aparat {
    background: #ed145b;
}

.social-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* کپی‌رایت پایین */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 13px;
    color: #64748b;
    font-weight: 700;
}

/* موبایل */
@media (max-width: 768px) {
    .ligogame-footer {
        border-radius: 30px 30px 0 0;
        padding-top: 40px;
    }
    .footer-container {
        text-align: center;
    }
    .footer-links {
        align-items: center;
    }
    .footer-links a:hover {
        transform: translateX(0) scale(1.05);
    }
    .footer-badges {
        justify-content: center;
    }
}