/* Mobile Footer Navigation */
.fs-mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, #181820 50%, #181818 100%);
    padding: 8px 0 5px;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.fs-mobile-footer-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.fs-mobile-footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 10px;
    gap: 4px;
    padding: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.fs-mobile-footer-item.active,
.fs-mobile-footer-item:hover {
    color: #feba4b;
}

.fs-mobile-footer-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: #feba4f;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.fs-mobile-footer-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fs-mobile-footer-icon i {
    font-size: 20px;
    transition: all 0.3s ease;
    color: #fff;
}

.fs-mobile-footer-item.active .fs-mobile-footer-icon i,
.fs-mobile-footer-item:hover .fs-mobile-footer-icon i {
    color: #feba4b;
}

.fs-mobile-footer-text {
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 9px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    color: #fff;
}

.fs-mobile-footer-item.active .fs-mobile-footer-text,
.fs-mobile-footer-item:hover .fs-mobile-footer-text {
    color: #feba4b;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 186, 79, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(254, 186, 79, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(254, 186, 79, 0);
    }
}

/* Show footer on mobile only */
@media screen and (max-width: 768px) {
    .fs-mobile-footer {
        display: block;
    }
    
    /* Add padding to main content to prevent overlap */
    body {
        padding-bottom: 65px;
    }
}

/* Adjust for smaller screens */
@media screen and (max-width: 375px) {
    .fs-mobile-footer-item {
        padding: 5px 3px;
    }
    
    .fs-mobile-footer-icon {
        width: 20px;
        height: 20px;
    }
    
    .fs-mobile-footer-icon i {
        font-size: 18px;
    }
    
    .fs-mobile-footer-text {
        font-size: 8px;
    }
}

.fs-mobile-footer-live {
    background: linear-gradient(45deg, #ff4b4b, #ff0000);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 15px rgba(255, 0, 0, 0.3);
    position: relative;
    margin: -12px 0 0 0;
    padding: 0;
    z-index: 10;
}

.fs-mobile-footer-live .fs-mobile-footer-icon {
    background: none;
    border-radius: 0;
    width: auto;
    height: auto;
    margin-bottom: 0;
    padding: 0;
    box-shadow: none;
}

.fs-mobile-footer-live .fs-mobile-footer-text {
    color: #fff;
    font-weight: bold;
    font-size: 11px;
    margin-top: 2px;
    text-align: center;
    line-height: 1;
    padding: 0;
}

.fs-mobile-footer-live .live-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    border: 2px solid #ff0000;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Active state */
.fs-mobile-footer-live.active {
    background: linear-gradient(45deg, #ff0000, #ff4b4b);
    box-shadow: 0 2px 15px rgba(255, 0, 0, 0.3);
} 