/* 
    VARIANT FOOTER - DARK THEME
    For pages with dark/black backgrounds (tokens, dashboard, etc.)
*/

.body-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(255, 126, 31, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 4rem;
    align-items: center;
}

.footer-column {
    flex: 0 0 auto;
}

.footer-column-wide {
    flex: 1;
}

.footer-actions-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

.footer-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.footer-action-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.footer-action-btn svg {
    flex-shrink: 0;
}

.footer-logo {
    font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo .live-tag {
    background: hsl(29 100% 47% / 0.2);
    border: 1px solid hsl(29 100% 47% / 0.5);
    color: hsl(29 100% 47%);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .7; }
}

.footer-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 500px;
}

.footer-column-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FF7E1F;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social-link:hover {
    color: #FF7E1F;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-disclaimer {
    margin-top: 2rem;
    padding-top: 2rem;
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    max-width: 100%;
}

.footer-disclaimer p {
    margin-bottom: 1rem;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-copyright-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright-bottom p {
    margin: 0;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .body-container {
        padding: 0 1.5rem;
    }

    .footer {
        padding: 3rem 0 1.5rem 0;
    }

    .footer-content {
        flex-direction: column;
        padding: 0;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .footer-actions-group {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .body-container {
        padding: 0 1rem;
    }

    .footer {
        padding: 2.5rem 0 1.5rem 0;
    }

    .footer-logo {
        font-size: 1.25rem;
    }

    .footer-description {
        font-size: 0.8125rem;
        max-width: 100%;
    }

    .footer-actions-group {
        gap: 0.375rem;
    }

    .footer-action-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
        gap: 0.375rem;
    }

    .footer-action-btn svg {
        width: 14px;
        height: 14px;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }

    .footer-disclaimer {
        font-size: 0.6875rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }
}
