/* ===========================================
   MOBILE BOTTOM NAVIGATION STYLES
   =========================================== */

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 3px solid #fbbf24;
    z-index: 999999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    display: none; /* Hidden by default, shown only on mobile */
}

/* Mobile Navigation Container */
.mobile-nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    max-width: 100%;
    overflow: hidden;
}

/* Mobile Navigation Scroll Area */
.mobile-nav-scroll {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 0 15px;
}

.mobile-nav-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Mobile Navigation List */
.mobile-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    min-width: max-content;
    align-items: center;
}

.mobile-nav-list li {
    flex-shrink: 0;
}

.mobile-nav-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    min-width: 60px;
    position: relative;
    overflow: hidden;
}

.mobile-nav-list li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-list li a:hover::before {
    left: 100%;
}

.mobile-nav-list li a:hover {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    transform: translateY(-2px);
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}

.mobile-nav-list li a.current-menu-item {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000000;
    border-color: #fbbf24;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

/* Special styling for PLAY NOW button */
.mobile-nav-list li a[href*="play"],
.mobile-nav-list li a[href*="PLAY"] {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    border-color: #dc2626;
    min-width: 80px;
}

.mobile-nav-list li a[href*="play"]:hover,
.mobile-nav-list li a[href*="PLAY"]:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

/* Mobile Action Buttons removed */

/* Show mobile bottom navigation only on mobile devices */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }
    
    /* Add padding to body to prevent content from being hidden behind the bottom nav */
    body {
        padding-bottom: 65px;
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-nav-container {
        padding: 10px 0;
    }
    
    .mobile-nav-scroll {
        padding: 0 10px;
    }
    
    .mobile-nav-list li a {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 50px;
    }
    
    /* Mobile action buttons removed */
    
    body {
        padding-bottom: 50px;
    }
}

@media (max-width: 360px) {
    .mobile-nav-list li a {
        padding: 6px 10px;
        font-size: 11px;
        min-width: 45px;
    }
    
    /* Mobile action buttons removed */
    
    body {
        padding-bottom: 45px;
    }
}

/* Smooth scrolling for mobile navigation */
.mobile-nav-scroll {
    scroll-behavior: smooth;
}

/* Active state for better UX */
.mobile-nav-list li a:active {
    transform: scale(0.95);
}

/* Mobile action buttons removed */

/* Ripple animation */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Scrollable indicator */
.mobile-nav-scroll.scrollable::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(to left, rgba(26, 26, 26, 0.8), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-scroll.scrollable:hover::after {
    opacity: 1;
}