/* ========================================
   CUSTOM FOOTER STYLES
   ======================================== */

.custom-footer {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    direction: rtl;
}

.custom-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Column */
.footer-column {
    text-align: right;
}

.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    /* right: 0; */
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, transparent);
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    right: 0;
    background-color: #ff6b6b;
    transition: width 0.3s ease;
}

.footer-menu a:hover {
    color: #ff6b6b;
    transform: translateX(-5px);
}

.footer-menu a:hover::after {
    width: 100%;
}

/* Responsible Gaming Logos */
.footer-responsible {
    text-align: center;
}

.responsible-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.responsible-logo {
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.responsible-logo img {
    max-width: 205px;
    height: auto;
    display: block;
}

.responsible-logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left .footer-logo img {
    max-width: 200px;
    height: auto;
    transition: opacity 0.3s ease;
}

.footer-bottom-left .footer-logo:hover img {
    opacity: 0.8;
}

.footer-bottom-right {
    text-align: left;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 8px 0;
    font-size: 14px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-menu a:hover {
        transform: translateX(0);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-right {
        text-align: center;
    }
    
    .responsible-logos {
        flex-direction: row;
        justify-content: center;
    }
    
    .responsible-logo img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 16px;
    }
    
    .footer-menu a {
        font-size: 14px;
    }
    
    .responsible-logos {
        flex-direction: column;
    }
}