/* Legal Footer Styles for Championship Page */
.legal-footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(102, 126, 234, 0.3);
    z-index: 9000;
    padding: 12px 20px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.5);
}

.legal-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.legal-disclaimer {
    flex: 1;
}

.legal-disclaimer p {
    margin: 0;
    font-size: 12px;
    color: #b0b0b0;
    line-height: 1.4;
}

.legal-disclaimer strong {
    color: #ff6b6b;
    font-weight: 600;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
}

.legal-links a {
    color: #808080;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.legal-links a:hover {
    color: #667eea;
    text-decoration: underline;
}

.legal-links .divider {
    color: #404040;
    user-select: none;
}

.legal-links .copyright {
    color: #606060;
    font-weight: 400;
}

/* Adjust main content to account for footer */
.championship-container {
    padding-bottom: 60px; /* Space for fixed footer */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .legal-footer-bar {
        padding: 10px 15px;
    }
    
    .legal-footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .legal-disclaimer p {
        font-size: 11px;
    }
    
    .legal-links {
        font-size: 12px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .legal-links .divider {
        display: none;
    }
}

/* Animation on load */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.legal-footer-bar {
    animation: slideUp 0.5s ease-out;
}

/* Ensure footer doesn't overlap modals */
.modal {
    z-index: 10000;
}

/* Dark mode compatibility */
@media (prefers-color-scheme: light) {
    .legal-footer-bar {
        background: linear-gradient(180deg, rgba(250, 250, 250, 0.95) 0%, rgba(240, 240, 240, 0.98) 100%);
        border-top-color: rgba(102, 126, 234, 0.2);
    }
    
    .legal-disclaimer p {
        color: #404040;
    }
    
    .legal-disclaimer strong {
        color: #d32f2f;
    }
    
    .legal-links a {
        color: #606060;
    }
    
    .legal-links a:hover {
        color: #667eea;
    }
    
    .legal-links .copyright {
        color: #808080;
    }
}