/* Global CSS for Sai Sports */

/* Scroll animations */
.fade-up-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: -60px; /* Hidden initially */
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FF6B35;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 90;
    opacity: 0;
    pointer-events: none;
}

.back-to-top.show {
    bottom: 20px;
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background-color: #E85A2A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.back-to-top:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.3);
}

/* Mobile Menu Slide */
.mobile-menu-overlay {
    background: rgba(10, 17, 40, 0.5);
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
}

.mobile-menu-panel {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus Utility overrides */
*:focus-visible {
    outline: 2px solid #FF6B35;
    outline-offset: 2px;
}
