.footer {
    background: linear-gradient(
        180deg,
        rgba(15, 15, 15, 1) 0%,
        rgba(25, 25, 25, 1) 50%,
        rgba(10, 10, 10, 1) 100%
    );
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;

}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 0.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.gambling-awareness-section {
    margin-bottom: 1rem;
}

.gambling-awareness-section p {
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.gambling-awareness-section a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.gambling-awareness-section a:hover {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.8);
}

.gambling-awareness-section .highlight-phone {
    color: white; 
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, white, transparent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: white;
    transform: translateX(4px);
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1px;
    background: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-link:hover::before {
    opacity: 1;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    width: fit-content;
}

.social-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    color: white;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-madeby {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.madeby {
    color: white;
    font-weight: 600;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.5),
        0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.rust {
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}


@media (max-width: 768px) {
    .footer-container {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-socials {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}