

.navbar { 
    background-image: linear-gradient(110deg, #1e283f, rgba(20, 27, 46) 100%); 
    padding: 2px; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8); 
    border-radius: 0.8rem;
 }

.navbar {
position: absolute;
top: 20px;
width: 96%;
z-index: 1000;
transition: top 0.2s ease-in-out;
 }

.navbar.fixed {
position: fixed;
top: 0;
width: 96%;
transition: none; /* Prevent smooth scrolling */
}


@media (max-width: 768px) {
   
}




.navbar-brand { font-size: 1.5rem; font-weight: bold; color: #ffcc00; }
.nav-link { color: #fff; position: relative; transition: 0.3s ease-in-out; }
.nav-link::after {
    content: ''; 
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ffcc00;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}
.nav-link:hover { color: #ffcc00; transform: scale(1.1); }

.nav-link:hover::after { width: 100%; left: 0; }

.menu-toggle { display: none; }
@media (max-width: 991px) {        
.navbar { display: none; }
.navbar-brand{ display: none; } 
}



.reg-log {
        display: none;
    }
  
@media (max-width: 768px) {
    .reg-log {
        display: flex;
        justify-content: right;
        margin-top: 10%;
    }

}





.dropdown{
  padding: 10px 0px;
}
.btn-primary { background: linear-gradient(45deg, rgb(85, 85, 85), rgb(55, 55, 55)); border: none; transition: 0.3s ease-in-out;border-radius: 10rem;padding: 6px 20px; }
.btn-primary:hover { transform: scale(1.1); box-shadow: 0 0 10px rgba(0, 217, 255, 0.8); }


.wallet-balance {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.wallet-balance i {
    font-size: 18px;
    margin-right: 8px;
}



.sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background-image: linear-gradient(110deg, #1e283f, rgba(20, 27, 46) 100%); 
    transition: left 0.3s ease-in-out;
    padding-top: 50px;
    z-index: 1050;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    border-right: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0px 20px 20px 0px;
}

.sidebar.show {
    left: 0;
}

.sidebar .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.sidebar .close-btn:hover {
    color: #f05454;
}

.sidebar .nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    border-radius: 6px;
    margin: 5px 15px;
}

.sidebar .nav-link i {
    margin-right: 12px;
    font-size: 18px;
}

.sidebar .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}



/* Smooth Scrollbar */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}





/* Login Button - Dark Gray with Blur Effect */
.btn-login {
background: linear-gradient(145deg, #7877774b, #5d5d5d);
color: #fff;
border: none;
padding: 0px 20px;
font-size: 16px;
border-radius: 8px;

transition: all 0.3s ease-in-out;
}

.btn-login:hover {
background: linear-gradient(145deg, #4ba3eb, #1b8bdc);
box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.8);
transform: scale(1.05);
}

/* Register Button - Green Glow Effect */
.btn-register {
background: linear-gradient(145deg, #28a745, #218838);
color: #fff;
border: none;
padding: 0px 20px;
font-size: 16px;
border-radius: 8px;
box-shadow: 3px 3px 10px rgba(40, 167, 69, 0.5);
transition: all 0.3s ease-in-out;
}

.btn-register:hover {
background: linear-gradient(145deg, #218838, #1e7e34);
box-shadow: 0px 0px 15px rgba(40, 167, 69, 0.8);
transform: scale(1.05);
}

/* Register Button - Green Glow Effect end */

.carousel {
position: relative;
max-width: 100%;
height: 300px; /* Set default height */
border-radius: 12px;
overflow: hidden;
box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.8);
}

/* Adjust height for smaller screens */
@media (max-width: 992px) {
    .carousel {
     height: 300px;
   }
}

@media (max-width: 768px) {
   .carousel {
    height: 150px;
    margin-top: 2%;
   }

   .custom1-card {
    display: none;
  }

  .download-btn{
    width: 100%;
  }
  
  .modal-content{
    width: 90% !important;
    max-width: 200px;
  } 

}

.carousel-item {
transition: transform 1s ease-in-out, opacity 1s ease-in-out;
height: 100%; /* Ensures items take full height */
}

.carousel-item img {
width: 100%;
height: 100%;
object-fit: cover; /* Ensures image fills the space without distortion */
border-radius: 12px;
box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.8);
transition: transform 0.8s ease-in-out, filter 0.5s ease-in-out;
}

/* Zoom & Glow Effect on Hover */
.carousel-item:hover img {
transform: scale(1.08);
filter: brightness(1.2);
box-shadow: 0px 8px 30px rgba(255, 204, 0, 0.6);
}

/* Gradient Overlay */
.carousel-item::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
/*background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);*/
z-index: 1;
border-radius: 12px;
}

/* Custom Navigation Arrows */
.carousel-control-prev,
.carousel-control-next {
width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
background-color: rgba(19, 19, 19, 0.427);
padding: 15px;
border-radius: 50%;
transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
background-color: rgba(255, 204, 0, 1);
transform: scale(1.2);
}

/* Custom Indicators */
.carousel-indicators [data-bs-target] {
background-color: rgba(255, 204, 0, 0.8);
width: 12px;
height: 12px;
border-radius: 50%;
transition: transform 0.3s ease-in-out;
}

.carousel-indicators .active {
background-color: rgba(255, 204, 0, 1);
transform: scale(1.3);
}



/* Card Styling */
.custom1-card {
position: relative;
border-radius: 12px;
height: 100%;
overflow: hidden;
color: white;
font-weight: bold;
background-color: #a115fb;
box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease-in-out;
}

/* Adding Transparent Image Overlay */
.custom1-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('/assets/images/banner/side-ban-1.jpeg') center/cover no-repeat; /* Use your transparent image */
opacity: 0.4; /* Adjust transparency */
z-index: 1;
transition: opacity 0.3s ease-in-out;
}

/* Hover Effect: Enhance Image Overlay */
.custom1-card:hover::before {
opacity: 0.6;
}

/* Ensure content stays above the overlay */
.custom1-card * {
position: relative;
z-index: 2;
}


.custom1-card:hover {
transform: scale(1.05);
box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

/* Button Styling */
.custom1-card .btn {
border-radius: 8px;
transition: all 0.3s ease-in-out;
position: absolute;
bottom: 15px;
left: 50%;
box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
transform: translateX(-50%);
width: 80%; /* Adjust width as needed */
text-align: center;
}

/* Button Hover Effect */
.custom1-card .btn:hover {
transform: translateX(-50%) translateY(-3px);
}







.custom2-card {
position: relative;
border-radius: 12px;
height: 100%;
overflow: hidden;
color: white;
font-weight: bold;
background-color: #a115fb;
box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease-in-out;
}

/* Adding Transparent Image Overlay */
.custom2-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('/assets/images/banner/side-ban-2.jpeg') center/cover no-repeat; /* Use your transparent image */
opacity: 0.4; /* Adjust transparency */
z-index: 1;
transition: opacity 0.3s ease-in-out;
}

/* Hover Effect: Enhance Image Overlay */
.custom2-card:hover::before {
opacity: 0.6;
}

/* Ensure content stays above the overlay */
.custom2-card * {
position: relative;
z-index: 2;
}


.custom2-card:hover {
transform: scale(1.05);
box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

/* Button Styling */
.custom2-card .btn {
border-radius: 8px;
transition: all 0.3s ease-in-out;
position: absolute;
bottom: 15px;
left: 50%;
box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
transform: translateX(-50%);
width: 80%; /* Adjust width as needed */
text-align: center;
}

/* Button Hover Effect */
.custom2-card .btn:hover {
transform: translateX(-50%) translateY(-3px);
}




@media (max-width: 768px) {
  
  .custom2-card {
     display: none; 
  }
}


/* custom1 CARD TWO*/



.custom-card {
position: relative;
border-radius: 12px;
overflow: hidden;
box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease-in-out;
background-image: linear-gradient(110deg, #1e283f, rgba(20, 27, 46) 100%);
padding: 20px;
}


.custom-card::before {
content: "";
position: absolute;
top: 0;
left: 10%;
width: 80%;
height: 5px; /* Adjust thickness */
background: linear-gradient(135deg, #007bff, #c32aff); /* Blue to Pinky Purple */ 
border-radius: 0px 0px 40px 40px ;
}

.custom-card .card-img-top {
width: 100%;
height: 120px;   
margin: 0 auto;
display: block;
border-radius: 0.8rem;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}


.custom-card img:hover {
  transform: scale(1.2);
}

.custom-card .img {
width: 100%;

}


.custom-card:hover {
transform: translateY(-5px);
}

.custom-card .btn {
width: 80%;
border-radius: 8px;
position: relative;
bottom: 0;
}




.slider-section {
background-image: linear-gradient(110deg, #1e283f, rgba(20, 27, 46) 100%);
overflow: hidden;
padding: 0px 20px;
text-align: center;
margin-bottom: 2%;
border-radius: 0.8rem;
}


.slider-section::before {
content: "";
position: absolute;
left: 10%;
width: 80%;
height: 5px; /* Adjust thickness */
background: white; /* Gradient border */
border-radius: 0px 0px 40px 40px ;
}


.slides {
margin: 10px auto;
display: flex;
justify-content: center;
align-items: center;

}


.text-wrapper {
color: #fff;
font-size: 2rem;
font-weight: bold;
margin: 4px auto;
max-width: 90%;
height: 200px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 15px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.text-wrapper:hover {
transform: scale(1.1);
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}

/* Slick dots styling */
.slick-dots li button:before {
font-size: 12px;
color: #ff9f43;
opacity: 0.6;
transition: all 0.3s ease;
}

.slick-dots li.slick-active button:before,
.slick-dots li button:hover::before {
color: #f8c291;
opacity: 1;
}

/* Slick navigation arrows 
.slick-next,
.slick-prev {
width: 50px;
height: 50px;
display: none;  
}

.slick-next:before,
.slick-prev:before {
font-size: 30px;
color: #ff9f43;
opacity: 0.8;
transition: all 0.3s ease-in-out;
}

.slick-next:hover:before,
.slick-prev:hover:before {
color: #ff4757;
opacity: 1;
} */

/* Responsive styles */
@media (max-width: 768px) {
h1 {
font-size: 2.5rem;
}

p {
font-size: 1.3rem;
}

.text-wrapper {
width: 120px;
height: 120px;
font-size: 1.5rem;

  
}
}

.slider-section h4 {
text-align: left;
font-weight: bold;
font-size: 1.4rem;
color: #ffffff;
margin-bottom: -10px;
position: relative;
margin-top: 10px;
}


.custom-card h4 {
text-align: left;
font-weight: bold;
font-size: 1.4rem;
color: #ffffff;
margin-bottom: -10px;
position: relative;
margin-top: 10px;
}






/* ✨ General Styling */
/* Modal Background */
/* Modal Background */
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(30, 30, 30, 0.8);
backdrop-filter: blur(5px);
animation: fadeIn 0.3s ease-in-out;
}

/* Modal Box */
.modal-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #2c2f33;
padding: 35px;
 width: 450px;
 max-width: 90%;
border-radius: 10px;
text-align: center;
animation: slideIn 0.4s ease-in-out;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

/* Close Button */
.close {
position: absolute;
top: 10px;
right: 15px;
font-size: 24px;
cursor: pointer;
color: #fff;
transition: 0.3s;
}

.close:hover {
color: #00aaff;
}

/* Tab Buttons */
.tab-buttons {
display: flex;
justify-content: center;
margin-bottom: 15px;
}

.tab-buttons button {
flex: 1;
padding: 12px;
border: none;
cursor: pointer;
background: transparent;
color: #b0dffc;
font-size: 16px;
font-weight: bold;
border-bottom: 3px solid transparent;
transition: 0.3s;
}

.tab-buttons button.active {
border-bottom: 3px solid #00aaff;
color: #00aaff;
}

/* Form Container */
.form-container {
display: flex;
flex-direction: column;
}

.hidden {
display: none;
}

form {
display: flex;
flex-direction: column;
}

.modal-content h2 {
color: #ffffff;
font-size: 16px;
margin-bottom: 4px;
text-align: left;
}

.modal-content h4 {
color: #ffffff;
font-size: 12px;
margin-bottom: 15px;
text-align: left;
}

.modal-content h5 {
color: #ffffff;
font-size: 14px;
margin-bottom: 15px;
text-align: right;
}


.modal-content input {
width: 100%;
padding: 12px;
margin-bottom: 12px;
border: none;
border-radius: 6px;
background: #3b3f45;
color: #ffffff;
font-size: 16px;
transition: 0.3s;
border: 2px solid transparent;
}

input:focus {
outline: none;
border: 2px solid #00aaff;
background: #444b52;
}

.modal-content button {
padding: 12px;
border: none;
background: linear-gradient(135deg, #00aaff, #0066cc);
color: #fff;
font-size: 16px;
font-weight: bold;
border-radius: 6px;
cursor: pointer;
transition: 0.3s;
}

.modal-content button:hover {
background: linear-gradient(135deg,  #018cd2, #004f9e);
}

/* Switch between login/register */
.switch {
color: #b0dffc;
font-size: 14px;
margin-top: 10px;
}

.switch a {
color: #00aaff;
text-decoration: none;
transition: 0.3s;
}

.switch a:hover {
text-shadow: 0 0 8px #00aaff, 0 0 12px  #0066cc;
}

/* Fade-in Animation */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

/* Slide-in Animation */
@keyframes slideIn {
from { transform: translate(-50%, -55%); opacity: 0; }
to { transform: translate(-50%, -50%); opacity: 1; }
}



 


.left-sidebar,
.right-sidebar-panel {
    padding: 0px;
    border-radius: 0.8rem;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto; /* Enable vertical scrolling */
    max-height: 100vh; /* Prevents overflow beyond viewport */
}

/* Ensures the card itself scrolls if the content overflows */
.left-sidebar .card {
    height: 100%;
    background-image: linear-gradient(110deg, #1e283f, rgba(20, 27, 46) 100%);
    border-radius: 0.8rem;
    overflow-y: auto; /* Enable scrolling within the card */
    max-height: 90vh; /* Ensures it doesn’t take full viewport */
}

/* Force scrollbar to always be visible */
.left-sidebar::-webkit-scrollbar,
.left-sidebar .card::-webkit-scrollbar {
    width: 6px; /* Adjust scrollbar width */
}

.left-sidebar::-webkit-scrollbar-track,
.left-sidebar .card::-webkit-scrollbar-track {
    background: #1e283f; /* Track color */
    border-radius: 4px;
}

.left-sidebar::-webkit-scrollbar-thumb,
.left-sidebar .card::-webkit-scrollbar-thumb {
    background: #888; /* Scrollbar color */
    border-radius: 4px;
}

.left-sidebar::-webkit-scrollbar-thumb:hover,
.left-sidebar .card::-webkit-scrollbar-thumb:hover {
    background: #555; /* Darker on hover */
}


.right-sidebar-panel .card
{
    height: 100%;
    background-image: linear-gradient(110deg, #1e283f, rgba(20, 27, 46) 100%);
}

.left-sidebar-panel .card-body a {
    display: flex; /* Use flexbox */
    align-items: center;
    justify-content: space-between; /* Pushes elements apart */
    padding: 6px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s ease-in-out;
    width: 100%;
    position: relative;
    border-radius: 1.0rem;
}

.left-sidebar-panel .card-body img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    vertical-align: middle;
    object-fit: contain;
}

.left-sidebar-panel .card-body span {
    margin-left: auto; /* Push span to the right */
    font-size: 12px;
    color: white;
    font-weight: bold;
}




.left-sidebar-panel .card-body a:hover {
    background: linear-gradient(135deg, #007bff, #0057b3);
    color: #fff;
    border-radius: 1.0rem;
}

.middle-panel {
    height: calc(100vh - 40px);
    overflow-y: auto;
    border-radius: 10px;
    padding: 0px 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease-in-out;
    scrollbar-width: none; /* For Firefox */
    scrollbar-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.1);
}

.middle-panel::-webkit-scrollbar {
    width: 0px;
    display: none;
}

.middle-panel::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.middle-panel::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.middle-panel::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

.middle-panel:hover {
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.2);
}



.right-sidebar {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}

.right-sidebar .btn {
    margin-top: 10px;
    background: linear-gradient(135deg, #28a745, #218838);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.right-sidebar .btn:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: scale(1.1);
}








.game-img {
    display: inline-block;
    overflow: hidden;
    border-radius: 15px;
}

.game-img img {
    transition: transform 0.3s ease-in-out;
    width: 150px;
    height: 150px;
}

.game-img img:hover {
    transform: scale(1.2);
}



.game-title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

.view-more-btn {
    background: linear-gradient(145deg, #4ba3eb, #1b8bdc);
    border: none;
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.view-more-btn:hover {
    background: linear-gradient(145deg, #60b7ff, #0095ff);
    transform: scale(1.05);
}



.marquee-bottom {
    position: fixed;
    max-width: 100%;
    background: black;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 0;
   
}


.marquee-top {
    position: fixed;
    max-width: 96%;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 0px 0;
}

.marquee-top {
    top: 0;
}

.marquee-bottom {
    bottom: 0;
}


.game_screen
{
  margin-top:6%;
}



    .password-container {
        position: relative;
        display: flex;
        align-items: center;
    }

    .password-container input {
        width: 100%;
        padding-right: 40px;
    }

    .toggle-password {
        position: absolute;
        right: 10px;
        cursor: pointer;
        color: gray;
    }

    .text-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Ensures the image covers the container */
        border-radius: inherit;
    }
  
   .slot-game-img{
     display: inline-block;
     overflow: hidden;
     border-radius: 15px;
     width: 100%;
  
  }





.swiper {
    width: 98%;
    padding: 4px;
    height: 50px;
}

.swiper-slide {
    background: linear-gradient(110deg, #1e283f, rgba(20, 27, 46) 100%); 
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 6px;
    transition: transform 0.3s ease-in-out; 
    border-left: 5px solid #008cff; /* Fallback */
}

.swiper-slide:hover {
    transform: scale(1.05);
}

.swiper-slide img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.image-name {
    font-size: 14px;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.game-count {
    font-size: 14px;
    color: #fff;
    opacity: 0.8;
}



@media (max-width: 768px) {
    .swiper {
        width: 95%;
        padding: 10px;
       
    }

    .swiper-slide {
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .swiper-slide img {
        width: 26px;
        height: 26px;
        border-radius: 8px;
    }

    .image-name {
        font-size: 14px;
    }

    .game-count {
        font-size: 12px;
    }
    
    .slider-section::before {
           content: "";
           position: absolute;
           left: 10%;
           width: 80%;
           display: none;
        }
  
    .slider-section {
           border-radius: 0px;
           background: none; 
        } 
  

}

@media (max-width: 480px) {
    .swiper {
        width: 100%;
        padding: 5px;
       
    }

    .swiper-slide {
        padding: 8px;
        border-radius: 6px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }

    .swiper-slide img {
        width: 26px;
        height: 26px;
        border-radius: 6px;
    }

    .image-name {
        font-size: 12px;
    }

    .game-count {
        font-size: 10px;
    }
}



.col-lg-3 {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
}


.provider-info {
    display: flex;
    align-items: left;
    justify-content: left;
    gap: 5px;
    margin-top: 10px;
}

.provider-info img {
    width: 22px;
    height: 22px;
    border-radius: 10%;
    background: #161c36;
    padding: 5px;
    
    /* 3D Shadow Effect */
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.3),  /* Main shadow */
        inset 0 2px 2px rgba(255, 255, 255, 0.1),  /* Light reflection */
        inset 0 -2px 4px rgba(0, 0, 0, 0.3); /* Inner depth */
    
    /* Slight Lift Effect */
    transform: translateY(-2px);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.provider-info h1 {
    font-size: 10px;
    font-weight: bold;
    color: #bbb;
    margin: 0;
    padding: 4%;
}

.col-lg-3 h2 {
    font-size: 13px;
    color: #ffffff;
    margin-top: 1px;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
  
}

@media (max-width: 480px) {
    .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


.game-details {
    margin-bottom: 10px;
    text-align:left;
}

.game-details h2 {
    font-size: 13px;
    color: #fff;
    margin: 0 10px;
    font-weight: bold;
}





.provider-info2 {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border-radius: 6px;
    margin-top: 2px;
    min-width: 0; /* Allows text to shrink inside flexbox */
    max-width: 100%; /* Prevents overflow from flex container */
    overflow: hidden; /* Ensures contents do not overflow */
}



.provider-info2 img {
    width: 20px; /* Slightly smaller on mobile */
    height: 20px;
    border-radius: 20%;
    padding: 2px;

    /* Linear Gradient Background */
    background: linear-gradient(135deg, #0a58ca, #161c36);

    /* 3D Shadow Effect with Blue Glow */
    box-shadow: 
        0 3px 5px rgba(0, 102, 255, 0.5), 
        inset 0 1px 1px rgba(255, 255, 255, 0.1), 
        inset 0 -1px 3px rgba(0, 0, 0, 0.4);

    /* Smooth transition */
    transform: translateY(-1px);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}


.provider-info2 h1 {
    font-size: 10px;
    color: #bbb;
    padding: 4px;
    font-weight: bold;
    flex: 1; /* Allow h1 to take available space */
    white-space: nowrap; /* Prevents text from wrapping */
    overflow: visible;  /* Hide overflowing text */
    text-overflow: ellipsis; /* Show "..." when text overflows */
   
}


/* Even smaller text for mobile */
@media (max-width: 768px) {
    .provider-info2 h1 {
        font-size: 12px;
        font-weight: bold;
        margin: auto 0;
    }
  
  
    .provider-info2 img {
        width: 18px;
        height: 18px;
        padding: 3px;
    }
  
    .game-details h2 {
      font-size: 14px;
      color: #fff;
      margin: 0 10px;

    }
  
     .provider-info2 {
        flex-direction: row; /* Ensure inline layout on mobile */
        gap: 3px;
        padding: 4px;
    }
    
}





.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #4c4c4d;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-list li span {
    flex: 1;
    font-weight: 500;
    color: #4c4c4d;
}

/* Email Clickable Style */
.contact-list li .email {
    flex: 1;
    text-align: right;
    font-weight: 100;
    color: #4c4c4d;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

/* Hover Effect */
.contact-list li .email:hover {
    color: #007bff; /* Change to blue on hover */
    text-decoration: underline;
}




.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-unstyled li {
    margin-bottom: 0px; /* Space between items */
}

.list-unstyled a {
    display: block;
    color: white;
    font-size: 12px;
    text-decoration: none;
    padding: 2px 0px;

}

/* Hover Effect */
.list-unstyled a:hover {
    color: #f1c40f; /* Highlight color */
    transform: translateX(4px); /* Subtle right movement */
}



 
