/* ========================================
   Footer Styles
   ======================================== */

/* Footer Container */
.site-footer {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #e0e0e0;
    padding: 60px 0 0;
    margin-top: 80px;
}

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

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    justify-items: start;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section h3 i {
    color: var(--primary-60);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--primary-60);
}

/* About Section */
.footer-about .footer-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-60);
    transform: translateY(-2px);
}

.footer-social a i {
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-social a:hover i {
    color: #ffffff;
}

/* Responsible Gaming */
.footer-responsible-gaming {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.responsible-gaming-title {
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.responsible-gaming-content {
    text-align: center;
}

.responsible-gaming-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.responsible-gaming-logos a,
.responsible-gaming-logos .logo-18plus {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.responsible-gaming-logos a:hover {
    opacity: 1;
}

.responsible-gaming-logos img {
    max-height: 50px;
    width: auto;
}

/* Footer Disclaimer */
.footer-disclaimer {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    margin: 0;
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #888;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .responsible-gaming-logos {
        gap: 20px;
    }

    .responsible-gaming-logos img {
        max-height: 40px;
        max-width: 120px;
        object-fit: contain;
    }
}
