@import url(mainstyle.css);

*{
    scroll-behavior: smooth;
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;  
}
.btn-close {
    background-image: unset;
}
a{
    color: inherit;
    text-decoration: none;
}

[data-qivnora-theme="dark"] [data-logo="dark"],
[data-qivnora-theme="light"] [data-logo="light"] {
    display: block;
}

[data-qivnora-theme="dark"] [data-logo="light"],
[data-qivnora-theme="light"] [data-logo="dark"] {
    display: none;
}


/* ============================================ header css =================================================== */
header.fix{
    background-color: var(--head-bg);
}
header.fix .nav-link{
    color: var(--nav-text);
}


header.fix img[data-item="light"] {
    display: none;
}

header img[data-item="dark"] {
    display: none;
}
header.fix img[data-item="dark"] {
    display: block;
}

.nav-link{
    color: var(--nav-text);
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    padding: 0px !important;
    text-transform: uppercase;
    position: relative;
}
.nav-link:focus{
    color: var(--nav-text) !important;
}
.nav-item.active .nav-link, .nav-item:hover .nav-link{
    color: var(--prime-text);    
    border-bottom: 1px solid var(--dark-bg);
}
::placeholder{
    color: var(--input-text) !important;
    /* opacity: 0.5 !important; */
}

.nav-link::after{
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--head-bg);
    position: absolute;
    bottom: 0;
    left: 0%;
    transition: 1s ease;
}
.nav-link:hover::after{
    width: 100%;
    left: 0;
}

.head-content{
    width: 670px;
    margin: auto;
    max-width: 100%;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 70px !important;
}

.head-content2{
    width: 500px;
    max-width: 100%;
    text-align: start;
    text-transform: capitalize;
    margin-bottom: 30px !important;
}

.theme-btn{
    min-width: 45px;
    min-height: 45px;
}

.icons-bg{
    min-width: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--icon-text);
    background-color: var(--prime-bg);
}
/* banner section  */
/* ======================================= Banner Section ========================================= */
.banner-content {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url('../../assets/images/banner1.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 900px;
    display: flex;
    align-items: center;
}
.banner-main{
    max-width: 800px;
    width: 100%;
    position: absolute;
    padding: 20px;
}
@media(max-width: 992px){
    .banner-content {
        min-height: 700px;
    } 
}

@media(max-width: 575px){
    .banner-content {
        min-height: 600px;
    } 
}

@media(max-width: 555px){
    .banner-btn{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .me-4{
        margin-right: 0px !important;
    }
}

.service-card img , .team-card img{
    max-height: 450px;
}


/* rating */
.star-rating {
  display: inline-block;
  font-size: 1.5rem;
  cursor: pointer;
}

.star {
  position: relative;
  display: inline-block;
  color: var(--star-text) !important;
}

.star:before {
  content: '★';
  position: absolute;
  left: 0;
  width: 0;
  overflow: hidden;
  color: gold;
}

.star.filled:before {
  width: 100%;
}

.star.half:before {
  width: 50%;
}

[data-qivnora-theme="dark"] {
    .design-icon{
        filter: invert(1);
    }
}

.contact-card svg{
    color: var(--prime-text) !important;
}

.contact-card h3{
    color: var(--prime-text) !important;
}

.contact-card p{
    color: var(--para-alt-text) !important;
}
.contact-card:hover{
    background-color: var(--prime-bg) !important;
}
.contact-card:hover svg{
    color: var(--white-text) !important;
}
.contact-card:hover h3{
    color: var(--white-text) !important;
}
.contact-card:hover p{
    color: var(--white-text) !important;
}

.contact-card:hover img{
        filter: invert(1);
}

#backtotop {
    position: fixed;
    bottom: 30px;
    right: 30px; 
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    width: 50px !important;
    min-width: unset;
    height: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center; 
}
#backtotop.show {
    opacity: 1;
    visibility: visible;
} 

.error{
    color: red;
}
#newsletter {
    position: relative;
}
#newsletter div.error{
    position: absolute;
    bottom: -25px;
}

/* ========================= Games Section ========================= */

.game-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background-color: var(--prime-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.game-card img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover img {
    transform: scale(1.05);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

/* Mobile tuning */
@media (max-width: 575px) {
    .game-card {
        border-radius: 14px;
        padding: 8px;
    }
}

/* Games section spacing fix */
#games {
    padding-top: 120px;
    padding-bottom: 100px;
}

/* Headings spacing consistency */
#games .head-content {
    margin-bottom: 60px !important;
}

/* Mobile spacing */
@media (max-width: 768px) {
    #games {
        padding-top: 80px;
        padding-bottom: 70px;
    }

    #games .head-content {
        margin-bottom: 40px !important;
    }
}

/* Popular Games images fix */
.game-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Bonuses section elements */

.section-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--prime-text);
    border-bottom: 2px solid var(--prime-text);
    padding-bottom: 4px;
}

.section-label.alt {
    color: var(--head-text);
    border-color: var(--prime-border);
}

.info-box {
    padding: 16px;
    border-left: 4px solid var(--prime-text);
    background: rgba(0, 0, 0, 0.03);
}

.bonus-highlight {
    padding: 16px;
    border: 1px solid var(--prime-border);
    background: rgba(0, 0, 0, 0.02);
}

/* ================= Bonus Promo Banner ================= */

.bonus-promo-banner {
    position: relative;
    padding: 140px 0;
    background-image: url('/mainfiles/assets/images/bonus-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.bonus-promo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.bonus-promo-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
    .bonus-promo-banner {
        padding: 100px 0;
    }
}

/* Games section decorative elements */
.content-divider {
    width: 80px;
    height: 3px;
    background-color: var(--prime-text);
}

.games-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--prime-text);
    border-left: 3px solid var(--prime-text);
    padding-left: 10px;
    margin-bottom: 12px;
}

.games-tag.alt {
    color: var(--head-text);
    border-color: var(--prime-border);
}

.games-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--prime-text);
    border-left: 3px solid var(--prime-text);
    padding-left: 10px;
    margin-bottom: 12px;
}

.games-tag.alt {
    color: var(--head-text);
    border-color: var(--prime-border);
}

.games-highlight {
    padding: 18px 20px;
    margin: 30px 0;
    background: rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--prime-text);
}

.games-highlight-lg {
    margin: 35px 0 40px;
    padding: 24px 26px;
    background: rgba(0, 0, 0, 0.04);
}
.games-list {
    list-style: none;
    padding-left: 0;
}

.games-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.games-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--prime-text);
    border-radius: 50%;
}
.games-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--prime-text);
    border-left: 3px solid var(--prime-text);
    padding-left: 10px;
    margin-bottom: 12px;
}

.games-tag.alt {
    color: var(--head-text);
    border-color: var(--prime-border);
}

.games-highlight {
    padding: 18px 20px;
    margin: 30px 0;
    background: rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--prime-text);
}

.games-highlight-lg {
    padding: 24px 26px;
    margin: 35px 0 40px;
}

.games-list {
    list-style: none;
    padding-left: 0;
}

.games-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

.games-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--prime-text);
    border-radius: 50%;
}

/* Payment tables */
.payment-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.payment-tab {
    padding: 10px 22px;
    border: 1px solid var(--prime-border);
    background: transparent;
    font-weight: 600;
    cursor: pointer;
}

.payment-tab.active {
    background: var(--prime-text);
    color: #fff;
}

.payment-table-wrapper {
    max-width: 760px;
}

.payment-table {
    display: none;
}

.payment-table.active {
    display: block;
}

.payment-table table {
    width: 100%;
    border-collapse: collapse;
}

.payment-table th,
.payment-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--prime-border);
    text-align: left;
}

/* Mobile */
@media (max-width: 768px) {
    .payment-table-wrapper {
        max-width: 100%;
        overflow-x: auto;
    }
}

/* Online Casino Hero Banner */
.online-casino-hero {
    position: relative;
    padding: 160px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay  */
.online-casino-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.online-casino-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.online-casino-content h1,
.online-casino-content p {
    color: #ffffff;
}
