.site-footer-info {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 50px 20px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    line-height: 1.8;
}

.site-footer-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-left-area {
    flex: 2; /* Takes more space */
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.brand-logo-link.footer-logo-link {
    display: flex;
    align-items: center;
    font-size: 2.2rem; /* Larger logo text */
    font-weight: bold;
    color: var(--text-light);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.brand-logo-link.footer-logo-link img {
    height: 80px; /* Larger logo image */
    margin-right: 12px;
    vertical-align: middle;
}

.responsible-gaming-info {
    color: rgba(255, 255, 255, 0.8);
}

.responsible-gaming-info h2 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.responsible-gaming-info p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.responsible-gaming-info strong {
    color: var(--text-light);
}

.responsible-gaming-info a {
    color: var(--accent-color);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.responsible-gaming-info a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-right-area {
    flex: 1; /* Takes less space */
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Align content to the right */
    padding-top: 20px;
}

.age-support-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: flex-end; /* Align badges to the right */
}

.age-indicator-18 {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.age-support-badges img {
    height: 45px; /* Slightly larger icons */
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.age-support-badges img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 12px; /* More space between links */
    text-align: right; /* Align links to the right */
    font-size: 0.9rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6); /* Slightly faded white */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--secondary-color);
}

/* --- Footer Mobile Adaptation --- */
@media (max-width: 768px) {
    .footer-content-wrapper {
        flex-direction: column;
        align-items: center; /* Center align items in mobile */
        text-align: center;
        gap: 30px;
    }

    .footer-left-area,
    .footer-right-area {
        min-width: unset;
        width: 100%;
        align-items: center; /* Center content in these flex containers */
    }

    .brand-logo-link.footer-logo-link {
        font-size: 1.8rem;
        margin-bottom: 20px;
        justify-content: center; /* Center logo on mobile */
    }

    .brand-logo-link.footer-logo-link img {
        height: 40px;
    }

    .responsible-gaming-info h2 {
        font-size: 1.4rem;
    }

    .responsible-gaming-info p {
        font-size: 0.9rem;
    }

    .age-support-badges {
        margin-top: 20px;
        margin-bottom: 25px;
        justify-content: center; /* Center badges on mobile */
    }

    .age-support-badges img {
        height: 40px;
    }

    .footer-legal-links {
        text-align: center; /* Center legal links */
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .site-footer-info {
        padding: 40px 15px; /* Reduce padding for very small screens */
    }

    .brand-logo-link.footer-logo-link {
        font-size: 1.6rem;
    }

    .brand-logo-link.footer-logo-link img {
        height: 55px;
    }

    .responsible-gaming-info p,
    .footer-legal-links a {
        font-size: 0.85rem;
    }

    .age-support-badges {
        gap: 15px;
    }

    .age-support-badges img {
        height: 35px;
    }
}