* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* Remove highlight color for touch devices */
    user-select: none; /* Prevent text selection */
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    transition: overflow 0.3s ease;
}

/* Hide overlay on desktop */
.sidebar-overlay {
    display: none;
}

/* Hide sidebar logo on desktop */
.sidebar-logo-section {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Header Styles */
.header {
    background-color: rgb(235,231,230) !important;
    padding: 12px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.header-top-row {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

/* Desktop: Logo on left, Right section on right */
.logo-section {
    order: 1;
}

.search-section {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.right-section {
    order: 3;
}

/* Logo Section */
.logo-section {
    flex: 0 0 auto;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Search Section */
.search-section {
    display: flex;
    justify-content: center;
    z-index: 1;
}

.search-container {
    position: relative;
    width: 350px;
    max-width: 350px;
}

.search-input {
    width: 100%;
    padding: 10px 45px 10px 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: shake 1.5s ease-in-out infinite;
}

/* Shake Animation for WhatsApp Icon */
@keyframes shake {
    0%, 100% { transform: rotate(0deg) scale(1); }
    10% { transform: rotate(-10deg) scale(1.1); }
    20% { transform: rotate(10deg) scale(1.1); }
    30% { transform: rotate(-10deg) scale(1.1); }
    40% { transform: rotate(10deg) scale(1.1); }
    50% { transform: rotate(0deg) scale(1.2); }
    60% { transform: rotate(-5deg) scale(1.1); }
    70% { transform: rotate(5deg) scale(1.1); }
    80% { transform: rotate(-5deg) scale(1.05); }
    90% { transform: rotate(5deg) scale(1.05); }
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    background: transparent;
    box-shadow: none;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

.whatsapp-popup {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #000;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    max-width: 250px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-popup::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #000 transparent transparent;
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 70px;
        right: auto;
        left: 0px;
    }
    
    .whatsapp-float img {
        width: 65px;
        height: 65px;
        background: transparent;
        box-shadow: none;
    }
    
    .whatsapp-popup {
        bottom: 130px;
        right: auto;
        left: 10px;
        font-size: 12px;
        max-width: 200px;
    }
    
    .whatsapp-popup::after {
        right: auto;
        left: 20px;
    }
}

.search-input {
    background-color: white;
    color: #666;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #999;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border-radius: 2px;
}

.search-btn:hover {
    opacity: 0.7;
}

.search-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Right Section */
.right-section {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.balance-container {
    display: flex;
    gap: 15px;
}

.balance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.balance-image-wrapper {
    position: relative;
    display: inline-block;
}

.balance-bg {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.balance-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    font-weight: bold;
    color: white;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.balance-value {
    font-size: 13px;
    font-weight: bold;
    color: black;
    line-height: 1;
    text-align: center;
}

.user-btn {
    background: rgb(193,9,48);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.user-btn:hover {
    background: rgb(173,8,43);
}

.user-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
}



/* Main Navigation */
.main-nav {
    background: linear-gradient(135deg, #1a1312 0%, #f8f9fa 100%);
    border-top: 1px solid #444;
    border-bottom: 2px solid #111;
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.15),
        inset 0 -1px 0 rgba(0,0,0,0.8),
        0 3px 8px rgba(0,0,0,0.4),
        0 1px 0 rgba(255,255,255,0.05);
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    height: 40px;
    overflow: hidden;
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-items {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0;
    padding: 0;
    height: 100%;
    justify-content: flex-start;
    width: 100%;
}

.nav-items::-webkit-scrollbar {
    display: none;
}

.nav-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    text-decoration: none;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 85px;
    height: 100%;
    position: relative;
    flex: 1;
    border-right: 1px solid #2a2a2a;
    background: linear-gradient(180deg, #2d2d2d 0%, #1f1f1f 30%, #131313 70%, #0a0a0a 100%);
    text-transform: uppercase;
    line-height: 1;
    gap: 6px;
    overflow: hidden;
}

.nav-item:first-child {
    border-left: 1px solid #333;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%, rgba(255,255,255,0.01) 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.nav-item:hover {
    background: linear-gradient(180deg, #404040 0%, #303030 30%, #1f1f1f 70%, #151515 100%);
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.25),
        inset 0 -1px 0 rgba(0,0,0,0.3),
        0 0 10px rgba(255,255,255,0.05);
    transform: translateY(-0.5px);
    color: #f5f5f5;
}

.nav-item:hover::before {
    opacity: 1;
}

.nav-item.active {
    background: linear-gradient(180deg, #4a4a4a 0%, #383838 30%, #2a2a2a 70%, #1a1a1a 100%);
    box-shadow: 
        inset 0 2px 4px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.2),
        inset 0 -1px 0 rgba(0,0,0,0.5),
        0 0 15px rgba(255,255,255,0.08);
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-item.active::before {
    opacity: 0.8;
}

.nav-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(1.4) saturate(1.5) contrast(1.15) drop-shadow(0 1px 2px rgba(0,0,0,0.6));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.nav-item:hover .nav-icon {
    filter: brightness(1.7) saturate(1.8) contrast(1.3) drop-shadow(0 2px 4px rgba(0,0,0,0.4)) drop-shadow(0 0 6px rgba(255,255,255,0.1));
    transform: scale(1.08) translateY(-1px);
}

.nav-item.active .nav-icon {
    filter: brightness(1.6) saturate(1.7) contrast(1.25) drop-shadow(0 2px 3px rgba(0,0,0,0.5)) drop-shadow(0 0 8px rgba(255,255,255,0.2));
    transform: scale(1.05);
}

.nav-text {
    line-height: 1;
    text-align: left;
    white-space: nowrap;
    text-shadow: 
        0 1px 2px rgba(0,0,0,0.9),
        0 0 4px rgba(0,0,0,0.6);
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover .nav-text {
    text-shadow: 
        0 1px 3px rgba(0,0,0,0.8),
        0 0 6px rgba(255,255,255,0.1),
        0 0 12px rgba(255,255,255,0.05);
    transform: translateY(-0.5px);
}

.nav-item.active .nav-text {
    text-shadow: 
        0 1px 3px rgba(0,0,0,0.9),
        0 0 8px rgba(255,255,255,0.15),
        0 0 16px rgba(255,255,255,0.08);
}

/* Main Content */
.main-content {
    margin-top: 110px;
    margin-left: 280px;
    padding: 20px 0 0 0;
    transition: margin-left 0.3s ease;
}

/* Desktop Sidebar */
.desktop-sidebar {
    position: fixed;
    left: 0;
    top: 124px;
    width: 280px;
    height: calc(100vh - 124px);
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-right: 1px solid #e0e6ed;
    box-shadow: 
        4px 0 20px rgba(0,0,0,0.08),
        0 0 40px rgba(0,0,0,0.03);
    z-index: 998;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Hide scrollbar completely */
.desktop-sidebar::-webkit-scrollbar {
    display: none;
}

.desktop-sidebar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sidebar-container {
    padding: 0;
}

.sidebar-items {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0 16px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 12px;
    position: relative;
    margin: 1px 0;
    background: rgba(255,255,255,0.7);
    border: 1px solid transparent;
}

.sidebar-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: all 0.4s ease;
}

.sidebar-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateX(8px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(102, 126, 234, 0.3),
        0 4px 10px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Active state for sidebar items */
.sidebar-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateX(4px);
    box-shadow: 
        0 4px 15px rgba(102, 126, 234, 0.2),
        0 2px 6px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.1);
}

.sidebar-item.active::before {
    opacity: 1;
    background: #ffffff;
    width: 3px;
}

/* Smooth scroll behavior */
.desktop-sidebar {
    scroll-behavior: smooth;
}

.sidebar-item:hover::before {
    opacity: 1;
    background: #ffffff;
}

.sidebar-icon {
    width: 22px;
    height: 22px;
    margin-right: 14px;
    object-fit: contain;
    filter: brightness(0.9) saturate(1.3) contrast(1.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.sidebar-item:hover .sidebar-icon {
    filter: brightness(1.4) saturate(0.8) contrast(1.3) drop-shadow(0 2px 4px rgba(255,255,255,0.3));
    transform: scale(1.1) rotate(3deg);
}

.sidebar-text {
    flex: 1;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.dropdown-arrow {
    font-size: 11px;
    color: #7f8c8d;
    margin-left: auto;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-style: normal;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.sidebar-item:hover .dropdown-arrow {
    color: #ffffff;
    transform: rotate(180deg) scale(1.1);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Cricket Sidebar Item Container */
.sidebar-item.cricket-item {
    position: relative;
    z-index: 1;
}

.sidebar-item.cricket-item.dropdown-open {
    z-index: 9998;
}

/* Football Sidebar Item Container */
.sidebar-item.football-item {
    position: relative;
    z-index: 1;
}

.sidebar-item.football-item.dropdown-open {
    z-index: 9998;
}

/* Football Dropdown Menu Styles */
.football-dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e0e6ed;
    border-radius: 0 0 12px 12px;
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.12),
        0 4px 16px rgba(0,0,0,0.08);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 400px;
    overflow-y: auto;
    margin-top: 2px;
    /* Ensure dropdown overlays other items */
    position: absolute;
    z-index: 9999;
}

.football-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.football-dropdown-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e0e6ed;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 12px 12px 0 0;
}

.football-dropdown-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.football-dropdown-title img {
    width: 18px;
    height: 18px;
    filter: none; /* Remove filter to show original icon color */
}

.football-dropdown-list {
    padding: 8px 0;
    margin: 0;
    list-style: none;
}

.football-dropdown-item {
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.football-dropdown-item:last-child {
    border-bottom: none;
}

.football-dropdown-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateX(4px);
}

.football-dropdown-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.football-dropdown-loading {
    padding: 20px;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

.football-dropdown-error {
    padding: 20px;
    text-align: center;
    color: #e74c3c;
    font-size: 14px;
}

/* Mobile responsive for football dropdown */
@media (max-width: 768px) {
    .football-dropdown-menu {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        transform: translateY(-10px) scale(0.95);
        max-height: 60vh;
        border-radius: 0 0 8px 8px;
    }
    
    .football-dropdown-menu.show {
        transform: translateY(0) scale(1);
    }
}

/* Tennis Sidebar Item Container */
.sidebar-item.tennis-item {
    position: relative;
    z-index: 1;
}

.sidebar-item.tennis-item.dropdown-open {
    z-index: 9998;
}

/* Tennis Dropdown Menu Styles */
.tennis-dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e0e6ed;
    border-radius: 0 0 12px 12px;
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.12),
        0 4px 16px rgba(0,0,0,0.08);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 400px;
    overflow-y: auto;
    margin-top: 2px;
    /* Ensure dropdown overlays other items */
    position: absolute;
    z-index: 9999;
}

.tennis-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tennis-dropdown-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e0e6ed;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 12px 12px 0 0;
}

.tennis-dropdown-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tennis-dropdown-title img {
    width: 18px;
    height: 18px;
    filter: none; /* Remove filter to show original icon color */
}

.tennis-dropdown-list {
    padding: 8px 0;
    margin: 0;
    list-style: none;
}

.tennis-dropdown-item {
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.tennis-dropdown-item:last-child {
    border-bottom: none;
}

.tennis-dropdown-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateX(4px);
}

.tennis-dropdown-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.tennis-dropdown-loading {
    padding: 20px;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

.tennis-dropdown-error {
    padding: 20px;
    text-align: center;
    color: #e74c3c;
    font-size: 14px;
}

/* Mobile responsive for tennis dropdown */
@media (max-width: 768px) {
    .tennis-dropdown-menu {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        transform: translateY(-10px) scale(0.95);
        max-height: 60vh;
        border-radius: 0 0 8px 8px;
    }
    
    .tennis-dropdown-menu.show {
        transform: translateY(0) scale(1);
    }
}

/* Table Tennis Sidebar Item Container */
.sidebar-item.table-tennis-item {
    position: relative;
    z-index: 1;
}

.sidebar-item.table-tennis-item.dropdown-open {
    z-index: 9998;
}

/* Table Tennis Dropdown Menu Styles */
.table-tennis-dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e0e6ed;
    border-radius: 0 0 12px 12px;
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.12),
        0 4px 16px rgba(0,0,0,0.08);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 400px;
    overflow-y: auto;
    margin-top: 2px;
    /* Ensure dropdown overlays other items */
    position: absolute;
    z-index: 9999;
}

.table-tennis-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.table-tennis-dropdown-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e0e6ed;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 12px 12px 0 0;
}

.table-tennis-dropdown-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-tennis-dropdown-title img {
    width: 18px;
    height: 18px;
    filter: none; /* Remove filter to show original icon color */
}

.table-tennis-dropdown-list {
    padding: 8px 0;
    margin: 0;
    list-style: none;
}

.table-tennis-dropdown-item {
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.table-tennis-dropdown-item:last-child {
    border-bottom: none;
}

.table-tennis-dropdown-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateX(4px);
}

.table-tennis-dropdown-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.table-tennis-dropdown-loading {
    padding: 20px;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

.table-tennis-dropdown-error {
    padding: 20px;
    text-align: center;
    color: #e74c3c;
    font-size: 14px;
}

/* Mobile responsive for table tennis dropdown */
@media (max-width: 768px) {
    .table-tennis-dropdown-menu {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        transform: translateY(-10px) scale(0.95);
        max-height: 60vh;
        border-radius: 0 0 8px 8px;
    }
    
    .table-tennis-dropdown-menu.show {
        transform: translateY(0) scale(1);
    }
}

/* Baseball Sidebar Item Container */
.sidebar-item.baseball-item {
    position: relative;
    z-index: 1;
}

.sidebar-item.baseball-item.dropdown-open {
    z-index: 9998;
}

/* Baseball Dropdown Menu Styles */
.baseball-dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e0e6ed;
    border-radius: 0 0 12px 12px;
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.12),
        0 4px 16px rgba(0,0,0,0.08);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 400px;
    overflow-y: auto;
    margin-top: 2px;
    /* Ensure dropdown overlays other items */
    position: absolute;
    z-index: 9999;
}

.baseball-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.baseball-dropdown-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e0e6ed;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 12px 12px 0 0;
}

.baseball-dropdown-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.baseball-dropdown-title img {
    width: 18px;
    height: 18px;
    filter: none; /* Remove filter to show original icon color */
}

.baseball-dropdown-list {
    padding: 8px 0;
    margin: 0;
    list-style: none;
}

.baseball-dropdown-item {
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.baseball-dropdown-item:last-child {
    border-bottom: none;
}

.baseball-dropdown-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateX(4px);
}

.baseball-dropdown-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.baseball-dropdown-loading {
    padding: 20px;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

.baseball-dropdown-error {
    padding: 20px;
    text-align: center;
    color: #e74c3c;
    font-size: 14px;
}

/* Mobile responsive for baseball dropdown */
@media (max-width: 768px) {
    .baseball-dropdown-menu {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        transform: translateY(-10px) scale(0.95);
        max-height: 60vh;
        border-radius: 0 0 8px 8px;
    }
    
    .baseball-dropdown-menu.show {
        transform: translateY(0) scale(1);
    }
}

/* Basketball Sidebar Item Container */
.sidebar-item.basketball-item {
    position: relative;
    z-index: 1;
}

.sidebar-item.basketball-item.dropdown-open {
    z-index: 9998;
}

/* Basketball Dropdown Menu Styles */
.basketball-dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e0e6ed;
    border-radius: 0 0 12px 12px;
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.12),
        0 4px 16px rgba(0,0,0,0.08);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 400px;
    overflow-y: auto;
    margin-top: 2px;
    /* Ensure dropdown overlays other items */
    position: absolute;
    z-index: 9999;
}

.basketball-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.basketball-dropdown-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e0e6ed;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 12px 12px 0 0;
}

.basketball-dropdown-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.basketball-dropdown-title img {
    width: 18px;
    height: 18px;
    filter: none; /* Remove filter to show original icon color */
}

.basketball-dropdown-list {
    padding: 8px 0;
    margin: 0;
    list-style: none;
}

.basketball-dropdown-item {
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.basketball-dropdown-item:last-child {
    border-bottom: none;
}

.basketball-dropdown-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateX(4px);
}

.basketball-dropdown-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.basketball-dropdown-loading {
    padding: 20px;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

.basketball-dropdown-error {
    padding: 20px;
    text-align: center;
    color: #e74c3c;
    font-size: 14px;
}

/* Mobile responsive for basketball dropdown */
@media (max-width: 768px) {
    .basketball-dropdown-menu {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        transform: translateY(-10px) scale(0.95);
        max-height: 60vh;
        border-radius: 0 0 8px 8px;
    }
    
    .basketball-dropdown-menu.show {
        transform: translateY(0) scale(1);
    }
}

/* Volleyball Sidebar Item Container */
.sidebar-item.volleyball-item {
    position: relative;
    z-index: 1;
}

.sidebar-item.volleyball-item.dropdown-open {
    z-index: 9998;
}

/* Volleyball Dropdown Menu Styles */
.volleyball-dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e0e6ed;
    border-radius: 0 0 12px 12px;
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.12),
        0 4px 16px rgba(0,0,0,0.08);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 400px;
    overflow-y: auto;
    margin-top: 2px;
    /* Ensure dropdown overlays other items */
    position: absolute;
    z-index: 9999;
}

.volleyball-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.volleyball-dropdown-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e0e6ed;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 12px 12px 0 0;
}

.volleyball-dropdown-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.volleyball-dropdown-title img {
    width: 18px;
    height: 18px;
    filter: none; /* Remove filter to show original icon color */
}

.volleyball-dropdown-list {
    padding: 8px 0;
    margin: 0;
    list-style: none;
}

.volleyball-dropdown-item {
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.volleyball-dropdown-item:last-child {
    border-bottom: none;
}

.volleyball-dropdown-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateX(4px);
}

.volleyball-dropdown-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.volleyball-dropdown-loading {
    padding: 20px;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

.volleyball-dropdown-error {
    padding: 20px;
    text-align: center;
    color: #e74c3c;
    font-size: 14px;
}

/* Mobile responsive for volleyball dropdown */
@media (max-width: 768px) {
    .volleyball-dropdown-menu {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        transform: translateY(-10px) scale(0.95);
        max-height: 60vh;
        border-radius: 0 0 8px 8px;
    }
    
    .volleyball-dropdown-menu.show {
        transform: translateY(0) scale(1);
    }
}

/* Cricket Dropdown Menu Styles */
.cricket-dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e0e6ed;
    border-radius: 0 0 12px 12px;
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.12),
        0 4px 16px rgba(0,0,0,0.08);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 400px;
    overflow-y: auto;
    margin-top: 2px;
    /* Ensure dropdown overlays other items */
    position: absolute;
    z-index: 9999;
}

.cricket-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cricket-dropdown-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e0e6ed;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 12px 12px 0 0;
}

.cricket-dropdown-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cricket-dropdown-title img {
    width: 18px;
    height: 18px;
    filter: none; /* Remove filter to show original icon color */
}

.cricket-dropdown-list {
    padding: 8px 0;
    margin: 0;
    list-style: none;
}

.cricket-dropdown-item {
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.cricket-dropdown-item:last-child {
    border-bottom: none;
}

.cricket-dropdown-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateX(4px);
}

.cricket-dropdown-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.cricket-dropdown-loading {
    padding: 20px;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

.cricket-dropdown-error {
    padding: 20px;
    text-align: center;
    color: #e74c3c;
    font-size: 14px;
}

/* Mobile responsive for cricket dropdown */
@media (max-width: 768px) {
    .cricket-dropdown-menu {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        transform: translateY(-10px) scale(0.95);
        max-height: 60vh;
        border-radius: 0 0 8px 8px;
    }
    
    .cricket-dropdown-menu.show {
        transform: translateY(0) scale(1);
    }
}



/* Add subtle animation on sidebar load */
.desktop-sidebar {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}



.main-content h1 {
    text-align: center;
    color: #dc3545;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.main-content p {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
}

/* Responsive Design */

/* Tablet Design (768px to 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Hide desktop sidebar on tablet */
    .desktop-sidebar {
        display: none;
    }
    
    /* Reset main content margin */
    .main-content {
        margin-left: 0;
        margin-top: 20px;
        padding: 40px 20px;
    }
    
    .header-container {
        padding: 0 15px;
        height: 65px;
    }
    
    /* Main Navigation - Tablet */
    .main-nav {
        background: linear-gradient(135deg, #1a1312 0%, #f8f9fa 100%);
        height: 36px;
        box-shadow: 
            inset 0 1px 0 rgba(255,255,255,0.12),
            inset 0 -1px 0 rgba(0,0,0,0.7),
            0 2px 6px rgba(0,0,0,0.3);
    }
    
    .nav-item {
        padding: 5px 5px;
        min-width: 70px;
        font-size: 8px;
        flex: 1;
        font-weight: 700;
        gap: 4px;
        letter-spacing: 0.2px;
    }
    
    .nav-icon {
        width: 18px;
        height: 18px;
        filter: brightness(1.4) saturate(1.5) contrast(1.15) drop-shadow(0 1px 2px rgba(0,0,0,0.6));
        flex-shrink: 0;
    }
    
    .header-top-row {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .search-section {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        max-width: 50vw;
        z-index: 1;
    }
    
    .search-container {
        width: 100%;
        min-width: 250px;
        max-width: 320px;
    }
    
    .search-input {
        width: 100%;
        padding: 9px 42px 9px 16px;
        font-size: 13px;
        border-radius: 4px;
        box-sizing: border-box;
    }
    
    .search-btn {
        width: 26px;
        height: 26px;
        right: 7px;
        border-radius: 2px;
    }
    
    .search-icon {
        width: 16px;
        height: 16px;
    }
    
    .balance-container {
        gap: 12px;
    }
    
    .balance-bg {
        height: 32px;
    }
    
    .balance-label {
        font-size: 9px;
    }
    
    .balance-value {
        font-size: 12px;
    }
    
    .user-btn {
        padding: 7px 14px;
        font-size: 11px;
        background: rgb(193,9,48);
        border-radius: 4px;
    }
    
    .user-btn:hover {
        background: rgb(173,8,43);
    }
    
    .user-icon {
        width: 18px;
        height: 18px;
    }
}

/* Small Tablet adjustments */
@media (max-width: 900px) and (min-width: 769px) {
    /* Hide desktop sidebar on small tablet */
    .desktop-sidebar {
        display: none;
    }
    
    /* Reset main content margin */
    .main-content {
        margin-left: 0;
        margin-top: 20px;
        padding: 40px 20px;
    }
    .search-section {
        max-width: 40vw;
    }
    
    .search-container {
        max-width: 280px;
        min-width: 220px;
    }
    
    .search-input {
        font-size: 12px;
        padding: 8px 38px 8px 14px;
    }
    
    .search-btn {
        width: 24px;
        height: 24px;
        right: 6px;
    }
    
    .search-icon {
        width: 14px;
        height: 14px;
    }
    
    .user-btn {
        background: rgb(193,9,48);
        border-radius: 4px;
    }
    
    .user-btn:hover {
        background: rgb(173,8,43);
    }
}

/* Mobile Design */
@media (max-width: 768px) {
    /* Mobile sidebar styles */
    .desktop-sidebar {
        position: fixed;
        top: 0;
        left: -280px; /* Hidden by default */
        width: 280px;
        height: 100vh;
        max-height: 100vh;
        background-color: #ffffff;
        z-index: 1002;
        transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 2px 0 15px rgba(0,0,0,0.2);
        overflow-y: auto; /* Enable scrolling for the main container */
        overflow-x: hidden; /* Hide horizontal overflow */
        display: block; /* Show the sidebar but position it off-screen */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scroll-behavior: smooth; /* Smooth scrolling behavior */
        transform: translate3d(0, 0, 0); /* Hardware acceleration */
    }
    
    /* Enhanced scrollbar styling for main sidebar container */
    .desktop-sidebar::-webkit-scrollbar {
        width: 6px;
    }
    
    .desktop-sidebar::-webkit-scrollbar-track {
        background: rgba(0,0,0,0.05);
        border-radius: 3px;
    }
    
    .desktop-sidebar::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.2);
        border-radius: 3px;
        transition: background 0.3s ease;
    }
    
    .desktop-sidebar::-webkit-scrollbar-thumb:hover {
        background: rgba(0,0,0,0.4);
    }
    
    /* Enhanced scrollbar styling for sidebar items only */
    .sidebar-items::-webkit-scrollbar {
        width: 6px;
    }
    
    .sidebar-items::-webkit-scrollbar-track {
        background: rgba(0,0,0,0.05);
        border-radius: 3px;
    }
    
    .sidebar-items::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.2);
        border-radius: 3px;
        transition: background 0.3s ease;
    }
    
    .sidebar-items::-webkit-scrollbar-thumb:hover {
        background: rgba(0,0,0,0.4);
    }
    
    /* Mobile sidebar container and items styling for proper scrolling */
    .sidebar-container {
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 0;
        overflow: hidden; /* Prevent any overflow issues */
    }
    
    .sidebar-items {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        gap: 3px;
        padding: 15px 16px 20px 16px; /* Add top and bottom padding */
        min-height: 0; /* Allow shrinking for proper scroll */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scroll-behavior: smooth; /* Smooth scrolling behavior */
        scroll-snap-type: y proximity; /* Snap scrolling for better UX */
        overscroll-behavior: contain; /* Prevent scroll chaining */
        /* Enhanced mobile scrolling */
        transform: translate3d(0, 0, 0); /* Hardware acceleration for scrolling */
        backface-visibility: hidden; /* Optimize rendering */
        perspective: 1000px; /* 3D transform context */
    }
    
    /* Smooth scrolling behavior for mobile sidebar */
    .desktop-sidebar {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        /* Enhanced scrolling performance */
        transform: translate3d(0, 0, 0); /* Hardware acceleration */
        will-change: transform; /* Optimize for animations */
    }
    
    /* Individual sidebar items scrolling */
    .sidebar-item {
        scroll-snap-align: start;
        scroll-margin-top: 10px;
        /* Touch optimization */
        touch-action: manipulation;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Sidebar logo section for mobile - STICKY */
    .sidebar-logo-section {
        display: block !important; /* Show in mobile */
        position: sticky;
        top: 0;
        background-color: #000000;
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 0;
        z-index: 10;
        flex-shrink: 0; /* Don't shrink the logo section */
    }
    
    .sidebar-logo {
        height: 60px;
        width: auto;
        object-fit: contain;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    }
    
    /* Mobile sidebar items styling */
    .sidebar-item {
        flex-shrink: 0; /* Prevent items from shrinking */
        min-height: 48px; /* Ensure minimum touch target */
    }
    
    /* Show sidebar when active */
    .desktop-sidebar.active {
        left: 0;
    }
    
    /* Overlay to close sidebar */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Make overlay visible in mobile */
    .sidebar-overlay {
        display: block !important;
    }
    
    html {
        overflow-x: hidden;
        width: 100%;
    }
    
    body {
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }
    
    .header {
        background-color: #000000 !important;
        padding: 5px 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        margin: 0;
        z-index: 1000;
        box-sizing: border-box;
    }
    

    
    .header-container {
        flex-direction: row;
        height: 65px;
        padding: 0 8px;
        gap: 0;
        justify-content: space-between;
        align-items: center;
        max-width: 100vw;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Hide search bar completely in mobile */
    .search-section {
        display: none !important;
    }
    
    /* Mobile header layout: Logo | Balance & Exposure | User */
    .header-top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        overflow: hidden;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .logo-section {
        flex: 0 0 auto;
        min-width: 0;
    }
    
    .logo-image {
        height: 32px;
        width: auto;
    }
    
    .right-section {
        flex-direction: row;
        gap: 4px;
        align-items: center;
        justify-content: flex-end;
        margin-left: 8px;
        flex-shrink: 0;
        min-width: 0;
    }
    
    .balance-container {
        display: flex;
        gap: 6px;
        align-items: center;
    }
    
    .balance-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1px;
    }
    
    .balance-bg {
        height: 32px;
        width: auto;
    }
    
    .balance-label {
        font-size: 12px;
        font-weight: bold;
        color: white;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    }
    
    .balance-value {
        font-size: 11px;
        font-weight: bold;
        color: white;
        line-height: 1;
        text-align: center;
        white-space: nowrap;
    }
    
    .user-btn {
        padding: 6px 8px;
        font-size: 11px;
        background: rgb(193,9,48);
        border-radius: 4px;
        margin-left: 4px;
        min-height: 28px;
    }
    
    .user-btn:hover {
        background: rgb(173,8,43);
    }
    
    .user-icon {
        width: 16px;
        height: 16px;
    }
    
    /* Perfect white container above main nav on right side */
    .nav-top-right-container {
        display: none !important;
    }
    
    .nav-top-right-container:hover {
        background: #fafafa;
        box-shadow: 
            -3px 0 12px rgba(0,0,0,0.08),
            0 3px 6px rgba(0,0,0,0.06),
            inset 0 1px 0 rgba(255,255,255,0.9);
        transform: translateX(-1px);
    }
    
    .nav-top-right-content {
        color: #ffffff;
        font-size: 12px;
        font-weight: bold;
        text-align: center;
    }
    
    /* Perfect Hamburger Menu Styles */
    .hamburger-menu {
        width: 32px;
        height: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding: 6px;
        border-radius: 8px;
        position: relative;
    }
    
    .hamburger-menu:hover {
        background: linear-gradient(135deg, rgba(52, 73, 94, 0.05) 0%, rgba(44, 62, 80, 0.08) 100%);
        transform: scale(1.08);
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .hamburger-line {
        width: 100%;
        height: 3px;
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-radius: 4px;
        box-shadow: 
            0 2px 4px rgba(0,0,0,0.15),
            inset 0 1px 0 rgba(255,255,255,0.2);
        position: relative;
        transform-origin: center;
    }
    
    .hamburger-line::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
        border-radius: 4px;
        transition: opacity 0.3s ease;
    }
    
    .hamburger-line::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
        border-radius: 2px;
    }
    
    /* Perfect Cross (X) Animation - Bigger Size */
    .hamburger-menu.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 8px);
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #a93226 100%);
        box-shadow: 
            0 2px 6px rgba(231, 76, 60, 0.3),
            inset 0 1px 0 rgba(255,255,255,0.3);
    }
    
    .hamburger-menu.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scale(0) rotate(180deg);
    }
    
    .hamburger-menu.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -8px);
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #a93226 100%);
        box-shadow: 
            0 2px 6px rgba(231, 76, 60, 0.3),
            inset 0 1px 0 rgba(255,255,255,0.3);
    }
    
    /* Enhanced Hover Effect */
    .hamburger-menu:hover .hamburger-line {
        background: linear-gradient(135deg, #34495e 0%, #2c3e50 50%, #1a252f 100%);
        box-shadow: 
            0 3px 6px rgba(0,0,0,0.2),
            inset 0 1px 0 rgba(255,255,255,0.3);
        transform: scaleY(1.1);
    }
    
    .hamburger-menu.active:hover .hamburger-line:nth-child(1),
    .hamburger-menu.active:hover .hamburger-line:nth-child(3) {
        background: linear-gradient(135deg, #c0392b 0%, #a93226 50%, #922b21 100%);
        box-shadow: 
            0 3px 8px rgba(192, 57, 43, 0.4),
            inset 0 1px 0 rgba(255,255,255,0.4);
    }
    
    .main-content {
        margin-left: 0;
        margin-top: 135px;
    }
    
    /* Main Navigation - Mobile */
    .main-nav {
        position: fixed;
        width: 100vw;
        top: 65px;
        left: 0;
        right: 0;
        z-index: 999;
        height: 70px;
        background: linear-gradient(135deg, #1a1312 0%, #f8f9fa 100%);
        border-bottom: 1px solid #e0e0e0;
        box-shadow: 
            0 2px 8px rgba(0,0,0,0.1),
            0 1px 3px rgba(0,0,0,0.08);
    }
    
    .nav-items {
        padding: 8px 88px 8px 0;
        gap: 6px;
        justify-content: flex-start;
        background: #ffffff;
        overflow-x: auto;
        height: 100%;
    }
    
    /* Override desktop text shadows for mobile */
    .nav-item .nav-text {
        text-shadow: none !important;
    }
    
    .nav-item:hover .nav-text {
        text-shadow: none !important;
    }
    
    .nav-item.active .nav-text {
        text-shadow: none !important;
    }
    
    .nav-item {
        padding: 15px 6px;
        min-width: 75px;
        font-size: 9px;
        flex: 0 0 auto;
        font-weight: 400;
        gap: 6px;
        letter-spacing: 0.1px;
        white-space: nowrap;
        overflow: visible;
        color: #333333;
        background: #ffffff;
        border-radius: 8px;
        margin: 5px 2px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }
    
    .nav-item:first-child {
        margin-left: 0;
        padding-left: 6px;
    }
    
    .nav-item:hover {
        background: #f8f9fa;
        color: #333333;
        border: 1px solid #ddd;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    
    .nav-item.active {
        background: linear-gradient(180deg, #4a4a4a 0%, #383838 30%, #2a2a2a 70%, #1a1a1a 100%);
        box-shadow: 
            inset 0 2px 4px rgba(0,0,0,0.4),
            inset 0 1px 0 rgba(255,255,255,0.2),
            inset 0 -1px 0 rgba(0,0,0,0.5),
            0 0 15px rgba(255,255,255,0.08);
        color: #ffffff;
        transform: translateY(-1px);
        border: 1px solid #2a2a2a;
    }
    
    .nav-icon {
        width: 20px;
        height: 20px;
        filter: brightness(0.8) saturate(1.2) contrast(1.1);
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    
    .nav-item:hover .nav-icon {
        filter: brightness(0.6) saturate(1.4) contrast(1.2);
        transform: scale(1.05);
    }
    
    .nav-item.active .nav-icon {
        filter: brightness(1.6) saturate(1.7) contrast(1.25) drop-shadow(0 2px 3px rgba(0,0,0,0.5)) drop-shadow(0 0 8px rgba(255,255,255,0.2));
        transform: scale(1.05);
    }
    
    .nav-text {
        font-size: 10px;
        font-weight: 400;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        transition: all 0.3s ease;
        text-shadow: none !important; /* Remove all text shadows for mobile */
    }
    
    .nav-item:hover .nav-text {
        color: #333333;
        text-shadow: none !important; /* Remove all text shadows for mobile */
    }
    
    .nav-item.active .nav-text {
        color: #ffffff;
        text-shadow: none !important; /* Remove all text shadows for mobile */
    }
}

/* Extra Small Mobile Design */
@media (max-width: 480px) {


    /* Mobile sidebar styles for extra small screens */
    .desktop-sidebar {
        position: fixed;
        top: 0;
        left: -280px; /* Hidden by default */
        width: 280px;
        height: 100vh;
        max-height: 100vh;
        background-color: #ffffff;
        z-index: 1002;
        transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 2px 0 15px rgba(0,0,0,0.2);
        overflow-y: auto; /* Enable scrolling for the main container */
        overflow-x: hidden; /* Hide horizontal overflow */
        display: block; /* Show the sidebar but position it off-screen */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scroll-behavior: smooth; /* Smooth scrolling behavior */
        transform: translate3d(0, 0, 0); /* Hardware acceleration */
    }
    
    /* Enhanced scrollbar styling for main sidebar container - extra small screens */
    .desktop-sidebar::-webkit-scrollbar {
        width: 4px;
    }
    
    .desktop-sidebar::-webkit-scrollbar-track {
        background: rgba(0,0,0,0.05);
        border-radius: 2px;
    }
    
    .desktop-sidebar::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.2);
        border-radius: 2px;
        transition: background 0.3s ease;
    }
    
    .desktop-sidebar::-webkit-scrollbar-thumb:hover {
        background: rgba(0,0,0,0.4);
    }
    
    /* Mobile sidebar container and items styling for extra small screens */
    .sidebar-container {
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 0;
        overflow: hidden; /* Prevent any overflow issues */
    }
    
    .sidebar-items {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding: 12px 12px 20px 12px; /* Add top and bottom padding */
        min-height: 0; /* Allow shrinking for proper scroll */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scroll-behavior: smooth; /* Smooth scrolling behavior */
        scroll-snap-type: y proximity; /* Snap scrolling for better UX */
        overscroll-behavior: contain; /* Prevent scroll chaining */
        /* Enhanced mobile scrolling for extra small screens */
        transform: translate3d(0, 0, 0); /* Hardware acceleration for scrolling */
        backface-visibility: hidden; /* Optimize rendering */
        perspective: 1000px; /* 3D transform context */
    }
    
    /* Smooth scrolling behavior for extra small mobile sidebar */
    .desktop-sidebar {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        /* Enhanced scrolling performance */
        transform: translate3d(0, 0, 0); /* Hardware acceleration */
        will-change: transform; /* Optimize for animations */
    }
    
    /* Individual sidebar items scrolling for extra small mobile */
    .sidebar-item {
        scroll-snap-align: start;
        scroll-margin-top: 8px;
        /* Touch optimization for extra small mobile */
        touch-action: manipulation;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Sidebar logo section for extra small mobile - STICKY */
    .sidebar-logo-section {
        display: block !important; /* Show in mobile */
        position: sticky;
        top: 0;
        background-color: #000000;
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 0;
        z-index: 10;
        flex-shrink: 0; /* Don't shrink the logo section */
    }
    
    .sidebar-logo {
        height: 50px;
        width: auto;
        object-fit: contain;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    }
    
    /* Mobile sidebar items styling for extra small screens */
    .sidebar-item {
        flex-shrink: 0; /* Prevent items from shrinking */
        min-height: 44px; /* Ensure minimum touch target */
        padding: 12px 14px; /* Adjust padding for smaller screens */
        font-size: 13px; /* Slightly smaller font */
    }
    
    /* Show sidebar when active */
    .desktop-sidebar.active {
        left: 0;
    }
    
    /* Overlay to close sidebar */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Make overlay visible in mobile */
    .sidebar-overlay {
        display: block !important;
    }

    .header-container {
        padding: 0 6px;
        height: 58px;
        max-width: 100vw;
        width: 100%;
        box-sizing: border-box;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .right-section {
        margin-left: 6px;
        gap: 4px;
    }
    
    .balance-container {
        gap: 4px;
    }
    
    .balance-bg {
        height: 28px;
    }
    
    .balance-label {
        font-size: 10px;
    }
    
    .balance-value {
        font-size: 10px;
    }
    
    .user-btn {
        padding: 4px 8px;
        font-size: 10px;
        background: rgb(193,9,48);
        border-radius: 4px;
        margin-left: 4px;
        min-height: 24px;
    }
    
    .user-btn:hover {
        background: rgb(173,8,43);
    }
    
    .user-icon {
        width: 14px;
        height: 14px;
    }
    
    /* Perfect white container above main nav on right side - smaller for extra small mobile */
    .nav-top-right-container {
        display: none !important;
    }
    
    .nav-top-right-container:hover {
        background: #fafafa;
        box-shadow: 
            -3px 0 8px rgba(0,0,0,0.07),
            0 3px 4px rgba(0,0,0,0.05),
            inset 0 1px 0 rgba(255,255,255,0.9);
        transform: translateX(-1px);
    }
    
    .nav-top-right-content {
        color: #ffffff;
        font-size: 10px;
        font-weight: bold;
        text-align: center;
    }
    
    /* Perfect Hamburger Menu Styles - Extra Small Mobile */
    .hamburger-menu {
        width: 28px;
        height: 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding: 5px;
        border-radius: 7px;
        position: relative;
    }
    
    .hamburger-menu:hover {
        background: linear-gradient(135deg, rgba(52, 73, 94, 0.05) 0%, rgba(44, 62, 80, 0.08) 100%);
        transform: scale(1.08);
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }
    
    .hamburger-line {
        width: 100%;
        height: 2.5px;
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-radius: 3px;
        box-shadow: 
            0 2px 3px rgba(0,0,0,0.12),
            inset 0 1px 0 rgba(255,255,255,0.2);
        position: relative;
        transform-origin: center;
    }
    
    .hamburger-line::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
        border-radius: 3px;
        transition: opacity 0.3s ease;
    }
    
    .hamburger-line::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
        border-radius: 2px;
    }
    
    /* Perfect Cross (X) Animation - Extra Small Mobile */
    .hamburger-menu.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 7px);
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #a93226 100%);
        box-shadow: 
            0 2px 5px rgba(231, 76, 60, 0.25),
            inset 0 1px 0 rgba(255,255,255,0.3);
    }
    
    .hamburger-menu.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scale(0) rotate(180deg);
    }
    
    .hamburger-menu.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -7px);
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #a93226 100%);
        box-shadow: 
            0 2px 5px rgba(231, 76, 60, 0.25),
            inset 0 1px 0 rgba(255,255,255,0.3);
    }
    
    /* Enhanced Hover Effect - Extra Small Mobile */
    .hamburger-menu:hover .hamburger-line {
        background: linear-gradient(135deg, #34495e 0%, #2c3e50 50%, #1a252f 100%);
        box-shadow: 
            0 3px 5px rgba(0,0,0,0.18),
            inset 0 1px 0 rgba(255,255,255,0.3);
        transform: scaleY(1.08);
    }
    
    .hamburger-menu.active:hover .hamburger-line:nth-child(1),
    .hamburger-menu.active:hover .hamburger-line:nth-child(3) {
        background: linear-gradient(135deg, #c0392b 0%, #a93226 50%, #922b21 100%);
        box-shadow: 
            0 3px 7px rgba(192, 57, 43, 0.35),
            inset 0 1px 0 rgba(255,255,255,0.4);
    }
    
    /* Main Navigation - Extra Small Mobile */
    .main-nav {
        top: 58px;
        height: 60px;
        background: linear-gradient(135deg, #1a1312 0%, #f8f9fa 100%);
        border-bottom: 1px solid #e0e0e0;
        box-shadow: 
            0 2px 6px rgba(0,0,0,0.1),
            0 1px 2px rgba(0,0,0,0.08);
    }
    
    .nav-items {
        padding: 6px 76px 6px 0;
        gap: 5px;
        justify-content: flex-start;
        background: #ffffff;
        overflow-x: auto;
        height: 100%;
    }
    
    /* Override desktop text shadows for extra small mobile */
    .nav-item .nav-text {
        text-shadow: none !important;
    }
    
    .nav-item:hover .nav-text {
        text-shadow: none !important;
    }
    
    .nav-item.active .nav-text {
        text-shadow: none !important;
    }
    
    .nav-item {
        padding: 12px 4px;
        min-width: 65px;
        font-size: 8px;
        flex: 0 0 auto;
        font-weight: 400;
        gap: 5px;
        letter-spacing: 0.1px;
        white-space: nowrap;
        overflow: visible;
        color: #333333;
        background: #ffffff;
        border-radius: 6px;
        margin: 4px 2px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }
    
    .nav-item:first-child {
        margin-left: 0;
        padding-left: 4px;
    }
    
    .nav-item:hover {
        background: #f8f9fa;
        color: #333333;
        border: 1px solid #ddd;
        transform: translateY(-1px);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }
    
    .nav-item.active {
        background: linear-gradient(180deg, #4a4a4a 0%, #383838 30%, #2a2a2a 70%, #1a1a1a 100%);
        box-shadow: 
            inset 0 2px 4px rgba(0,0,0,0.4),
            inset 0 1px 0 rgba(255,255,255,0.2),
            inset 0 -1px 0 rgba(0,0,0,0.5),
            0 0 15px rgba(255,255,255,0.08);
        color: #ffffff;
        transform: translateY(-1px);
        border: 1px solid #2a2a2a;
    }
    
    .nav-icon {
        width: 18px;
        height: 18px;
        filter: brightness(0.8) saturate(1.2) contrast(1.1);
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    
    .nav-item:hover .nav-icon {
        filter: brightness(0.6) saturate(1.4) contrast(1.2);
        transform: scale(1.05);
    }
    
    .nav-item.active .nav-icon {
        filter: brightness(1.6) saturate(1.7) contrast(1.25) drop-shadow(0 2px 3px rgba(0,0,0,0.5)) drop-shadow(0 0 8px rgba(255,255,255,0.2));
        transform: scale(1.05);
    }
    
    .nav-text {
        font-size: 9px;
        font-weight: 400;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        transition: all 0.3s ease;
        text-shadow: none !important; /* Remove all text shadows for mobile */
    }
    
    .nav-item:hover .nav-text {
        color: #333333;
        text-shadow: none !important; /* Remove all text shadows for mobile */
    }
    
    .nav-item.active .nav-text {
        color: #ffffff;
        text-shadow: none !important; /* Remove all text shadows for mobile */
    }
    
    .main-content {
        margin-left: 0;
        margin-top: 118px;
    }
} /* Cache refresh - 20250630-002626 */

/* Content Sections Styles */
.content-section {
    display: none;
    padding: 0;
    animation: fadeIn 0.3s ease-in-out;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 2px solid #c10930;
    padding-bottom: 10px;
}

/* Cricket Header Styles */
.cricket-header {
    background: linear-gradient(135deg, #1a1312 0%, #f8f9fa 100%);
    padding: 12px 15px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(26, 19, 18, 0.3);
    border: 1px solid #e0e6ed;
    border-bottom: none;
}

.cricket-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cricket-title-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Ensure football icon is not affected by cricket icon styles */
.cricket-title .football-title-icon {
    width: 24px !important;
    height: 24px !important;
    filter: none !important;
    opacity: 1 !important;
    display: inline-block !important;
    background: transparent !important;
    visibility: visible !important;
    z-index: 10;
}

.football-title-icon {
    width: 24px !important;
    height: 24px !important;
    filter: none !important;
    opacity: 1 !important;
    display: inline-block !important;
    background: transparent !important;
    visibility: visible !important;
    z-index: 10;
}

.cricket-title-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cricket-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cricket-buttons {
    display: flex;
    gap: 8px;
}

.cricket-btn {
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #E91E63 0%, #F06292 100%);
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
    margin: 0 4px;
}

.cricket-btn:hover {
    background: linear-gradient(135deg, #C2185B 0%, #E91E63 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.live-btn {
    background: linear-gradient(135deg, #E91E63 0%, #F06292 100%);
}

.live-btn:hover {
    background: linear-gradient(135deg, #C2185B 0%, #E91E63 100%);
}

.virtual-btn {
    background: linear-gradient(135deg, #E91E63 0%, #F06292 100%);
}

.virtual-btn:hover {
    background: linear-gradient(135deg, #C2185B 0%, #E91E63 100%);
}

.cricket-odds {
    display: flex;
    align-items: center;
    gap: 15px;
}

.odd-number {
    color: white;
    font-size: 16px;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}

.odd-x {
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Cricket Content Styles */
.cricket-content {
    background: white;
    border-radius: 0 0 8px 8px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    border-top: none;
    overflow: hidden;
}

/* Cricket Match Row Styling */
.cricket-match-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    padding: 12px 15px;
    gap: 15px;
    background: white;
    transition: all 0.2s ease;
    min-height: 55px;
    justify-content: space-between;
}

.cricket-match-row:hover {
    background-color: #f8f9fa;
}

.cricket-match-row:last-child {
    border-bottom: none;
}

.match-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.match-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.match-details {
    flex: 1;
    min-width: 0;
}

.match-name-container {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 2px;
}

.match-name {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.match-subtitle {
    font-size: 11px;
    color: #7f8c8d;
    font-weight: 500;
}

.match-date {
    text-align: center;
    flex: 0 0 65px;
    min-width: 65px;
    background: #f8f9fa;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.date {
    font-size: 11px;
    color: #495057;
    font-weight: 600;
    display: block;
    line-height: 1.2;
}

.time {
    font-size: 11px;
    color: #2c3e50;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.match-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 95px;
    min-width: 95px;
    justify-content: center;
}

.match-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.bm-icon, .p-icon {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 0;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    min-width: 20px;
    text-align: center;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
}

.odds-container {
    display: flex;
    gap: 1px;
    align-items: center;
    flex: 0 0 auto;
    justify-content: flex-end;
    margin-left: auto;
}

.odds-box {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    min-width: 65px;
    width: 65px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.odds-box.blue {
    background: linear-gradient(135deg, rgb(102, 209, 255) 0%, rgb(132, 219, 255) 100%);
    color: #1a1a1a;
    font-weight: 700;
    border: 1px solid rgb(82, 189, 235);
}

.odds-box.blue:hover {
    background: linear-gradient(135deg, rgb(82, 189, 235) 0%, rgb(102, 209, 255) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(102, 209, 255, 0.3);
}

.odds-box.pink {
    background: linear-gradient(135deg, rgb(255, 180, 197) 0%, rgb(255, 200, 217) 100%);
    color: #1a1a1a;
    font-weight: 700;
    border: 1px solid rgb(255, 160, 177);
}

.odds-box.pink:hover {
    background: linear-gradient(135deg, rgb(255, 160, 177) 0%, rgb(255, 180, 197) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 180, 197, 0.3);
}

.odds-box.gray {
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
    color: #666;
    cursor: not-allowed;
    border: 1px solid #ddd;
    font-weight: 600;
}

/* Cricket Refresh Button */
.cricket-refresh-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cricket-refresh-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004494);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.cricket-refresh-btn:active {
    transform: translateY(0);
}

.cricket-refresh-btn span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cricket-refresh-btn:hover span {
    transform: rotate(180deg);
}

/* Football Header Styles */
.football-header {
    background: linear-gradient(135deg, #c10930 0%, #e11d48 100%);
    padding: 12px 15px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(193, 9, 48, 0.3);
    border: 1px solid #c10930;
    border-bottom: none;
}

.football-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.football-title-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.football-title-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.football-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.football-buttons {
    display: flex;
    gap: 8px;
}

.football-btn {
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #E91E63 0%, #F06292 100%);
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
    margin: 0 4px;
}

.football-btn:hover {
    background: linear-gradient(135deg, #C2185B 0%, #E91E63 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.football-odds {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Football Content Styles */
.football-content {
    background: white;
    border-radius: 0 0 8px 8px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    border-top: none;
    overflow: hidden;
}

/* Football Match Row Styling */
.football-match-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    padding: 12px 15px;
    gap: 15px;
    background: white;
    transition: all 0.2s ease;
    min-height: 55px;
    justify-content: space-between;
}

.football-match-row:hover {
    background-color: #f8f9fa;
}

.football-match-row:last-child {
    border-bottom: none;
}

/* Football Refresh Button */
.football-refresh-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.football-refresh-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004494);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.football-refresh-btn:active {
    transform: translateY(0);
}

.football-refresh-btn span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.football-refresh-btn:hover span {
    transform: rotate(180deg);
}

/* Basketball Styles (Copy of Football) */
.basketball-header {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8A50 100%);
    padding: 12px 15px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    border: 1px solid #FF6B35;
    border-bottom: none;
}

.basketball-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.basketball-title-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.basketball-title-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.basketball-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.basketball-buttons {
    display: flex;
    gap: 8px;
}

.basketball-btn {
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8A50 100%);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    margin: 0 4px;
}

.basketball-btn:hover {
    background: linear-gradient(135deg, #E55A2B 0%, #FF6B35 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.basketball-odds {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Basketball Content Styles */
.basketball-content {
    background: white;
    border-radius: 0 0 8px 8px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    border-top: none;
    overflow: hidden;
}

/* Basketball Match Row Styling */
.basketball-match-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    padding: 12px 15px;
    gap: 15px;
    background: white;
    transition: all 0.2s ease;
    min-height: 55px;
    justify-content: space-between;
}

.basketball-match-row:hover {
    background-color: #f8f9fa;
}

.basketball-match-row:last-child {
    border-bottom: none;
}

/* Basketball Refresh Button */
.basketball-refresh-btn {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.basketball-refresh-btn:hover {
    background: linear-gradient(135deg, #E55A2B, #CC4F26);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.basketball-refresh-btn:active {
    transform: translateY(0);
}

.basketball-refresh-btn span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.basketball-refresh-btn:hover span {
    transform: rotate(180deg);
}

/* Baseball Styles (Copy of Football) */
.baseball-header {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    padding: 12px 15px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
    border: 1px solid #1E3A8A;
    border-bottom: none;
}

.baseball-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.baseball-title-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.baseball-title-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.baseball-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.baseball-buttons {
    display: flex;
    gap: 8px;
}

.baseball-btn {
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
    margin: 0 4px;
}

.baseball-btn:hover {
    background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
}

.baseball-odds {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Baseball Content Styles */
.baseball-content {
    background: white;
    border-radius: 0 0 8px 8px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    border-top: none;
    overflow: hidden;
}

/* Baseball Match Row Styling */
.baseball-match-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    padding: 12px 15px;
    gap: 15px;
    background: white;
    transition: all 0.2s ease;
    min-height: 55px;
    justify-content: space-between;
}

.baseball-match-row:hover {
    background-color: #f8f9fa;
}

.baseball-match-row:last-child {
    border-bottom: none;
}

/* Baseball Refresh Button */
.baseball-refresh-btn {
    background: linear-gradient(135deg, #1E3A8A, #1E40AF);
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.baseball-refresh-btn:hover {
    background: linear-gradient(135deg, #1E40AF, #1D4ED8);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.baseball-refresh-btn:active {
    transform: translateY(0);
}

.baseball-refresh-btn span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.baseball-refresh-btn:hover span {
    transform: rotate(180deg);
}

/* Table Tennis Styles */
.tabletennis-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 25%, #4caf50 50%, #66bb6a 75%, #2e7d32 100%);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.tabletennis-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tabletennis-title-icon {
    width: 32px;
    height: 32px;
    filter: brightness(1.2);
}

.tabletennis-title-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.tabletennis-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tabletennis-buttons {
    display: flex;
    gap: 8px;
}

.tabletennis-btn {
    padding: 6px 12px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.tabletennis-btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-1px);
}

.tabletennis-odds {
    display: flex;
    gap: 8px;
    align-items: center;
}

.tabletennis-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    min-height: 200px;
}

.tabletennis-match-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.tabletennis-match-row:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

.tabletennis-match-row:last-child {
    border-bottom: none;
}

.tabletennis-refresh-btn {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tabletennis-refresh-btn:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.tabletennis-refresh-btn:active {
    transform: translateY(0);
}

.tabletennis-refresh-btn span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.tabletennis-refresh-btn:hover span {
    transform: rotate(180deg);
}

/* Loading and Error Messages */
.loading-message {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #6c757d;
    font-size: 16px;
    margin: 20px 0;
}

.error-message {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #721c24;
    font-size: 16px;
    margin: 20px 0;
}

/* Loading animation */
.loading-message::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #6c757d;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Live Indicator Styles */
.live-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    animation: livePulse 2s ease-in-out infinite;
}

.live-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00BF63 0%, #00D970 50%, #00BF63 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 191, 99, 0.4);
}

.live-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
    animation: liveShimmer 2s linear infinite;
}

.live-text {
    font-size: 12px;
    font-weight: 700;
    color: #00BF63;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 4px rgba(0, 191, 99, 0.3);
}

/* Live Indicator Animations */
@keyframes livePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes liveShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Live Indicator Variants */
.live-indicator.small {
    gap: 2px;
}

.live-indicator.small .live-bar {
    width: 40px;
    height: 3px;
}

.live-indicator.small .live-text {
    font-size: 10px;
}

.live-indicator.large {
    gap: 6px;
}

.live-indicator.large .live-bar {
    width: 80px;
    height: 5px;
}

.live-indicator.large .live-text {
    font-size: 14px;
}

/* Blinking Dot Version */
.live-indicator-dot {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    animation: livePulse 2s ease-in-out infinite;
    vertical-align: middle;
    margin-left: 0;
    flex-shrink: 0; /* Prevent shrinking */
    white-space: nowrap; /* Prevent text wrapping */
}

.live-dot {
    width: 7px;
    height: 7px;
    background: #00BF63;
    border-radius: 50%;
    animation: liveBlink 1s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(0, 191, 99, 0.6);
}

.live-indicator-dot .live-text {
    font-size: 11px;
    font-weight: 700;
    color: #00BF63;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes liveBlink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

/* Mobile Responsive Styles for Cricket Content */
@media (max-width: 768px) {
    .container {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .main-content {
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .content-section {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .content-section h2 {
        font-size: 20px;
        margin-bottom: 15px;
        padding: 0 10px;
    }
    
    .cricket-header {
        padding: 12px 15px;
        border-radius: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .cricket-title-text {
        font-size: 16px;
    }
    
    .cricket-title-icon {
        width: 20px;
        height: 20px;
    }

    .football-title-icon {
        width: 20px;
        height: 20px;
        filter: none;
        opacity: 1;
        display: inline-block;
        background: transparent;
    }
    
    .cricket-header-right {
        gap: 15px;
    }
    
    .cricket-buttons {
        gap: 6px;
    }
    
    .cricket-btn {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .cricket-odds {
        gap: 10px;
    }
    
    .odd-number, .odd-x {
        font-size: 14px;
    }
    
    .cricket-content {
        padding: 0;
        border-radius: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .cricket-match-row {
        padding: 8px 0;
        gap: 6px;
        flex-direction: column;
        min-height: 45px;
    }
    
    .match-info {
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
        justify-content: space-between;
        padding: 0 8px;
    }
    
    .match-meta {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
    }
    
    .match-details {
        flex: 1;
        min-width: 0;
    }
    
    .match-name-container {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        overflow: hidden;
    }
    
    .match-name {
        font-size: 11px;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        flex: 1;
        min-width: 0; /* Allow shrinking */
    }
    
    .match-subtitle {
        font-size: 9px;
    }
    
    .match-date {
        flex: 0 0 auto;
        min-width: 50px;
        padding: 4px 6px;
        margin-left: 0;
        background: #f8f9fa;
        border-radius: 4px;
        border: 1px solid #e9ecef;
        text-align: center;
        align-self: center;
    }
    
    .date, .time {
        font-size: 9px;
    }
    
    .match-icons {
        flex: 0 0 70px;
        min-width: 70px;
        gap: 3px;
        margin-left: 0;
    }
    
    .match-icon {
        width: 14px;
        height: 14px;
    }
    
    .bm-icon, .p-icon {
        font-size: 8px;
        padding: 0;
        width: 16px;
        height: 16px;
        min-width: 16px;
        line-height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .odds-container {
        width: 100%;
        gap: 2px;
        justify-content: stretch;
        margin-top: 6px;
        padding: 0;
        box-sizing: border-box;
    }
    
    .odds-box {
        padding: 8px 4px;
        font-size: 11px;
        font-weight: 700;
        min-width: 0;
        flex: 1;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        margin: 0;
        transition: all 0.2s ease;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .odds-box.blue:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(102, 209, 255, 0.4);
    }
    
    .odds-box.pink:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(255, 180, 197, 0.4);
    }
    

    
    .odds-box.blue:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(102, 209, 255, 0.4);
    }
    
    .odds-box.pink:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(255, 180, 197, 0.4);
    }
    
    /* Mobile Live Indicator Dot Adjustments */
    .live-indicator-dot {
        gap: 4px;
        margin-left: 6px;
        flex-shrink: 0; /* Prevent shrinking on mobile */
        white-space: nowrap; /* Prevent text wrapping on mobile */
    }
    
    .live-dot {
        width: 6px;
        height: 6px;
    }
    
    .live-indicator-dot .live-text {
        font-size: 10px;
    }

    /* Mobile Football Styles */
    .football-header {
        padding: 12px 15px;
        border-radius: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .football-title-text {
        font-size: 16px;
    }
    
    .football-title-icon {
        width: 20px;
        height: 20px;
    }
    
    .football-header-right {
        gap: 15px;
    }
    
    .football-buttons {
        gap: 6px;
    }
    
    .football-btn {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .football-odds {
        gap: 10px;
    }
    
    .football-content {
        padding: 0;
        border-radius: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .football-match-row {
        padding: 8px 0;
        gap: 6px;
        flex-direction: column;
        min-height: 45px;
    }
    
    /* Mobile Basketball Styles */
    .basketball-header {
        padding: 12px 15px;
        border-radius: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .basketball-title-text {
        font-size: 16px;
    }
    
    .basketball-title-icon {
        width: 20px;
        height: 20px;
    }
    
    .basketball-header-right {
        gap: 15px;
    }
    
    .basketball-buttons {
        gap: 6px;
    }
    
    .basketball-btn {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .basketball-odds {
        gap: 10px;
    }
    
    .basketball-content {
        padding: 0;
        border-radius: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .basketball-match-row {
        padding: 8px 0;
        gap: 6px;
        flex-direction: column;
        min-height: 45px;
    }
    
    /* Mobile Baseball Styles */
    .baseball-header {
        padding: 12px 15px;
        border-radius: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .baseball-title-text {
        font-size: 16px;
    }
    
    .baseball-title-icon {
        width: 20px;
        height: 20px;
    }
    
    .baseball-header-right {
        gap: 15px;
    }
    
    .baseball-buttons {
        gap: 6px;
    }
    
    .baseball-btn {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .baseball-odds {
        gap: 10px;
    }
    
    .baseball-content {
        padding: 0;
        border-radius: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .baseball-match-row {
        padding: 8px 0;
        gap: 6px;
        flex-direction: column;
        min-height: 45px;
    }

    /* Mobile Table Tennis Styles */
    .tabletennis-header {
        padding: 12px 15px;
        border-radius: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        background: linear-gradient(135deg, #2e7d32 0%, #4caf50 50%, #66bb6a 100%);
    }

    .tabletennis-title-text {
        font-size: 16px;
    }

    .tabletennis-title-icon {
        width: 20px;
        height: 20px;
    }

    .tabletennis-header-right {
        gap: 15px;
    }

    .tabletennis-buttons {
        gap: 6px;
    }

    .tabletennis-btn {
        padding: 4px 8px;
        font-size: 10px;
    }

    .tabletennis-odds {
        gap: 10px;
    }

    .tabletennis-content {
        padding: 0;
        border-radius: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .tabletennis-match-row {
        padding: 8px 0;
        gap: 6px;
        flex-direction: column;
        min-height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .main-content {
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .content-section {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .content-section h2 {
        font-size: 18px;
        margin-bottom: 12px;
        padding: 0 8px;
    }
    
    .cricket-header {
        padding: 10px 12px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0;
    }
    
    .cricket-title-text {
        font-size: 14px;
    }
    
    .cricket-title-icon {
        width: 18px;
        height: 18px;
    }

    .football-title-icon {
        width: 18px;
        height: 18px;
        filter: none;
        opacity: 1;
        display: inline-block;
        background: transparent;
    }
    
    .cricket-header-right {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }
    
    .cricket-btn {
        padding: 3px 6px;
        font-size: 9px;
    }
    
    .cricket-odds {
        gap: 8px;
    }
    
    .odd-number, .odd-x {
        font-size: 12px;
    }
    
    .cricket-content {
        padding: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0;
    }
    
    .cricket-match-row {
        padding: 8px 0;
        gap: 6px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .match-info {
        width: 100%;
        margin-bottom: 4px;
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
        justify-content: space-between;
        padding: 0 8px;
    }
    
    .match-meta {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 6px;
        flex: 0 0 auto;
    }
    
    .match-details {
        flex: 1;
        min-width: 0;
    }
    
    .match-name-container {
        display: flex;
        align-items: center;
        gap: 6px;
        width: 100%;
        overflow: hidden;
    }
    
    .match-name {
        font-size: 11px;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        flex: 1;
        min-width: 0; /* Allow shrinking */
    }
    
    .match-subtitle {
        font-size: 9px;
    }
    
    .match-date {
        text-align: center;
        margin-bottom: 0;
        margin-left: 0;
        padding: 3px 5px;
        min-width: 45px;
        background: #f8f9fa;
        border-radius: 4px;
        border: 1px solid #e9ecef;
        align-self: center;
    }
    
    .date, .time {
        font-size: 9px;
    }
    
    .match-icons {
        margin-bottom: 0;
        gap: 3px;
        margin-left: 0;
        flex: 0 0 65px;
        min-width: 65px;
    }
    
    .match-icon {
        width: 14px;
        height: 14px;
    }
    
    .bm-icon, .p-icon {
        font-size: 8px;
        padding: 0;
        width: 16px;
        height: 16px;
        min-width: 16px;
        line-height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .odds-container {
        width: 100%;
        justify-content: stretch;
        gap: 2px;
        margin-top: 6px;
        padding: 0;
        box-sizing: border-box;
    }
    
    .odds-box {
        padding: 8px 4px;
        font-size: 11px;
        font-weight: 700;
        min-width: 0;
        flex: 1;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        margin: 0;
        transition: all 0.2s ease;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    /* Extra Small Mobile Live Indicator Dot Adjustments */
    .live-indicator-dot {
        gap: 3px;
        margin-left: 4px;
        flex-shrink: 0; /* Prevent shrinking on extra small mobile */
        white-space: nowrap; /* Prevent text wrapping on extra small mobile */
    }
    
    .live-dot {
        width: 5px;
        height: 5px;
    }
    
    .live-indicator-dot .live-text {
        font-size: 9px;
    }

    /* Extra Small Mobile Football Styles */
    .football-header {
        padding: 10px 12px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0;
    }
    
    .football-title-text {
        font-size: 14px;
    }
    
    .football-title-icon {
        width: 18px;
        height: 18px;
    }
    
    .football-header-right {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }
    
    .football-btn {
        padding: 3px 6px;
        font-size: 9px;
    }
    
    .football-odds {
        gap: 8px;
    }
    
    .football-content {
        padding: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0;
    }
    
    .football-match-row {
        padding: 8px 0;
        gap: 6px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Extra Small Mobile Basketball Styles */
    .basketball-header {
        padding: 10px 12px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0;
    }
    
    .basketball-title-text {
        font-size: 14px;
    }
    
    .basketball-title-icon {
        width: 18px;
        height: 18px;
    }
    
    .basketball-header-right {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }
    
    .basketball-btn {
        padding: 3px 6px;
        font-size: 9px;
    }
    
    .basketball-odds {
        gap: 8px;
    }
    
    .basketball-content {
        padding: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0;
    }
    
    .basketball-match-row {
        padding: 8px 0;
        gap: 6px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Extra Small Mobile Baseball Styles */
    .baseball-header {
        padding: 10px 12px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0;
    }
    
    .baseball-title-text {
        font-size: 14px;
    }
    
    .baseball-title-icon {
        width: 18px;
        height: 18px;
    }
    
    .baseball-header-right {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }
    
    .baseball-btn {
        padding: 3px 6px;
        font-size: 9px;
    }
    
    .baseball-odds {
        gap: 8px;
    }
    
    .baseball-content {
        padding: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0;
    }
    
    .baseball-match-row {
        padding: 8px 0;
        gap: 6px;
        flex-direction: column;
        align-items: flex-start;
    }

    /* Extra Small Mobile Table Tennis Styles */
    .tabletennis-header {
        padding: 10px 12px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0;
        background: linear-gradient(135deg, #2e7d32 0%, #4caf50 50%, #66bb6a 100%);
    }

    .tabletennis-title-text {
        font-size: 14px;
    }

    .tabletennis-title-icon {
        width: 18px;
        height: 18px;
    }

    .tabletennis-header-right {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .tabletennis-btn {
        padding: 3px 6px;
        font-size: 9px;
    }

    .tabletennis-odds {
        gap: 8px;
    }

    .tabletennis-content {
        padding: 0;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0;
    }

    .tabletennis-match-row {
        padding: 8px 0;
        gap: 6px;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* In-Play Sport Sections */
.inplay-sport-section {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.inplay-sport-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Banner Carousel Styles */
.banner-carousel-container {
    margin: 0 0 15px 0;
    padding: 0;
}

.banner-carousel {
    position: relative;
    width: 100%;
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.banner-scroll-wrapper {
    overflow: hidden;
    width: 100%;
}

.banner-scroll-container {
    display: flex;
    gap: 10px;
    padding: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.banner-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.banner-item {
    flex: 0 0 auto;
    width: 200px;
    height: 133.33px; /* Adjusted to match 3:2 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.banner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.banner-item:hover .banner-image {
    transform: scale(1.05);
}

/* Navigation Buttons */
.banner-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s ease, transform 0.2s ease;
}

.banner-nav-btn:hover {
    background: rgba(0,0,0,0.9);
    transform: translateY(-50%) scale(1.1);
}

.banner-prev {
    left: 15px;
}

.banner-next {
    right: 15px;
}

/* Welcome Section */
.welcome-section {
    margin: 0;
    text-align: center;
    padding: 20px;
}

.welcome-section h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 24px;
}

.welcome-section p {
    color: #666;
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .banner-scroll-container {
        gap: 10px;
        padding: 15px;
    }
    
    .banner-item {
        width: 170px;
        height: 113.33px; /* Adjusted to match 3:2 aspect ratio */
    }
    
    /* Hide navigation arrows on mobile */
    .banner-nav-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .banner-scroll-container {
        gap: 8px;
        padding: 10px;
    }
    
    .banner-item {
        width: 140px;
        height: 93.33px; /* Adjusted to match 3:2 aspect ratio */
    }
    
    /* Keep navigation arrows hidden on small mobile */
    .banner-nav-btn {
        display: none;
    }
    
    .welcome-section {
        margin: 0;
        padding: 15px;
    }
    
    .welcome-section h2 {
        font-size: 20px;
    }
    
    .welcome-section p {
        font-size: 14px;
    }
}

/* Extra Small Mobile Banner Styles */
@media (max-width: 360px) {
    .banner-scroll-container {
        gap: 6px;
        padding: 8px;
    }
    
    .banner-item {
        width: 120px;
        height: 80px; /* Adjusted to match 3:2 aspect ratio */
    }
    
    .banner-carousel {
        border-radius: 8px;
    }
    
    .banner-item {
        border-radius: 8px;
    }
    
    .banner-image {
        border-radius: 8px;
    }
}

/* Upcoming Events Section Styles */
.upcoming-events-section > .cricket-header {
    background: rgb(0,128,0) !important;
    background-color: rgb(0,128,0) !important;
    background-image: none !important;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 8px rgba(0,128,0,0.3) !important;
    border: 1px solid rgb(0,128,0) !important;
    margin-bottom: 0 !important;
}

.upcoming-events-section > .cricket-header .cricket-title {
    color: white !important;
}

.upcoming-events-section > .cricket-header .cricket-title-text {
    color: white !important;
    font-weight: bold !important;
}

.upcoming-events-section .cricket-content {
    border-radius: 8px !important;
    border-top: 1px solid #e0e0e0 !important;
}

/* Casino Auto-Scrolling Banner Styles */
.casino-banner-section {
    margin: 20px 0;
    padding: 20px;
    overflow: hidden;
    position: relative;
}



.casino-banner-container {
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
    position: relative;
}

.casino-banner-track {
    display: flex;
    animation: casinoScroll 30s linear infinite;
    gap: 15px;
}

.casino-banner-item {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}

.casino-banner-item:hover {
    transform: scale(1.05) translateY(-5px);
}

@keyframes casinoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* League Highlight Styles */
.league-highlight {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%) !important;
    border: 2px solid #ff5722 !important;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5) !important;
    transform: scale(1.02) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 10 !important;
}

.league-highlight::before {
    content: '🎯 SELECTED LEAGUE' !important;
    position: absolute !important;
    top: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #ff5722 !important;
    color: white !important;
    padding: 4px 12px !important;
    border-radius: 12px !important;
    font-size: 10px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    z-index: 11 !important;
    animation: highlightPulse 2s infinite !important;
}

@keyframes highlightPulse {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.05);
    }
}

.league-highlight .match-name {
    color: white !important;
    font-weight: bold !important;
}

.league-highlight .match-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

.league-highlight .match-date {
    color: rgba(255, 255, 255, 0.8) !important;
}

.league-highlight .odds-box {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

    .league-highlight .odds-box:hover {
        background: rgba(255, 255, 255, 0.3) !important;
        transform: translateY(-2px) !important;
    }

    /* Sportbook Section Styles */
    .sportbook-content {
        padding: 20px;
        background: white;
        border-radius: 8px;
        margin: 10px 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .sportbook-info h3 {
        color: #333;
        font-size: 24px;
        margin-bottom: 15px;
        text-align: center;
    }

    .sportbook-info p {
        color: #666;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
        text-align: center;
    }

    .sportbook-features {
        display: flex;
        justify-content: space-around;
        margin: 30px 0;
        flex-wrap: wrap;
        gap: 20px;
    }

    .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 120px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
        opacity: 0.8;
    }

    .feature-item span {
        font-size: 14px;
        color: #333;
        font-weight: 500;
    }

    .sportbook-cta {
        text-align: center;
        margin-top: 30px;
    }

    .sportbook-btn {
        background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .sportbook-btn:hover {
        background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    /* Evolution Section Styles */
    .evolution-content {
        padding: 20px;
        background: white;
        border-radius: 8px;
        margin: 10px 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .evolution-info h3 {
        color: #333;
        font-size: 24px;
        margin-bottom: 15px;
        text-align: center;
    }

    .evolution-info p {
        color: #666;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
        text-align: center;
    }

    .evolution-features {
        display: flex;
        justify-content: space-around;
        margin: 30px 0;
        flex-wrap: wrap;
        gap: 20px;
    }

    .evolution-cta {
        text-align: center;
        margin-top: 30px;
    }

    .evolution-btn {
        background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .evolution-btn:hover {
        background: linear-gradient(135deg, #7B1FA2 0%, #9C27B0 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    /* Coming Soon Styles */
    .coming-soon-container {
        text-align: center;
        padding: 60px 20px;
        background: white;
        border-radius: 15px;
        margin: 20px 0;
        color: #333;
        position: relative;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }



    .coming-soon-icon {
        margin-bottom: 30px;
    }

    .coming-soon-img {
        width: 120px;
        height: 120px;
        opacity: 0.8;
    }

    .coming-soon-title {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 15px;
        color: #333;
    }



    /* Mobile responsive for coming soon */
    @media (max-width: 768px) {
        .coming-soon-container {
            padding: 40px 15px;
        }
        
        .coming-soon-img {
            width: 100px;
            height: 100px;
        }
        
        .coming-soon-title {
            font-size: 28px;
        }
        
        .coming-soon-text {
            font-size: 16px;
        }
        
        .coming-soon-features {
            gap: 20px;
        }
        
        .coming-soon-feature {
            padding: 12px 20px;
        }
        
        .coming-soon-feature span {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .coming-soon-container {
            padding: 30px 10px;
        }
        
        .coming-soon-img {
            width: 80px;
            height: 80px;
        }
        
        .coming-soon-title {
            font-size: 24px;
        }
        
        .coming-soon-text {
            font-size: 14px;
        }
        
        .coming-soon-features {
            gap: 15px;
        }
        
        .coming-soon-feature {
            padding: 10px 15px;
        }
        
        .coming-soon-feature span {
            font-size: 12px;
        }
    }

    /* Mobile responsive for league highlight */
@media (max-width: 768px) {
    .league-highlight {
        transform: scale(1.01) !important;
    }
    
    .league-highlight::before {
        font-size: 9px !important;
        padding: 3px 8px !important;
    }
}

@media (max-width: 480px) {
    .league-highlight {
        transform: scale(1.005) !important;
    }
    
    .league-highlight::before {
        font-size: 8px !important;
        padding: 2px 6px !important;
    }
}

/* Pause animation on hover */
.casino-banner-section:hover .casino-banner-track {
    animation-play-state: paused;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .casino-banner-section {
        margin: 15px 0;
        padding: 15px;
    }
    
    .casino-banner-item {
        width: 160px;
        height: 100px;
        border-radius: 10px;
    }
    
    .casino-banner-track {
        gap: 12px;
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .casino-banner-section {
        margin: 10px 0;
        padding: 12px;
    }
    
    .casino-banner-item {
        width: 140px;
        height: 85px;
        border-radius: 8px;
    }
    
    .casino-banner-track {
        gap: 10px;
        animation-duration: 20s;
    }
}

@media (max-width: 360px) {
    .casino-banner-section {
        margin: 8px 0;
        padding: 10px;
    }
    
    .casino-banner-item {
        width: 120px;
        height: 75px;
        border-radius: 6px;
    }
    
    .casino-banner-track {
        gap: 8px;
        animation-duration: 18s;
    }
}
