.global-footer {
    width: 100%;
    box-sizing: border-box;
    margin-top: 60px;
    padding: 0 20px 60px;
    color: rgba(240, 240, 240, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

body:has(> .global-footer) {
    flex-direction: column;
}

.global-footer .powered-by {
    margin-bottom: 40px;
    text-align: center;
}

.global-footer .powered-by-label {
    margin-bottom: 4px;
    color: rgba(240, 240, 240, 0.4);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.global-footer .powered-by-name {
    margin-bottom: 2px;
    font-size: 18px;
    font-weight: 700;
}

.global-footer .powered-by-name a {
    color: #DC2626;
    text-decoration: none;
    transition: color 0.3s ease;
}

.global-footer .powered-by-name a:hover,
.global-footer .powered-by-name a:focus-visible,
.global-footer .footer-links a:hover,
.global-footer .footer-links a:focus-visible {
    color: #EF4444;
}

.global-footer .powered-by-title {
    color: rgba(240, 240, 240, 0.5);
    font-size: 12px;
}

.global-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 15px;
    margin-bottom: 15px;
}

.global-footer .footer-links a {
    color: rgba(240, 240, 240, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.global-footer p {
    margin: 0;
    color: rgba(240, 240, 240, 0.6);
}

.global-footer .footer-disclaimer,
.global-footer .footer-credit {
    margin-top: 10px;
    font-size: 0.8rem;
}

.global-footer .footer-credit a {
    color: #DC2626;
    text-decoration: none;
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
}

.global-footer .status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 6px;
    border-radius: 50%;
    background: #6B7280;
    vertical-align: 1px;
    animation: footer-pulse 2s ease-in-out infinite;
}

.global-footer .status-indicator.operational { background: #10B981; }
.global-footer .status-indicator.degraded { background: #F59E0B; }
.global-footer .status-indicator.outage { background: #EF4444; }

@keyframes footer-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
