* {
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
}


.slider-container {
    position: relative;
    overflow: hidden;
    background-color: #030c1000;
    padding: 10px 0;
    border-radius: 4px;

}
        
  
        .slider-container::before {
            top: 0;
        }
        
        .slider-container::after {
            bottom: 0;
        }
        
        .logo-slider {
            display: flex;
            animation: scroll 620s linear infinite;
            width: fit-content;
        }
        
        .logo-slide {
            display: flex;
        }
        
        .logo-item {
            flex: 0 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 180px;
            height: 80px;
        }
        
        .logo-item a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            text-decoration: none;
            position: relative;
        }
        
        .logo-item img {
            max-width: 100%;
            max-height: 60px;
            object-fit: contain;
            transition: all 0.3s ease;
            filter: brightness(0.9);
        }
        
        .logo-item:hover img {
            transform: scale(1.1);
            filter: brightness(1.1) drop-shadow(0 0 8px rgb(225 32 32 / 60%)); /* Blue glow on hover */
        }
        
        /* Text logo styling */
        .logo-item a span {
            color: white;
            transition: all 0.3s ease;
        }
        
        .logo-item:hover a span {
            color: #e12020; /* Blue color on hover */
            text-shadow: 0 0 8px rgb(225 184 32 / 60%);
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* Edge fade gradients */
        .edge-fade-left,
        .edge-fade-right {
            content: "";
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }
        
        .edge-fade-left {
    left: 0;
    background: transparent);

}
        
        .edge-fade-right {
    right: 0;
    background: transparent, 
transparent
);

}
        
        /* Blue accent on the edges */
        .blue-accent-left,
        .blue-accent-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 40%;
    z-index: 3;
     background: linear-gradient(to bottom, 
                transparent, 
                rgb(249 210 0 / 70%), 
                transparent
            ); 
    border-radius: 3px;

}
        
        .blue-accent-left {
            left: 0;
        }
        
        .blue-accent-right {
            right: 0;
        }
        
        @media (max-width: 768px) {
            .logo-item {
                min-width: 140px;
            }
            
            .edge-fade-left,
            .edge-fade-right {
                width: 50px;
            }
        }
button.header__signup.slider_btn {
    display: none;
}


.league-container {
      margin: 0 auto;
      padding: 0 1rem;
      overflow: visible; /* Allow shadows to extend beyond */
      width: 100%;
    }
    
    .league-slider-wrapper {
      width: 100%;
      position: relative;
      overflow: hidden; /* Only hide overflow for the slider movement */
    }
    
    .league-slider {
      display: flex;
      gap: 1.5rem;
      will-change: transform;
      padding: 10px; /* Add padding to make room for the shadow */
    }
    
    .league-card {
     

      min-width: 180px;
      padding: 0;
      border-radius: 1rem;
      border: 1px solid rgba(229, 228, 226, 0.08);
      cursor: pointer;
      transition: all 0.4s ease;
      position: relative; /* Ensure z-index works */
      z-index: 1; /* Default z-index */
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
      background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 80%), url("https://betpirimg.com/img/league-bg1.png");
      background-size: cover; /* Ensures the background image covers the entire area */
      background-position: center; /* Keeps the image centered */

      border: 1px solid rgba(72, 171, 224, 0.2);
      height:230px;
    }
    
    .league-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px 8px rgb(224 72 72 / 30%); /* Enhanced shadow */
      z-index: 10; /* Bring hovered card to front */
      border-color: rgba(72, 171, 224, 0.4);
    }
    
    .league-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #e04848, #c63131);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    
    .league-card:hover::after {
      transform: scaleX(1);
    }
    
    .league-logo-container {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 1.75rem 1.5rem;
      /*background-color: rgba(255, 255, 255, 0.03);*/
      position: relative;
      overflow: hidden;
    }
    
    .league-logo-container::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      /*background: radial-gradient(circle, rgba(72, 171, 224, 0.1) 0%, rgba(72, 171, 224, 0) 70%);*/
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .league-logo-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background: rgba(0, 0, 0, 0.5); /* YarÃ„Â± saydam siyah katman */
  pointer-events: none; /* Katman tÃ„Â±klanabilir olmayacak */
}
    .league-card:hover .league-logo-container::before {
      opacity: 1;
    }
    
    .league-logo {
      position: relative;
      top:31px;
      width: 5rem;
      height: 5rem;
      object-fit: contain;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
      transition: transform 0.4s ease;
      z-index: 99;
      opacity: 0.8;
    }
    
    .league-card:hover .league-logo {
      transform: scale(1.05);
    }
    
    .league-card-content {
      padding: 1.5rem;
    }
    
    .league-country-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 0.75rem;
    }
    
    .league-flag {
      width: 18px;
      height: 14px;
      filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.3));
      border-radius: 2px;
      display:none;
    }
    
    .league-country-badge {
      display: inline-block;
      background: linear-gradient(to right, #3b1e1e, #301a1a);
      padding: 0.35rem 0.75rem;
      border-radius: 0.5rem;
      font-size: 0.7rem;
      font-weight: 600;
      color: #A0AEC0;
      letter-spacing: 0.5px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .league-name {
      font-size: 0.9rem;
      em; */
      font-weight: 700;
      color: #e6e6e6;
      text-align: center;
      letter-spacing: -0.01em;
      transition: color 0.3s ease;
    }
    
    .league-card:hover .league-name {
      color: #e04848;
    }
    
    .league-scrollbar-hide {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    
    .league-scrollbar-hide::-webkit-scrollbar {
      display: none;
    }
    
    @keyframes league-pulse {
      0% {
        box-shadow: 0 0 0 0 rgb(224 72 72 / 40%);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(72, 171, 224, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(72, 171, 224, 0);
      }
    }

