/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Hero */
.footer-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer Navigation */
.footer-nav {
    margin-bottom: 3rem;
}

.footer-nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav-list li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.footer-nav-list li a:hover {
    color: #667eea;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsible Gaming Disclaimer */
.responsible-gaming {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.responsible-gaming-container {
    max-width: 1000px;
    margin: 0 auto;
}

.responsible-gaming-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #667eea;
    font-size: 1.5rem;
}

.responsible-gaming-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.gaming-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
}

.gaming-warning p {
    margin: 0;
    color: #ffc107;
    font-size: 1rem;
    line-height: 1.6;
}

.support-contacts h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.support-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.support-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.support-number {
    font-weight: 600;
    color: #667eea;
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p, .legal p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.legal p {
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-title {
        font-size: 2rem;
    }
    
    .footer-description {
        font-size: 1.1rem;
    }
    
    .footer-nav-list {
        gap: 1rem;
    }
    
    .responsible-gaming-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .responsible-gaming {
        padding: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .legal p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-title {
        font-size: 1.8rem;
    }
    
    .footer-description {
        font-size: 1rem;
    }
    
    .footer-nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-nav-list li a {
        display: block;
        text-align: center;
        padding: 0.8rem 1rem;
    }
    
    .responsible-gaming {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .responsible-gaming-title {
        font-size: 1.3rem;
    }
    
    .gaming-warning {
        padding: 1rem;
    }
    
    .support-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
