    /* BetPawa Footer Styles */
        .betpawa-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #9be22d;
            z-index: 1000;
            padding: 0; /* Remove any padding */
            text-decoration: none;
        }
        
        .promo-banner {
            background: #9be22d;
            color: rgb(20, 19, 19);
            text-align: center;
            padding: 4px 15px;
            font-weight: 500;
            font-size: 10px;
            letter-spacing: 0.3px;
        }
        
        .footer-nav-container {
            display: flex;
            height: 88px;
            position: relative;
            padding: 0; /* Remove container padding */
        }
        
        .footer-wing {
            flex: 1;
            background: #252a2d;
            display: flex;
            align-items: center;
            height: 100%;
        }
        
        .footer-left {
            border-top-right-radius: 65px;
            justify-content: flex-start; /* Changed to flex-start */
            padding-right: 15px; /* Add left padding instead */
            margin-left: 0; /* Remove any margin */
        }
        
        .footer-right {
            border-top-left-radius: 65px;
            justify-content: flex-end; /* Changed to flex-end */
            padding-right: 20px; /* Add right padding instead */
            margin-right: 0; /* Remove any margin */
        }
        
        .nav-items {
            display: flex;
            gap: 30px;
            text-decoration: none;
        }
        
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #a0a0a0;
            cursor: pointer;
            transition: all 0.2s ease;
            min-width: 50px;
            text-decoration: none;
        }

        
        
        
        .nav-item:hover {
            opacity: 0.8;  /* slightly dim on hover */
        }
        
        .nav-icon {
            font-size: 22px;
            margin-bottom: 4px;
        }
        
        .nav-label {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.3px;
            text-decoration: none;
        }
        
        /* Central Circle */
        .center-circle {
            position: absolute;
            left: 50%;
            top: 1px;
            transform: translateX(-50%);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #252a2d;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border: 3px solid #474747;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            z-index: 10;
        }
        
        
        
        .center-circle .nav-icon {
            font-size: 24px;
        }
        
        /* Gap between wings */
        .footer-nav-container::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 90px;
            height: 10px;
            background: transparent;
        }
        