 * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
body {
  background-color: black;
       width: 100%;
            overflow-x: hidden;
            font-family: 'Arial', sans-serif;
}

/* navbar css */
 .navbar {
      background-color: #020e26;
      padding: 10px 20px;
    }
    .logo-img {
      width: 130px;
    }
  
  /* registerbtn */
 .register-btn {
            background-color: #ffd600;
            color: #000;
            border: none;
            padding: 12px 24px;
            border-radius: 5px;
            margin: 20px;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s;
        }

        .register-btn:hover {
            background-color: #e6c200;
        }

        /*register Modal css */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
        }

        .modal-content {
            background-color:  black;
            border: 1px solid white;
            margin: 4% auto;
            padding: 0;
            border-radius: 10px;
            width: 100%;
            max-width: 400px;
            /* max-height: 70vh; */
                height: 500px;
            position: relative;
            animation: slideIn 0.3s ease-out;
            display: flex;
            flex-direction: column;
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            background-color: #000c24;
            padding: 12px;
            border-radius: 10px 10px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }

        .logo img {
            display: flex;
            align-items: center;
             height: 50px;
            font-weight: bold;
        }

        .sign-in-link {
            color: #ffd600;
            text-decoration: none;
            font-size: 14px;
            margin-right: 20px;
        }

        .close {
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            background: none;
            border: none;
        }

        .close:hover {
            color: #fff;
        }

        .modal-body {
            padding: 20px 20px 0 20px;
            overflow-y: auto;
            flex: 1;
            -webkit-overflow-scrolling: touch;
        }

        .modal-body::-webkit-scrollbar {
            width: 0px;
            background: transparent;
        }

        .modal-body::-webkit-scrollbar-thumb {
            background: transparent;
        }
 
        .modal-body {
            -ms-overflow-style: none;  
            scrollbar-width: none; 
        }

        .modal-footer {
            padding: 5px 20px 5px 20px;
            flex-shrink: 0;
            background-color: #2a2a2a;
            border-radius: 0 0 10px 10px;
        }

        .modal-title {
            color: #888;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .modal-heading {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #fff;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-input {
            width: 100%;
            padding: 10px;
            background-color: #3a3a3a;
            border: 2px solid #4a4a4a;
            border-radius: 5px;
            color: #fff;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s;
        }

        .form-input:focus {
            border-color: #ffd600;
        }

        .form-input::placeholder {
            color: #888;
        }

        .register-submit-btn {
            width: 100%;
            background-color: #28a745;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .register-submit-btn:hover {
            background-color: #218838;
        }

        .select-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-select {
            width: 100%;
            padding: 10px;
            background-color: #152036;
            border: 2px solid #152036;
            border-radius: 5px;
            color: #fff;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s;
            appearance: none;
            cursor: pointer;
        }

        .form-select:focus {
            border-color: #ffd600;
            
        }

        .select-group::after {
            content: '▼';
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            color: #888;
        }

        .checkbox-group {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .checkbox-input {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .checkbox-label {
            color: #ccc;
            font-size: 14px;
            line-height: 1.4;
        }

        .checkbox-label a {
            color: #ffd600;
            text-decoration: underline;
        }

        .error-message {
            background-color: #8b0000;
            color: #fff;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-size: 14px;
            display: none;
        }

        .demo-section {
            text-align: center;
            margin-bottom: 20px;
        }

        .demo-section h2 {
            color: #ffd600;
            margin-bottom: 10px;
        }
        /* modal css end */
  
    .signin-link {
      color: white;
      font-size: 13px;
      text-decoration: underline;
    }

@media (max-width: 500px) {
    .logo-img{
      height: 50px;
    }
    .register-btn {
      padding: 2px 5px;
      border-radius: 5px;
      margin-left: 5px;
      font-size: 14px;
    }
    .modal-content {
      margin: 10% auto;
          width: 90%;
          max-width: 400px;
          max-height: 60vh;
        }
    
}


/* nav section */
.nav-container {
  background-color: #263045;
  margin: 2px 10px;
  border-radius: 6px;
  width: 99%;
}

.nav-tab {
  display: flex;
}

.nav-item {
  margin: 0 2px;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  text-decoration: none;
  color: #fffc;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  margin: 0 1px;
  border-top: 2px solid #263045;
}

.nav-link:hover {
  background-color: black;
  color: white;
  border-top: 2px solid #e3910a;
}

.nav-link i {
  margin-right: 8px;
  font-size: 14px;
  opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
  .nav-tab {
    flex-wrap: wrap;
    padding: 0 10px;
  }
  .nav-container{
    background-color: black;
  }
  .nav-link {
    padding: 10px 15px;
    border-top: 2px solid black;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .nav-link {
    padding: 8px 12px;
  }

  .nav-link i {
    margin-right: 6px;
  }
}

@media (max-width: 767px) {
  .scroll-div {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; 
  }

  .scroll-div::-webkit-scrollbar {
    display: none; 
  }

  .nav-tab {
    flex-wrap: nowrap;
    width: max-content;
  }
}

/* hero section css */

.hero {
  position: relative;
  height: 100%;
}
.swiper {
  width: 100%;
  height: 50%;
}
.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;

  object-fit: cover;
      border-radius: 3px;
}
/* Custom pagination styles */
.swiper-pagination {
  position: absolute;
  top: 20px;
  right: 20px;
  width: auto !important;
  height: 5%;
  left: auto !important;
  color: #e3910a;
  background: rgba(0, 0, 0, 0.5);
  padding: 0px 10px;
  border-radius: 20px;
  font-size: 14px;
}
.swiper-pagination-fraction {
  font-family: Arial, sans-serif;
}

@media (max-width: 480px) {
  .swiper {
    height: 100%;
  }
  .swiper-slide img {
    height: 100%;
  }
}

/* marquee section */
.jackpot-container {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  width: 100%;
  padding: 10px 0;
}

.jackpot-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
  position: relative;
}

.header-text {
  padding: 0 15px;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
}

.border-left,
.border-right {
  height: 2px;
  background: #e3910a;
  flex-grow: 1;
  max-width: 100%;
}

.jackpot-winners {
  background: #000;
  color: #fff;
  padding: 1px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 40s linear infinite;
}

.marquee-content i {
  color: #e3910a;
}

.jackpot-footer {
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Game Card  */
.casino-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.casino-header {
  background-color: #000c24;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.casino-title {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}

.more-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.more-link:hover {
  color: #ccc;
}

.arrow-icon {
  margin-left: 5px;
  font-size: 14px;
}

.casino-body {
  padding: 0 15px;
  overflow: hidden; 
}

.casino-row {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 15px;
  -ms-overflow-style: none; 
  scrollbar-width: none; 
}

.casino-row::-webkit-scrollbar {
  display: none;
}
 
.casino-col {
  flex: 0 0 auto;
  width: 160px;
}
 
.gamecard {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  background: #d9232e;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.gamecard:hover {
  transform: translateY(-5px);
}

.gamecard:hover .game-img {
  filter: brightness(0.7);
}

.gamecard:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
 
@media (min-width: 768px) {
  .casino-row {
    flex-wrap: wrap;
    overflow-x: visible;
    justify-content: flex-start;
    gap: 20px;
  }
  
  .casino-col {
    width: calc(20% - 16px);  
  }
}

@media (min-width: 992px) {
  .casino-col {
    width: calc(20% - 16px);
  }
  
  .play-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* social media links section */
.gradient-btn {
  background: linear-gradient(to right, #a259ff, #ff00cc);
  color: white;
  font-weight: bold;
  border-radius: 10px;
}
.gradient-btn:hover {
  opacity: 0.9;
}
.icon-box {
  background-color: #2b2b2b;
  padding: 10px;
  border-radius: 8px;
  margin-right: 10px;
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.aibutton{
  margin-top: 1px;
}

@media (max-width: 768px) {
   .aibutton{
  margin-top: 10px;
}
}

/* fotter css */

footer {
  padding: 60px 0;
}

/* @media (max-width: 768px) {
  .footer-container {
    width: 100%;
    padding: 0 1rem;
  }
} */

footer h6 {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: white;
}

footer a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 500;
}

footer a:hover {
  color: #fff;
}

.footer-cert {
  height: 50px;
}

.partner-logos img {
  max-height: 70px;
  margin: 20px;
  filter: grayscale(1);
}
.footer-para {
  font-size: 12px;
  text-align: center;
  padding: 2px 20px;
  color: #a19f9f;
}
.last-image {
  height: 50px;
}
.footer-bottom {
  margin-top: 5px;
  font-size: 13px;
  color: #bbb;
  padding: 1px 20px;
}
.footer-last {
  color: #e3910a;
  font-size: 15px;
  font-weight: 600;
}

.clock-container{
  font-size: 14px;
}


/* special games css */

        .field-set {
  border: 2px solid #ffd600;
  border-radius: 15px;
  padding: 10px;
  margin: 20px 0;
  background: black;
  position: relative;
  overflow: hidden;  
}

        .field-set legend {
            color: #ffd600;
            font-size: 2.5rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 3px;
            padding: 0 20px;
            margin: 0 auto;
            text-align: center;
            background: #000;
            border: none;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
            width: auto;
            float: none;
            text-decoration: underline;
        }

        .games-container {
            height: 100%;
        }

        .field-set::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700, #FFA500);
            border-radius: 15px;
            z-index: -1;
            opacity: 0.3;
            animation: borderGlow 3s ease-in-out infinite alternate;
        }

        @keyframes borderGlow {
            0% { opacity: 0.3; }
            100% { opacity: 0.6; }
        }

        @media (max-width: 768px) {
   .field-set legend{
    font-size: 1rem;
   }
}

/* swiper */
         .custom-swiper {
    width: 100%;
    height: 100%;
    padding: 10px 0;
  }

  .custom-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
     border-radius: 15px;
    overflow: hidden;
    
  }

  .custom-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  /* providers section */

   /* Search Section */
        .search-section {
            padding: 20px 0;
        }
        
        .search-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            padding: 0 20px;
        }
        
        .search-box {
            position: relative;
            width: 49%;
        }
        
        .search-input {
            width: 100%;
            padding: 12px 45px 12px 20px;
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 25px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 14px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .search-input::placeholder {
            color: rgba(255,255,255,0.7);
        }
        
        .search-input:focus {
            outline: none;
            border-color: #ffd700;
            background: rgba(255,255,255,0.15);
            box-shadow: 0 0 20px rgba(255,215,0,0.3);
        }

        .search-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 16px;
            opacity: 0.7;
            color: rgba(255,255,255,0.7);
        }
        
        .filter-bar {
            background: black;
            padding: 10px 0;
        }
        
        .filter-container {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding: 0 20px;
            scrollbar-width: none;  
            -ms-overflow-style: none; 
        }
        
        .filter-container::-webkit-scrollbar {
            display: none; 
        }
        
        .filter-btn {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            white-space: nowrap;
            flex-shrink: 0;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-block;
        }
        
        .filter-btn:hover,
        .filter-btn:focus {
            color: white;
            text-decoration: none;
        }
        
        .filter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .filter-btn:hover::before {
            left: 100%;
        }
        
        .filter-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            border-color: rgba(255, 255, 255, 0.6);
        }
        
        .filter-btn.active {
            background: linear-gradient(135deg, #ffd700, #ffb347);
            color: #333;
            border-color: #ffd700;
            font-weight: 600;
        }
        
        .filter-btn.active::after {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 12px;
            font-weight: bold;
        }
         
        .game-section {
            margin-top: 30px;
            padding: 5px 30px;
        }
        
        .game-card {
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            display: block;
            text-decoration: none;
            color: inherit;
        }
        
        .game-card:hover {
            text-decoration: none;
            color: inherit;
        }
        
        .game-card img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            transition: 0.3s ease;
            border-radius: 15px;
        }
        
        .game-card .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: none;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }
        
        .game-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }
        
        .game-card:hover img {
            transform: scale(1.1);
        }
        
        .game-card:hover .card-overlay {
            display: flex;
        }
        
        .card-overlay .btn {
            background: linear-gradient(135deg, #ffd700, #ffb347);
            border: none;
            color: #333;
            font-weight: 600;
            padding: 10px 25px;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .card-overlay .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        }
        
        .card-overlay .btn a {
            color: inherit;
            text-decoration: none;
        }
        
        @media (max-width: 768px) {
            .search-container {
                flex-direction: column;
                gap: 15px;
                padding: 0 15px;
            }
            
            .search-box {
                min-width: 100%;
            }
            
            .filter-container {
                padding: 0 15px;
                gap: 8px;
            }
            
            .filter-btn {
                padding: 8px 16px;
                font-size: 13px;
            }
        }


        /* live casino */
        .container-se {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        /* Search Section */
        .search-live-section {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgb(0 12 36);
            backdrop-filter: blur(10px);
            padding: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
        }

        .search-live-box {
            position: relative;
            flex: 1;
            min-width: 150px;
        }

        .search-live-input {
            width: 100%;
            padding: 12px 45px 12px 15px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 14px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .search-live-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .search-live-input:focus {
            outline: none;
            border-color: #ffd700;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        .search-live-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
        }

        .view-toggle {
            display: flex;
            gap: 10px;
            margin-left: auto;
            order: -1;
            width: 100%;
            justify-content: flex-start;
        }

        .view-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .view-btn.active {
            background: #ffd700;
            color: #333;
            border-color: #ffd700;
        }

        /* Sidebar */
        .sidebar {
            width: 100%;
            background: #000c24;
            backdrop-filter: blur(10px);
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px;
             overflow-y: auto;
            /* height: calc(100vh - 70px); */
        }

        .sidebar h3 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 24px;
            text-align: center;
            text-decoration: underline;
        }

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            gap: 10px;
            margin-bottom: 20px;
            width: 100%;
        }

        .provider-card {
         background: rgba(255, 255, 255, 0.1);
          border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            height: 50px;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 0;
        }

        .provider-card:hover {
            border-color: #ffd700;
        }

        .provider-card.active {
            border-color: #ffd700;
            font-weight: 600;
        }

        .provider-card img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 8px;
        }

        .all-card {
            font-size: 1.5rem;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            width: 100%;
        }

        .provider-list {
            display: none;
            width: 100%;
        }

        .provider-list a {
            display: block;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            padding: 10px 15px;
            margin-bottom: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            width: 100%;
            text-decoration: none;
            color: white;
        }

        .provider-list a:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: #ffd700;
        }

        .provider-list a.active {
            background: linear-gradient(135deg, #ffd700, #ffb347);
            color: #333;
            border-color: #ffd700;
            font-weight: 600;
        }

        /* Main Content */
        .main-content {
            width: 100%;
            padding: 15px;
            overflow: hidden;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            width: 100%;
        }

        .game-live-card {
            position: relative;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-decoration: none;
            color: white;
            display: block;
            width: 100%;
        }

        .game-live-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border-color: #ffd700;
        }

        .game-live-card img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            transition: transform 0.3s ease;
            display: block;
        }

        .game-live-card:hover img {
            transform: scale(1.05);
        }

        .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .game-live-card:hover .play-overlay {
            opacity: 1;
        }

        .play-live-btn {
            background: white;
            color: #333;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .play-live-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
 
        .grid-view .provider-grid {
            display: grid;
        }

        .grid-view .provider-list {
            display: none;
        }

        .list-view .provider-grid {
            display: none;
        }

        .list-view .provider-list {
            display: block;
        }
 
        @media (min-width: 768px) {
            .container-se {
                flex-direction: row;
            }
            
            .sidebar {
                width: 280px;
                height: calc(100vh - 70px);
                position: sticky;
                top: 70px;
            }
            
            .main-content {
                height: calc(100vh - 70px);
                overflow-y: auto;
            }
            
            .search-live-section {
                flex-wrap: nowrap;
                padding: 15px 20px;
            }
            
            .view-toggle {
                order: 0;
                width: auto;
                margin-left: auto;
            }
            
            .provider-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .provider-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .games-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .game-live-card img {
                height: 120px;
            }
            
            .search-live-input {
                padding: 10px 35px 10px 12px;
                font-size: 12px;
            }
        }
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: #000c24;
}
        

  .mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #263045;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    z-index: 1000;
  }

  .mobile-nav a {
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
  }

  .mobile-nav a.active {
    color: #32bde9;
  }

  .mobile-nav i {
    font-size: 18px;
    display: block;
    margin-bottom: 2px;
  }

  .center-icon {
    background: #f0c800;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    text-align: center;
    line-height: 56px;
    margin-top: -35px;
    color: #004a48;
    border: 3px solid white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    font-size: 24px;
  }

  /* Hide on desktop */
  @media (min-width: 768px) {
    .mobile-nav {
      display: none !important;
    }
  }
@media (max-width: 575.98px) {
 .logo a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px !important;
    font-weight: 700;
}
.topbar-custom {
    background-color: #020e26;
    padding: 8px 6px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn-signin {
    background-color: #32bde9;
    color: #fff;
    border: none;
    padding: 4px 12px;
    font-size: 12px !important;
    border-radius: 4px;
}
}



     .navbar {
      background-color: #0b1431;
      padding: 10px 20px;
    }
    .navbar .nav-link,
    .navbar .navbar-brand {
      color: #ffffff;
      font-weight: 500;
    }
    .navbar .nav-link:hover {
      color: #00cfff;
    }
    .topbar {
      display: flex;
      justify-content: end;
      align-items: center;
      background: #0b1431;
      padding: 5px 20px;
    }

    .modal-content {
      background-color: #0b1431;
      color: #fff;
      border: 1px solid #222;
    }
    .modal-header {
      border-bottom: 1px solid #333;
    }
    .modal-footer {
      border-top: 1px solid #333;
    }
  
    .form-check-label {
      color: #ccc;
    }
   .betslip-c h6 {
      padding: 10px;
    background: #394355;
    border-radius: 3px;
    border-bottom: 2px solid #32bde9;
    }