
.banner-slider {
    position: relative;
    width: 100%;
    height: 550px; 
    overflow: hidden;
}

.slide-wrapper {
    position: relative;
    width: 100%;
    height: 100%; 
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    animation: fade 1s ease-in-out;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.dots {
    text-align: center;
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #007bff;
}

@keyframes fade {
    from {
        opacity: 0.3;
    }
    to {
        opacity: 1;
    }
}
.marquee-container {
    background-color: #000;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    overflow: hidden;
    margin-top: 13px;
    margin-bottom: 0 !important;
}

.marquee-inner {
    display: flex;
    width: 70%;
    margin: auto;
    height: 100%;
    position: relative;
    text-align: center;
}

.marquee-fixed {
    flex-shrink: 0;
    padding: 0 15px;
    display: flex;
    align-items: center;
    background-color: #000;
    z-index: 2;
    color: goldenrod;
}

.marquee-icon {
    margin-right: 5px;
}

.marquee-scroll-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.marquee-scroll {
  position: absolute;
  top: 0;
  right: 10%; 
  white-space: nowrap;
  will-change: transform;
  color: aliceblue;
  height: 100%;
  display: flex;
  align-items: center;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.home-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
    background-image: url(/images/home-bgr.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-position: center top;
    min-height: 100vh;
}
.section-title {
    width: 100%;
    text-align: center;
    /* margin-top: 40px; */
    padding-top: 30px;
}

.section-title img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}
.home-oncasino-poster {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.home-oncasino-poster img {
    max-width: 60%;
    height: auto;
    display: block;
}

.loading-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 6px solid rgba(255, 255, 255, 0.6);
    border-top: 6px solid red;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.loading-text {
    margin-top: 10px;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.home-game-menu {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 30px 40px; 
    width: 60%;
    margin: 40px auto;
}

.home-game-menu a {
    display: block;
    transition: transform 0.3s ease;
}

.home-game-menu a img {
    width: 90%;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
}

.home-game-menu a:hover img {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}


.home-service-features {
    width: 70%;
    margin: 60px auto 0;
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.service-box {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-box img {
    width: 50px;
    height: auto;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 16px;
    font-weight: bold;
    color: #f9e18a;
    margin-bottom: 10px;
    text-transform: uppercase;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-box p {
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
}

.service-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #FFD700;
    opacity: 0.7;
}
