:root {
    --primary-green: #22C55E;
    --primary-dark: #047857;
    --primary-light: #d1fae5;
    --grey-900: #111827;
    --grey-800: #1f2937;
    --grey-700: #374151;
    --grey-600: #4b5563;
    --grey-500: #6b7280;
    --grey-400: #9ca3af;
    --grey-300: #d1d5db;
    --grey-200: #e5e7eb;
    --grey-100: #f3f4f6;
    --grey-50: #f9fafb;
    --white: #ffffff;
    --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --border-radius: 8px;
}

.footer {
    background-color: var(--grey-900);
    color: var(--white);
    padding: 48px 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow: hidden;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 40px;
}

.footer-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--grey-200);
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-link {
    color: var(--white);
    transition: all 0.2s ease;
}

.social-link:hover {
    color: var(--grey-200);
    transform: translateY(-2px);
}

.social-container svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.gamble-aware {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.gamble-link {
    transition: opacity 0.2s ease;
}

.gamble-link:hover {
    opacity: 0.8;
}

.gamble-logo {
    height: auto;
    width: 200px;
}

.copyright {
    font-size: 16px;
    text-align: center;
    color: var(--white);
}

/* Developer Section */
.developer-section {
    background-color: var(--white);
    padding: 12px 0;
    border-top: 1px solid var(--grey-200);
}

.developer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.developed {
    text-align: center;
}

.developed-link {
    font-size: 14px;
    color: var(--grey-600);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.developed-link:hover {
    color: var(--primary-green);
    transform: translateY(-1px);
}

.developed-link .highlight {
    font-weight: 600;
    color: var(--primary-green);
    transition: color 0.2s ease;
}

.developed-link:hover .highlight {
    color: var(--primary-green);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 16px;
        gap: 24px;
    }

    .footer-nav {
        gap: 12px 24px;
    }

    .social-container {
        gap: 16px;
    }

    .gamble-logo {
        width: 150px;
    }

    .copyright {
        font-size: 14px;
    }

    .developer-container {
        padding: 0 16px;
    }

    .developed-link {
        font-size: 12px;
    }
}