:root {
	--bg-primary: linear-gradient(180deg, #0D1A14 0%, #121325 100%);
	--bg-secondary: rgba(27, 31, 56, 1);
	--bg-card: linear-gradient(360deg, rgba(22, 60, 41, 0.5) 0%, rgba(27, 31, 56, 0.5) 100%);
	--text-primary: #ffffff;
	--text-secondary: #ffffff;
	--border-color: rgba(255, 255, 255, 0.1);
	--fill-svg: #ffffff;
}
[data-theme="light"] {
	--bg-primary: #ffffff;
	--bg-secondary: #ffffff;
	--bg-card: linear-gradient(360deg, rgba(219, 237, 228, 0.5) 0%, rgba(235, 235, 241, 0.5) 100%);
	--text-primary: #000000;
	--text-secondary: rgba(0, 0, 0, 1);
	--border-color: rgba(0, 0, 0, 0.1);
	--fill-svg: rgba(54, 200, 127, 1);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
.container-fluid {
	max-width: 1408px;
}
.container {
	max-width: 1144px;
}
section:has(+ .no-title) {
    margin-bottom: 0;
}
section + .no-title {
    margin-top: 2.5rem;
}
body {
	font-family: "Roboto", sans-serif;
	background: var(--bg-primary);
	color: var(--text-primary);
	overflow-x: hidden;
	transition: background-color 0.3s ease, color 0.3s ease;
}
.site-main {
    margin-top: 72px;
}
a {
	text-decoration: none;
	color: var(--text-primary);
}
img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
h1, .h1 {
	font-size: 55px;
	font-weight: 700;
	letter-spacing: -1px;
}
h2, .h2, .with-title h1 {
	font-size: 38px;
	font-weight: 700;
	color: var(--text-secondary);
	margin-bottom: 2.5rem;
}
h3, .h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--text-secondary);
}
.mt-6 {
    margin-top: 6rem;
}
.mb-5 {
	margin-bottom: 2.5rem !important;
}
@media (min-width: 768px){
	.my-5 {
		margin-top: 5rem !important;
        margin-bottom: 5rem !important;
	}
	.my-7, section.anchor-section {
		margin-top: 7.5rem;
        margin-bottom: 7.5rem;
	}
}
@media (max-width: 767px) {
	.mb-5, .container + .no-title {
		margin-bottom: 2rem !important;
	}
	h2, .h2 {
		font-size: 28px;
		margin-bottom: 2rem;
	}
	.my-7, section.anchor-section {
		margin-top: 5rem;
        margin-bottom: 5rem;
	}
}
.justify-items-end {
	justify-items: end !important;
}
.theme-toggle svg path {
	fill: var(--fill-svg);
}
#scrollToTop {
	cursor: pointer;
	position: fixed;
    transition: transform 0.3s ease-in-out;
	bottom: 50px;
    right: 20px;
	width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 20;
	background: rgb(54 200 127);
    align-content: center;
    text-align: center;
    box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.15);
	display: none;
}
#scrollToTop:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
[data-theme="light"] #scrollToTop {
	background: rgb(54 200 127);
}
[data-theme="light"] #scrollToTop path {
	fill: #fff;
}
.main-header {
	background: linear-gradient(180deg, #0D1A14 100%, #121325 100%);
	position: fixed;
    width: 100%;
	top: 0;
	z-index: 1000;
	transition: background-color 0.3s ease;
}
[data-theme="light"] .main-header {
	background: #ffffff;
}
.navbar {
	padding: 1rem 0;
    max-width: 1120px;
    margin: 0 auto;
}
.navbar-brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-nav .nav-link {
	color: #fff;
	font-weight: 400;
	padding: 0.5rem 1rem !important;
	transition: color 0.3s ease;
	font-size: 16px;
}
.navbar-nav .menu-item.active {
	border-bottom: 2px solid rgba(54, 200, 127, 1);
}
[data-theme="light"] .navbar-nav .nav-link {
	color: rgba(0, 0, 0, 1);
}
.navbar-nav .nav-link:hover {
	color: rgba(54, 200, 127, 1);
}
.navbar-right {
	gap: 1rem;
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        gap: 2rem;
    }
}
@media (min-width: 1120px) {
    .navbar-expand-lg .navbar-nav {
        gap: 3rem;
	}
}
@media (max-width: 991px) {
    .navbar-expand-lg .navbar-nav {
        gap: 1rem;
    	margin-top: 2rem;
	}
	.navbar-right {
		margin-top: 1rem;
		flex-flow: column;
		align-items: end;
	}
	.navbar-right .theme-toggle {
		margin-right: 10px;	
	}
	.navbar-toggler {
		position: relative;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.navbar-toggler .icon-burger,
	.navbar-toggler .icon-close {
		position: absolute;
		transition: opacity 0.3s ease, transform 0.3s ease;
	}
	.navbar-toggler .icon-burger {
		opacity: 1;
		transform: scale(1) rotate(0deg);
	}
	.navbar-toggler .icon-close {
		opacity: 0;
		transform: scale(0.8) rotate(90deg);
	}
	.navbar-toggler[aria-expanded="true"] .icon-burger {
		opacity: 0;
		transform: scale(0.8) rotate(-90deg);
	}
	.navbar-toggler[aria-expanded="true"] .icon-close {
		opacity: 1;
		transform: scale(1) rotate(0deg);
	}
	.mobile-menu-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		backdrop-filter: blur(1px);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
		z-index: 20;
	}
	.mobile-menu-overlay.active {
		opacity: 1;
		visibility: visible;
	}
	body.mobile-menu-open {
		overflow: hidden;
	}
	.navbar {
		height: auto;
		overflow-y: auto;
	}
	.navbar .dropdown-menu, .site-footer .dropdown-menu {
        min-width: 80px;
    }
}
.lang-switcher {
	background: transparent;
	border: 0;
	border-radius: 12px;
	color: var(--text-primary);
	padding: 0.5rem 1rem;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.lang-switcher.show {
    color: rgba(54, 200, 127, 1);
}
.lang-switcher.show::after {
    margin-left: 0.25rem;
    border-top-color: rgba(54, 200, 127, 1);
}
.lang-name {
    font-weight: 400;
    font-size: 16px;
}
.dropdown-menu {
	background: linear-gradient(360deg, #163C29 0%, #1B1F38 100%);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 75px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
[data-theme="light"] .dropdown-menu {
	background: rgb(255 255 255);
}
.dropdown-item {
	padding: 0.75rem 0.25rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    font-size: 17px;
    font-weight: 300;
	padding-left: 0.75rem;
}
.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}
.dropdown-item.active {
	background: transparent;
    color: rgba(54, 200, 127, 1);
}
@media (max-width: 767px) {
    .lang-switcher {
        padding: 0.4rem 0.8rem;
        font-size: 13px;
    }
    .dropdown-menu {
        min-width: 180px;
    }
}
.theme-toggle {
	background: transparent;
	border: 0;
	cursor: pointer;
	transition: all 0.3s ease;
}
.theme-toggle:hover {
	border: 0;
	transform: rotate(180deg);
}
.footer-topline {
    color: var(--text-primary);
	opacity: 0.5;
}
.site-footer {
	background: var(--bg-secondary);
	font-size: 17px;
	font-weight: 300;
}
.footer-nav li { margin-bottom: 0.5rem; }
.footer-email {
    color: rgba(54, 200, 127, 1);
}
[data-theme="light"] .footer-email {
    color: rgba(0, 156, 78, 1);
}
@media (max-width: 991px) {
    .navbar-expand-lg .navbar-collapse {
        text-align: end;
    }
}
@media (max-width: 767px) {
	.site-footer .col-6:first-child {
		order: 0;
	}
	.site-footer .col-6:nth-child(2) {
		order: 2;
		margin-top: 20px;
	}
	.site-footer .col-6:nth-child(3) {
		order: 3;
		margin-top: 20px;
	}
	.site-footer .col-6:nth-child(4) {
		order: 4;
		margin-top: 20px;
	}
	.site-footer .col-6:nth-child(5) {
		order: 1;
		justify-items: end;
	}
}
/* Hero */
.hero-container {
    position: relative;
    padding: 2rem 132px;
    height: 600px;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    max-height: 100%;
    border-radius:20px;
}
.hero-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
	margin-bottom: 2rem;
	color: #fff;
}
.hero-title b {
	color: rgba(54, 200, 127, 1);
}
.hero-description {
	font-weight: 300;
    font-size: 17px;
	opacity: 0.8;
	margin-bottom: 2rem;
	color: #fff;
}
.hero-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
	margin-bottom: 2rem;
}
.badge-item {
	display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(54, 200, 127, 0.16);
    padding: 0.5rem;
    border-radius: 20px;
    backdrop-filter: blur(1px);
}
.badge-item span {
    font-size: 17px;
	font-weight: 600;
	color: #fff;
}
.btn-primary-custom {
	background: rgba(54, 200, 127, 1);
    padding: 0.75rem 1.3rem;
    border-radius: 32px;
    font-weight: 500;
    color: rgba(7, 15, 32, 1);
    font-size: 17px;
	transition: all 0.3s ease;
	box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.15);
	display: inline-block;
}
.btn-primary-custom:hover {
	background-color: rgba(51, 255, 92, 1);
	color: #001428;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.hero-disclaimer {
    font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 300;
}
.strategy-section {
	background: var(--bg-card);
    padding: 25px 0;
	border-radius: 20px;
	border: 1px solid rgba(54, 200, 127, 0.3);
}
.strategy-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
	padding: 0px 40px;
}
.strategy-card {
    color: var(--text-primary);
	padding: 25px 10px;
}
.strategy-title div {
	font-size: 17px;
	font-weight: 600;
	margin-left: 10px;
}
.strategy-card p {
	margin-top: 10px;
    opacity: 0.8;
	font-size: 17px;
	font-weight: 300;
}
@media (max-width: 1367px) {
	.hero-container {
        padding: 10px 20px;
        height: 100%;
        background-repeat: no-repeat;
        background-size: cover;
    }
}
@media (max-width: 992px) {
    .hero-title { font-size: 38px; }
    .strategy-container { grid-template-columns: repeat(2,1fr); }
	.hero-description, .hero-badges, .hero-title, .hero-buttons, .hero-disclaimer { margin-bottom: 1rem; }
}
@media (max-width: 576px) {
	.hero-title {margin-top: 2rem; font-size: 28px;}
    .strategy-container { grid-template-columns: 1fr; }
	.hero-badges {gap: 1rem;}
	.strategy-section {padding: 20px 0 0px 0;}
	.strategy-card {padding: 10px 10px;}
}
/* Hero */
/* Affiliate */
.affiliate-description {
    opacity: 0.8;
    font-size: 17px;
    font-weight: 300;
}
/* Affiliate */
/* Faq */
.accordion {
	--bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_114_739)'%3E%3Cpath d='M0 18C0 13.2261 1.89642 8.64773 5.27208 5.27208C8.64773 1.89642 13.2261 0 18 0C22.7739 0 27.3523 1.89642 30.7279 5.27208C34.1036 8.64773 36 13.2261 36 18C36 22.7739 34.1036 27.3523 30.7279 30.7279C27.3523 34.1036 22.7739 36 18 36C13.2261 36 8.64773 34.1036 5.27208 30.7279C1.89642 27.3523 0 22.7739 0 18Z' fill='%234736C7'/%3E%3Cpath d='M16.822 25.5292C17.4737 26.181 18.5322 26.181 19.1839 25.5292L29.1949 15.5182C29.8467 14.8665 29.8467 13.808 29.1949 13.1562C28.5432 12.5045 27.4847 12.5045 26.833 13.1563L18.0003 21.9889L9.16769 13.1615C8.51593 12.5097 7.45748 12.5097 6.80571 13.1615C6.15395 13.8132 6.15395 14.8717 6.80572 15.5234L16.8167 25.5345L16.822 25.5292Z' fill='%2336C87F'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_114_739'%3E%3Crect width='36' height='36' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
	--bs-border-radius: 12px;
}
.accordion-button:not(.collapsed)::after {
	background-image: var(--bs-accordion-btn-icon);
}
.accordion-item {
	border: 0;
}
.accordion-item:first-child .accordion-button i {
	border-top-right-radius: 10px;
}
.accordion-item:last-child .accordion-button i {
	border-bottom-right-radius: 10px;
}
.accordion .accordion-body, .accordion .accordion-button {
	background: var(--bg-primary);
	color: var(--text-primary);
	border: 1px solid rgba(54, 200, 127, 0.3);
	box-shadow: none;
	padding: 0;
	font-size: 17px;
	transition: 0.3s;
}
[data-theme="light"] .accordion .accordion-button {
	background-color: rgba(7, 45, 126, 0.05);
}
.accordion-button::after {
	background-color: rgba(67, 119, 230, 0.13);
	padding: 46px;
	background-position: center;
}
.accordion-button span {
	opacity: 1;
	padding: 0 40px 0px 30px;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.accordion-button.collapsed span {
	opacity: 0.8;
}
.accordion-button::after {
	display: none;
}
.accordion-item + .accordion-item .accordion-button {
    border-top: 0;
}
.accordion-button i {
    background-color: transparent;
    padding: 46px;
    background-position: center;
    transition: none;
}
[data-theme="light"] .accordion-button i {
	background-color: transparent;
}
.accordion-button i::after {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: 36px;
    transition: var(--bs-accordion-btn-icon-transition);
    display: block;
}
.accordion-button:not(.collapsed) i::after {
    background-image: var(--bs-accordion-btn-icon);
    transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-body p {
	font-weight: 300;
	padding: 30px;
	margin: 0;
}
/* Faq */
/* Pros Cons */
.pros-cons-text {
    font-size: 17px;
    font-weight: 300;
    opacity: 0.8;
}
/* Pros Cons */
/* How start */
.how-start-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.how-start-card {
    padding: 30px;
	border: 1px solid rgba(54, 200, 127, 0.3);
	background: var(--bg-card);
}
.how-start-icon {
    height: 34px;
    align-content: center;
}
.how-start-title {
    font-weight: 600;
    font-size: 17px;
	color: rgba(54, 200, 127, 1);
}
.how-start-des {
    font-size: 17px;
    font-weight: 300;
    opacity: 0.8;
}
@media (min-width: 577px){
	.how-start-card:first-child {
		border-top-left-radius: 12px;
		border-bottom-left-radius: 12px;
		border-right: 0;
	}
	.how-start-card:last-child {
		border-top-right-radius: 12px;
		border-bottom-right-radius: 12px;
		border-left: 0;
	}
}
@media (max-width: 576px) {
    .how-start-container {
        grid-template-columns: 1fr;
    }
	.how-start-card:first-child {
		border-top-left-radius: 12px;
		border-top-right-radius: 12px;
		border-bottom: 0;
	}
	.how-start-card:last-child {
		border-bottom-left-radius: 12px;
		border-bottom-right-radius: 12px;
		border-top: 0;
	}
}
/* How start */
/* Top Casino */
.top-casino__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 576px) {
    .top-casino__list { grid-template-columns: 1fr; }
}
.top-casino__card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
}
.top-casino__logo {
	background: #1e2126;
    height: 150px;
    display: flex;
}
.top-casino__logo img {
	max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.top-casino__content {
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
	border: 1px solid rgba(54, 200, 127, 0.3);
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
	border-top: 0;
}
.top-casino__desc ul {
	list-style-type: none;
	padding-left: 0;
	font-size: 17px;
	font-weight: 300;
	line-height: 34px;
	margin: 0;
}
.top-casino__name {
    font-size: 28px;
    font-weight: 700;
}
.top-casino__header {
    background: rgba(54, 200, 127, 0.16);
    border-radius: 20px;
    font-size: 22px;
    font-weight: 700;
    padding: 0.45rem 1rem;
}
[data-theme="light"] .top-casino__header {
	background: rgba(54, 200, 127, 0.16);
}
.top-casino__info {
	font-size: 17px;
	font-weight: 600;
}
.top-casino__rating ul {
    list-style-type: none;
    display: flex;
    flex-flow: column;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 3px 10px;
	margin: 0;
}
[data-theme="light"] .top-casino__rating ul {
	background-color: rgba(54, 200, 127, 0.16);
}
.top-casino__card .top-casino__desc ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.top-casino__rating ul li:first-child {
	font-size: 12px;
	font-weight: 300;
}
.top-casino__rating ul li:last-child {
	font-size: 17px;
	font-weight: 600;
}
.top-casino__rating ul li span {
	color: rgba(54, 200, 127, 1);
	font-weight: 700;
}
.top-casino__desc ul li span:first-child {
	color: rgb(255 255 255 / 50%);
}
[data-theme="light"] .top-casino__desc ul li span:first-child {
	color: rgb(0 0 0 / 50%);
}
.top-casino__desc ul li span + span {
	color: rgb(255 255 255 / 100%);
}
[data-theme="light"] .top-casino__desc ul li span + span {
	color: rgba(0, 0, 0, 1);
}
.top-casino__footer {
   font-weight: 300;
    font-size: 12px;
    opacity: 0.5;
}
.top-casino__tooltip {
	position: relative;
	display: inline-flex;
	cursor: pointer;
}
.top-casino__tooltip .tooltip-bg {
	width: 180px;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 150%;
	transform: translateY(-10%);
	background-color: #333;
	padding: 8px 12px;
	border-radius: 12px;
	z-index: 1000;
	transition: opacity 0.3s, visibility 0.3s;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.top-casino__tooltip .tooltip-bg span {
	opacity: 0.8;
	font-size: 12px;
	font-weight: 300;
	text-wrap: wrap;
}
.top-casino__tooltip:hover .tooltip-bg {
	visibility: visible;
	opacity: 1;
}
@media (max-width: 767px) {
	.top-casino__tooltip .tooltip-bg {
		left: -50%;
		transform: translate(-85%, -120%);
	}
}
[data-theme="light"] .top-casino__tooltip .tooltip-bg {
	background: linear-gradient(180deg, rgba(152, 180, 241, 1) 0%, rgba(213, 222, 240, 1) 100%);
}
/* Top Casino */
/* Gallery */
.gallery__item {
	display: flex;
	flex-direction: column;
}
.gallery__img img {
	width: 100%;
	height: 297px;
	border-radius: 12px;
	display: block;
	object-fit: cover;
}
.gallery__caption {
	margin-top: 12px;
}
.gallery__caption, .gallery__text {
	font-size: 17px;
    font-weight: 600;
	transition: .3s;
}
a.gallery__item:hover .gallery__caption, a.gallery__item:hover .gallery__text {
	color: rgba(0, 156, 78, 1);
}
[data-theme="light"] a.gallery__item:hover .gallery__caption, [data-theme="light"] a.gallery__item:hover .gallery__text {
    color: rgba(0, 156, 78, 1);
}
.gallery-prev, .gallery-next {
    width: 40px;
    height: 40px;
}
.gallery-prev {
	transform: rotate(180deg);
}
@media (min-width: 1240px) {
	.gallery-prev {
		left: -50px !important;
	}
	.gallery-next {
		right: -50px !important;
	}
}
.swiper-button-disabled {
        opacity: 0 !important;
}
/* Gallery */
/* Demo game iframe */
.demo-game-bg img {
	filter: brightness(0.5);
	max-width: inherit;
}
.demo-game-container {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	min-height: 544px;
	max-width: 1000px;
	margin: 0 auto;
}
.demo-game-content {
	background: linear-gradient(360deg, #163C29 0%, #1B1F38 100%);
	border-radius: 12px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 63px 30px;
	width: 100%;
	max-width: 357px;
}
[data-theme="light"] .demo-game-content {
	background: rgba(255, 255, 255, 1);
}
.demo-game-text {
	font-size: 17px;
	font-weight: 300;
	opacity: 0.8;
	text-align: center;
}
.demo-game-container.active iframe {
	display: block !important;
	z-index: 20;
}
/* Demo game iframe */
/* Game interface */
.game-interface-number {
	font-size: 22px;
	font-weight: 700;
	color: rgba(0, 156, 78, 1);
}
[data-theme="light"] .game-interface-number {
	color: rgba(7, 45, 126, 1);
}
.game-interface-description {
    max-width: 530px;
    font-size: 17px;
    opacity: 0.8;
    letter-spacing: 0;
    font-weight: 300;
}
.game-interface-section img {
    border-radius: 12px;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
/* Game interface */
/* How bonuses */
.how-bonuses-card {
    border: 1px solid rgba(54, 200, 127, 0.3);
    border-radius: 12px;
	padding: 30px;
	background: var(--bg-card);
}
.how-bonuses-card + .how-bonuses-card {
    margin-top: 2rem;
}
.how-bonuses-title {
	font-size: 22px;
	font-weight: 700;
}
.how-bonuses-des {
	font-size: 17px;
	font-weight: 300;
	opacity: 0.8;
}
/* How bonuses */
/* Support block */
.support-des {
	font-size: 17px;
	font-weight: 300;
	opacity: 0.8;
}
.support-card + .support-card {
	margin-top: 1.65rem;
}
@media (min-width: 768px) {
	.support-card .d-flex {
		align-items: center;
	}
}
/* Support block */
/* Vol block */ 
.vol-block {
	background: var(--bg-card);
	border-radius: 12px;
	border: 1px solid rgba(54, 200, 127, 0.3);
}
.vol-list {
	padding: 4rem 2rem;
}
.vol-list ul img {
	margin-top: 2px;
	margin-left: -2px;
}
.vol-list-nubmer {
	font-size: 17px;
	color: rgba(0, 156, 78, 1);
	font-weight: 700;
}
.vol-list-des {
	opacity: 0.8;
	font-size: 17px;
	font-weight: 300;
}
@media (max-width: 767px) {
	.vol-list {
		padding: 2rem;
	}
}
/* Vol block */ 
/* Pfm block */
.pfm-card {
    background: var(--bg-card);
    border-radius: 12px;
}
.pfm-card__right {
	border: 1px solid rgba(54, 200, 127, 0.3);
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
	border-left: 0;
	width: calc(100% - 180px);
}
.pfm-card + .pfm-card {
	margin-top: 2rem;
}
.pfm-card__logo {
	width: 180px;
    height: 200px;
    border-radius: 12px;
}
.pfm-card__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.pfm-card__age, .pfm-card__bonus  {
	font-size: 22px;
	font-weight: 600;
}
.pfm-card__feature {
	font-weight: 300;
	opacity: 0.8;
	font-size: 17px;
	line-height: 140%;
}
.pfm-card .top-casino__rating ul {
	margin: 0;		
}
.pfm-card__bonus span {
	color: rgba(0, 156, 78, 1);
}
[data-theme="light"] .pfm-card__bonus span {
	color: rgba(54, 200, 127, 0.3);
}
.pfm-card__right-one {
	flex-flow: column;
}
@media (max-width: 767px) {
	.pfm-card__right {
		border: 1px solid rgba(54, 200, 127, 0.3);
		border-top-right-radius: 0;
		border-bottom-left-radius: 12px;
		border-bottom-right-radius: 12px;
		border-top: 0;
		width: 100%;
		gap: 1rem;
        padding: 1rem 2rem;
	}
	.pfm-card__logo {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}
	.pfm-card__right-one {
		flex-flow: row;
    	justify-content: space-between;
	}
}
@media (min-width: 768px) {
	.pfm-card__bonus {
		text-align: end;
        display: flex;
        flex-flow: column;
	}
}
@media (max-width: 1024px) {
	.pfm-card {  
		gap: 1rem;
	}
	.pfm-card__logo {
		width: 100%;
		background-color: rgba(12, 12, 12, 1);
		display: flex;
        justify-content: center;
	}
}
/* Pfm block */
/* Blog listing */
.blog-card {
    width: 100%;
    height: 100%;
    display: block;
    padding: 10px;
    margin-top: 30px;
}
.blog-card img {
	width: 100%;
    height: 294px;
    object-fit: cover;
    border-radius: 12px;
}
.blog-card-des {
	font-size: 17px;
	font-weight: 600;
	transition: 0.3s;
}
.blog-card:hover .blog-card-des {
    color: rgba(0, 156, 78, 1);
}
.pagination-counter {
    font-size: 17px;
    font-weight: 600;
}
.pagination-btn {
	background: rgba(0, 156, 78, 1);
    padding: 0.7rem 1.3rem;
    border-radius: 32px;
    font-weight: 500;
    color: rgba(7, 15, 32, 1);
    font-size: 17px;
    box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.15);
}
.pagination-btn.disabled {
    background: rgba(54, 200, 127, 0.2);
}
/* Blog listing */
/* Author block */
.author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
.author-avatar img {
    border-radius: 50%;
}
.author-name {
	font-size: 22px;
	font-weight: 700;
	margin-top: 5px;
}
.author-name span {
	font-size: 12px;
	font-weight: 300;
	opacity: 0.5;
	text-align: center;
}
.author-des {
	font-size: 17px;
	font-weight: 300;
	opacity: 0.8;
	padding: 0 3rem;
}
@media (max-width: 767px) {
	.author-block .col-md-auto {
		order: 0;
		flex-flow: row !important;
        gap: 1rem;
	}
	.author-block .col-12 {
		margin-top: 1rem;
	}
	.author-block .col-12:first-child {
		order: 1
	}
	.author-block .col-12:nth-child(2) {
		order: 2;
	}
	.author-block .col-12:last-child {
		order: 0;
		right: 0;
		position: absolute;
		margin: 0 10px;
	}
	.author-des {
		padding: 0;
	}
	.author-name {
		font-size: 18px;
		line-height: 18px;
		margin-top: 10px;
	}
}
/* Author block */
/* Anchor List */
.anchor-block {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem 10rem;
    border: 1px solid rgba(54, 200, 127, 0.3);
    position: relative;
}
.anchor-block a {
    font-weight: 600;
    font-size: 17px;
    transition: .3s;
}
.anchor-block a:hover {
    color: rgba(0, 156, 78, 1);
}
.anchor-block a span {
    color: rgba(0, 156, 78, 1);
}
.anchor-toggle-wrapper {
    display: none;
    text-align: center;
}
.anchor-toggle-btn {
    background: transparent;
    border: none;
    color: rgba(0, 156, 78, 1);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    padding: 0.5rem 1rem;
    text-decoration: underline;
    transition: .3s;
}
[data-theme="light"] .anchor-block a span {
    color: rgba(0, 156, 78, 1);
}
[data-theme="light"] .anchor-block {
    background: linear-gradient(360deg, rgba(219, 237, 228, 0.5) 0%, rgba(235, 235, 241, 0.5) 100%);
}
[data-theme="light"] .anchor-block a:hover {
    color: rgba(0, 156, 78, 1);
}
@media (max-width: 1023px) {
    .anchor-block {
        padding: 1.5rem;
    }
}
@media (max-width: 767px) {
    .anchor-toggle-wrapper {
        display: block;
    }
    .anchor-col-1 .anchor-item:nth-child(n+4) {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin-bottom: 0 !important;
        transition: max-height 0.4s ease, opacity 0.4s ease, margin-bottom 0.4s ease;
    }
    .anchor-col-2 {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease;
    }
    .anchor-block.expanded .anchor-col-1 .anchor-item:nth-child(n+4) {
        max-height: 200px;
        opacity: 1;
        margin-bottom: 1rem !important;
    }
    .anchor-block.expanded .anchor-col-2 {
        max-height: 2000px;
        opacity: 1;
    }
	.anchor-block:not(.expanded) .anchor-col-1 .anchor-item:nth-child(2) {
		opacity: 0.5;
	}
	.anchor-block:not(.expanded) .anchor-col-1 .anchor-item:nth-child(3) {
		opacity: 0.3;
	}
}
/* Quote block */
.quote-block {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2.8rem 5rem;
	border: 1px solid rgba(54, 200, 127, 0.3);
}
.quote-block span {
	font-size: 17px;
    font-weight: 300;
    opacity: 0.8;
}
@media (max-width: 767px) {
	.quote-block {
		padding: 1.5rem;
		margin-top: -1rem;
	}
}
/* Quote block */
/* Pre-game checklist */
.pre-game-description {
	font-size: 17px;
	font-weight: 300;
	opacity: 0.8;
}
.pre-game-block {
	border: 1px solid rgba(54, 200, 127, 0.3);
	border-radius: 12px;
	padding: 1.5rem
}
.pre-game-list {
	font-size: 17px;
	font-weight: 300;
	opacity: 0.8;
}
.pre-game-list li:not(:last-child) {
	margin-bottom: 1rem;
}
.pre-game-list span {
	font-weight: 600;
	color: rgba(0, 156, 78, 1);
}
[data-theme="light"] .pre-game-list span {
	color: rgba(54, 200, 127, 0.3);
}
@media (min-width: 768px) {
	.pre-game-list li {
		align-items: center;
	}
	.pre-game-block {
		padding: 2.5rem;
	}
}
/* Pre-game checklist */
/* Banner section */
.banner-section img {
	border-radius: 12px;
}
/* Banner section */
/* TTB section */
.table-responsive table {
	border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
	margin: 0;
}
.table-responsive thead th {
	color: var(--text-primary);
	background-color: transparent;
    font-weight: 600;
    padding: 1.9rem;
    font-size: 17px;
	vertical-align: middle;
	border-top: 1px solid rgba(54, 200, 127, 0.3);
	border-bottom: 1px solid rgba(54, 200, 127, 0.3);
}
.table-responsive thead th:first-child {
	border-left: 1px solid rgba(54, 200, 127, 0.3);
}
.table-responsive thead th:last-child {
	border-right: 1px solid rgba(54, 200, 127, 0.3);
}
.table-responsive thead th:first-child {
	border-top-left-radius: 12px;
}
.table-responsive thead th:last-child {
    border-top-right-radius: 12px;
}
tbody tr:nth-child(odd) {
    background: rgba(54, 200, 127, 0.05);
}
.table-responsive tbody tr:last-child td:first-child {
	border-bottom-left-radius: 12px;
}
.table-responsive tbody tr:last-child td:last-child {
	border-bottom-right-radius: 12px;
}
.table-responsive tbody td {
	color: var(--text-primary);
	background-color: transparent;
    font-weight: 300;
    padding: 1.9rem;
    font-size: 17px;
	opacity: 0.8;
	border-bottom: 1px solid rgba(54, 200, 127, 0.3);
}
.table-responsive tbody td:first-child {
	border-left: 1px solid rgba(54, 200, 127, 0.3);
}
.table-responsive tbody td:last-child {
	border-right: 1px solid rgba(54, 200, 127, 0.3);
}
.ttb-description {
	opacity: 0.8;
    font-size: 17px;
    font-weight: 300;
}
.ttb-table tbody td:has(a) {
    opacity: 1;
	width: 190px;
}
.intro-stat {
	border: 1px solid rgba(54, 200, 127, 0.3);
	border-right: 0;
	padding: 0.75rem 1.5rem;
}
.intro-stat:first-child {
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
}
.intro-stat:last-child {
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
	border-right: 1px solid rgba(54, 200, 127, 0.3);
}
.intro-stat-head {
	font-size: 17px;
	font-weight: 600;
}
.intro-stat-value {
	font-size: 17px;
	font-weight: 300;
	opacity: 0.8;
}
@media (max-width: 767px) {
	.ttb-table thead th,
	.ttb-table tbody td {
		padding: 0.75rem 0.5rem;
		font-size: 0.85rem;
	}
	.ttb-buttons .col-md-6 + .col-md-6 {
		margin-top: 1rem;
	}
	.intro-stat:first-child, .intro-stat:nth-child(2) {
		border-bottom: 0;
	}
	.intro-stat:first-child {
		border-bottom-left-radius: 0;
	}
	.intro-stat:nth-child(2) {
		border-top-right-radius: 12px;
		border-right: 1px solid rgba(54, 200, 127, 0.3);
	}
	.intro-stat:nth-child(3) {
		border-bottom-left-radius: 12px;
	}
	.intro-stat:last-child {
		border-top-right-radius: 0px;
	}
}
/* TTB section */
/* Link section */
.link-section {
	background: var(--bg-card);
	border-radius: 12px;
	padding: 1.5rem;
	border: 1px solid rgba(54, 200, 127, 0.3);
}
.link-section img {
	width: 100px;
	height: 100px;
	object-fit: contain;
}
.link-section a { 
	font-size: 16px; 
	font-weight: 400; 
	max-width: 542px; 
	text-decoration-line: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
	text-decoration-color: currentColor;
	transition: text-decoration-color 0.3s ease;
} 
.link-section a:hover { 
	text-decoration-color: transparent;
}
/* Link section */
/* Rtp section */
.rtp-top span {
	font-size: 22px;
	font-weight: 700;
}
.rtp-top span + span {
	font-size: 17px;
	font-weight: 300;
	opacity: 0.8;
}
.rtp-segment .rtp-top {
	border-top: 1px solid rgba(54, 200, 127, 0.3);
	border-left: 1px solid rgba(54, 200, 127, 0.3);
	padding: 0 1rem;
	height: 80px;
}
.rtp-segment:first-child .rtp-top {
	border-top-left-radius: 12px;
}
.rtp-segment:first-child .rtp-bottom {
	border-bottom-left-radius: 12px;
}
.rtp-segment:last-child .rtp-top {
	border-right: 1px solid rgba(54, 200, 127, 0.3);
	border-top-right-radius: 12px;
}
.rtp-segment:last-child .rtp-bottom {
	border-bottom-right-radius: 12px;
}
.rtp-bottom {	
	height: 80px;
	display: flex;
	justify-content: center;
}
.rtp-badge {
	align-content: center;
	margin: 1rem 0;
	background: rgba(255, 255, 255, .25);
	padding: 0px 10px;
	border-radius: 12px;
	font-size: 17px;
	font-weight: 600;
	line-height: 18px;
}
@media (max-width: 767px) {
	.rtp-segment {
		display: flex;
	}
	.rtp-scale .row {
		flex-direction: column-reverse;
	}
	.rtp-scale .rtp-top, .rtp-scale .rtp-bottom {
		width: 50%;
	}
	.rtp-segment .rtp-top {
		border-top: 1px solid rgba(54, 200, 127, 0.3);
		border-left: 1px solid rgba(54, 200, 127, 0.3);
		border-right: 0;
	}
	.rtp-segment:first-child .rtp-top {
		border-bottom-left-radius: 12px;
		border-top-left-radius: 0;
		border-bottom: 1px solid rgba(54, 200, 127, 0.3);
	}
	.rtp-segment:last-child .rtp-top {
		border-top-right-radius: 0px;
		border-top-left-radius: 12px;
		border-right: 0;
	}
	.rtp-segment:first-child .rtp-bottom {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 12px;
	}
	.rtp-segment:last-child .rtp-bottom {
		border-bottom-right-radius: 0px;
		border-top-right-radius: 12px;
	}
}
/* Rtp section */
/* Features section */
.features-section {
	background: var(--bg-card);
	border-radius: 12px;
	padding: 2rem 3rem;
	border: 1px solid rgba(54, 200, 127, 0.3);
}
.features-list__title {
	font-size: 17px;
	font-weight: 600;
}
.features-list__desc {
	font-size: 17px;
	font-weight: 300;
}
@media (max-width: 767px) {
	.features-section {
		padding: 0.75rem 1rem;
	}
}
/* Features section 
[data-theme="light"] .strategy-card svg path, 
[data-theme="light"] .how-start-card svg path, 
[data-theme="light"] .col-md-6.col-12:first-child .pros-cons-icon  svg path, 
[data-theme="light"] .intro-stats svg path, 
[data-theme="light"] .features-section svg path, 
[data-theme="light"] .game-interface-section svg path, 
[data-theme="light"] .how-bonuses-card svg path, 
[data-theme="light"] .support-card svg path,
[data-theme="light"] .swiper-button-prev svg path,
[data-theme="light"] .swiper-button-next svg path,
[data-theme="light"] .vol-block svg path {
    fill: var(--fill-svg);
}
[data-theme="light"] .pfm-card .pfm-card__feature svg path {
	stroke: rgba(54, 200, 127, 0.3);
}
[data-theme="light"] .game-interface-section circle {
    fill: rgba(0, 156, 78, 1);
}
[data-theme="light"] .game-interface-section circle:first-child {
    stroke: rgba(54, 200, 127, 0.3);
    fill: #fff;
}
[data-theme="light"] .pre-game-block circle {
    fill: rgba(0, 156, 78, 1);
}
[data-theme="light"] .pre-game-block circle:first-child {
    stroke: rgba(54, 200, 127, 0.3);
    fill: #fff;
}
[data-theme="light"] .vol-block circle {
    fill: rgba(0, 156, 78, 1);
}
[data-theme="light"] .vol-block circle:first-child {
    stroke: rgba(54, 200, 127, 0.3);
    fill: #fff;
}
*/
.breadcrumbs a, .breadcrumbs .breadcrumb_last {
	font-size: 12px;
	font-weight: 300;
}
.breadcrumbs span + span {
    margin-left: 5px;
}
.breadcrumbs span > span {
    margin-right: 5px;
}
/* Bonuses section */
.bonuses-des {
	font-size: 17px;
	font-weight: 300;
	opacity: 0.8;
}
.bonus-card {
    background: var(--bg-card);
    border: 1px solid rgba(54, 200, 127, 0.3);
    border-radius: 12px;
    padding: 24px;
}
.bonus-card__header {
    align-items: start;
	gap: 2rem;
}
.bonus-card__casino {
    display: flex;
    gap: 12px;
    align-items: center;
}
.bonus-card__logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bonus-card__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.bonus-card__name {
	font-size: 17px;
    font-weight: 600;
	margin: 0;
}
.bonus-card__license {
    background: linear-gradient(90deg, #4736C7 0%, #36C87F 100%);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 6px;
	font-size: 10px;
	font-weight: 600;
    margin-top: 5px;
	width: 100%;
    display: block;
    text-align: center;
}
.bonus-card__title {
    font-size: 22px;
    font-weight: 700;
}
.bonus-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.feature-badge {
	background: rgba(54, 200, 127, 0.16);
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 17px;
    font-weight: 300;
    width: auto;
    min-width: 32%;
	border: 1px solid rgba(54, 200, 127, 0.3)
}
.bonus-card__toggle {
    background: transparent;
    border: none;
    color: rgba(54, 200, 127, 1);
    font-size: 17px;
	font-weight: 600;
    transition: 0.3s;
}
.bonus-card__toggle span {
    text-decoration: underline;
}
.bonus-card__toggle:hover span {
    text-decoration: none;
}
.bonus-card__toggle[aria-expanded="true"] {
    margin-bottom: 0;
}
.details-list {
    list-style: none;
    padding-left: 7px;
    margin: 0;
    font-size: 12px;
	font-weight: 300;
}
.details-list li {
    padding: 4px 0;
    align-items: center;
    display: flex;
	gap: 5px;
}
.bonus-card__actions {
    display: flex;
    gap: 12px;
}
.promo-code {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(54, 200, 127, 0.3);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.promo-code__text {
    font-weight: 600;
    font-size: 17px;
}
.promo-code__copy {
    background: transparent;
    border: none;
    display: flex;
    font-size: 12px;
    font-weight: 300;
    transition: color 0.3s;
    gap: 10px;
    color: inherit;
}
.promo-code__copy.copied {
	color: #5a8df7;
}
.promo-code__copy:hover {
    color: #5a8df7;
}
.bonus-card__terms {
    font-size: 12px;
    opacity: 0.5;
    font-weight: 300;
}
@media (max-width: 767px) {
    .bonus-card__actions {
        flex-direction: column;
    }
}
@media (max-width: 639px) {
    .feature-badge {
        width: 100%;
    }
	.feature-badge {
        text-align: center;
    }
}
/* Bonuses section */