/********** Template CSS **********/
:root {
    /* Casino-inspired color palette */
    --primary: #ff6600; /* vibrant orange */
    --secondary: #ffd700; /* gold */
    --light: #f5f5f5;
    --dark: #000000;
}

/* Heading styles */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

/* Set global background color */
html,
body {
    background-color: #000000;
}



/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
    border-radius: 50px;
}

.btn.btn-primary {
    color: #FFFFFF;
}

/* Uniform hover color for all buttons */
.btn:hover {
    background-color: #C2B280;
    border-color: #C2B280;
    color: #000;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-square:hover,
.btn-sm-square:hover,
.btn-lg-square:hover {
    background-color: #C2B280;
    border-color: #C2B280;
    color: #000;
}

/* Style for Play Now button */
.play-now-btn {
    background-color: #ffffff;
    transform: scale(1.1);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
    position: relative;
    transition: color .3s ease-in-out;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--secondary);
}

.navbar .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width .3s ease-in-out;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

/* Remove decorative lines from section titles */
.section-title::before,
.section-title::after,
.section-title.text-start::before,
.section-title.text-start::after {
    display: none;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #343a40 !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary);
}


/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots,
.news-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot,
.news-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active,
.news-carousel .owl-dot:hover,
.news-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #343a40;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Footer ***/
.footer i {
    color: var(--primary);
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--primary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #C2B280;
    letter-spacing: 1px;
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
/* Bonus button styles */
.bonus-btn {
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    transition: .3s;
}

.bonus-btn:hover {
    background: #C2B280;
    color: #000;
}

/* Game card styles */
.game-card {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.game-card:hover {
    margin-top: -10px;
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary);
}

.game-card .game-img {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 15px;
}

.game-card .game-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.game-card .play-now {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.game-card .game-img:hover .play-now {
    opacity: 1;
}

.game-card .game-label {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 2px 6px;
    font-size: 0.75rem;
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 1;
}

.game-card .game-label.hot,
.game-card .game-label.new,
.game-card .game-label.top {
    background: var(--primary);
    color: #fff;
}

.game-card .game-info {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.game-card .game-info li {
    margin-bottom: 2px;
}

.bg-light {
    background-color: #9191911c !important;
}

/* Brand section styles */
.brand-section img {
    background: #ffffff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

/* Payment section styles */
.payment-section img {
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.payment-section .row > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bonus marquee styles */
.bonus-marquee {
    overflow: hidden;
    white-space: nowrap;
    background-color: #000000;
    padding: 10px 0;
    border-bottom: 2px solid var(--primary);
}

.bonus-scroll {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 40s linear infinite;
}

.bonus-scroll span {
    margin-right: 2rem;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* Casino footer icon styles */
.casino-design i {
    color: var(--primary);
    transition: transform .3s;
}

.casino-design i:hover {
    transform: scale(1.2);
    color: var(--primary);
}

/* Recent winners table styles */
.winners-section table {
    width: 100%;
    color: var(--light);
    border-collapse: collapse;
}

.winners-section th,
.winners-section td {
    padding: 8px 12px;
    border-bottom: 1px solid var(--primary);
}

.winners-section th {
    text-transform: uppercase;
    font-weight: 600;
}

/* FAQ customization */
#faqAccordion .accordion-item,
#gameFaqAccordion .accordion-item,
#affiliateFaqAccordion .accordion-item {
    background-color: #333333;
    border: 1px solid var(--primary);
}

#faqAccordion .accordion-button,
#gameFaqAccordion .accordion-button,
#affiliateFaqAccordion .accordion-button {
    background-color: #333333;
    color: #ffffff;
}

#faqAccordion .accordion-button:hover,
#faqAccordion .accordion-button:not(.collapsed),
#gameFaqAccordion .accordion-button:hover,
#gameFaqAccordion .accordion-button:not(.collapsed),
#affiliateFaqAccordion .accordion-button:hover,
#affiliateFaqAccordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    box-shadow: none;
}

#faqAccordion .accordion-button:focus,
#gameFaqAccordion .accordion-button:focus,
#affiliateFaqAccordion .accordion-button:focus {
    box-shadow: none;
}

#faqAccordion .accordion-button::after,
#gameFaqAccordion .accordion-button::after,
#affiliateFaqAccordion .accordion-button::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6600'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

#faqAccordion .accordion-body,
#gameFaqAccordion .accordion-body,
#affiliateFaqAccordion .accordion-body {
    color: #ffffff;
}
/* Double margin and padding for section spacing */
.py-5 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}
.mt-5 {
    margin-top: 6rem !important;
}
.mb-5 {
    margin-bottom: 6rem !important;
}
.my-5 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
}
