/* Footer Styles */
.site-footer {
    background: var(--bg-panel);
    color: var(--text-muted);
    padding: 60px 24px 40px;
    border-top: var(--border-casino);
    margin-top: 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: var(--border-glass);
}

.footer-section h3 {
    color: var(--text-bright);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--casino-primary);
}

.footer-contact p {
    margin-bottom: 8px;
    color: var(--text-muted);
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--casino-primary);
    color: var(--text-bright);
    transform: translateY(-2px);
}

/* Providers Section */
.providers-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: var(--border-glass);
}

.providers-title {
    color: var(--text-bright);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    font-size: 20px;
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.provider-logo {
    height: 40px;
    width: auto;
    max-width: 100px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all var(--transition-fast);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: var(--radius-sm);
}

.provider-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

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

.copyright {
    color: var(--text-muted);
    font-size: 14px;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 12px;
}

.age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--casino-primary);
    border-radius: 50%;
    font-weight: 700;
    color: var(--casino-primary);
    font-size: 14px;
}

.responsible-text {
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 1023px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-description {
        margin: 0 auto 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .providers-grid {
        justify-content: center;
    }
    
    .provider-logo {
        height: 35px;
    }
}