.footer-style {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0 1rem;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    color: #f0ba3e;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    text-align: center;
    max-width: 600px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    margin-top: 30px
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.footer-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #f0ba3e;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #f0ba3e;
}

.footer-links a:hover:after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: rgba(240, 186, 62, 0.1);
    color: #f0ba3e;
    transform: translateY(px);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    font-size: 0.9rem;
}

.footer-bottom a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #f0ba3e;
}

.footer-madeby {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.madeby {
    color: #f0ba3e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 
    0 0 5px rgba(240, 186, 62, 0.5),
    0 0 10px rgba(240, 186, 62, 0.3);
}

.gambling-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    max-width: 900px;
    width: 100%;
}

.warning-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
    flex: 1;
}

.warning-text strong {
    color: #f0ba3e;
}

.help-link {
    color: #f0ba3e;
    text-decoration: none;
    font-weight: 500;
}

.help-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-links {
        gap: 20px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    .gambling-warning {
        flex-direction: column;
        gap: 1rem;
    }

}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
    }
}