@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }
div{ font-family: "Montserrat", sans-serif !important;}
        body {
            width:100%;
             font-family: "Montserrat", sans-serif !important;
            background-color: #1a1a1a !important;
            color: #fff;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }
        a{text-decoration:none !important;}
:root {
            --orange: #f26d21;
            --dark-bg: #1e1e1e;
            --grey-bg: #2d2d2d;
            --pink-no: #f7d2d2;
            --blue-yes: #cce5ff;
            --green: #28a745;
            --navy: #1a237e;
            --yellow: #ffc107;
            --red: #d32f2f;
        }
.quick-amounts button{font-family: "Montserrat", sans-serif !important;}
        /* Header Section */
        .header1 { background: var(--orange); padding: 10px 20px; display: flex; justify-content: space-between; font-weight: bold; }
        .sub-header { background: var(--dark-bg); padding: 15px 20px; border-bottom: 1px solid #333; }
        .sub-header span { color: var(--orange); font-weight: bold; }

        .main-layout { display: flex; padding: 10px; gap: 15px; align-items: flex-start; }

        /* Left Side: Markets */
        .content-left { flex: 2; }
        .nav-pills { display: flex; gap: 10px; margin-bottom: 15px; }
        .pill { background: #333; padding: 8px 20px; border-radius: 20px; cursor: pointer; border: 1px solid #444; }
        .pill.active { background: var(--orange); border: none; }

        .category-bar { display: flex; background: #333; border-radius: 4px; overflow: hidden; margin-bottom: 5px; }
        .cat-item { flex: 1; padding: 12px; text-align: center; cursor: pointer; border-right: 1px solid #444; font-weight: bold; font-size: 13px; }
        .cat-item.active { background: var(--orange); }

        .sub-tab-container { display: flex; background: #222; overflow-x: auto; border: 1px solid #444; margin-bottom: 10px; }
        .sub-tab { padding: 10px 20px; cursor: pointer; font-size: 12px; font-weight: bold; white-space: nowrap; border-right: 1px solid #333; }
        .sub-tab.active { background: var(--orange); }

        /* Market Rows */
        .market-row { background: white; color: #333; display: flex; align-items: center; padding: 10px 15px; margin-bottom: 2px; border-radius: 4px; }
        .market-name { flex: 1; font-weight: bold; font-size: 13px; }
        .box { width: 65px; height: 45px; text-align: center; display: flex; flex-direction: column; justify-content: center; cursor: pointer; border-radius: 4px; margin-left: 5px; }
        .no { background: var(--pink-no); }
        .yes { background: var(--blue-yes); }
        .price { font-weight: bold; font-size: 16px; }
        .size { font-size: 10px; color: #666; }

        /* Right Side: Betslip */
        .content-right { flex: 1; min-width: 360px; position: sticky; top: 10px; }
        .slip-card { background: white; border-radius: 8px; color: #333; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
        
        .slip-header { display: flex; background: var(--grey-bg); }
        .slip-tab { flex: 1; padding: 15px; text-align: center; cursor: pointer; color: #ccc; font-weight: bold; position: relative; }
        .slip-tab.active { color: var(--orange); }
        .slip-tab.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--orange); }

        .pane { display: none; padding: 15px; }
        .pane.active { display: block; }

        .bet-info-box { background: #f9f9f9; padding: 8px; text-align: center; border: 1px solid #eee; margin-bottom: 10px; border-radius: 4px; font-size: 12px; }
        
        .odds-stake-row { display: flex; gap: 5px; margin-bottom: 10px; align-items: center; }
        .stepper { flex: 1; display: flex; border: 2px solid var(--orange); border-radius: 4px; overflow: hidden; height: 40px; }
        .stepper button { background: var(--orange); color: white; border: none; width: 35px; cursor: pointer; font-size: 20px; font-weight: bold; }
        .stepper input { width: 100%; border: none; text-align: center; font-weight: bold; font-size: 16px; outline: none; }
        
        .stake-input-box { flex: 1; height: 40px; border: 1px solid #ccc; border-radius: 4px; padding: 0 10px; text-align: right; font-weight: bold; font-size: 16px; box-sizing: border-box; }

        .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; margin-bottom: 10px; }
        .btn-stake { background: white; border: 1px solid #ddd; padding: 8px 0; border-radius: 4px; cursor: pointer; color: var(--green); font-weight: bold; font-size: 12px; }
        
        .action-btns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; margin-bottom: 10px; }
        .btn-act { border: none; padding: 10px 0; border-radius: 4px; color: white; font-size: 10px; font-weight: bold; cursor: pointer; text-transform: uppercase; }
        .b-min { background: var(--yellow); color: black; }
        .b-max { background: var(--navy); }
        .b-edit { background: var(--green); }
        .b-clear { background: var(--red); }

        .footer-btns { display: flex; gap: 10px; }
        .btn-cancel { flex: 1; background: white; border: 1px solid var(--orange); color: var(--orange); padding: 12px; border-radius: 6px; cursor: pointer; font-weight: bold; }
        .btn-place { flex: 1; background: var(--green); border: none; color: white; padding: 12px; border-radius: 6px; cursor: pointer; font-weight: bold; }

        .limit-bar { background: #fff3e0; color: #e65100; font-size: 11px; padding: 8px; margin-top: 10px; display: flex; align-items: center; gap: 5px; }

        /* Modal Pop-up */
        /* Updated Modal Styling */
    .modal-overlay { 
        position: fixed; top:0; left:0; width: 100%; height: 100%; 
        background: rgba(0,0,0,0.8); display: none; align-items: center; justify-content: center; z-index: 2000; 
    }
    .modal-content { 
        background: white; color: #333; width: 360px; border-radius: 8px; overflow: hidden; 
        box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    }
    .modal-header { 
        background: var(--orange); color: white; padding: 15px; font-weight: bold; 
        display: flex; justify-content: space-between; align-items: center;
    }
    .modal-body { padding: 20px; }
    .edit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .edit-field { display: flex; flex-direction: column; margin-bottom: 10px; }
    .edit-field label { font-size: 11px; color: #666; margin-bottom: 4px; }
    .edit-field input {width:134px; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-weight: bold; outline-color: var(--orange); }
    
    .modal-footer { display: flex; gap: 10px; padding: 15px; background: #f5f5f5; }
    .btn-save { flex: 1; background: var(--green); color: white; border: none; padding: 12px; border-radius: 4px; cursor: pointer; font-weight: bold; }
    .btn-close { flex: 1; background: #666; color: white; border: none; padding: 12px; border-radius: 4px; cursor: pointer; font-weight: bold; }


        .supportx-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
                margin-top: 22px;
        }

        .supportx-card {
            width:100%;
  position: relative;
  padding: 36px 32px;
  border-radius: 20px;

  /* High-contrast premium base */
  background:
    radial-gradient(circle at top right, rgba(255, 140, 0, 0.25), transparent 55%),
    linear-gradient(135deg, #0b0b0b, #000000);

  color: #ffffff;

  border: 1px solid rgba(255, 165, 0, 0.35);

  box-shadow:0 0 0 1px rgba(255, 165, 0, 0.25), 0 28px 70px rgb(196 71 0 / 37%);

  backdrop-filter: blur(12px);
}
 /* Unique Grid Container */
        .sp-btn-grid-layout {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 11px;
           width:100%;
            margin:22px auto 4px;
        }

        /* Desktop Grid Switch */
        @media (min-width: 768px) {
            .sp-btn-grid-layout {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Unique Button Styling */
        .sp-btn-item {
            position: relative;
            display: flex;
                justify-content: center;
            align-items: center;
            padding: 12px 25px;
            border-radius: 18px;
            text-decoration: none;
            border: 3px solid rgba(0,0,0,0.1);
            box-shadow: 0 8px 15px rgba(0,0,0,0.2);
            transition: transform 0.1s ease;
            overflow: hidden;
            min-height: 80px;
        }

        .sp-btn-item:active {
            transform: translateY(2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        /* Glossy Highlight Effect */
        .sp-btn-gloss {
            position: absolute;
            top: 4px;
            left: 10px;
            right: 10px;
            height: 40%;
            background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
            border-radius: 40px;
            pointer-events: none;
        }

        /* Specific Color Variations */
        .sp-btn-green { background: linear-gradient(to bottom, #2ecc71, #1b7a43); }
        .sp-btn-yellow { background: linear-gradient(to bottom, #f1c40f, #c29d0b); }
        .sp-btn-blue { background: linear-gradient(to bottom, #3498db, #1d6fa5); }
        
        /* IPL Multi-Color Gradient */
        .sp-btn-ipl-grad { 
            background: linear-gradient(to right, #6a11cb 0%, #2575fc 40%, #ff8c00 100%); 
        }

        /* Icon Wrapper */
        .sp-btn-icon-box {
            position: relative;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .sp-btn-main-img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 4px 4px rgba(0,0,0,0.3));
        }

        /* Text Styling */
        .sp-btn-label {
            color: white;
            font-size: 31px;
            letter-spacing: -1px;
            -webkit-text-stroke: 1.5px rgba(0,0,0,0.2);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin: 0;
        }

        /* Cricket Ball Detail */
        .sp-btn-cricket-ball {
            position: absolute;
            bottom: 5px;
            right: -5px;
            width: 35px;
            height: 35px;
            background: radial-gradient(circle at 30% 30%, #ff4d4d, #990000);
            border-radius: 50%;
            border: 2px solid white;
            box-shadow: 2px 2px 5px rgba(0,0,0,0.4);
        }

        /* Mobile specific font size */
        @media (max-width: 480px) {
            .sp-btn-label { font-size: 19px; }
            .sp-btn-icon-box {        width: 40px;
        height: 40px;
        margin-right: 10px; }
            .sp-btn-cricket-ball { width: 25px; height: 25px; }
        }
/* glowing orange edge */
.supportx-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 165, 0, 0.8),
    rgba(255, 255, 255, 0.6),
    transparent
  );
  opacity: 0.35;
  pointer-events: none;
}

/* title pop */
.supportx-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #ffffff, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* subtitle readability */
.supportx-subtitle {
  font-size: 14px;
  color: #e6e6e6;
  line-height: 1.6;
}

/* mobile refinement */
@media (max-width: 480px) {
  .supportx-card {
    padding: 28px 22px;
    border-radius: 18px;
  }
}

.supportx-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.supportx-icon {
      width: 100%;
    height: 51px;
    border-radius: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.supportx-icon span{font-size:15px;    padding-left: 10px;}
.supportx-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.supportx-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.supportx-telegram {
  background: linear-gradient(135deg, #2AABEE, #229ED9);
}

        .supportx-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #ff8c00;
            color: #ff8c00;
            background-color: #ffffff;
        }

        .supportx-button:hover {
            background-color: #ff8c00;
            color: #ffffff;
        }

        .supportx-footer {
            margin-top: 25px;
            font-size: 12px;
            color: #777777;
        }

        @media (max-width: 480px) {
            .supportx-card {
                padding: 20px;
            }

            .supportx-title {
                font-size: 20px;
            }
        }


/* --- General Table Styling --- */
    .cricket-table {
        border-collapse: collapse;
        font-family: sans-serif;
        background-color: #fff;
    }

    .odds-header th {
        background-color: #f4f4f4;
        padding: 10px;
        text-align: center;
        border-bottom: 2px solid #ddd;
    }

    .match-row td {
        padding: 0px 8px;
        border-bottom: 1px solid #eee;
        vertical-align: middle;
    }

    /* Odds Box Styling */
    .odds-group {
        display: flex;
        gap: 2px;
        justify-content: center;
    }

    .odds-box {
        width: 45px;
        text-align: center;
        padding: 4px;
        font-size: 12px;
        border-radius: 4px;
    }

    .odds-back { background-color: #a7d8fd; } /* Blue for Back */
    .odds-lay { background-color: #f9c9d4; }  /* Pink for Lay */
    .odds-value { font-weight: bold; }
    .odds-amount { font-size: 10px; color: #666; }
    /* Container styling */
.right-sidebar-panel {
    background-color: #000000;
    width: 320px;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

/* Fixed Header */
.sidebar-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hi-text { color: #f26522; font-weight: bold; margin-right: 5px; font-size: 1.2rem; }
.user-greeting { font-size: 1.1rem; font-weight: 500; }
.close-x { background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }

/* Scrollable Section */
.sidebar-content {
    flex: 1;
    overflow-y: auto;
}

/* Balance Rows */
.balance-container { padding: 0 20px; margin-bottom: 10px; }
.balance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}
.balance-row .label { font-size: 14px; line-height: 1.3; }
.balance-row small { font-size: 11px; color: #ccc; }
.balance-row .value { color: #f26522; font-weight: bold; font-size: 18px; }

/* Mid Buttons */
.button-container { padding: 10px 20px 20px 20px; }
.awaiting-bonus {
    border: 1.5px solid #f26522;
    border-radius: 50px;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 12px;
}
.zero-count { color: #f26522; margin-left: 20px; }
.refer-btn {
    width: 100%;
    background-color: #f26522;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
}

/* Menu Items */
.sidebar-nav { border-top: 1px solid #333; }
.nav-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    font-family: "Montserrat", sans-serif !important;
    border-bottom: 1px solid #1a1a1a;
}
.nav-item i {
    width: 35px;
    font-size: 18px;
    color: #f26522; /* Branding Orange */
}

/* Row Specific Overrides */
.bg-green { background-color: #008000 !important; border-bottom: none; }
.bg-red { background-color: #8b0000 !important; border-bottom: none; }
.bg-green i, .bg-red i { color: #fff; } /* White icons on colored backgrounds */

.logout-border { border-top: 1px solid #333; }

/* Custom Scrollbar for better look */
.sidebar-content::-webkit-scrollbar { width: 5px; }
.sidebar-content::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }

    /* --- RESPONSIVE DESIGN (Mobile) --- */

     }
    @media screen and (max-width: 600px) {
       
        .swiper-container {
    margin: 5px auto;
    border-radius: 5px;
    border: 1px solid #fff;
}
        .banner-card{height:64px !important;}
        .banner-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 4px !important;
    margin-bottom: 5px;
}
        /* Hide the original header */
        .cricket-table thead {
            display: none;
        }

        .cricket-table, .cricket-table tbody, .cricket-table tr, .cricket-table td {
            display: block;
            width: 100%;
        }

        .match-row {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .match-info {
            background-color: #fafafa;
            border-bottom: 1px solid #eee !important;
            text-align: left;
        }

        /* Align the 1, X, 2 odds in a single row on mobile */
        .match-row td:not(.match-info) {
            display: inline-block;
            width: 33.333%; /* Creates 3 columns for 1 - X - 2 */
            float: left;
            text-align: center;
            padding: 0;
            box-sizing: border-box;
            border-bottom: none;
        }

        /* Clearfix for the floated columns */
        .match-row::after {
            content: "";
            display: table;
            clear: both;
        }

        /* Add Labels so users know which column is which */
        .match-row td:nth-child(2)::before { content: "1"; display: block; font-weight: bold; margin-bottom: 5px; }
        .match-row td:nth-child(3)::before { content: "X"; display: block; font-weight: bold; margin-bottom: 5px; }
        .match-row td:nth-child(4)::before { content: "2"; display: block; font-weight: bold; margin-bottom: 5px; }
        
        .odds-group {
            flex-direction: column; /* Stack Back and Lay on top of each other on mobile */
            align-items: center;
        }
        
        .odds-box {
            width: 60px;
            margin-bottom: 2px;
        }
    }
    
    
    .fairplay-footer {
  background-color: #1f1f1f;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  padding: 32px 16px 52px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
}

.footer-brand {
  max-width: 520px;
}

.footer-logo {
  height: 40px;
  width: auto;
  border-radius:9px;
  margin-bottom: 12px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #d6d6d6;
}

.footer-divider {
  margin: 28px 0 20px;
  border-top: 1px solid #3a3a3a;
}

.footer-bottom {
  max-width: 100%;
}

.footer-disclaimer-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 6px;
}

.footer-disclaimer-text {
  font-size: 13px;
  line-height: 1.7;
  color: #cfcfcf;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .fairplay-footer {
    padding: 24px 14px;
    margin-bottom:12%;
  }

  .footer-logo {
    height: 34px;
  }

  .footer-description,
  .footer-disclaimer-text {
    font-size: 13px;
  }
}
    /* 1. The Wrapper: This enables the scrollbar */
    .table-container {
        width: 100%;
        overflow-x: auto; /* Enables horizontal scroll */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        margin-bottom: 20px;
        border: 1px solid #eee;
        border-radius: 8px;
    }

    /* 2. The Table: Ensure it doesn't shrink too much */
    .cricket-table {
        min-width: 600px; /* Forces scroll on screens smaller than 600px */
        border-collapse: collapse;
        white-space: nowrap; /* Prevents text from wrapping to new lines */
    }

    /* Standard Table Styling */
    .odds-header th {
        background-color: #f8f9fa;
        padding: 6px;
        font-size: 14px;
        color: #333;
        border-bottom: 2px solid #dee2e6;
    }

    .match-info {
        min-width: 250px; /* Gives the match names enough space */
        padding: 10px;
    }

    .match-title {
        font-weight: bold;
        color: #222;
        font-size: 14px;
    }

    .match-date {
        font-size: 11px;
        color: #666;
    }

    /* Odds Buttons Layout */
    .odds-group {
        display: flex;
        gap: 4px;
        justify-content: center;
        padding: 5px;
    }

    .odds-box {
        width: 50px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        cursor: pointer;
    }

    .odds-back { background-color: #a7d8fd; border: 1px solid #8ec6f0; }
    .odds-lay { background-color: #f9c9d4; border: 1px solid #f2b1c0; }

    .odds-value { font-weight: bold; font-size: 13px; }
    .odds-amount { font-size: 10px; color: #555; }

    /* Custom Scrollbar Styling (Optional) */
    .table-container::-webkit-scrollbar {
        height: 6px;
    }
    .table-container::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }
    
     .section-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .section-header h2 {
            color: #fff;
            text-transform: uppercase;
            font-size: 24px;
            margin: 0;
        }

        /* The Diamond icons */
        .diamond {
            color: #FFD700;
            font-size: 14px;
        }

        /* Scroll Container */
        .games-container {
            display: flex;
            overflow-x: auto;
            gap: 10px;
            padding-bottom: 15px;
            scrollbar-width: thin; /* For Firefox */
            scrollbar-color: #888 #333;
        }

        /* Grid wrapper to mimic the 2-row layout in the image */
        .games-grid {
            display: grid;
            grid-template-rows: repeat(2, 1fr);
            grid-auto-flow: column; /* This forces it to grow horizontally */
            gap: 10px;
        }

        .game-card {
            min-width: 100%;
            height:100%;
            /*aspect-ratio: 16/9;*/
            border: 1px solid #444;
            border-radius: 4px;
            overflow: hidden;
            transition: transform 0.2s, border-color 0.2s;
            cursor: pointer;
        }

        .game-card:hover {
            transform: scale(1.02);
            border-color: #FFD700;
        }

        .game-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Custom Scrollbar Styling for Chrome/Safari */
        .games-container::-webkit-scrollbar {
            height: 8px;
        }

        .games-container::-webkit-scrollbar-track {
            background: #222;
            border-radius: 10px;
        }

        .games-container::-webkit-scrollbar-thumb {
            background: #555;
            border-radius: 10px;
        }

        .games-container::-webkit-scrollbar-thumb:hover {
            background: #888;
        }

        .mobile-menu-toggle {
            display: none;
            background: #ff6b35;
            border: none;
            color: white;
               font-size: 21px;
    padding: 5px 6px;
            cursor: pointer;
            border-radius: 5px;
        }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 998;
        }

        .overlay.active {
            display: block;
        }

        .top-banner {
            background: linear-gradient(90deg, #ff6b35, #ff8c42);
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 0 20px;
        }

        .close-btn {
            color: white;
            cursor: pointer;
            font-size: 20px;
        }

       .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px; /* Fixed height for a consistent premium look */
    
    /* Glassmorphism Effect */
    background: rgba(26, 26, 26, 0.85); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    /* Sticky & Depth */
    position: sticky;
    top: 0;
    z-index: 1000;
    
    /* Animated Gradient Border (Eye-catching detail) */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Optional: Add a subtle glow line at the very bottom */
.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6a00, transparent);
    opacity: 0.5;
}

/* Hover effect for items inside the header */
.header a, .header button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header a:hover {
    filter: brightness(1.2);
    transform: translateY(-1px);
}
.header img{border-radius: 10px;
    width: 98px;}
/* Ensure the logo and menu toggle stay together on the left */
.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* This container will now be on the far right */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-balance-wrapper {
    cursor: pointer;
    background: #2a2a2a;
    border: 3px solid #ff7b47 !important;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #444;
}

.balance-text {
    color: #00c853;
    font-weight: bold;
    font-size: 14px;
}

        /* --- Global Reset for Header Area --- */
.container {
    display: flex;
    min-height: calc(100vh - 200px);
    background-color: #121212;
    color: #fff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* --- Logo: High Contrast & Glow --- */
.logo {
    font-size: 26px;
    font-weight: 900;
    order: 1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.logo span:first-child {
    color: #ffffff;
}

.logo span:last-child {
    color: #ff6b35;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

/* --- Header Icons & Actions --- */
.header-icons {
    display: flex;
    gap: 12px;
    order: 2;
    align-items: center;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #e85a24);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: none;
    color: white;
}

.icon-btn:hover {
    transform: scale(1.1) rotate(8deg);
    filter: brightness(1.2);
}

/* --- Search Bar: Modern Glow --- */
.search-bar {
    flex: 1;
    max-width: 320px;
    margin: 0 25px;
    order: 4;
}

.search-bar input {
    width: 100%;
    padding: 12px 18px;
    background: #1e1e1e;
    border: 2px solid #333;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-bar input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
    background: #252525;
}

/* --- Authentication & Bet Buttons --- */
.auth-buttons {
    display: flex;
    gap: 12px;
    order: 3;
}

.header-right-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
       padding: 7px 12px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.btn:active {
    transform: translateY(0);
}

.btn-login {
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
        border-radius: 18px;
    color: #fff;
    font-size:14px;
    font-weight:bold;
    padding: 6px 13px;
}

.btn-register {
    background: linear-gradient(135deg, #4CAF50, #66bb6a);
        border-radius: 18px;
    color: #fff;
    font-size:14px;
    font-weight:bold;
    padding: 6px 13px;
}

.btn-open-bet {
    background: linear-gradient(135deg, #ffc107, #ffd54f);
    color: #000;
    border-bottom: 3px solid #d39e00;
    width: 100%;
    padding: 11px;
    font-size: 16px;
    font-weight: bold;
}

/* --- User Balance: Glassmorphism --- */
.user-balance-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background 0.2s;
}

.user-balance-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.balance-amount {
    color: #00e676;
    font-weight: 900;
    font-family: 'Courier New', Courier, monospace;
}

.user-icon {
    background: #444;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-black {
  background: #0b0b0b;
}

.live-box {
  background: radial-gradient(circle at top, #161616, #050505);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.text-orange {
  color: #ff7a18;
}

.pill {
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
    line-height: 14px;
  font-weight: 500;
  color: #fff;
  background: #0f0f0f;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.pill:hover {
  transform: translateY(-1px);
}

.pill-purple {
  box-shadow:
    0 0 0 1px #7b3fe4,
    0 0 12px rgba(123,63,228,0.6);
}

.pill-orange {
  box-shadow:
    0 0 0 1px #ff5a00,
    0 0 14px rgba(255,90,0,0.7);
}

.pill.active {
  background: linear-gradient(180deg, #1a1a1a, #050505);
}

/* --- Sports Navigation & Attractive Scrollbar --- */
.sports-nav {
    background: #3d3d3d;
    padding:11px 20px 5px 20px; /* Extra bottom padding for scrollbar space */
    display: flex;
    gap: 12px;
    overflow-x: auto;
    border-bottom: 2px solid #222;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Fades the content at the edges for a premium look 
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);*/
}

/* Scrollbar Styling (Webkit: Chrome, Safari, Edge) */
.sports-nav::-webkit-scrollbar {
    height: 5px;
}

.sports-nav::-webkit-scrollbar-track {
    background: transparent; /* Clean look */
}

.sports-nav::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
    transition: background 0.3s;
}

.sports-nav:hover::-webkit-scrollbar-thumb {
    background: #444; /* Subtle reveal on hover */
}

.sports-nav::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #ff6b35, #ff8c5a);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.4);
}

/* Firefox Scrollbar */
.sports-nav {
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
}

/* Sport Menu Items */
.sport-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight:bold !important;
    padding: 8px 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 25px; /* Pill Shape */
    color: #ccc;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
}

.sport-item:hover {
    background: #252525;
    border-color: #ff6b35;
    color: #fff;
    transform: translateY(-1px);
}

.sport-item.active {
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Right Sidebar Logic */
.right-sidebar {
    position: fixed;
    top: 0;
    right: -320px; /* Hidden by default */
    width: 300px;
    height: 100vh;
    background: #1a1a1a;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.right-sidebar.open { right: 0; }

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    z-index: 99999;
}
.sidebar{background:#333;width:16%;}
        /*.sidebar {*/
        /*    width: 240px;*/
        /*    background: #000;*/
        /*    padding: 20px 0;*/
        /*    overflow-y: auto;*/
        /*    transition: transform 0.3s ease;*/
        /*    z-index: 999;*/
        /*}*/
.sidebar-overlay.show { display: block; }

/* Sidebar Internal Content */
.sidebar-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 10px; margin-bottom: 20px; }
.close-btn { background: none; border: none; color: white; font-size: 24px; cursor: pointer; }

.wallet-info { background: #252525; border-radius: 8px; padding: 15px; margin-bottom: 20px; }
.info-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; }
.info-row .amount { font-weight: bold; }
.exposure { color: #ff5252; }
.available { border-top: 1px solid #444; padding-top: 10px; margin-top: 10px; color: #00c853; }

.sidebar-actions { display: flex; flex-direction: column; gap: 10px; }
.action-btn { background: #333; border: none; color: white; padding: 12px; text-align: left; border-radius: 4px; cursor: pointer; font-size: 14px; }
.action-btn:hover { background: #444; }
.deposit { background: #00c853 !important; font-weight: bold; color: black; }
.withdraw { background: #ff7043 !important; font-weight: bold; color: black; }
.logout { margin-top: 20px; color: #ff5252; background: none; text-align: center; border: 1px solid #ff5252; }
/* Sidebar Hidden State */
.right-sidebar-panel {
    position: fixed;
    top: 0;
    right: -320px; /* Start off-screen */
    width: 280px;
    height: 100%;
    background: #1a1a1a;
    z-index: 9999;
    transition: 0.3s ease-in-out;
    padding: 20px 0;
    box-shadow: -2px 0 10px rgba(0,0,0,0.5);
}

/* Sidebar Open State */
.right-sidebar-panel.open {
    right: 0;
}

/* Overlay Background */
.sidebar-overlay-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    display: none; /* Hidden by default */
    z-index: 999;
}

.sidebar-overlay-bg.show {
    display: block;
}
.casino-section {
        padding: 25px 20px;
        border-top: 1px solid #222;
        border-bottom: 1px solid #222;
        overflow: hidden;
    }

    .casino-section-title {
        text-align: center;
        font-size: 22px;
        font-weight: bold;
        color: #00c853;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .casino-scroll-viewport {
        overflow: hidden;
        position: relative;
    }

    .casino-scroll-track {
        display: flex;
        gap: 15px;
        width: max-content;
        animation: casinoAutoScroll 35s linear infinite;
    }

    .casino-scroll-track.slow {
        animation-duration: 45s;
    }

    .casino-rail {
        display: flex;
        gap: 15px;
    }

    .casino-card {
        width: 230px;
        height: 140px;
        background: #1a1a1a;
        border-radius: 10px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 18px;
        text-transform: uppercase;
        box-shadow: 0 0 15px rgba(0,0,0,0.7);
        background-size: cover;
        background-position: center;
    }

    .casino-card.tall {
        height: 280px;
    }

    .casino-scroll-viewport:hover .casino-scroll-track {
        animation-play-state: paused;
    }

    @keyframes casinoAutoScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
/* Header Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}


.balance-text {
    color: #00c853;
    font-weight: bold;
}

        .sidebar-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            cursor: pointer;
            transition: background 0.3s;
            user-select: none;
        }

        .sidebar-item:hover {
            background: #2a2a2a;
        }

        .sidebar-item.active {
            background: #1a1a1a;
            border-left: 3px solid #ff6b35;
        }

        .sidebar-item-content {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            font-size:13px;
            font-family: "Montserrat", sans-serif !important;
        }

        .badge {
            display:none;
            background: #ff6b35;
            color: white;
            padding: 5px;
            border-radius: 50%;
            font-size: 12px;
            min-width: 24px;
            text-align: center;
        }

        .arrow {
            font-size: 12px;
            transition: transform 0.3s;
            margin-left: 5px;
        }

        .arrow.open {
            transform: rotate(180deg);
        }

        .submenu {
            display: none;
            background: #0a0a0a;
        }

        .submenu.open {
            display: block;
        }

        .submenu-item {
            padding: 12px 20px 12px 50px;
            cursor: pointer;
            font-size:14px;
            transition: background 0.3s;
            user-select: none;
            position: relative;
        }

        .submenu-item:hover {
            background: #1a1a1a;
        }

        .submenu-item.active {
            background: #2a2a2a;
            color: #ff6b35;
        }

        .submenu-item::before {
            content: '›';
            position: absolute;
            left: 35px;
            color: #666;
        }

        .sub-submenu {
            display: none;
            background: #050505;
        }

        .sub-submenu.open {
            display: block;
        }

        .sub-submenu-item {
            padding: 10px 20px 10px 70px;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 13px;
            color: #ccc;
        }

        .sub-submenu-item:hover {
            background: #1a1a1a;
            color: #fff;
        }

        .sub-submenu-item.active {
            color: #ff6b35;
            background: #1a1a1a;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 1024px) {
          
            .search-bar {
                max-width: 200px;
            }
        }

        @media (max-width: 768px) {
            
            .container, .container-lg, .container-md, .container-sm, .container-xl{padding:0px !important;}
            .header img {
    width: 74px;
    margin-left: -26px;
    margin-top: 0;
}
.live-box .col-4 {
    padding: 0 4px;
}
            .header-actions {
    display: flex;
    align-items: end;
    gap: 10px;
    flex-direction: column;
}
            .mobile-menu-toggle {
                display: block;
                order: 0;
            }
            .header {
                padding: 10px 15px;
                      flex-direction: row;
            }

            .logo {
                font-size: 20px;
                order: 1;
            }

            .header-icons {
                order: 2;
            }

            .auth-buttons {
                order: 3;
            }

            .search-bar {
                order: 4;
                width: 100%;
                max-width: 100%;
                margin: 10px 0 0 0;
            }

            .sports-nav {
                padding: 10px 10px;
                gap: 10px;
            }

            .sport-item {
                padding: 8px 12px;
                font-size: 13px;
            }

            .container {
                position: relative;
            }

            .sidebar {
                position: fixed;
                left: 0;
                top: 0;
                height: 100vh;
                transform: translateX(-100%);
                z-index: 99999;
            }

            .sidebar.active {
                transform: translateX(0);
            }

            .main-content {
                padding: 15px;
            }

            .banner-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 4px !important;
    margin-bottom: 5px;
}
.banner-card {
    height: 65px !important;}

            .banner-card {
                height: 100px;
            }

            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .filter-buttons {
                width: 100%;
                justify-content: flex-start;
                flex-wrap: wrap;
            }

            .odds-header {
                font-size: 12px;
                padding: 10px;
            }

            .match-row {
                padding: 12px 10px;
                font-size: 13px;
            }

            .match-date {
                font-size: 11px;
            }

            .match-title {
                font-size: 13px;
            }

            .match-subtitle {
                font-size: 11px;
            }

            .odds-box {
                padding: 8px 5px;
            }

            .odds-value {
                font-size: 12px;
            }

            .odds-amount {
                font-size: 10px;
            }

            .btn {
                        padding: 9px 12px !important;
        font-size: 13px !important;
        font-weight: bold !important;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 18px;
            }

            .icon-btn {
                width: 35px;
                height: 35px;
            }

            .auth-buttons {
                gap: 5px;
            }

            .btn {
                padding: 6px 12px;
                font-size: 11px;
            }

            .sports-nav {
                gap: 8px;
            }

            .sport-item {
                padding: 6px 10px;
                font-size: 12px;
            }

            .banner-card {
                height: 80px;
            }

            .section-title {
                font-size: 16px;
            }

            .filter-btn {
                padding: 4px 10px;
                font-size: 11px;
            }

            .odds-box {
                padding: 6px 3px;
            }

            .odds-value {
                font-size: 11px;
            }

            .odds-amount {
                font-size: 9px;
            }

            .match-row {
                padding: 10px 8px;
            }
        }

/* ===== WRAPPER ===== */
.lcx-wrapper {
  max-width: 1500px;
  margin: auto;
  margin-bottom:3%;
  position: relative;
}

/* ===== TITLE ===== */
.lcx-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 26px;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ffd27d, #ffb703, #ffd27d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lcx-title span {
  color: #ffb703;
  margin: 0 8px;
}

/* ===== SLIDER ===== */
.lcx-slider-container {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.lcx-slider-track {
  display: flex;
  gap: 18px;
  transition: transform 0.65s cubic-bezier(.22,.61,.36,1);
}

/* ===== CARD ===== */
.lcx-card {
  min-width: 230px;
  height: 320px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 40px rgba(0,0,0,.85),
    inset 0 0 0 1px rgba(255,215,0,.12);
  transition: transform .4s ease, box-shadow .4s ease;
}

.lcx-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.95),
    rgba(0,0,0,.45),
    transparent
  );
  z-index: 1;
}

.lcx-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 30px 60px rgba(0,0,0,.95),
    0 0 30px rgba(255,183,3,.25);
}

/* ===== CARD TITLE ===== */
.lcx-card-title {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 90%;
  text-align: center;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .8px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffe8a3, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 12px rgba(255,183,3,.4);
}

/* ===== ARROWS ===== */
.lcx-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2a2a2a, #101010);
  box-shadow:
    inset 0 0 0 1px rgba(255,215,0,.25),
    0 8px 20px rgba(0,0,0,.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffb703;
  z-index: 5;
  transition: all .3s ease;
}

.lcx-arrow:hover {
  background: #ffb703;
  color: #000;
  box-shadow: 0 0 25px rgba(255,183,3,.8);
}

.lcx-arrow-left { left: -6px; }
.lcx-arrow-right { right: -6px; }
        .main-content {
                padding: 20px;
    position: relative;
    width: 100%;
    max-width: 1190px;
        }


        .slider-wrapper {
            max-width: 1240px;
            margin: 0 auto;
            background-color: #111;
            border: 1px solid #333;
            border-radius: 4px;
            overflow: hidden;
        }

        /* Header Section */
        .slider-header {
            background-color: #1a1a1a;
            background-image: radial-gradient(#333 10%, transparent 11%);
            background-size: 15px 15px;
            padding: 15px;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        .slider-header h2 {
            color: #2eb82e;
            margin: 0;
            font-size: 22px;
            text-transform: uppercase;
        }

        .diamonds {
            color: #d4af37;
            font-size: 14px;
        }

        /* Scrollable Container */
        .card-container {
            display: flex;
            gap: 0px;
            padding: 15px;
            overflow-x: auto;
            scroll-behavior: smooth;
            /* Hiding scrollbar */
            scrollbar-width: none; 
            -ms-overflow-style: none;
        }

        .card-container::-webkit-scrollbar {
            display: none;
        }

        .card {
            flex: 0 0 auto;
            width: 210px;
            height: 120px;
            border: 2px solid #333;
            border-radius: 4px;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .card:hover {
            border-color: #2eb82e;
            transform: scale(1.02);
        }

        .card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .banner-slider {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 5px;
        }

        .banner-card {
            height: 120px;
    border-radius: 0;
    border: 1px solid #fff;
    overflow: hidden;
    cursor: pointer;
    min-width: 0;
        }

        .banner-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cricket-section {
            background: #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
        }

        .section-header {
            background: linear-gradient(90deg, #ff6b35, #ff8c42);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .section-title {
            font-size: 18px;
            font-weight: bold;
        }

        .filter-buttons {
            display: flex;
            gap: 10px;
        }

        .filter-btn {
            padding: 5px 15px;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid white;
            border-radius: 20px;
            color: white;
            cursor: pointer;
            font-size: 12px;
        }

        .odds-header {
            display: grid;
            grid-template-columns: 3fr 1fr 1fr 1fr;
            padding: 10px 20px;
            background: #2a2a2a;
            font-weight: bold;
            text-align: center;
        }

        .odds-header div:first-child {
            text-align: left;
        }

        .match-row {
            display: grid;
            grid-template-columns: 3fr 1fr 1fr 1fr;
            padding: 5px 20px;
            border-bottom: 1px solid #2a2a2a;
            align-items: center;
        }

        .match-info {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .match-date {
            color: #ff6b35;
            font-size: 12px;
        }

        .match-title {
            font-size: 14px;
            font-weight: bold;
        }

        .match-subtitle {
            color: #999;
            font-size: 12px;
        }

        .play-icon {
            color: #4CAF50;
            font-size: 18px;
        }

        .odds-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .odds-box {
            padding: 10px;
            border-radius: 5px;
            text-align: center;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .odds-box:hover {
            transform: scale(1.05);
        }

        .odds-back {
            background: #b3d9ff;
            color: #000;
        }

        .odds-lay {
            background: #ffcccc;
            color: #000;
        }

        .odds-value {
            font-weight: bold;
            font-size: 14px;
        }

        .odds-amount {
            font-size: 11px;
        }

        .match-icons {
            display: flex;
            gap: 5px;
            align-items: center;
        }

        .icon-small {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #4CAF50;
            border-radius: 3px;
            font-size: 10px;
            color: #4CAF50;
        }
        
/*slider swiper*/
.swiper-container {
    width: 100%; /* Responsive width */
    max-width: 100%;
    margin: 5px auto;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.swiper-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
        border: 2px solid #fff;
}

.swiper-wrapper::-webkit-scrollbar { display: none; }

.swiper-slide {
    min-width: 100%;
    height: 100%; /* Default Desktop Height */
    position: relative;
    scroll-snap-align: start;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
}

.nav-btn:hover { background: #ff6b35; }
.prev { left: 15px; }
.next { right: 15px; }
 /* --- 1. Top Provider Navigation --- */
       /* --- 1. Top Provider Navigation --- */
.provider-row {
    display: flex;
    background-color: #080808; /* Darker for better contrast */
    border-bottom: 1px solid #222;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: sticky;
    top: 0;
    z-index: 100;
}

.provider-row::-webkit-scrollbar { display: none; }

.p-tab {
    display: flex;
    align-items: center;
    position: relative; /* Needed for the neon underline */
    padding: 0; /* Let the link handle the padding */
    border-right: 1px solid #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.p-tab a {
    display: block;
    padding: 5px;
    text-decoration: none;
    color: #666; /* Muted default text */
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Hover State */
.p-tab:hover {
    background-color: #111;
}

.p-tab:hover a {
    color: #aaa;
}

/* --- THE EYE-CATCHING ACTIVE STATE --- */

.p-tab.active {
    background: linear-gradient(to top, rgba(255, 106, 0, 0.1) 0%, transparent 100%);
}

.p-tab.active a {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
}

/* Neon Underline with Glow */
.p-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff6a00;
    box-shadow: 0 -2px 12px #ff6a00, 0 0 20px rgba(255, 106, 0, 0.8);
    border-radius: 4px 4px 0 0;
}

/* Optional: Slight "pop" on click */
.p-tab:active {
    transform: scale(0.97);
}

        /* --- 2. Category Tabs --- */
        .cat-row {
            display: flex;
            background-color: #000;
            padding: 5px;
            gap: 2px;
        }
        
        .cat-row {
    display: flex;             /* Align items in a row */
    overflow-x: auto;          /* Enable horizontal scrolling */
    overflow-y: hidden;        /* Prevent vertical scrolling */
    white-space: nowrap;       /* Prevent buttons from wrapping to the next line */
    gap: 10px;                 /* Space between buttons */
    padding: 10px;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* Optional: Hide the scrollbar for a cleaner look */
.cat-row::-webkit-scrollbar {
    display: none;
}

.cat-row {
    overflow-x: auto;
    scrollbar-width: thin;                 /* Firefox */
    scrollbar-color: #4f46e5 #e5e7eb;       /* thumb track */
}

/* Chrome, Edge, Safari */
.cat-row::-webkit-scrollbar {
    height: 8px;
}

.cat-row::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 10px;
}

.cat-row::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.cat-row::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #4f46e5, #2563eb);
}



.cat-btn img{    width: 38px;
    padding: 4px;
    margin-bottom: 10px;
        filter: invert(98%) sepia(0%) saturate(0%) hue-rotate(290deg) brightness(104%) contrast(101%);
    
}
        .cat-btn {
           flex: 0 0 auto;            /* Prevent buttons from shrinking */
    display: flex;
    align-items: center;
    cursor: pointer;
            background-color: #1a1a1a;
            border: 1px solid #333;
            padding: 10px 5px;
            text-align: center;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.2s ease;
        }
        .cat-btn i { font-size: 20px; margin-bottom: 4px; color: #555; }
        .cat-btn span { font-size: 10px; font-weight: bold; text-transform: uppercase; }

        /* Active State Fix */
        .cat-btn.active { 
                border: 1px solid #ff6a00 !important;
                background-color: #ff7f4a;
        }
        .cat-btn.active i { color: #ff6a00 !important; }

        /* --- 3. Content Panels --- */
        .tab-panel {
            padding: 10px;
            grid-template-columns:auto;
            gap: 10px;
        }
        .tab-panel.active { display: grid; }

        .game-card {
            width:100%;
            background: #1a1a1a;
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid #222;
            position: relative;
        }
        .game-card img { width: 100%; aspect-ratio: 3 / 2 !important; object-fit: cover; display: block; }
        .game-info {
            position: absolute;
            bottom: 0;
            width: 100%;
            background: rgba(0,0,0,0.85);
            padding: 8px 4px;
            text-align: center;
        }
        .game-title { color: #ffcc00; font-size: 10px; font-weight: bold; text-transform: uppercase; }

        

        @media (min-width: 769px) {
            /*.footer-mobile { display: none; }*/
            .tab-panel.active { grid-template-columns: repeat(5, 1fr); }
        }
/* Responsive Adjustments */
@media (max-width: 768px) {
    .swiper-slide { height: 125px; } /* Shorter on mobile */
    
    .slide-content h3 { font-size: 22px; }
    .slide-content p { font-size: 14px; }
    
    .nav-btn {
        padding: 10px;
        font-size: 14px;
    }
}

.slide-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    box-sizing: border-box;
    color: white;
}


		@media (max-width: 1370px)  {
		    .sidebar{top:56px;  width:200px;      overflow: hidden;}
   .main-content {
        width: clamp(100%, 100%, 100%);
        padding:0 6px;
    }
}