@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --primary-color: #002a6e;
    --secondary-color: #FFAE2B;
    --tertiary-color: #060E2A;
    --quaternary-color: #e6e600;
    --quinary-color: #282828;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    background-color: var(--tertiary-color);
    width: 100%;
    height: 100%;
    font-family: 'Ubuntu', sans-serif;
    overflow-y: scroll;
}

.top-bar{
  background: linear-gradient(to right, #000b2e,#000e3b , #000b2e) !important;
  padding: 10px 0;
}

.top-bar-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.top-bar-links-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.top-bar-link{
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.top-bar-link:hover {
  color: var(--secondary-color);
}

/* Toggle button styles */
.top-bar-toggle {
  display: none;
  justify-content: flex-end;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.top-bar-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.toggle-icon {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: all 0.3s ease;
}

.toggle-icon::before,
.toggle-icon::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.toggle-icon::before {
  top: -6px;
}

.toggle-icon::after {
  bottom: -6px;
}

/* Active state for toggle button */
.top-bar-toggle.active .toggle-icon {
  background-color: transparent;
}

.top-bar-toggle.active .toggle-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.top-bar-toggle.active .toggle-icon::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Mobile responsive styles for top bar */
@media (max-width: 768px) {
  .top-bar {
    padding: 8px 0;
  }
  
  .top-bar-header {
    padding: 10px;
    display: flex;
    justify-content: end;
  }
  
  .top-bar-links-wrapper {
    justify-content: center;
    gap: 12px;
  }
  
  .top-bar-link {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .top-bar {
    padding: 6px 0;
  }
  
  .top-bar-header {
    display: flex;
    justify-content: end;
    
  }
  
  .top-bar-links-wrapper {
    justify-content: center;
    gap: 10px;
  }
  
  .top-bar-link {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .top-bar-toggle {
    display: block;
  }
  
  .top-bar-links-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #000b2e,#000e3b , #000b2e);
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .top-bar-links-wrapper.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .top-bar-link {
    font-size: 11px;
    padding: 8px 0;
    text-align: center;
    width: 100%;
  }
}

  .navbar-custom {
    background:#0e1c49;

    border-bottom: 1px solid rgb(23, 42, 83);
  }

  .navbar-brand{
    width: 130px;
  }

  .login-btn{
    background:transparent;
    font-size: 16px;
    width: 100px;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    border: 1px solid #fff;
    border-radius: 5px;
  }

  .signup-btn{
    background:linear-gradient(to bottom, #1789f5,#0f72cf , rgb(10, 92, 168));
    font-size: 16px;
    width: 100px;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px;
  }
  .navbar-nav .nav-link {
    color: #fff;
    margin-right: 1rem;
    font-size: 1.25rem;
  }

  .navbar-nav .active,
  .navbar-nav a:hover {
    color: var(--secondary-color) !important;
  }
  .navbar-nav .nav-link:last-child {
    margin-right: 0;
  }
  .navbar-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .navbar-icons svg {
    color: #fff;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
  }
  .navbar-toggler {
    border: none;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }

  @media (max-width: 992px) {
    .navbar-nav .nav-link {
      margin-left: 1rem;
    }

    .navbar-icons {
      margin-left: 1rem !important;
    }
  }

  @media (max-width: 768px) {
    .navbar-nav .nav-link {
      font-size: 1rem;
      margin-left: 0.8rem;
    }

    .navbar-icons {
      margin-left: 0.8rem !important;
    }
  }

  @media (max-width: 576px) {
    .navbar-nav .nav-link {
      font-size: 0.875rem;
    }

    .navbar-icons {
      margin-left: 0.8rem !important;
    }
  }

  @media (max-width: 480px) {
    .navbar-nav .nav-link {
      font-size: 0.75rem;
    }

    .navbar-icons {
      margin-left: 0.8rem !important;
    }
  }

  @media (max-width: 320px) {
    .navbar-nav .nav-link {
      font-size: 0.625rem;
    }
    .navbar-icons {
      margin-left: 0.8rem !important;
    }
  }


  .content{
    margin-top: 10px;
  }

  .left-card{
    background:linear-gradient(to bottom, #0f1c49,#0a1a38 );
    width: 100%;
    height: 100%;
    border-radius: 5px;
    padding: 10px;

  }

  .left-card-header-logo{
    background: #6271a05b;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    padding: 3px;
  }
  .left-card-header-logo img{
    width: 100%;
    object-fit: contain;
  }

  .left-card-category-item{
    background: #6271a05b;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    padding: 5px;
    color: #fff;
    text-decoration: none;
  }

  .left-card-category-item:hover{
    background: linear-gradient(to right, #e7d90a67,#6271a05b );
    transition: all 0.3s ease;
    scale: 1.05;
  }

  .left-card-category-item img{
    width: 16px;
    margin-left: 15px;
  }


  .topbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    padding: 2px 0;
    
}

.topbar-custom {
  width: 100%;
  padding: 0;
}

.topbar-icons-row a {
  background: #181c22;
  border-radius: 8px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.topbar-icons-row a:focus, .topbar-icons-row a:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.topbar-icons-row img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.mobile-app-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-app-btn img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.topbar-links {
  margin-left: 2px;
}
.topbar-links a {
  color: #181c26;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.2s;
}
.topbar-links a.active,
.topbar-links a:hover {
  color: var(--secondary-color);
  transition: color 0.2s;
}

@media (max-width: 768px) {
  .topbar-links a {
    font-size: 15px;
  }
  .topbar-icons-row a,
  .mobile-app-btn {
    width: 36px;
    height: 36px;
  }
  .topbar-icons-row img,
  .mobile-app-btn img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 576px) {
  .topbar-custom .container-fluid {
    padding-left: 8px;
    padding-right: 8px;
  }
  .topbar-links {
    gap: 0.7rem !important;
    margin-top: 4px;
  }
}


.banner-winners-container {
  color: #fff; 
}

.swiper {
  overflow: hidden;
}
.winners-today {
  background: var(--tertiary-color);
  border-radius:  0px 0px 5px 5px;
  border: 1px solid #0f72cf;

}
.winners-header {
  padding: 10px;
  border-radius: 5px 5px 0 0;
  background: #0f72cf4d ;
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 12px;
}
.winners-list-outer {
  padding: 10px;
  overflow: hidden;
  height: 220px; /* Adjust as needed */
  position: relative;
}
.winners-list {
  list-style: none;
  margin: 0;
  padding: 0;
  animation: scrollWinners 8s linear infinite;
}
.winners-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #22304d;
  font-size: 1em;
}
.winner-user img, .winner-amount img {
  vertical-align: middle;
  margin-right: 4px;
}
@keyframes scrollWinners {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}




.card-body-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: rgba(0,0,0,0.7);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.banner-card:hover .card-body-overlay {
  height: 100%;
  justify-content: center;
  background: rgba(0,0,0,0.85);
}

.banner-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--secondary-color);
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.banner-card-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
  height: 0;
  overflow: hidden;
}

.banner-card:hover .banner-card-content {
  opacity: 1;
  transform: translateY(0);
  height: auto;
  margin-top: 10px;
}

.banner-card:hover .banner-card-title {
  margin-bottom: 15px;
}

.banner-card-main h4 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
}

.banner-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.banner-card-list li {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;

}

.banner-card-list li:before {
  content: "•";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}


/* Scores Section */

.scores-header{
  background: #181c22;
  border-radius: 6px;
  padding: 1px;
  height: 30px;
}

.text-section{
  width: 100%;
  background: var(--secondary-color);
  border-radius: 6px 0px 0px 6px;
}

.text-section h2{
  font-size: 18px;
  color: #000;
  font-weight: 500;

}



.scores-header {
  background: #181d23;
  border-radius: 8px;
  padding: 0;
  height: 36px;
  overflow: hidden;
}

.live-label {
  background: #ffae2b;
  border-radius: 8px 0 0 8px;
  padding: 0 16px 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  font-style: italic;
  font-weight: bold;
  font-size: 1.1rem;
}

.see-all-link{
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-right: 10px;
}

.live-count{
  width: 30px;
  height: 30px;
  line-height: 20px;
  background: #181d23;
  border-radius: 70px;
  padding: 5px;
  font-size: 12px;
  font-weight: 500;
  color:  #fff;
}

.footer{
  background-color: transparent;
  position: relative;
  bottom: 0;
  width: 100% ;
}

.footer-title{
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  text-decoration: none;
}

.footer-desc{
  color: #fff;
  font-size: 18px;
  width: 70%;
  margin: 0 auto;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.footer-links{
  color: #0f72cf;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;

}

.footer-links a{
  
  color: #0f72cf;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

.footer-about-title h3{
  margin-top: 60px;
  opacity: 0.8;
  color: #fff;
  font-size: 20px !important;
  font-weight: 500;
  text-decoration: none;
}

.footer-about p{
  color: #fff;
  font-size: 14px;
  opacity: 0.8;
  font-weight: 400;
  text-decoration: none;
  margin-top: 20px;
}


.footer-bottom-links{
  color: #fff;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.footer-logo{
 width: 250px;
 padding: 10px;
}

.footer-bottom-links a{
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy{
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding-bottom: 20px;
}

.team-fixtures-swiper {
  width: 100%;
}

.hot-game-card {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fixture-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 1px;
}


.live-score-card {
  background: linear-gradient(to bottom, #243f68, #0a1a30d2);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  min-width: 260px;
  max-width: 300px;
}

.league-badge {
  color: #fff;
  background:  linear-gradient(to bottom, #3d639b, #285086d2);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  padding: 4px 18px;
  margin-bottom: 8px;
  display: inline-block;
}

.live-team-logo {
  width: 48px;
  height: 48px;
  padding: 4px;
}
.live-score-date {
  text-align: center;
}
.live-score-odds {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 8px;
}
.odds-btn {
  background: #0f57b6bb;
  color: #ccc;
  border-radius: 6px;
  padding: 2px 12px;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 2px;
  display: inline-block;
}
.put-now-btn {
  background: linear-gradient(to bottom, #2bb1ff, #0f72cf);
  border: none;
  color: #fff;
  border-radius: 6px;
  padding: 6px 24px;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.put-now-btn:hover {
  background: rgb(43, 85, 201);
  color: #fff;
}

.scores-body {
  background: #23262a;
  border-radius: 10px;
  padding: 12px 0 12px 0;
  margin-top: 10px;
}

.scores-swiper {
  width: 100%;
  padding-bottom: 8px;
}

.score-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 0 4px #23262a;
  padding: 12px 14px 10px 14px;
  min-width: 270px;
  max-width: 320px;
  margin: 0 6px;
  font-size: 15px;
}

.score-card-header {
  font-size: 13px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-status {
  color: #e53935;
  font-weight: bold;
  font-size: 13px;
  margin-right: 4px;
}

.match-title {
  color: #444;
  font-size: 13px;
}

.score-card-teams {
  margin-bottom: 4px;
}

.team-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.team-flag {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
}

.team-name {
  font-weight: 600;
  color: #222;
  font-size: 15px;
}

.team-score {
  margin-left: auto;
  font-weight: bold;
  color: #222;
  font-size: 15px;
}

.over {
  color: #888;
  font-weight: normal;
  font-size: 12px;
  margin-right: 2px;
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #e53935;
  border-radius: 50%;
  margin-left: 2px;
  vertical-align: middle;
}

.score-card-status {
  font-size: 13px;
  color: #444;
  margin-bottom: 6px;
}

.score-card-links {
  display: flex;
  gap: 12px;
  font-size: 14px;
}

.score-card-links a {
  color: #23262a;
  text-decoration: none;
  font-weight: 500;
}

.swiper-button-next.score-swiper-next {
  background: #ffae2b;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #23262a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.swiper-button-next.score-swiper-next:after {
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .score-card {
    min-width: 90vw;
    max-width: 95vw;
    font-size: 14px;
    padding: 10px 6px 8px 10px;
  }
  .scores-body {
    padding: 6px 0;
  }
}

/* Responsive Container */
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Desktop Container Styles */
@media (min-width: 992px) {
    .container-fluid {
        max-width: 100%;
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }
    
    .px-5 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }
}

/* Tablet Container Styles */
@media (min-width: 768px) and (max-width: 991px) {
    .container-fluid {
        max-width: 100%;
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
    
    .px-5 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }
}

/* Mobile Container Styles */
@media (max-width: 767px) {
    .container-fluid {
        max-width: 100%;
        padding-right: 1rem;
        padding-left: 1rem;
    }
    
    .px-5 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
}

/* High Resolution Display Support */
@media (min-width: 1920px) {
    .container-fluid {
        max-width: 100%;
        padding-right: 3rem;
        padding-left: 3rem;
    }
    
    .px-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }
}

/* Responsive Typography */
html {
    font-size: 16px;
}

@media (min-width: 1200px) {
    html {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 12px;
    }
}

/* Responsive Banner Section */
.banner-section {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .banner-section {
        margin-top: 1.5rem;
    }
    
    .banner-card-title {
        font-size: 1rem;
    }
    
    .banner-card-main h4 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .banner-section {
        margin-top: 1rem;
    }
    
    .banner-card {
        margin-bottom: 1rem;
    }
}

/* Responsive Scores Section */
.scores-section {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .scores-section {
        margin-top: 1.5rem;
    }
    
    .score-card {
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .scores-section {
        margin-top: 1rem;
    }
    
    .score-card {
        min-width: 200px;
    }
    
    .team-row {
        flex-wrap: wrap;
    }
}

/* Responsive Live Score Section */
.live-score-section {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .live-score-section {
        margin-top: 1.5rem;
    }
    
    .live-score-card {
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .live-score-section {
        margin-top: 1rem;
    }
    
    .live-score-card {
        min-width: 180px;
        padding: 12px;
    }
    
    .live-team-logo {
        width: 36px;
        height: 36px;
    }
}

/* Responsive Team Fixtures Section */
.team-fixer-section {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .team-fixer-section {
        margin-top: 1.5rem;
    }
    
    .team-fixture-card {
        min-width: 100px;
        min-height: 100px;
    }
}

@media (max-width: 768px) {
    .team-fixer-section {
        margin-top: 1rem;
    }
    
    .team-fixture-card {
        min-width: 80px;
        min-height: 80px;
    }
    
    .fixture-flag {
        width: 50px;
        height: 35px;
    }
}

/* Responsive Footer */
.footer {
    margin-top: 4rem;
}

@media (max-width: 992px) {
    .footer {
        margin-top: 3rem;
    }
    
    .footer-desc {
        width: 90%;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .footer {
        margin-top: 2rem;
    }
    
    .footer-desc {
        width: 100%;
        font-size: 14px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
}


@media (max-width: 920px ) and (min-width: 576px) {
  .card-body-overlay {
    height: 40%;
  }
}


@media (max-width: 376px) {
  .card-body-overlay {
    height: 45%;
  }
}


/* Touch Device Optimizations */
@media (hover: none) {
    .banner-card:hover img {
        transform: none;
    }
    
    .banner-card:hover .card-body-overlay {
        height: 30%;
    }
    
    .banner-card:hover .banner-card-content {
        opacity: 0;
        height: 0;
    }
    
    .put-now-btn:hover {
        background: #181c22;
        color: #FFAE2B;
    }
}

/* Print Styles */
@media print {
    .navbar-custom,
    .topbar-custom,
    .footer {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .container-fluid {
        width: 100%;
        max-width: none;
    }
}

.feature-banner-section {
  margin-bottom: 2rem;
  overflow: hidden;
}

.feature-banner-bg {
  width: 100%;
  background: linear-gradient(to bottom, #181c22 0%, #181c22 50%, #e5e4e2 50%, #e5e4e2 100%);
  border-radius: 12px;
  overflow: hidden;
  min-height: 440px;
}

.feature-banner-card {
  background: transparent !important;
  box-shadow: none !important;
  height: 100%;
}

.feature-banner-left {
  background: transparent !important;
  height: 100%;
}

.feature-banner-images {
  position: relative;
  height: 100%;
  width: 100%;
  min-height: 300px;
}

.feature-banner-img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.feature-banner-right {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-banner-top {
  background: #181c22;
  width: 100%;
  z-index: 2;
  padding: 1.25rem 1rem 1rem 1rem;
  box-sizing: border-box;
  position: static;
}

.feature-banner-bottom {
  background: transparent;
  padding: 0 20px 20px;
  color: #23262a;
}

.feature-banner-list {
  color: #23262a;
  font-size: 1.15rem;
  margin: 0;
  padding-left: 1.2em;
}

.feature-banner-list li {
  margin-bottom: 0.8em;
  line-height: 1.4;
}

.feature-banner-label{
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.feature-banner-img:nth-child(1) { left: 20px; z-index: 3; }
.feature-banner-img:nth-child(2) { left: 120px; z-index: 2; }
.feature-banner-img:nth-child(3) { left: 220px; z-index: 1; }
.feature-banner-meta,
.feature-banner-title,
.feature-banner-list{
  color: #fff !important;
}

.feature-banner-list li{
  font-size: 20px;
  font-weight: 500;
  color: #23262a;
}
.feature-banner-meta {
  color: #bdbdbd;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  padding: 0 1rem;
}
.feature-banner-title {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  padding: 0 1rem;
}
.feature-banner-action .btn ,
.swiper-button-next,
.swiper-button-prev{
  background: var(--secondary-color) !important;
  color: #23262a !important;
  border-radius: 50%;
  padding: 25px;
 
}
.swiper-button-prev{
  display: none;
}

.swiper-button-next:after
{
  font-size: 20px;
  font-weight: 500;
}


.feature-banner-action .btn svg {
  stroke: #23262a !important;
}

@media (max-width: 991px) {
  .feature-banner-bg {
    min-height: auto;
  }
  
  .feature-banner-card {
    flex-direction: column;
  }
  
  .feature-banner-left {
    width: 100% !important;
    padding: 1rem !important;
  }
  
  .feature-banner-images {
    min-height: 250px;
  }
  
  .feature-banner-right {
    width: 100% !important;
    padding: 0;
  }
  
  .feature-banner-top {
    padding: 1.5rem 0 1rem;
  }
  
  .feature-banner-bottom {
    padding: 0;
  }
  
  .feature-banner-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem;
  }
  
  .feature-banner-list {
    font-size: 1rem;
  }
  
  .feature-banner-list li {
    margin-bottom: 0.5em;
    font-size: 16px;
  }
  
  .feature-banner-meta,
  .feature-banner-title {
    padding: 0 1rem;
  }
}

@media (max-width: 767px) {
  .feature-banner-bg {
    border-radius: 8px;
  }
  
  .feature-banner-images {
    min-height: 200px;
  }
  
  .feature-banner-left {
    padding: 1.25rem 0.75rem 0.75rem;
  }
  
  .feature-banner-right {
    padding: 0;
  }
  
  .feature-banner-title {
    font-size: 1.25rem !important;
    margin-bottom: 0.5rem;
  }
  
  .feature-banner-meta,
  .feature-banner-title {
    padding: 0 0.75rem;
  }
}

@media (max-width: 576px) {
  .feature-banner-bg {
    min-height: auto;
  }
  
  .feature-banner-images {
    min-height: 180px;
  }
  
  .feature-banner-left {
    padding: 1rem 0.5rem 0.5rem;
  }
  
  .feature-banner-right {
    padding: 1rem 0.5rem 0.5rem;
  }
  
  .feature-banner-title {
    font-size: 1.1rem !important;
    line-height: 1.3;
    margin-bottom: 0.4rem;
  }
  
  .feature-banner-meta,
  .feature-banner-title {
    padding: 0 0.5rem;
  }
  
  .feature-banner-label {
    font-size: 1.2rem;
    margin-left: 15px;
  }
}

@media (max-width: 375px) {
  .feature-banner-images {
    min-height: 160px;
  }
  
  .feature-banner-top {
    padding: 0.75rem 0.5rem 0.5rem;
  }
  
  .feature-banner-title {
    font-size: 1rem !important;
    margin-bottom: 0.3rem;
  }
  
  .feature-banner-meta,
  .feature-banner-title {
    padding: 0 0.5rem;
  }
}

.top-stories-section {
  background: #23262a;
  border-radius: 16px;
}
.story-card {
  min-width: 200px;
  max-width: 240px;
  margin: 0 auto;
  background: transparent;
}
@media (max-width: 991px) {
  .story-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .story-card img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: cover;
    border-radius: 12px;
  }
}
@media (max-width: 767px) {
  .story-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .story-card img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: cover;
    border-radius: 12px;
  }
}

.match-coverage-section {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.match-coverage-header {
  background: #23262a;
  border-radius: 8px 8px 0 0;
}
.coverage-tab.active,
.coverage-tab:focus {
  background: #FFAE2B !important;
  color: #23262a !important;
  font-weight: 700;
}
.coverage-tab {
  background: #444 !important;
  color: #fff !important;
  font-weight: 500;
  border: none;
  margin-right: 8px;
}
.match-coverage-content {
  background: #e5e4e2;
  border-radius: 0 0 8px 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.match-coverage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
  max-height: 200px;
}
@media (max-width: 767px) {
  .match-coverage-content {
    flex-direction: column;
    padding: 1rem !important;
  }
  .match-coverage-img {
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 1rem !important;
  }
  .match-coverage-details h4 {
    font-size: 1.1rem;
  }
}

/* Container padding for all screens */
.container-fluid, .px-5 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
@media (min-width: 576px) {
  .container-fluid, .px-5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
}
@media (min-width: 992px) {
  .container-fluid, .px-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
}
@media (min-width: 1600px) {
  .container-fluid, .px-5 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
}

/* Responsive font sizes */
html { font-size: 15px; }
@media (min-width: 1200px) { html { font-size: 17px; } }
@media (max-width: 768px) { html { font-size: 14px; } }
@media (max-width: 576px) { html { font-size: 12px; } }

/* Swiper slide sizing for mobile */
.swiper-slide .story-card,
.swiper-slide .score-card,
.swiper-slide .live-score-card,
.swiper-slide .team-fixture-card {
  min-width: 90vw;
  max-width: 95vw;
}
@media (min-width: 576px) {
  .swiper-slide .story-card,
  .swiper-slide .score-card,
  .swiper-slide .live-score-card,
  .swiper-slide .team-fixture-card {
    min-width: 220px;
    max-width: 260px;
  }
}

/* Responsive images */
img, .img-fluid {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive Match Coverage */
.match-coverage-content {
  flex-direction: row;
}
@media (max-width: 767px) {
  .match-coverage-content {
    flex-direction: column;
    padding: 1rem !important;
  }
  .match-coverage-img {
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 1rem !important;
  }
  .match-coverage-details h4 {
    font-size: 1.1rem;
  }
}

/* Responsive Top Stories */
@media (max-width: 991px) {
  .story-card img { max-height: 400px !important; }
}
@media (max-width: 767px) {
  .top-stories-section { padding: 1rem !important; }
  .story-card img { max-height: 400px !important; }
}

/* Responsive Swiper navigation buttons */
.swiper-button-next, .swiper-button-prev {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50%;
  background: #ffae2b !important;
  color: #23262a !important;
  font-size: 1.2rem !important;
}
@media (max-width: 576px) {
  .swiper-button-next, .swiper-button-prev {
    width: 24px !important;
    height: 24px !important;
    font-size: 1rem !important;
  }
}

.coverage-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 50%; /* 2:1 aspect ratio fallback */
  background: #eee;
  overflow: hidden;
}
.coverage-img-wrapper img.coverage-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .coverage-img-wrapper {
    aspect-ratio: 1.7 / 1;
    min-height: 160px;
    margin-bottom: 1rem;
  }
}

.wrapper {
    max-width: 1700px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 1800px) {
    .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}



.hero-section{
  background: var(--primary-color);
}

.sports-tabs .nav-tabs {
  border-bottom: none;
  padding-bottom: 30px;
  border-radius: 0.5rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.sports-tabs .nav-link {
  color: #bfc3c9;
  background: none;
  border: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  background: transparent !important;
  color: #fff !important;
  transition: all 0.3s ease;
}
.sports-tabs .nav-link.active::after {
  content: "";
  display: block;
  height: 2px;
  background: #ffc107;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -4px;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.sports-tabs .tab-icon {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}
.sports-tabs .dropdown-menu {
  background: #23272f;
  color: #bfc3c9;
}
.sports-tabs .dropdown-item {
  color: #bfc3c9;
}
.sports-tabs .dropdown-item:hover {
  color: #fff;
  background: #343a40;
}

.left-sidebar {
 
  border-radius: 10px;
  padding: 24px 18px 18px 18px;
  margin-bottom: 24px;
}

.sidebar-title {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #23262a;
  text-transform: uppercase;
}

.sidebar-title i {
  font-size: 1.1rem;
  color: #23262a;
}

.league-list {
  margin: 0 0 0.5rem 0;
  padding: 0;
}

.league-list li {
  font-size: 1rem;
  color: #23262a;
  margin-bottom: 0.3rem;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.2s;
}

.league-list li:hover {
  color: #ffae2b;
}

.sidebar-divider {
  border: none;
  border-top: 2px solid #e6e6e6;
  margin: 0.5rem 0 1rem 0;
  width: 60%;
}

.sidebar-banner img {
  width: 100%;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}




.wrapper-page {
  max-width: 2400px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 2400px) {
  .wrapper-page {
      padding-left: 40px;
      padding-right: 40px;
  }
}

/* Banner Slider Styles */
.banner-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 0;
}

.bannerSwipper {
  width: 100%;
  height: 100%;
}

.bannerSwipper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.bannerSwipper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.bannerSwipper .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  z-index: 10;
}

.bannerSwipper .swiper-pagination-bullet {
  width: 10px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 4px !important;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 0px !important;
  transform: scale(1.2);
}

.bannerSwipper .swiper-pagination-bullet-active {
  background: #183ebb;
  
}

@media (max-width: 768px) {
  .banner-slider {
    /*height: 250px;*/
  }
  
  .bannerSwipper .swiper-pagination {
    bottom: 15px;
  }
  
  .bannerSwipper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 3px !important;
  }
}

@media (max-width: 576px) {
  .banner-slider {
    /*height: 200px;*/
  }
  
  .bannerSwipper .swiper-pagination {
    bottom: 10px;
  }
  
  .bannerSwipper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 2px !important;
  }
}

/* Banner Section Layout */
.banner-section {
  margin-bottom: 2rem;
}


@media (max-width: 768px) {
  .banner-winners-container {
    height: auto;
  }
}

@media (max-width: 576px) {
  .banner-winners-container {
    height: auto;
  }
}


.horizontal-spinner {
  width: 100%;
  height: auto;
  padding: 10px 0;
}

.hot-game-station-card{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100 !important;
  cursor: pointer;
}

.horizontal-spinner .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.horizontal-spinner .swiper-slide img {
  width: 150px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.2s;
}
.horizontal-spinner .swiper-slide img:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.hot-game-swiper .swiper-wrapper {
  align-items: flex-start;
}

.hot-game-img-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hot-game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hot-game-title {
  margin-top: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  min-height: 36px;
}
.hot-game-arrow-btn {
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  background: #ffe600;
  border: none;
  border-radius: 6px;
  padding: 6px 8px;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

/* Hot Game Swiper Navigation Arrows */
.hot-game-swiper-prev, .hot-game-swiper-next {
  color: #ffe600;
  background: #23262a;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  top: 40%;
  z-index: 50;
}
.hot-game-swiper-prev {
  z-index: 50;
}
.hot-game-swiper-next {
  z-index: 50;
}
.hot-game-swiper-prev::after, .hot-game-swiper-next::after {
  font-size: 18px;
  font-weight: bold;
}

.new-games-section{
  background: url(../images/bg-newgames2.png) no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  padding:0px !important;
  border: 1px solid rgba(18, 125, 247, 0.726);
}


.live-game-img-wrapper{
  height: auto !important;
}

.live-game-img-wrapper img:hover{
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.live-game-img-wrapper img{
  transition: transform 0.2s;
}

.logo-marquee-outer {
  width: 100%;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.logo-marquee-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: logo-marquee-scroll 25s linear infinite;
  will-change: transform;
}
.logo-marquee-img {
  width: 200px;
  filter: drop-shadow(0 2px 8px #0008);
  background: transparent;
  padding: 0 10px;
}
@keyframes logo-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.bet-table-section {
  background: linear-gradient(180deg, #1a2a4f 0%, #0f1e3b 100%);
  border-radius: 8px;
  box-shadow: 0 2px 8px #0002;
  border: 1px solid #23335a;
}

.bet-table-tabs {
  gap: 8px;
}

.bet-tab {
  background: #2176ff;
  color: #fff;
  border: none;
  border-radius: 4px 4px 0 0;
  padding: 6px 24px;
  font-weight: 500;
  font-size: 1rem;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.2s;
  opacity: 1;
}
.bet-tab:not(.active) {
  background: #23335a;
  color: #b0b8c1;
  opacity: 0.7;
  cursor: pointer;
}
.bet-tab.active {
  background: #2176ff;
  color: #fff;
  opacity: 1;
}

.bet-table-wrapper {
  overflow-x: auto;
}

.bet-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}

.bet-table th, .bet-table td {
  text-align: center;
  padding: 12px 0;
  font-size: 1rem;
}

.bet-table th {
  background: #cfd8df;
  color: #222;
  font-weight: 600;
  border-bottom: 2px solid #b0b8c1;
}

.bet-table tr {
  border-bottom: 1px solid #3a4a6a;
}

.bet-table td {
  color: #fff;
  min-height: 40px;
}

.show-more-btn {
  background: linear-gradient(90deg, #2176ff 0%, #33aaff 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 32px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 8px #0002;
  cursor: pointer;
  transition: background 0.2s;
}
.show-more-btn:hover {
  background: linear-gradient(90deg, #33aaff 0%, #2176ff 100%);
}


.footer-payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px; /* space between logos */
  
}

.footer-payment-logos img {
  margin-top: 10px;
  height: 36px;
  width: 50px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px #0002);
}

/* Responsive Bet Table Styles */
@media (max-width: 768px) {
  .bet-table-section {
    margin: 0 10px;
    border-radius: 6px;
  }
  
  .bet-table-tabs {
    gap: 4px;
    padding: 0 10px;
  }
  
  .bet-tab {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 4px 4px 0 0;
  }
  
  .bet-table-wrapper {
    padding: 0 10px;
  }
  
  .bet-table {
    font-size: 0.85rem;
  }
  
  .bet-table th, .bet-table td {
    padding: 8px 4px;
    font-size: 0.8rem;
  }
  
  .bet-table th {
    font-size: 0.85rem;
    padding: 10px 4px;
  }
  
  .show-more-btn {
    padding: 8px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .bet-table-section {
    margin: 0 5px;
    border-radius: 4px;
  }
  
  .bet-table-tabs {
    gap: 2px;
    padding: 0 5px;
    flex-direction: column;
  }
  
  .bet-tab {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-right: 0;
    margin-bottom: 2px;
  }
  
  .bet-table-wrapper {
    padding: 0 5px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .bet-table {
    min-width: 500px; /* Ensure table doesn't get too cramped */
    font-size: 0.75rem;
  }
  
  .bet-table th, .bet-table td {
    padding: 6px 3px;
    font-size: 0.7rem;
  }
  
  .bet-table th {
    font-size: 0.75rem;
    padding: 8px 3px;
  }
  
  .bet-table th:nth-child(1),
  .bet-table td:nth-child(1) {
    min-width: 60px;
  }
  
  .bet-table th:nth-child(2),
  .bet-table td:nth-child(2) {
    min-width: 80px;
  }
  
  .bet-table th:nth-child(3),
  .bet-table td:nth-child(3) {
    min-width: 70px;
  }
  
  .bet-table th:nth-child(4),
  .bet-table td:nth-child(4) {
    min-width: 60px;
  }
  
  .bet-table th:nth-child(5),
  .bet-table td:nth-child(5) {
    min-width: 80px;
  }
  
  .show-more-btn {
    padding: 6px 20px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .bet-table-section {
    margin: 0 2px;
  }
  
  .bet-table-tabs {
    padding: 0 2px;
  }
  
  .bet-table-wrapper {
    padding: 0 2px;
  }
  
  .bet-table {
    min-width: 450px;
    font-size: 0.7rem;
  }
  
  .bet-table th, .bet-table td {
    padding: 5px 2px;
    font-size: 0.65rem;
  }
  
  .bet-table th {
    font-size: 0.7rem;
    padding: 7px 2px;
  }
  
  .show-more-btn {
    padding: 5px 16px;
    font-size: 0.75rem;
  }
}

@media (max-width: 375px) {
  .bet-table {
    min-width: 400px;
    font-size: 0.65rem;
  }
  
  .bet-table th, .bet-table td {
    padding: 4px 1px;
    font-size: 0.6rem;
  }
  
  .bet-table th {
    font-size: 0.65rem;
    padding: 6px 1px;
  }
  
  .bet-tab {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
  
  .show-more-btn {
    padding: 4px 14px;
    font-size: 0.7rem;
  }
}

/* Main Game Categories Responsive Styles */
.main-game-categories {
  margin-top: 2rem;
  padding: 0 1rem;
}

.game-categories-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.game-category-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 140px;
  width: 100%;
  max-width: 200px;
}

.game-category-card:hover {
  transform: translateY(-5px);
}

.game-category-icon {
  width: 80px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.game-category-card:hover .game-category-icon {
  transform: scale(1.1);
}

.game-category-label {
  text-align: center;
  margin-top: 1rem;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

/* Tablet Responsive */
@media (max-width: 768px) {
  .main-game-categories {
    margin-top: 1.5rem;
    padding: 0 0.75rem;
  }
  
  .game-categories-grid {
    gap: 1rem;
  }
  
  .game-category-card {
    padding: 1.25rem 0.75rem;
    min-height: 120px;
    max-width: 160px;
  }
  
  .game-category-icon {
    width: 70px;
  }
  
  .game-category-label {
    font-size: 13px;
    margin-top: 0.75rem;
  }
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .main-game-categories {
    margin-top: 1rem;
    padding: 0 0.5rem;
  }
  
  .game-categories-grid {
    gap: 0.75rem;
    justify-content: space-around;
  }
  
  .game-category-card {
    padding: 1rem 0.5rem;
    min-height: 110px;
    max-width: 140px;
  }
  
  .game-category-icon {
    width: 65px;
  }
  
  .game-category-label {
    font-size: 12px;
    margin-top: 0.5rem;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {

  .bannerSwipper{
    height: 120px;
  }
  .bannerSwipper .swiper-slide{
    height: auto;
  }

  .swiper-wrapper {
    min-height: 120px;
     height: auto; 
    
}

  .main-game-categories {
    margin-top: 0.75rem;
    padding: 0 0.25rem;
  }
  
  .game-categories-grid {
    gap: 0.5rem;
    justify-content: space-around;
  }
  
  .game-category-card {
    padding: 0.75rem 0.5rem;
    min-height: 100px;
    max-width: 120px;
  }
  
  .game-category-icon {
    width: 55px;
  }
  
  .game-category-label {
    font-size: 11px;
    margin-top: 0.5rem;
  }
}

/* Extra Small Mobile Responsive */
@media (max-width: 375px) {
  .main-game-categories {
    margin-top: 0.5rem;
    padding: 0 0.25rem;
  }
  
  .game-categories-grid {
    gap: 0.4rem;
    justify-content: space-around;
  }
  
  .game-category-card {
    padding: 0.6rem 0.4rem;
    min-height: 90px;
    max-width: 110px;
  }
  
  .game-category-icon {
    width: 50px;
  }
  
  .game-category-label {
    font-size: 10px;
    margin-top: 0.4rem;
  }
}

/* Landscape Mobile Responsive */
@media (max-width: 576px) and (orientation: landscape) {
  .main-game-categories {
    margin-top: 0.5rem;
  }
  
  .game-categories-grid {
    gap: 0.75rem;
  }
  
  .game-category-card {
    padding: 0.75rem 0.5rem;
    min-height: 100px;
    max-width: 130px;
  }
  
  .game-category-icon {
    width: 60px;
  }
  
  .game-category-label {
    font-size: 11px;
    margin-top: 0.4rem;
  }
}

/* Mobile Home Button and Collapsible Left Card */
.mobile-home-btn {
  display: none;
  background: linear-gradient(135deg, rgba(33, 118, 255, 0.1) 0%, rgba(51, 170, 255, 0.05) 100%);
  border: 1px solid rgba(33, 118, 255, 0.3);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.mobile-home-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 ease;
}

.mobile-home-btn:hover::before {
  left: 100%;
}

.mobile-home-btn:hover {
  background: linear-gradient(135deg, rgba(33, 118, 255, 0.2) 0%, rgba(51, 170, 255, 0.1) 100%);
  border-color: rgba(33, 118, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 118, 255, 0.3);
}

.mobile-home-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(33, 118, 255, 0.2);
}

.mobile-home-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.mobile-home-btn:hover .mobile-home-icon {
  transform: scale(1.1);
}

/* Mobile responsive styles for left card */
@media (max-width: 768px) {
  .mobile-home-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .left-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  
  .left-card-header {
    background: linear-gradient(135deg, rgba(26, 42, 79, 0.95) 0%, rgba(15, 30, 59, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
  }
  
  .left-card-body {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 42, 79, 0.9) 0%, rgba(15, 30, 59, 0.95) 100%);
  }
  
  .left-card-body.collapsed {
    max-height: 0;
    opacity: 0;
    padding: 0;
    transform: translateY(-10px);
  }
  
  .left-card-body.expanded {
    max-height: 1000px;
    opacity: 1;
    padding: 16px;
    transform: translateY(0);
  }
  
  .left-card-category-item {
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 8px;
  }
  
  .left-card-category-item:hover {
    background: linear-gradient(135deg, rgba(33, 118, 255, 0.1) 0%, rgba(51, 170, 255, 0.05) 100%);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(33, 118, 255, 0.2);
  }
}

@media (max-width: 576px) {
  .mobile-home-btn {
    padding: 6px;
  }
  
  .mobile-home-icon {
    width: 20px;
    height: 20px;
  }
  
  .left-card-header {
    padding: 10px 12px;
  }
  
  .left-card-body.expanded {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .mobile-home-btn {
    padding: 5px;
  }
  
  .mobile-home-icon {
    width: 18px;
    height: 18px;
  }
  
  .left-card-header {
    padding: 8px 10px;
  }
  
  .left-card-body.expanded {
    padding: 10px;
  }
}

/* Animation for category items when expanding */
@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.left-card-body.expanded .left-card-category-wrapper {
  animation: slideInFromTop 0.4s ease forwards;
}

.left-card-body.expanded .left-card-category-wrapper:nth-child(1) { animation-delay: 0.1s; }
.left-card-body.expanded .left-card-category-wrapper:nth-child(2) { animation-delay: 0.2s; }
.left-card-body.expanded .left-card-category-wrapper:nth-child(3) { animation-delay: 0.3s; }
.left-card-body.expanded .left-card-category-wrapper:nth-child(4) { animation-delay: 0.4s; }
.left-card-body.expanded .left-card-category-wrapper:nth-child(5) { animation-delay: 0.5s; }
.left-card-body.expanded .left-card-category-wrapper:nth-child(6) { animation-delay: 0.6s; }
.left-card-body.expanded .left-card-category-wrapper:nth-child(7) { animation-delay: 0.7s; }
.left-card-body.expanded .left-card-category-wrapper:nth-child(8) { animation-delay: 0.8s; }
.left-card-body.expanded .left-card-category-wrapper:nth-child(9) { animation-delay: 0.9s; }
.left-card-body.expanded .left-card-category-wrapper:nth-child(10) { animation-delay: 1.0s; }
.left-card-body.expanded .left-card-category-wrapper:nth-child(11) { animation-delay: 1.1s; }
.left-card-body.expanded .left-card-category-wrapper:nth-child(12) { animation-delay: 1.2s; }
.left-card-body.expanded .left-card-category-wrapper:nth-child(13) { animation-delay: 1.3s; }
.left-card-body.expanded .left-card-category-wrapper:nth-child(14) { animation-delay: 1.4s; }
.left-card-body.expanded .left-card-category-wrapper:nth-child(15) { animation-delay: 1.5s; }

/* Ripple effect for mobile home button */
.mobile-home-btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Active state for mobile home button */
.mobile-home-btn.active {
  background: linear-gradient(135deg, rgba(33, 118, 255, 0.3) 0%, rgba(51, 170, 255, 0.15) 100%);
  border-color: rgba(33, 118, 255, 0.7);
  box-shadow: 0 4px 12px rgba(33, 118, 255, 0.4);
}

.mobile-home-btn.active .mobile-home-icon {
  transform: rotate(180deg);
}

/* Enhanced accessibility */
.mobile-home-btn:focus {
  outline: 2px solid rgba(33, 118, 255, 0.5);
  outline-offset: 2px;
}

/* Smooth transitions for all interactive elements */
.left-card-category-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.left-card-category-item:focus {
  outline: 2px solid rgba(33, 118, 255, 0.5);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Loading state for better UX */
.mobile-home-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.mobile-home-btn.loading .mobile-home-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}