@font-face {
    font-family: 'Vazir';
    src: url('../assets/fonts/Vazir.woff2') format('woff2'),
         url('../assets/fonts/Vazir.woff') format('woff'),
         url('../assets/fonts/Vazir.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ─── فوتر اصلی ─── */
.gaming-footer {
    background: #0a0a0c;
    color: #fff;
    padding: 50px 0 0;
    margin-top: auto;
    position: relative;
    border-top: 1px solid rgba(99, 221, 168, 0.1);
    direction: rtl;
    text-align: right;
}

.gaming-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, #63dda8, transparent);
    opacity: 0.5;
}

/* ─── گرید فوتر ─── */
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px 50px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 35px;
    direction: rtl;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ─── لوگو ─── */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(99, 221, 168, 0.4));
    transition: transform 0.3s ease;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-logo .logo-sight {
    font-family: 'Vazir', sans-serif;
    font-weight: 900;
    font-size: 15px;
    color: #ffffff;
}

.footer-logo .logo-gaming {
    font-family: 'Vazir', sans-serif;
    font-weight: 900;
    font-size: 15px;
    color: #63dda8;
}

/* ─── توضیحات ─── */
.footer-desc {
    font-family: 'Vazir', sans-serif;
    font-size: 13px;
    color: #909090;
    line-height: 1.9;
    margin: 0;
}

/* ─── شبکه‌های اجتماعی ─── */
.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #63dda8;
    border-color: #63dda8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 221, 168, 0.3);
}

/* ─── عنوان ستون‌ها ─── */
.footer-title {
    font-family: 'Vazir', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 35px;
    height: 2px;
    background: #63dda8;
    border-radius: 2px;
}

/* ─── لیست لینک‌ها ─── */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #909090;
    font-family: 'Vazir', sans-serif;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-links a:hover {
    color: #63dda8;
    padding-right: 4px;
}

/* ─── مجوزهای قانونی ─── */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
    margin-top: 5px;
}

.trust-badge-link {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.trust-badge-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(99, 221, 168, 0.25);
}

.trust-badge-img {
    width: 90px;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ─── بخش پایین فوتر ─── */
.footer-bottom {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright-text,
.designer-text {
    font-family: 'Vazir', sans-serif;
    font-size: 12px;
    color: #777;
}

.designer-text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-heart {
    color: #ff4757;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.2); }
}

/* ─── ریسپانسیو ─── */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links,
    .trust-badges {
        justify-content: center;
    }

    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        text-align: center;
    }
}
