/* ========================================
   CUSTOM FOOTER STYLES
   ======================================== */

.custom-footer {
    font-family: 'DM Sans', sans-serif;
    background: #0A0E1A;
    color: #E5E7EB;
}

/* Main Footer Content */
.footer-main {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #0A0E1A 0%, #0F1419 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #3B82F6;
    transform: translateX(4px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Responsible Gaming Section */
.footer-responsible {
    padding: 40px 0;
    background: rgba(15, 20, 25, 0.6);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.responsible-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.responsible-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.responsible-logo img {
    width: 52px;
    height: 60px;
    object-fit: contain;
}

.responsible-logo strong {
    font-size: 1.125rem;
    color: #FFFFFF;
    font-family: 'Playfair Display', serif;
}

.responsible-text {
    max-width: 900px;
}

.responsible-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #9CA3AF;
    margin: 0;
}

.responsible-text a {
    color: #3B82F6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.responsible-text a:hover {
    color: #60A5FA;
    text-decoration: underline;
}

/* Copyright Section */
.footer-copyright {
    padding: 30px 0;
    background: #0A0E1A;
}

.copyright-text {
    text-align: center;
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-main {
        padding: 60px 0 40px;
    }
    
    .footer-heading {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 50px 0 30px;
    }
    
    .footer-heading {
        margin-bottom: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.625rem;
    }
    
    .footer-responsible {
        padding: 30px 0;
    }
    
    .responsible-text p {
        font-size: 0.875rem;
    }
    
    .footer-copyright {
        padding: 20px 0;
    }
    
    .copyright-text {
        font-size: 0.8125rem;
    }
}

@media (max-width: 575px) {
    .footer-main {
        padding: 40px 0 25px;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
    
    .footer-links a {
        font-size: 0.875rem;
    }
    
    .responsible-logo strong {
        font-size: 1rem;
    }
}

/* Dark Mode Enhancements */
.custom-footer a:focus-visible {
    outline: 2px solid #3B82F6;
    outline-offset: 4px;
    border-radius: 2px;
}

/* Animation on scroll (optional) */
@media (prefers-reduced-motion: no-preference) {
    .footer-links a {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}