@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-trailerskart-theme="dark"] [data-logo="dark"],
[data-trailerskart-theme="light"] [data-logo="light"] {
    display: block;
}

[data-trailerskart-theme="dark"] [data-logo="light"],
[data-trailerskart-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: 18px;
    padding: 0px !important;
    margin: 0px !important;
    text-transform: capitalize;
    position: relative;
    border-bottom: 1px solid transparent;
}
.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(--prime-border);
}
::placeholder{
    color: var(--input-text) !important;
}


#n_emailform ::placeholder{
    color: var(--white-text) !important;
}

@media(max-width: 767px){
    .nav-link {
        width: 20%;
    } 
}

.head-content{
    width: 100%;
    margin: auto;
    max-width: 800px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 50px !important;
}


.theme-btn{
    min-width: 40px;
    min-height: 40px;
}

.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-content {
    position: relative;
    min-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background video */
.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

/* Dark overlay (same effect as your gradient) */
.banner-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4) );
    z-index: -1;
}

.banner-main {
    width: 900px;
    max-width: 100%;
}


@media(max-width: 768px){
    .banner-content {
        min-height: 650px;
    } 
}

/* about css */
.about-img img{
    max-height: 540px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.shadow{
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 55%) !important;
}

/* SERVICE SECTION */

.service-section {
    position: relative;
    background: linear-gradient(to right, rgb(0 0 0 / 82%), rgb(15 15 15 / 0%)), url("../../assets/images/banner.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--white-text);
    overflow: hidden;
}


/* LEFT SIDE GLASS FADE (OUTSIDE CONTAINER) */
.service-glass {
    backdrop-filter: blur(8px);
}

/* CONTENT ABOVE OVERLAYS */
.service-section .container {
    position: relative;
    z-index: 2;
}
.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 991px) {
    .service-section {
        min-height: auto;
    }

    .service-section::after {
        width: 100%;
    }

}



.trailer-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.trailer-card:hover {
    transform: translateY(-5px);
}




/* testimonial css */

.testimonial-img{
    max-width: 70px;
    max-height: 70px;
    border-radius: 50%;
    border: 2px solid var(--prime-border);
    overflow: hidden;  
}
.testimonial-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* rating */
.star-rating {
  display: inline-block;
  font-size: 1.5rem;
  cursor: pointer;
  background-color: var(--body-bg);
}

.star {
  position: relative;
  display: inline-block;
  color: var(--alt-text);
}

.star:before {
  content: '★';
  position: absolute;
  left: 0;
  width: 0;
  overflow: hidden;
  color: var(--star-text);
}

.star.filled:before {
  width: 100%;
}

.star.half:before {
  width: 50%;
}


#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;
} 



div.error{
    color: red;
    text-transform: capitalize !important;
}

#n_emailform{
    position: relative;
}
#n_emailform div.error{
    position: absolute;
    bottom: -25px;
}

.service-section h3 {
    color: var(--white-text) !important;
}
/* ===== BONUSES SECTION PREMIUM ===== */

.bonuses-section {
    background: var(--body-bg);
}

.bonuses-header {
    max-width: 880px;
    margin: auto;
}

.bonuses-label {
    color: var(--prime-text);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bonus-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    height: 100%;
}

.bonus-subtitle {
    color: #111;
    font-weight: 600;
    margin: 15px 0;
}

/* small top pill */
.section-pill {
    display: inline-block;
    background: #0f2145;
    color: #fff;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.online-pill {
    background: #c8d631;
    color: #111;
}

/* welcome bonus highlight */
.welcome-bonus {
    margin: 25px 0;
    padding: 16px 20px;
    border-left: 4px solid var(--prime-text);
    background: rgba(0,0,0,0.03);
    font-weight: 600;
    color: var(--prime-text);
}

/* simple feature list */
.bonus-feature-list {
    padding-left: 18px;
    margin: 20px 0;
}

.bonus-feature-list li {
    margin-bottom: 10px;
    color: #222;
}

/* promo badges list */
.bonus-promo-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.bonus-promo-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 18px;
    color: #222;
}

.promo-badge {
    background: #0f2145;
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    min-width: 95px;
    text-align: center;
}
/* ===== FIXED GAME IMAGES ===== */

#games .trailer-card .col-xl-6.p-0 {
    height: 220px;          
    overflow: hidden;
}

#games .trailer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;      
    display: block;
}

/* ==================================================
   TOP GAMES — FINAL FIX (NO CROPS, NO BLACK BARS)
   ================================================== */

#top-games .top-game-card{
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: transparent; 
    transition: .35s ease;
}

#top-games .top-game-card::before{
    content:"";
    display:block;
    padding-top:100%;
}

#top-games .top-game-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:contain;      
    object-position:center;
    transition: transform .4s ease;
}

/* overlay */
#top-games .game-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.55)
    );
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.35s ease;
}


/* hover */
#top-games .top-game-card:hover .game-overlay{
    opacity:1;
}

#top-games .top-game-card:hover img{
    transform:scale(1.05);   
}

/* лёгкий lift */
#top-games .top-game-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,0.15);
}

/* SLOT DECOR ELEMENTS */

.badge-row{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:18px 0;
}

.slot-badge{
    background:#0e2244;
    color:#fff;
    font-size:13px;
    padding:6px 14px;
    border-radius:20px;
    font-weight:600;
    letter-spacing:.5px;
}

.red-pill{
    background:#e21c2a;
    color:#fff;
}

.slot-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:12px;
}

.slot-tags span{
    background:#f3f5f7;
    padding:6px 12px;
    border-radius:8px;
    font-size:13px;
    font-weight:500;
}



/* ===== FIXED CASINO HERO ===== */

.casino-hero{
    position:relative !important;
    height:720px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    overflow:hidden;
}

.casino-hero-bg{
    position:absolute !important;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.casino-hero-overlay{
    position:absolute !important;
    inset:0;
    background:rgba(0,0,0,0.55);
    z-index:2;
}

.casino-hero-content{
    position:relative !important;
    z-index:3 !important;
    color:#ffffff !important;
    max-width:900px;
    padding:20px;
}

.casino-top{
    color:#d6a63a;
    letter-spacing:2px;
    font-size:14px;
}

.casino-hero-content h1{
    font-size:56px;
    font-weight:300;
    line-height:1.2;
    margin:20px 0;
    color:#fff !important;
}

.casino-hero-content p{
    font-size:18px;
    margin-bottom:35px;
    color:#fff !important;
}

.casino-btn{
    display:inline-block;
    padding:16px 34px;
    border:1px solid #d6a63a;
    color:#d6a63a;
    text-transform:uppercase;
}

.casino-btn:hover{
    background:#d6a63a;
    color:#000;
}

/* ===== FORCE HERO FIX ===== */

body .rc-hero{
    position:relative;
    height:700px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

body .rc-hero .rc-hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

body .rc-hero .rc-hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
    z-index:2;
}

body .rc-hero .rc-hero-content{
    position:relative;
    z-index:3;
    color:#fff;
    max-width:900px;
    padding:20px;
}

body .rc-hero h1{
    font-size:56px;
    margin:20px 0;
    color:#fff;
}

body .rc-hero p{
    color:#fff;
}

#app img{
    max-height:420px;
}

#app .bonus-card{
    height:100%;
    display:flex;
    flex-direction:column;
}

/* ===================================================
   PAYMENT METHODS — HARD STYLE FIX
   =================================================== */

#payments .payment-tabs{
display:flex;
justify-content:center;
gap:12px;
margin:40px 0 25px;
}

#payments .payment-tab{
padding:12px 26px;
border-radius:6px;
border:1px solid #ccc;
background:#fff;
cursor:pointer;
font-weight:600;
transition:.3s;
}

#payments .payment-tab.active{
background:#e30613;
color:#fff;
border-color:#e30613;
}

/* TABLE CONTAINER */
#payments .payment-table-wrapper{
max-width:720px;
margin:0 auto;
background:#fff;
border-radius:14px;
padding:20px;
box-shadow:0 12px 30px rgba(0,0,0,0.06);
}

/* ROW STYLE */
#payments .payment-row{
display:flex;
justify-content:space-between;
padding:14px 18px;
border-bottom:1px solid rgba(0,0,0,0.08);
font-size:16px;
}

#payments .payment-row:last-child{
border-bottom:none;
}

#payments .payment-table{
display:none;
}

#payments .payment-table.active{
display:block;
}

/* MOBILE */
@media(max-width:768px){
#payments .payment-row{
font-size:14px;
}
}

/* =====================================================
   RIVER CREE HERO BANNER
===================================================== */

.river-hero{
    position:relative;
    height:420px;          
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.river-hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.river-hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);  
    z-index:2;
}

.river-hero-content{
    position:relative;
    z-index:3;
    color:#fff;
    max-width:900px;
    padding:0 15px;
}

.river-hero-content h1{
    font-size:46px;
    margin:15px 0;
    color:#fff;
}

.river-hero-content p{
    color:#fff;
}

/* label */
.river-hero-label{
    color:#d6a63a;
    letter-spacing:2px;
}

.river-hero-btn{
    margin-top:25px;
}

/* MOBILE */
@media(max-width:768px){
    .river-hero{
        height:340px;
    }

    .river-hero-content h1{
        font-size:32px;
    }
}
/* ==========================================
   PLAY COMPARISON TABLE
========================================== */

.comparison-wrapper{
max-width:1000px;
margin:40px auto 0;
}

.comparison-table{
background:var(--card-bg);
border-radius:14px;
overflow:hidden;
box-shadow:0 12px 30px rgba(0,0,0,0.05);
}

.comparison-row{
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:20px;
padding:18px 22px;
border-bottom:1px solid rgba(0,0,0,0.06);
font-size:15px;
}

.comparison-row:last-child{
border-bottom:none;
}

.comparison-head{
font-weight:700;
background:#f5f7f9;
}

.comparison-row div:first-child{
font-weight:600;
color:#c62828; 
}

.comparison-note{
max-width:850px;
margin:0 auto;
text-align:center;
}

/* MOBILE */
@media(max-width:768px){

.comparison-row{
grid-template-columns:1fr;
gap:6px;
}

.comparison-head{
display:none;
}

.comparison-row div:first-child{
margin-top:10px;
}

}

/* =====================================
   BONUS HERO MODIFIER
===================================== */

.river-hero-bonus .river-hero-overlay{
    background:linear-gradient(
        to right,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.3)
    );
}

.river-hero-bonus h1{
    font-size:42px;
    line-height:1.25;
}

/* mobile */
@media(max-width:768px){
    .river-hero-bonus h1{
        font-size:28px;
    }
}

/* ===== FAQ ACCORDION — RED STYLE ===== */

.custom-accordion .accordion-item{
    border-radius:14px;
    overflow:hidden;
    border:1px solid #eee;
    margin-bottom:12px;
    background:#fff;
}

.custom-accordion .accordion-button{
    background:#fff;
    color:#222;
    font-weight:600;
    box-shadow:none !important;
    padding:18px 20px;
    transition:0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed){
    background:#fff;
    color:#e51b23; 
}

.custom-accordion .accordion-button:not(.collapsed){
    border-left:4px solid #e51b23;
}

.custom-accordion .accordion-button:hover{
    color:#e51b23;
}

.custom-accordion .accordion-body{
    background:#fff;
    color:#555;
    padding:20px;
}

.custom-accordion .accordion-button::after{
    filter:hue-rotate(330deg) saturate(6);
}

#btnSwitch{
    display:none !important;
}
