.site-footer-info {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(17, 24, 39, 0.94));
    color: var(--text-light);
    padding: 56px 20px;
    font-size: 0.95rem;
    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(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 36px;
    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: 1.8rem;
    font-weight: 900;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 0.2px;
    margin-bottom: 20px;
}

.brand-logo-link.footer-logo-link img {
    height: 58px;
    margin-right: 12px;
    vertical-align: middle;
    border-radius: 12px;
}

.responsible-gaming-info {
    color: rgba(255, 255, 255, 0.8);
}

.responsible-gaming-info h2 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 8px;
}

.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;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    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: linear-gradient(135deg, var(--primary-color), #574bdb);
    color: var(--text-light);
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 10px 26px rgba(108, 92, 231, 0.35);
}

.age-support-badges img {
    height: 40px;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

.age-support-badges img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
    font-size: 0.9rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.25s 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; text-align: center; gap: 28px; }
    .footer-left-area, .footer-right-area { min-width: unset; width: 100%; align-items: center; }
    .brand-logo-link.footer-logo-link { font-size: 1.6rem; margin-bottom: 16px; justify-content: center; }
    .brand-logo-link.footer-logo-link img { height: 44px; border-radius: 10px; }
    .responsible-gaming-info h2 { font-size: 1.2rem; }
    .responsible-gaming-info p { font-size: 0.9rem; }
    .age-support-badges { margin-top: 18px; margin-bottom: 22px; justify-content: center; }
    .age-support-badges img { height: 36px; }
    .footer-legal-links { text-align: center; gap: 8px; }
}

@media (max-width: 480px) {
    .site-footer-info { padding: 42px 15px; }
    .brand-logo-link.footer-logo-link { font-size: 1.4rem; }
    .brand-logo-link.footer-logo-link img { height: 42px; border-radius: 8px; }
    .responsible-gaming-info p, .footer-legal-links a { font-size: 0.85rem; }
    .age-support-badges { gap: 12px; }
    .age-support-badges img { height: 34px; }
}