/* Gaming Footer */
.footer {
    margin-top: 6rem;
    background: #ffffffd1;
    border-top: 1px solid var(--border);
    padding: 4rem 0px 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, rgb(0 124 244));
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--accent), var(--gaming-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: KalamehWebFaNum;
    font-weight: 400;
}

.footer-desc {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.trust-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.trust-badge:hover {
    transform: translateY(-1px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.trust-badge i {
    color: var(--success);
    font-size: 0.9rem;
}

.footer-section h4 {
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}
.footer-section .footer-namad  {

}
.footer-section .footer-namad a  {

}
.footer-section .footer-namad a img {
    max-width: 100%;
    background: #6366f112;
    border-radius: 10px;
    padding: 10px;
}
@media screen and (max-width: 750px) {
    .footer-logo img {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: fit-content;
    }
    .footer-section {
        text-align: center;
        display: grid;
        justify-items: center;
        justify-content: center;
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-link:hover {
    transform: translateX(3px);
}

.footer-link i {
    width: 0.9rem;
    color: #4a5568;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
}

.footer-social-links {
    display: flex;
    gap: 0.8rem;
}

.footer-social-link {
    width: 2.7rem;
    height: 2.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6366f112;
    border-radius: 8px;
    color: #6366f1;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
}

.footer-social-link:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}