/* fantasy card ads */
    
.fantasy-ads-container {
    max-width: 100%;
    padding: 20px;
    background: #f8f9fa;
}
.fantasy-ads-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: left;
}
.fantasy-ads-wrapper {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
}
.fantasy-card {
    flex: 0 0 auto;
    width: 150px;
    background: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}
.fantasy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}
.fantasy-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
    margin-bottom: 10px;
}
.fantasy-ads-p {
    font-size: 14px;
    font-weight: 800;
    margin: 5px;
    color: #333;
}
.fantasy-btn {
    display: inline-block;
    background: #359b0a;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 12px;
    width: 50%;
}
.fantasy-description {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.teams-scroll-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 5px;
}

.teams-scroll-wrapper .series-single.teams.mb10 {
  flex: 0 0 auto;
  padding: 10px;
}

/* Optional scrollbar */
.teams-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}
.teams-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}

/* center banner css */
.banner-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

.banner-box {
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    background: white;
    padding-bottom: 10px;
}
.banner-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px 10px 0 0;
}
.banner-box .visit-btn {
    background: #00b137;
    color: white;
    padding: 12px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    width: 80%;
    margin-top: 10px;
}