/* ========================================
   Casino Card - Modern React Design
   ======================================== */

.tli-casinos-list {
    margin-bottom: 20px;
    display: block;
    position: relative;
}

.tli-casinos-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Main Casino Card */
.tli-casino-card {
    position: relative;
    width: 100%;
    border-radius: 16px;
    border: 1px solid #828282 !important;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    margin-bottom: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tli-casino-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.tli-casino-card:first-child {
	border-color: #ca8a04;
}

/* Left Section: Logo & Rating */
.tli-casino-card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 15px;
    width: 250px;
    border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
    flex-shrink: 0;
}

.tli-casino-logo-link {
	display: block;
    height: 90px;
    width: 100%;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 8px;
}

.tli-casino-logo-link:hover {
    transform: scale(1.05);
}

.tli-casino-image-wrap {
   width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: -5px;
}

.avia_transform .tli-casino-logo-link:hover .image-overlay {
	opacity: 0 !important;
}

.tli-casino-logo {
    height: 100% !important;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

/* Rating Container */
.tli-casino-rating-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    z-index: 13;
    padding-bottom: 10px;
    margin-top: -10px;
}

.tli-casino-rating-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #eab308 !important;
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.tli-casino-rating-number {
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
}

/* Star Rating */
.tli-casino-stars {
    display: flex;
    align-items: center;
    gap: 0;
}

.tli-star {
    flex-shrink: 0;
	color: #eab308 !important;
	margin: 0 !important;
}

.tli-star-full {
    color: #eab308;
    fill: #eab308;
}

.tli-star-half {
    color: #eab308;
    fill: #eab308;
}

.tli-star-empty {
    color: #334155;
    fill: #334155;
}

/* Middle Section: Bonus & Features */
.tli-casino-card-middle {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 0;
    position: relative;
}

.tli-casino-card-middle::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
}

.tli-casino-card-middle > * {
    position: relative;
    z-index: 10;
}

/* Bonus Text */
.tli-casino-name {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.tli-casino-bonus-main {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.casino-bonus-details {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 24px 0;
}

/* Features List - HORIZONTAL on desktop */
.tli-casino-features {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.tli-casino-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #e2e8f0;
    white-space: nowrap;
}

.tli-casino-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid;
    flex-shrink: 0;
}

.tli-casino-feature-text {
    flex: 0 1 auto;
}

/* Right Section: CTA */
.tli-casino-card-right {
    padding: 15px;
    width: 250px;
    border-left: 1px solid rgba(255, 255, 255, 0.05) !important;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

/* CTA Button */
.tli-casino-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 80%;
    background: linear-gradient(to right,#ef4444,#dc2626);
    color: #ffffff!important;
    font-weight: 900;
    font-size: 16px;
    padding: 15px 16px;
    border-radius: 8px;
    text-decoration: none!important;
    transition: all 0.2s ease;
    box-shadow: 0 10px 15px -3px rgb(239 68 68 / .2);
}

.tli-casino-cta-button:hover {
    background: linear-gradient(to right, #dc2626, #b91c1c);
    color: #ffffff !important;
    transform: scale(0.95);
}

.tli-casino-cta-button:visited {
    color: #ffffff !important;
}

.tli-casino-cta-text {
    letter-spacing: 0.025em;
    color: #fff;
	
}

.tli-casino-cta-icon {
    transition: transform 0.2s ease;
    color: #ffffff;
}

.tli-casino-cta-button:hover .tli-casino-cta-icon {
    transform: translateX(4px);
}

/* Review Link */
#top .tli-casino-review-link {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: underline;
    text-decoration-color: #64748b;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.tli-casino-review-link:hover {
    color: #fff !important;
}

/* ========================================
   Responsive Design
   ======================================== */

@media screen and (max-width: 1099px) {
    .tli-casino-card {
        flex-direction: column;
    }
    
    .tli-casino-card-left {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 16px;
    }
    
    .tli-casino-logo-link {
        max-height: 90px;
        width: 208px;
		margin-top: -10px;
    }
	    
    
    .tli-casino-rating-container {
        flex-direction: column;
        gap: 8px;
        margin-top: -5px;
    }
    
    .tli-casino-card-middle {
        padding: 16px 26px;
        border-top: 0;
    }
    
    .tli-casino-bonus-main {
        font-size: 24px;
        text-align: center;
    }
    
    .casino-bonus-details {
        text-align: center;
        margin-bottom: 24px;
    }
    
    /* Features wrap on tablet */
    .tli-casino-features {
        flex-wrap: wrap;
        gap: 12px 24px;
        justify-content: center;
    }
    
    .tli-casino-feature {
        font-size: 12px;
    }
    
    .tli-casino-card-right {
        width: 100%;
        border-left: 0;
        padding: 8px 26px 16px;
    }
    
    .tli-casino-cta-button {
        font-size: 20px;
		width: 100%;
        padding: 20px 16px;
    }
}

@media screen and (max-width: 768px) {
    .tli-casino-card-left {
        flex-direction: column;
        align-items: center;
    }
    
    .tli-casino-logo-link {
        width: 100%;
        max-width: 200px;
    }
	
    .tli-casino-rating-container {
        flex-direction: row;
    }
	
	.tli-casino-logo {
		object-fit: contain;
	}
    
    .tli-casino-bonus-main {
        font-size: 20px;
    }
    
    /* Stack features vertically on mobile */
    .tli-casino-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tli-casino-feature {
        font-size: 14px;
    }
    
    .tli-casino-cta-button {
        font-size: 18px;
    }
}


.casinos-list {
	margin-bottom: 20px;
	display: block;
	position: relative;
}

.casinos-list .hide {
	display: none;
}

.casinos-head {
	background: #aa9281;
	border-radius: 3px 3px 0 0;
	display: grid;
	grid-template-columns: 1fr 0.8fr .6fr 1fr;
}

.casinos-list-images .casinos-head {
	grid-template-columns: 320px .8fr .7fr;
}

.casinos-list-images .brokercol, .casinos-list-images .casino-box-logo {
	min-width: 300px;
}

.casinos-head div {
	color: #000;
    padding: 15px 2px;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1em;
	border-right: 2px solid #fff;
	text-align: center;
}

.casinos-head div:last-child {
	border-right: none;
}

.casino-box {
	border-bottom: 1px solid #d7d7d7;
	display: grid;
	grid-template-columns: 1fr 0.8fr .6fr 1fr;
	align-items: center;
	padding: 5px 0px;
	gap: 5px;
}

.casino-box_new {
	border: 1px solid #d7d7d7;
	display: grid;
	grid-template-columns: 300px 1fr;
	align-items: center;
	padding: 10px;
	gap: 15px;
	background-color: #fff;
	margin-bottom: 10px;
	position: relative;
}

.casino-box_new-b {
	align-items: initial;
}

.main-content .casino-box-pros {
	margin: 10px 0 10px 22px; 
	padding: 0;
}

.main-content .casino-box-pros li {
	list-style-type: none;
	font-size: 14px;
	padding: 0;
	line-height: 18px;
}

.main-content .casino-box-pros li svg {
	padding-right: 5px;
}

.main-content .casino-box-pros li svg path {
	fill: #32cb00;
}

.casinos-list-images .casino-box {
	grid-template-columns: 320px .8fr .7fr;
}



.casino-box:nth-child(even){ 
	background-color: #fff;
}

.casino-box-logo {
	padding: 10px;
	text-align: center;
	font-weight: 700;
}

.casino-box-logo img {
	display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.casino-box_new .casino-box-logo {
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	padding: 0;
	padding-top: 5px;
}

.casinos-list-images .casino-box-logo img {
	max-width: 200px;
	margin: 0 auto;
}

.casinos-list-images .casino-box-logo img.logo-image {
	max-width: 300px;
}

.casino-box-logo .rev_link {
	text-decoration: underline;
    color: #333;
	font-size: 13px;
}

.casinos-list-images .rev_link {
	text-decoration: underline;
    color: #333;
	font-size: 13px;
	text-align: center;
	margin: 5px auto;
    width: 100%;
    display: inline-block;
}

.casino-box-bonus .hilite {
	font-size: 15px;
	line-height: 1.1em;
	color: #990000;
    font-weight: 900;
}

.casino-box_new-b .casino-box-bonus {
	display: flex;
	flex-direction: column;
}

.casino-box_new-b .casino-box-aff-single {
	margin-top: auto;
}

.casino-box_new-b .casino-box-aff-single a {
	margin-top: 0;
}


.casinos-list-images .hilite {
	text-align: center;
}

.casino-box_new .casino-box-aff {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 5px;
}

.casino-box-aff a {
	text-align: center;
}

.arrows-carousel {
	display: none;
}

.casino-box_new .rev_link {
	margin-bottom: 15px;
	display: block;
	text-decoration: none;
	font-size: 16px;
}

.casino-box_new .casino-box-rate {
	margin-top: 15px;
	margin-bottom: auto;
}

.casino-box_new .payment-images-show {
	display: inline-block;
	cursor: pointer;
}

.casino-box_new .payment-images-show.hide {
	display: none;
}

.casino-box_new .affbutton{
	margin: 5px 0;
	font-size: 14px;
}

.casino-box_new-b  div.affbutton {
	margin-bottom: 0;
}
/* ab test review button */
.nobg .affbutton {
    background-color: transparent !important;
    border: none !important;
    text-decoration: underline !important;
    display: inline-block;
    padding: 10px 12px;
}
.nobg .affbutton:hover {
    opacity: 0.8;
}
.casino-box-aff .nobg .affbutton {
    margin: 0;
    padding: 5px 0;
}
/* end ab test review button */
.casino-box-featured {
    background-color: #BB0713;
    color: #fff;
  	padding: 2px 8px;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: bold;
	display: inline-block;
}


.casino-box_new .hilite  {
	color: #444;
    font-size: 14px;
    font-weight: 400;
	margin-bottom: 5px;
}

.casino-box_new .hilite span {
	color: #BB0713;
    font-size: 18px;
    line-height: 1.2em;
	font-weight: 600;
	margin-left: 5px;
}

.ribbon-pop {
    background: #FFC801;
    display: inline-block;
    padding: 0px 30px 2px 20px;
    color: #fff;
    position: absolute;
    z-index: 1;
    top: 10px;
    left: -10px;
	font-size: 22px;
}

.ribbon-pop span {
	font-size: 14px;
    margin-left: -5px
}

.ribbon-pop:after {
    content: "";
    width: 0;
    height: 0;
    top: 0;
    position: absolute;
    right: 0;
	border-right: 10px solid #fff;
    border-top: 14px solid transparent;
    border-bottom: 20px solid transparent;
}
.ribbon-pop:before {
	height: 0;
    width: 0;
    border-top: 10px solid #8c6e00;
    border-left: 10px solid transparent;
    bottom: -10px;
    position: absolute;
    content: "";
    left: 0px;
}

.casino-box_new:nth-child(2) .ribbon-pop {
	background: #b1b1b1;
}

.casino-box_new:nth-child(2) .ribbon-pop:before {
	border-top: 10px solid #928e8e;
}

.casino-box_new:nth-child(3) .ribbon-pop {
	background: #d56833;
}

.casino-box_new:nth-child(3) .ribbon-pop:before {
	border-top: 10px solid #894524;
}



@media screen and (max-width: 1099px) {
	.depcol, .casino-box-rate {
		display: none;
	}
	
	.casino-box_new {
		grid-template-columns: 1fr;
	}
	
	.casino-box_new .casino-box-rate {
		display: block;
	}
	
	.casinos-head, .casino-box  {
		grid-template-columns: 1fr 0.8fr 1fr;
	}
	
	.casinos-list-images .brokercol, .casinos-list-images .casino-box-logo {
		min-width: 100%;
	}
	.casino-box_new .affbutton{
		white-space: wrap;
		font-size: 14px;
		padding: 10px 30px 10px 8px;
	}
}

@media screen and (max-width: 768px) { 
	.casino-box, .casinos-list-images .casino-box { 
		padding: 10px;
		grid-template-columns: 1fr;
		gap: 20px;
		background-color: #fff;
	}
	
	.casino-box_new .affbutton {
		font-size: 12px;
		padding: 10px 22px 10px 8px;
	}
	.casino-box_new .casino-box-aff {
		display: block;
	}
	
	.casino-box_new .affbutton > div {
		padding: 11px 7px 12px 8px;
		width: 20px;
	}
	
	.casinos-head {
		display: none;
	}
	
	.casino-box-logo img {
		max-width: 200px;
		margin: 0 auto;
	}
	
	.casino-box_new .casino-box-logo img {
		max-width: 100%;
		margin: 0 auto;
	}
	
	.casinos-list-images .casino-box-logo .logo-image {
		max-width: 100%;
	}
	
	.casino-box-rate {
		display: block
	}
	.mb_carousel {
		position: relative;
	}
	.mb_carousel_wrap {
	  width: 100%;
	  height: auto;
	  display: flex;
	  flex-wrap: nowrap;
	  overflow-x: auto;
	  overflow-y: hidden;
	  scroll-behavior: smooth;
	  -webkit-overflow-scrolling: touch;
		padding-bottom: 20px;
		gap: 15px;
		
	}
	.mb_carousel_item {
		min-width: 290px;
		height: auto !important;
	}
    .mb_carousel_wrap::-webkit-scrollbar {
	  width: 2px;
	  height: 2px;
	  background-color: #969696;
	}

	.mb_carousel_wrap::-webkit-scrollbar-thumb {
	  background-color: #00416F;
	}
	
	.arrows-carousel {
		cursor: pointer;
		display: block;
		width: 100%;
		position: absolute;
    	top: 50%;
	}
	
	.arrows-carousel .left {
		position: absolute;
		top: 0;
		 bottom: 0;
		left: -10px;
	}
	
	.arrows-carousel .right {
		position: absolute;
		top: 0;
		 bottom: 0;
		right: -10px;
	}
	
	.casino-box_new-b .payment-images {
		margin-bottom: 5px;
	}

}

.casino-box-aff.casino-box-aff-single {
     grid-template-columns: 1fr;
}
 .cscta-button {
    display: inline-block;
    background-color: #47d147;
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    padding: 0;
    font-weight: bold;
    overflow: hidden;
    width: 100%;
	margin-top: 10px;
}
.cscta-button:hover {
    color: #000;
    opacity: .9;
}
.cscta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
}
.cscta-logo-section {
    background-color: #2ea62e;
    padding: 0 16px;
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
    height: 100%;
    display: flex;
    align-items: center;
}
.cscta-logo-bg {
	width: 100px;
   	display: flex;
	align-items: center;
    justify-content: center;
}
/* .cscta-logo-img {
    height: 35px;
    width: auto;
    display: block;
	margin-left: -10px;
	max-width: 100%;
} */
.cscta-logo-img {
    height: 30px;
    width: auto;
    display: block;
    margin-left: -10px;
    max-width: 85%;
}
.cscta-text {
    padding: 0 10px;
    font-size: 14px;
    white-space: wrap;
}
.cscta-icon {
    padding-right: 16px;
    display: flex;
    align-items: center;
}
.cscta-icon svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
a.tlhomeaffbut.nwb.hidemob {
    margin-top: 13px;
}

.casino-box_new-b a.tlhomeaffbut.nwb.hidemob {
	 margin-top: 10px;
}




@media screen and (max-width: 1099px) {
    .casino-box-aff.casino-box-aff-single {
        display: grid;
    }
    .cscta-text {
        font-size: 12px;
    }
	.cscta-logo-bg {
		width: 65px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.hidemob {
		display: none !important;
	}
	.showmob {
		display: block !important;
	}
}

/* ==============================================
   VARIANT B STYLES - New Design
============================================== */

/* Star rating widget */
span.rate {
	display: block;
	height: 16px;
	width: 98px;
	background: url(../images/ratestars.png) -2px -19px;
}

span.ratetotal {
	display: block;
	height: 16px;
	width: 98px;
	background: url(../images/ratestars.png) -2px -2px;
}

span.rate.ratecen {
	margin: 0 auto;
}

.casinos-list-varb {
	margin-bottom: 20px;
	display: block;
	position: relative;
}

.casinos-list-wrap-varb {
	display: flex;
	flex-direction: column;
}

.casino-box-varb {
	border: 1px solid #e5e7eb;
	background-color: #fff;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	border-radius: 15px;
}

/* Header Bar */
.varb-header-bar {
	background: #C41E24;
	display: flex;
	align-items: center;
	padding: 4px 20px;
	gap: 10px;
	color: #fff;
}

.varb-header-bar-1 {
	background: linear-gradient(90deg, #C9A020 0%, #F5D76E 50%, #C9A020 100%);
	color: #fff;
	padding: 0;
}

.varb-header-bar-2 {
	background: linear-gradient(90deg, #9A9A9A 0%, #D9D9D9 50%, #9A9A9A 100%);
	color: #fff;
	padding: 0;
}

.varb-header-bar-3 {
	background: linear-gradient(90deg, #A86828 0%, #DCA06D 50%, #A86828 100%);
	color: #fff;
	padding: 0;
}

.varb-header-badge {
	color: #000;
	font-size: 15px;
	font-weight: 700;
	padding: 8px 12px;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
}

.varb-header-bar-1 .varb-header-badge {
	background: rgba(0,0,0,0.15);
}

.varb-header-bar-2 .varb-header-badge {
	background: rgba(0,0,0,0.1);
}

.varb-header-bar-3 .varb-header-badge {
	background: rgba(0,0,0,0.15);
}

.varb-header-badge img {
	max-width: 30px;
	width: 100%;
	height: auto;
}

.varb-header-name {
	font-size: 16px;
	font-weight: 600;
	padding: 10px;
}

/* Main Layout - CSS Grid Areas */
.varb-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "banner bonus"
        "payment bonus"
        "payment cta"
        "toggle cta"
        "comparecb comparecb";
    gap: 12px 20px;
    padding: 20px;
    align-items: start;
}

.compare-mode .varb-main-layout {
    grid-template-areas:
        "banner bonus"
        "payment bonus"
        "payment cta"
        "comparecb toggle";
}

.varb-banner-wrap      { grid-area: banner; min-height: 140px; display: flex; flex-direction: column; justify-content: center; }
.varb-bonus-row        { grid-area: bonus; }
.varb-payment-row      { grid-area: payment; }
.varb-cta-section      { grid-area: cta; }
.varb-toggle-row       { grid-area: toggle; }
.casino-compare-row    { grid-area: comparecb; }

/* Banner Wrap */
.varb-banner-wrap > a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
	text-align: center;
	text-decoration: none !important;
}

.varb-banner-wrap .varb-header-name {
	margin-bottom: 10px;
	display: block;
}

.varb-banner-img {
	width: 60%;
	height: auto;
	display: block;
	border-radius: 0;
	margin: 0 auto;
}

.varb-banner-img.varb-banner-img--square {
	width: auto;
	max-width: 60%;
	max-height: 130px;
	margin: 0 auto;
}

/* Payment Row - inside left column */
/* Hide payment row when no payment icons set */
.varb-payment-row:not(:has(img)) {
	display: none;
}

.varb-payment-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	padding-top: 4px;
	padding-bottom: 10px;
}

.varb-payment-label {
	font-size: 12px;
	color: #6b7280;
	font-weight: 400;
	white-space: nowrap;
	margin-right: 16px;
}

.varb-payment-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	justify-content: flex-end;
}

.varb-payment-icons img {
	height: 22px;
	width: auto;
	object-fit: contain;
}

/* Toggle Row - inside left column under payments */
.varb-toggle-row {
	display: grid;
	grid-template-columns: 1.3fr 0.7fr;
	border-top: 1px solid #e5e7eb;
	align-items: center;
	padding-top: 0;
	margin-top: -10px;
}

.varb-review-link {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 10px 0 0;
	font-size: 13px;
	font-weight: 400;
	color: #6a7282;
	text-decoration: underline !important;
	text-decoration-style: dotted !important;
}

.varb-toggle-header {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 6px;
	padding: 10px 0 0;
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 13px;
	font-weight: 400;
	color: #111827;
}

.varb-toggle-header.active .varb-toggle-icon {
	transform: rotate(180deg);
}

.varb-toggle-icon {
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

/* Rating Row */
.varb-rating-row {
	display: flex;
	align-items: center;
	gap: 10px;
	grid-column: 1 / -1;
}

.varb-rating-row span.rate.ratecen {
	margin: 0;
}

.varb-rating-text {
	font-size: 13px;
	color: #6b7280;
	font-weight: 400;
	white-space: nowrap;
}

/* =====================
   Bonus & Signup Row
   Desktop: signup box left + bonus code section right
   ===================== */
.varb-bonus-row {
	display: flex;
    flex-direction: column;
    gap: 10px;
	width: 100%;
}

.varb-bonus-signup-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	align-items: stretch;
}

/* Signup Box - bordered box with label + value */
.varb-signup-box {
    display: grid;
    grid-template-columns: 1fr;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 8px 10px;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	background: #fafafa;
	gap: 2px;
	min-width: 120px;
}

.varb-signup-box .varb-info-box-label {
	font-size: 14px;
	color: #6b7280;
	font-weight: 700;
}

.varb-signup-box .varb-info-box-value {
	font-size: 14px;
	font-weight: 900;
	color: #111827;
}

/* Bonus Code Section - stacked: red pill label on top, code + copy below */
.varb-bonus-code-section {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
	justify-content: center;
}

.varb-bonus-code-section .varb-code-label {
	display: inline-block;
    font-size: 14px;
    padding: 2px 10px;
    color: #fff;
    font-weight: 500;
    background: #C41E24;
    border-radius: 5px;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.varb-code-row {
	display: inline-flex;
	align-items: center;
	border: 1px solid #E5E7EB;
	border-radius: 6px;
	overflow: hidden;
	width: 100%;
	background: #fafafa;
}

.varb-code-row .varb-code-value {
	font-size: 14px;
	font-weight: 600;
	color: #000;
	padding: 2px 12px;
	background: #fafafa;
	white-space: nowrap;
	width: 100%;
	text-align: center;
}

.varb-copy-btn {
	background: #fafafa;
	border: none;
	border-left: 1px solid #E5E7EB;
	cursor: pointer;
	padding: 6px 10px;
	transition: color 0.2s;
	display: flex;
	align-items: center;
}

.varb-copy-btn:hover {
	color: #374151;
	background: #f3f4f6;
}

/* =====================
   Info Boxes
   Desktop: 3 boxes (signup hidden), Mobile: 4
   ===================== */
.varb-info-boxes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.varb-info-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	padding: 6px;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	background: #fafafa;
	gap: 2px;
	line-height: 1.3;
}

/* Hide the signup duplicate box on desktop */
.varb-info-box-signup {
	display: none;
}

.varb-info-box-label {
	font-size: 14px;
	color: #6b7280;
	font-weight: 700;
}

.varb-info-box-value {
	font-size: 14px;
	font-weight: 700;
	color: #111827;
}

/* CTA Section - inside right column */
.varb-cta-section {
	padding: 0;
	width: 100%;
}

.varb-cta-section .cscta-button {
	background: linear-gradient(to right, #2ea62e 5%, #47d147);
	margin-top: 0;
}

.varb-cta-section .casino-box-aff {
	margin: 0;
}

.varb-cta-section .cscta-wrapper {
	height: 55px;
}

.varb-cta-section .cscta-logo-bg {
	width: auto;
	display: inline-block;
}

.varb-cta-section .cscta-logo-img {
	margin-left: 0;
	max-width: 70px;
    min-width: 65px;
	    max-height: 30px;
    height: 100%;
}

.varb-cta-section .cscta-text {
	padding: 0;
	font-size: 12px;
	position: relative;
	padding-left: 15px;
}

.varb-cta-section .cscta-text:after {
	width: 2px;
	height: 30px;
	background: rgba(225,225,225, .3);
	position: absolute;
	content: '';
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0px;
}

.varb-cta-section .cscta-icon svg {
	width: 24px;
	height: 24px;
}

.varb-cta-section .cscta-logo-section {
	padding: 0;
	padding-left: 15px;
	clip-path: none;
	background-color: transparent;
}





/* Toggle Content - full width below the grid */
.varb-toggle-content {
	padding: 20px 25px;
	background: #fafafa;
	border-top: 1px solid #e5e7eb;
}

/* Details Grid */
.varb-details-grid {
	padding-bottom: 15px;
}

.varb-details-title {
	font-size: 15px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 12px 0;
	padding: 0;
	border-bottom: 1px solid #e5e7eb;
	padding-bottom: 10px;
}

/* Features List */
.varb-features-list {
	list-style: none;
	padding: 0 !important;
	margin: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.varb-features-list li,
.main-content .varb-features-list li {
	list-style: none !important;
	list-style-type: none !important;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	line-height: 1.6;
	color: #374151;
	text-indent: 0 !important;
	padding: 0;
	margin: 0;
}

.varb-features-list li::before,
.varb-features-list li::marker {
	display: none !important;
	content: none !important;
}

.varb-features-list li svg {
	flex-shrink: 0;
	margin-top: 2px;
}

/* Warning Box */
.varb-warning-box {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #FEF3CD;
	border: 1px solid #F0D861;
	border-radius: 8px;
	padding: 12px 15px;
	margin-top: 15px;
}

.varb-warning-box svg {
	flex-shrink: 0;
	margin-top: 1px;
}

.varb-warning-box span {
	font-size: 12px;
	color: #856404;
	line-height: 1.5;
}

/* =====================
   RESPONSIVE - Mobile
   ===================== */
@media screen and (max-width: 768px) {
	.varb-main-layout {
		display: flex;
		flex-direction: column;
		gap: 15px;
		padding: 15px;
	}

	.varb-banner-wrap      { order: 1; }
	.varb-bonus-row 	   { order: 2; }
	.varb-rating-row       { order: 3; }
	.varb-payment-row      { order: 5; }
	.varb-cta-section      { order: 6; }
	.varb-toggle-row       { 
		width: 100%;
		margin-top: 0;
		order: 8; 
	}
	.casino-compare-row    { order: 7; }

	/* On mobile: show signup in 4-box grid, hide the standalone signup box */
	.varb-info-box-signup {
		display: flex;
	}

	.varb-info-boxes {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.varb-signup-box {
		display: none;
	}

	.varb-bonus-signup-row {
		grid-template-columns: 1.2fr 0.8fr;
	}
	
	.varb-rating-row {
		grid-column: auto;
	}

	.varb-bonus-code-section {
		align-items: flex-start;
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 0;
	}
	
	.varb-bonus-code-section .varb-code-label {
		font-size: 10px;
	}

	.varb-banner-img {
		border-radius: 0;
	}

	.varb-info-box {
		padding: 8px 4px;
	}

	.varb-info-box-label {
		font-size: 11px;
	}
	
	.varb-info-box-value {
		font-size: 13px;
		line-height: 1.2;
	}

	.varb-toggle-content {
		padding: 15px;
	}



	.varb-header-badge,
	.varb-header-name {
		font-size: 14px;
	}

	.varb-payment-icons img {
		height: 26px;
	}

	.varb-payment-row {
		flex-direction: column;
		align-items: flex-start;
	}
	.varb-bonus-code-section .varb-code-label {
		border-top-right-radius: 0;
        border-bottom-right-radius: 0;
	}
	.varb-code-row {
				border-top-left-radius: 0;
        border-bottom-left-radius: 0;
	}
}

@media screen and (max-width: 480px) {
	.varb-info-boxes {
		gap: 4px;
	}

	.varb-info-box {
		padding: 4px 6px 6px 6px;
		gap: 4px;
		line-height: 1.7;
		
	}

	.varb-bonus-code-section .varb-code-label {
		font-size: 10px;
		padding: 1px 5px;
		border-top-right-radius: 0;
        border-bottom-right-radius: 0;
	}

	.varb-code-row .varb-code-value {
		font-size: 10px;
		padding: 0 4px;
	}
	
	.varb-code-row {
				border-top-left-radius: 0;
        border-bottom-left-radius: 0;
	}

	.varb-payment-icons img {
		height: 22px;
	}
	
	.varb-copy-btn {
		padding: 3px 4px; 
		margin-right: 0;
	}

}

@media screen and (max-width: 460px) {
		.varb-rating-text {
		display: none;
	}
}



.disclosure-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    position: relative;
	margin-top: 12px;
	margin-bottom: 12px !important;
}
.how-we-rate-item,
.aff-disclosure-item {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
}
.how-we-rate-icon,
.aff-disclosure-icon {
    width: 18px;
    height: 18px;
}
.aff-disclosure-icon svg,
.how-we-rate-icon svg {
    vertical-align: 3px;
	fill: #5D5855;
}
.how-we-rate-title,
.aff-disclosure-title {
	font-size: 12px;
    font-weight: bold;
	color: #5D5855;
	margin: 0;
}
.how-we-rate-box,
.aff-disclosure-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 2px solid #DADADA;
	border-radius: 10px;
    box-shadow: 0px 7px 7px 0px rgba(0, 0, 0, 0.08);
    padding: 20px;
    display: none;
    z-index: 11;
}
.how-we-rate-box.active,
.aff-disclosure-box.active {
    display: block;
    animation: slideDown 0.3s ease-in-out;
}
.how-we-rate-box p,
.aff-disclosure-box p {
    font-size: 12px;
    color: #5D5855;
	padding-bottom: 0;
}
.close-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
    width: 20px;
    height: 20px;
}
.close-icon svg {
    fill: #A01D1D;
}
.no-margin-bottom {
	margin-bottom: 0px !important;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
	/* hovers*/
	.how-we-rate:hover .how-we-rate-item h3,
	.how-we-rate:hover .how-we-rate-box h3 {
		color: #A01D1D; /* Change to desired text color */
	}

	.aff-disclosure:hover .aff-disclosure-item h3,
	.aff-disclosure:hover .aff-disclosure-box h3 {
		color: #A01D1D;
	}

	/* Specific styles for icons on hover */
	.how-we-rate:hover .how-we-rate-icon svg path,
	.aff-disclosure:hover .aff-disclosure-icon svg path {
		fill: #A01D1D;
	}
/* END Disclosure */ 
