@font-face {
  font-family: "TT-Interphases-Pro";
  src: url("../fonts/TT_Interphases_Pro_Trial_Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "TT-Interphases-Pro";
  src: url("../fonts/TT_Interphases_Pro_Trial_Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "TT-Interphases-Pro";
  src: url("../fonts/TT_Interphases_Pro_Trial_DemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "TT-Interphases-Pro";
  src: url("../fonts/TT_Interphases_Pro_Trial_Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}



:root {
	--bg: #0c102b;
}

html,
body {
	height: 100%;
}

body {
	background: var(--bg);
}

/* Background layer */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;

	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;

	/* Fallback */
	background-image: url("/templates/duel/images/bg-abstract-1536x1024.webp");

	transform: translateZ(0);
}

/* Responsive selection (1x / 2x) */
@supports (background-image: image-set(url("x") 1x)) {
	body::before {
		background-image: image-set(
			url("/templates/duel/images/bg-abstract-1280w.webp") 1x,
			url("/templates/duel/images/bg-abstract-2560x1707.webp") 2x
		);
	}
}

/* Tall screens: keep focus higher */
@media (max-aspect-ratio: 3/4) {
	body::before {
		background-position: center 10%;
	}
}

@media (max-aspect-ratio: 9/16) {
	body::before {
		background-position: center 0%;
	}
}

/* Overlay to blend with #0c102b and keep UI readable */
body::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;

	background:
		radial-gradient(1200px 900px at 50% 15%, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0) 60%),
		linear-gradient(180deg, rgba(12, 16, 43, 0.85) 0%, rgba(12, 16, 43, 0.92) 40%, rgba(12, 16, 43, 1) 100%);
	pointer-events: none;
}

/* Duel header actions */
.desctop .duel-head-row {
	min-height: 68px;
	align-items: center;
}

.duel-head-logo {
	display: inline-flex;
	align-items: center;
	min-height: 52px;
}

.duel-head-logo img,
.duel-head-mobile__logo img {
	height: 42px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.duel-head-actions-wrap {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.duel-head-actions {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 6px 0;
}

.duel-head-balance-link {
	display: inline-flex;
	align-items: center;
	height: 46px;
	padding: 0 16px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	text-decoration: none;
	background: none;
	border: 1px solid rgb(51, 57, 92);
	border-radius: 8px;
	transition: color .15s ease, opacity .15s ease;
}

.duel-head-balance-link:hover {
	background-color: rgb(33, 38, 70); /* ~12-15% darker */
	border-color: rgb(46, 51, 83);
	color: #fff;
}

.duel-wager-scale {
	position: relative;
	padding: 8px 12px;
	background: rgb(38, 44, 80);
	border: 1px solid rgb(51, 57, 92);
	border-radius: 8px;
	min-width: 140px;
}

.duel-wager-scale__title {
	font-size: 11px;
	color: var(--duel-text-muted);
	margin-bottom: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.duel-wager-scale__wrap {
	height: 6px;
	background: rgb(26, 32, 65);
	border-radius: 3px;
	overflow: hidden;
	margin-bottom: 4px;
}

.duel-wager-scale__inner {
	height: 100%;
	background: linear-gradient(90deg, #ff6b00 0%, #ff9500 100%);
	border-radius: 3px;
	transition: width 0.3s ease;
}

.duel-wager-scale__percent {
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	text-align: right;
}

.duel-head-icon-btn {
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgb(51, 57, 92);
	border-radius: 8px;
	background: rgb(38, 44, 80);
	color: var(--duel-text-muted);
	text-decoration: none;
	transition: background-color .15s cubic-bezier(.4, 0, .2, 1), border-color .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1);
}

.duel-head-icon-btn:hover {
	background: rgb(33, 38, 70);
	border-color: rgb(46, 51, 83);
	color: #fff;
}

.duel-head-icon-btn img {
	width: 16px;
	height: 16px;
	filter: var(--duel-icon-filter-muted);
	transition: filter .15s cubic-bezier(.4, 0, .2, 1);
}

.duel-head-icon-btn:hover img {
	filter: var(--duel-icon-filter-white);
}

.duel-head-icon-btn svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.duel-head-icon-btn .cat-icon {
	width: 20px;
	height: 20px;
	margin-right: 0;
}

.duel-head-btn {
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 22px;
	border: 1px solid rgb(51, 57, 92);
	border-radius: 8px;
	background: rgb(38, 44, 80);
	color: #fff;
	font-family: var(--font-main);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: background-color .15s cubic-bezier(.4, 0, .2, 1), border-color .15s cubic-bezier(.4, 0, .2, 1);
}

.duel-head-btn:hover {
	background: rgb(33, 38, 70);
	border-color: rgb(46, 51, 83);
	color: #fff;
}

.duel-head-btn--accent {
	background: var(--duel-accent-btn-bg);
	border-color: var(--duel-accent-btn-border);
}

.duel-head-btn--accent:hover {
	background: var(--duel-accent-btn-bg-hover);
	border-color: var(--duel-accent-btn-border-hover);
}

.duel-btn-accent {
	background: var(--duel-accent-btn-bg) !important;
	border-color: var(--duel-accent-btn-border) !important;
	color: #fff !important;
}

.duel-btn-accent:hover {
	background: var(--duel-accent-btn-bg-hover) !important;
	border-color: var(--duel-accent-btn-border-hover) !important;
	color: #fff !important;
}

.duel-head-mobile {
	min-height: 68px;
	padding-top: 8px;
	padding-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.duel-head-mobile__menu {
	margin-right: 0;
}

/* Кнопка меню в шапке только когда сайдбар скрыт (< 769px) */
@media (min-width: 769px) {
	.duel-head-mobile__menu {
		display: none !important;
	}
}

.duel-head-mobile__actions {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.duel-head-balance-link.duel-head-mobile-balance-link {
	height: auto;
	padding: 8px 12px;
	font-size: 13px;
}

.duel-head-mobile-profile {
	height: 38px;
	padding: 0 10px;
	font-size: 13px;
	max-width: 130px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.page-favorites .providers-block,
.page-favorites .providers-add {
	display: none !important;
}




















/*  tabs  */


.tabs-duel{
	display: inline-block;
	flex: 0 0 auto;
}

.tabs-duel__list{
	position: relative;

	display: inline-flex;
	align-items: center;
	gap: 4px;

	height: 48px;
	padding: 4px;

	border-radius: 12px;
	background-color: rgb(24, 30, 60);

	width: fit-content;
}

.tabs-duel__indicator{
	position: absolute;
	top: 4px;
	left: 0;

	height: 40px;
	width: 0;

	border-radius: 8px;
	background-color: rgb(52, 60, 100);

	transform: translateX(4px);
	transition: transform .2s cubic-bezier(.4,0,.2,1), width .2s cubic-bezier(.4,0,.2,1);
	will-change: transform, width;

	z-index: 1;
}

.tabs-duel__tab{
	position: relative;
	z-index: 2;

	display: flex;
	align-items: center;
	gap: 8px;

	height: 40px;
	padding: 0 14px;

	border: 0;
	border-radius: 8px;
	background: transparent;

	font-family: TT-Interphases-Pro, system-ui, sans-serif;
	font-size: 14px;
	line-height: 24px;

	color: rgb(118, 127, 170);
	filter: brightness(1);

	cursor: pointer;
	white-space: nowrap;
}

.tabs-duel__tab.is-active{
	color: rgb(255, 255, 255);
	filter: brightness(2);
}

.tabs-duel__tab:focus-visible{
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(110, 168, 254, .25);
}

.tabs-duel__panels{
	margin-top: 12px;
}

.tabs-duel__panel[hidden]{
	display: none !important;
}

/*  tabs  ( end) */



.icon {
	display: inline-block;
	width: 48px;
	height: 48px;

	/* The desired icon color */
	background-color: #ffffff;
}


.icon-logo {
	/* Use PNG as alpha mask */
	-webkit-mask: url("/img/logo.png") no-repeat center / contain;
	mask: url("/img/logo.png") no-repeat center / contain;
}



/* Category icons */


.cat-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	margin-right: 8px;
	color: inherit;
	transition: color .15s cubic-bezier(.4, 0, .2, 1);
}

.cat-icon--phosphor::before,
.cat-icon--phosphor::after {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: currentColor;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	transition: opacity .15s cubic-bezier(.4, 0, .2, 1);
}

.cat-icon--phosphor::before {
	-webkit-mask-image: var(--cat-icon-regular);
	mask-image: var(--cat-icon-regular);
	opacity: 1;
}

.cat-icon--phosphor::after {
	-webkit-mask-image: var(--cat-icon-fill, var(--cat-icon-regular));
	mask-image: var(--cat-icon-fill, var(--cat-icon-regular));
	opacity: 0;
}

.duel-cat-tabs__tab:hover .cat-icon--phosphor::before,
.duel-cat-tabs__tab.is-active .cat-icon--phosphor::before,
.duel-side-nav__link:hover .cat-icon--phosphor::before,
.duel-side-nav__link.is-active .cat-icon--phosphor::before,
.duel-head-icon-btn:hover .cat-icon--phosphor::before,
.mobile-menu .link:hover .cat-icon--phosphor::before,
.duel-lang.is-open .duel-lang__toggle .cat-icon--phosphor::before,
.duel-cat-carousel__title-wrap:hover .cat-icon--phosphor::before {
	opacity: 0;
}

.duel-cat-tabs__tab:hover .cat-icon--phosphor::after,
.duel-cat-tabs__tab.is-active .cat-icon--phosphor::after,
.duel-side-nav__link:hover .cat-icon--phosphor::after,
.duel-side-nav__link.is-active .cat-icon--phosphor::after,
.duel-head-icon-btn:hover .cat-icon--phosphor::after,
.mobile-menu .link:hover .cat-icon--phosphor::after,
.duel-lang.is-open .duel-lang__toggle .cat-icon--phosphor::after,
.duel-cat-carousel__title-wrap:hover .cat-icon--phosphor::after {
	opacity: 1;
}

.duel-cat-carousel__head:hover .duel-cat-carousel__title-icon .cat-icon--phosphor::before,
.duel-cat-carousel__head:focus-within .duel-cat-carousel__title-icon .cat-icon--phosphor::before {
	opacity: 0;
}

.duel-cat-carousel__head:hover .duel-cat-carousel__title-icon .cat-icon--phosphor::after,
.duel-cat-carousel__head:focus-within .duel-cat-carousel__title-icon .cat-icon--phosphor::after {
	opacity: 1;
}

/* Duel side navigation */
.duel-side-nav-root {
	--duel-side-nav-open: 260px;
	--duel-side-nav-closed: 74px;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: var(--duel-side-nav-open);
	display: flex;
	flex-direction: column;
	background: var(--duel-side-nav-bg);
	border-right: 1px solid var(--duel-side-nav-edge);
	z-index: 25;
	transition: width .22s cubic-bezier(.4, 0, .2, 1);
	overflow: visible;
}

.duel-side-nav-root::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: -120px;
	width: 120px;
	background: linear-gradient(90deg, var(--duel-side-nav-glow) 0%, rgba(7, 11, 35, 0) 100%);
	pointer-events: none;
}

.duel-side-nav__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin: 8px auto 8px 9px;
	border: 1px solid transparent;
	border-radius: 10px;
	background-color: transparent;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	outline: none;
	box-shadow: none;
	transition: background-color .15s cubic-bezier(.4, 0, .2, 1), border-color .15s cubic-bezier(.4, 0, .2, 1), margin-left .22s cubic-bezier(.4, 0, .2, 1), margin-right .22s cubic-bezier(.4, 0, .2, 1);
}

.duel-side-nav__toggle:hover {
	background-color: var(--duel-side-nav-btn-bg-hover);
	border-color: var(--duel-side-nav-btn-border-hover);
}

.duel-side-nav__toggle img {
	width: 22px;
	height: 22px;
	opacity: .92;
	display: block;
}

.duel-side-nav__toggle:focus,
.duel-side-nav__toggle:focus-visible,
.duel-lang__toggle:focus,
.duel-lang__toggle:focus-visible {
	outline: none;
	box-shadow: none;
}

.duel-side-nav__scroll {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	overflow-x: visible;
	padding: 0 8px 16px;
}

.duel-side-nav__menu {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.duel-side-nav__link {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid transparent;
	border-radius: 10px;
	color: var(--duel-side-nav-item-text);
	font-family: TT-Interphases-Pro, system-ui, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	transition: color .15s cubic-bezier(.4, 0, .2, 1), background-color .2s cubic-bezier(.4, 0, .2, 1), border-color .2s cubic-bezier(.4, 0, .2, 1), box-shadow .2s cubic-bezier(.4, 0, .2, 1), transform .2s cubic-bezier(.4, 0, .2, 1), padding .22s cubic-bezier(.4, 0, .2, 1), gap .22s cubic-bezier(.4, 0, .2, 1);
}

.duel-side-nav__icon {
	position: relative;
	width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 20px;
	align-self: center;
	z-index: 1;
	color: var(--duel-text-muted);
	line-height: 0;
}

.duel-side-nav__icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 42px;
	height: 42px;
	transform: translate(-50%, -50%);
	border-radius: 10px;
	border: 1px solid transparent;
	background: transparent;
	transition: background-color .15s cubic-bezier(.4, 0, .2, 1), border-color .15s cubic-bezier(.4, 0, .2, 1), box-shadow .15s cubic-bezier(.4, 0, .2, 1);
}

.duel-side-nav__icon svg {
	width: 20px;
	height: 20px;
	position: relative;
	z-index: 2;
	display: block;
}

.duel-side-nav__icon .cat-icon {
	width: 20px;
	height: 20px;
	margin-right: 0;
}

.duel-side-nav__icon-img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	object-position: center center;
	position: relative;
	z-index: 2;
	display: block;
	opacity: 1;
	transform: none;
	transition: opacity .16s ease;
}

.duel-side-nav__link:hover,
.duel-side-nav__link.is-active,
.duel-lang.is-open .duel-lang__toggle {
	color: #fff;
}

.duel-side-nav__link:hover .duel-side-nav__icon,
.duel-side-nav__link.is-active .duel-side-nav__icon,
.duel-lang.is-open .duel-lang__toggle .duel-side-nav__icon {
	color: #fff;
}

.duel-side-nav__link:hover .duel-side-nav__icon-img,
.duel-side-nav__link.is-active .duel-side-nav__icon-img,
.duel-lang.is-open .duel-lang__toggle .duel-side-nav__icon-img {
	opacity: 1;
}

.duel-side-nav__link:hover .duel-side-nav__icon::before,
.duel-side-nav__link.is-active .duel-side-nav__icon::before,
.duel-lang.is-open .duel-lang__toggle .duel-side-nav__icon::before {
	background-color: var(--duel-side-nav-item-bg-hover);
	border-color: var(--duel-side-nav-item-border-hover);
}

.duel-side-nav__label {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	opacity: 1;
	transform: translateX(0);
	transition: opacity .15s ease, transform .2s ease;
}

body.duel-side-nav-collapsed .duel-side-nav-root {
	width: var(--duel-side-nav-closed);
}

body.duel-side-nav-collapsed .duel-side-nav__toggle {
	margin-left: auto;
	margin-right: auto;
}

body.duel-side-nav-collapsed .duel-side-nav__scroll {
	padding-left: 6px;
	padding-right: 6px;
}

body.duel-side-nav-collapsed .duel-side-nav__link {
	justify-content: center;
	gap: 0;
	padding-left: 0;
	padding-right: 0;
}

body.duel-side-nav-collapsed .duel-side-nav__icon {
	margin: 0 auto;
}

body.duel-side-nav-collapsed .duel-side-nav__label {
	opacity: 0;
	transform: translateX(-8px);
	pointer-events: none;
	width: 0;
}

.duel-lang {
	position: relative;
	margin-top: 8px;
}

.duel-lang__toggle {
	cursor: pointer;
	width: 100%;
	border: 1px solid transparent;
	border-radius: 10px;
	background: transparent;
	appearance: none;
	-webkit-appearance: none;
	outline: none;
	box-shadow: none;
	text-align: left;
	transition: background-color .2s cubic-bezier(.4, 0, .2, 1), border-color .2s cubic-bezier(.4, 0, .2, 1), box-shadow .2s cubic-bezier(.4, 0, .2, 1), transform .2s cubic-bezier(.4, 0, .2, 1);
}

.duel-lang__current {
	font-weight: 600;
}

.duel-lang__caret {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	opacity: .85;
	transition: transform .15s ease;
}

.duel-lang__caret img {
	width: 11px;
	height: 11px;
}

.duel-lang.is-open .duel-lang__caret {
	transform: rotate(180deg);
}

.duel-lang__panel {
	display: none;
	position: absolute;
	left: 10px;
	right: 6px;
	bottom: calc(100% + 8px);
	background: #2a3058;
	border: 1px solid #4b5787;
	border-radius: 12px;
	padding: 8px;
	max-height: min(62vh, calc(100vh - 140px));
	overflow-y: auto;
	box-shadow: 0 10px 24px rgba(2, 6, 24, .42);
	z-index: 10;
}

.duel-lang__heading {
	padding: 2px 10px 8px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .03em;
	text-transform: uppercase;
	color: #aebbe2;
}

.duel-lang.is-open .duel-lang__panel {
	display: block;
}

.duel-lang__option {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 38px;
	padding: 7px 10px;
	border-radius: 9px;
	border: 1px solid transparent;
	color: #f1f4ff;
	font-size: 16px;
	font-weight: 500;
}

.duel-lang__option img {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 18px;
}

.duel-lang__option:hover,
.duel-lang__option.is-current {
	background: #3c4a7e;
	border: 1px solid #4e639b;
}

body:not(.duel-side-nav-collapsed) .duel-lang__panel {
	margin: 0;
}

body.duel-side-nav-collapsed .duel-lang__panel {
	position: fixed;
	left: 84px;
	top: 120px;
	transform: none;
	width: 250px;
	max-height: 62vh;
	overflow-y: auto;
	margin: 0;
	z-index: 40;
}

body.duel-side-nav-collapsed .duel-lang__toggle .duel-side-nav__label,
body.duel-side-nav-collapsed .duel-lang__toggle .duel-lang__caret {
	display: none;
}

body:not(.duel-side-nav-collapsed) .duel-lang__toggle:hover,
body:not(.duel-side-nav-collapsed) .duel-lang.is-open .duel-lang__toggle {
	background-color: var(--duel-side-nav-item-bg-hover);
	border-color: var(--duel-side-nav-item-border-hover);
	box-shadow: 0 6px 14px rgba(2, 6, 24, .24);
	transform: translateX(1px);
}

body:not(.duel-side-nav-collapsed) .duel-side-nav__link:hover,
body:not(.duel-side-nav-collapsed) .duel-side-nav__link.is-active {
	background-color: var(--duel-side-nav-item-bg-hover);
	border-color: var(--duel-side-nav-item-border-hover);
	box-shadow: 0 6px 14px rgba(2, 6, 24, .24);
	transform: translateX(1px);
}

body:not(.duel-side-nav-collapsed) .duel-side-nav__link:hover .duel-side-nav__icon::before,
body:not(.duel-side-nav-collapsed) .duel-side-nav__link.is-active .duel-side-nav__icon::before,
body:not(.duel-side-nav-collapsed) .duel-lang__toggle:hover .duel-side-nav__icon::before,
body:not(.duel-side-nav-collapsed) .duel-lang.is-open .duel-lang__toggle .duel-side-nav__icon::before {
	background: transparent;
	border-color: transparent;
}

body:not(.game-page) {
	padding-top: 60px;
	padding-left: 260px;
	transition: padding-left .22s cubic-bezier(.4, 0, .2, 1);
}

body:not(.game-page).duel-side-nav-collapsed {
	padding-left: 74px;
}

body:not(.game-page) header {
	left: 260px;
	transition: left .22s cubic-bezier(.4, 0, .2, 1);
}

body:not(.game-page).duel-side-nav-collapsed header {
	left: 74px;
}

body.game-page {
	padding-left: 276px;
	transition: padding-left .22s cubic-bezier(.4, 0, .2, 1);
}

body.game-page.duel-side-nav-collapsed {
	padding-left: 86px;
}

body.game-page header {
	left: 260px;
	transition: left .22s cubic-bezier(.4, 0, .2, 1);
}

body.game-page.duel-side-nav-collapsed header {
	left: 74px;
}

@media only screen and (max-width: 1199px) {
	.duel-side-nav-root {
		--duel-side-nav-open: 250px;
		--duel-side-nav-closed: 60px;
	}

	.duel-side-nav-root::after {
		right: -80px;
		width: 80px;
	}

	.duel-side-nav__toggle {
		width: 42px;
		height: 42px;
		margin-top: 6px;
		margin-left: 6px;
		border-radius: 10px;
	}

	body:not(.game-page) {
		padding-left: 250px;
	}

	body:not(.game-page).duel-side-nav-collapsed {
		padding-left: 60px;
	}

	body.game-page {
		padding-left: 250px;
	}

	body.game-page.duel-side-nav-collapsed {
		padding-left: 60px;
	}

	body:not(.game-page) header {
		left: 250px;
	}

	body:not(.game-page).duel-side-nav-collapsed header {
		left: 60px;
	}

	body.game-page header {
		left: 250px;
	}

	body.game-page.duel-side-nav-collapsed header {
		left: 60px;
	}

	.duel-side-nav__link {
		font-size: 15px;
	}
}

/* Category carousel test block */
.duel-cat-carousel {
	--duel-cat-slide-width: 200px;
	margin-bottom: 22px;
}

.duel-cat-carousel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.duel-cat-carousel__title-wrap {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	cursor: pointer;
}

.duel-cat-carousel__title-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	line-height: 0;
	color: var(--duel-text-muted);
	transition: color .15s cubic-bezier(.4, 0, .2, 1);
}

.duel-cat-carousel__title-icon .cat-icon {
	width: 20px;
	height: 20px;
	margin-right: 0;
}

.duel-cat-carousel__title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	transition: color .15s cubic-bezier(.4, 0, .2, 1);
}

.duel-cat-carousel__title-link {
	color: inherit;
	text-decoration: none;
}

.duel-cat-carousel__title-link:hover,
.duel-cat-carousel__title-link:focus-visible {
	color: var(--duel-text-muted);
}

.duel-cat-carousel__title-wrap:hover .duel-cat-carousel__title,
.duel-cat-carousel__title-wrap:focus-within .duel-cat-carousel__title,
.duel-cat-carousel__head:hover .duel-cat-carousel__title,
.duel-cat-carousel__head:focus-within .duel-cat-carousel__title {
	color: var(--duel-text-muted);
}

.duel-cat-carousel__title-wrap:hover .duel-cat-carousel__title-link,
.duel-cat-carousel__title-wrap:focus-within .duel-cat-carousel__title-link,
.duel-cat-carousel__head:hover .duel-cat-carousel__title-link,
.duel-cat-carousel__head:focus-within .duel-cat-carousel__title-link {
	color: var(--duel-text-muted);
}

.duel-cat-carousel__title-wrap:hover .duel-cat-carousel__title-icon,
.duel-cat-carousel__title-wrap:focus-within .duel-cat-carousel__title-icon,
.duel-cat-carousel__head:hover .duel-cat-carousel__title-icon,
.duel-cat-carousel__head:focus-within .duel-cat-carousel__title-icon {
	color: var(--duel-text-muted);
}

.duel-cat-carousel__controls {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.duel-cat-carousel__slide {
	width: var(--duel-cat-slide-width);
}

.duel-cat-card {
	position: relative;
	display: block;
	border-radius: 12px;
	overflow: hidden;
	background: #0f1433;
	height: 140px;
}

.duel-cat-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translateZ(0);
}

.duel-transition-all {
	transition-property: all;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s;
}

.duel-duration-300 {
	transition-duration: .3s;
}

.duel-cat-tabs {
	margin-bottom: 22px;
}

.duel-cat-tabs__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 40%);
	gap: 12px;
	align-items: center;
	margin-bottom: 32px;
}

.duel-cat-tabs__list {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px;
	justify-self: start;
	width: max-content;
	max-width: 100%;
	border-radius: 12px;
	background: rgb(24, 30, 60);
	overflow-x: auto;
	scrollbar-width: none;
}

.duel-cat-tabs__list::-webkit-scrollbar {
	display: none;
}

/* Providers dropdown: keep it above cards and clickable */
.providers-dropdown {
	z-index: 20;
}

.providers-dropdown-block {
	z-index: 40;
}

.providers-empty {
	cursor: default;
	opacity: .75;
	pointer-events: none;
}

.duel-cat-tabs__tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 38px;
	padding: 0 12px;
	border: 1px solid transparent;
	border-radius: 9px;
	background: transparent;
	color: var(--duel-text-muted);
	font-family: TT-Interphases-Pro, system-ui, sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .15s cubic-bezier(.4, 0, .2, 1), border-color .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1);
}

.duel-cat-tabs__tab:hover,
.duel-cat-tabs__tab.is-active {
	color: #fff;
	background: rgb(52, 60, 100);
	border-color: rgb(51, 57, 92);
}

.duel-cat-tabs__tab-icon .cat-icon {
	width: 16px;
	height: 16px;
	margin-right: 0;
}

.duel-cat-tabs__panel[hidden] {
	display: none !important;
}

.duel-cat-tabs__search {
	position: relative;
	height: 48px;
	background: #070b23;
	border-radius: 12px;
	padding: 1px;
}

.duel-cat-tabs__search-icon {
	width: 16px;
	height: 16px;
	display: block;
	color: rgb(118, 127, 170);
}

.duel-cat-tabs__search-icon-wrap {
	position: absolute;
	left: 12px;
	top: 0;
	bottom: 0;
	width: 16px;
	height: 16px;
	margin: auto 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.duel-cat-tabs__search-input {
	width: 100%;
	height: 100%;
	text-indent: 28px;
	background: #121731;
	border-radius: 11px;
}

.duel-cat-tabs__search-results {
	margin-bottom: 18px;
}

.duel-cat-tabs__search-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	grid-column: 1 / -1;
	min-height: 156px;
	padding: 24px;
	border: 1px solid rgba(52, 60, 100, .75);
	border-radius: 12px;
	background: transparent;
	font-size: 14px;
	font-weight: 600;
	line-height: 21px;
	text-align: center;
	color: var(--duel-text-muted);
}

.duel-cat-tabs__search-loader {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	grid-column: 1 / -1;
	min-height: 156px;
	padding: 24px;
	border: 1px solid rgba(52, 60, 100, .75);
	border-radius: 12px;
	background: rgba(13, 19, 52, .72);
	gap: 12px;
}

@media only screen and (max-width: 1024px) {
	.duel-cat-tabs__top {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-bottom: 24px;
	}

	.duel-cat-tabs__list {
		justify-self: stretch;
		width: 100%;
	}

	.duel-cat-tabs__search {
		width: 100%;
	}
}

.duel-provider-inline-loader {
	margin: 0 0 16px;
	padding-left: 0;
	padding-right: 0;
}

.list-game.ajax-list {
	transition: opacity .22s ease;
}

.list-game.ajax-list.duel-loading-state {
	opacity: .9;
}

.duel-provider-inline-loader-inplace {
	padding-left: calc(var(--bs-gutter-x, 1.5rem) * .5);
	padding-right: calc(var(--bs-gutter-x, 1.5rem) * .5);
}

.duel-inline-loader {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.duel-inline-loader__brand {
	font-family: var(--font-main);
	font-size: clamp(16px, 2vw, 26px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -.02em;
	color: rgba(255, 255, 255, .92);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
}

.duel-inline-loader__indicator {
	width: 62px;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg,
		transparent 0%,
		rgba(255, 255, 255, .2) 20%,
		rgba(255, 255, 255, .5) 50%,
		rgba(255, 255, 255, .2) 80%,
		transparent 100%);
	animation: duel-inline-loader-slide 1.6s ease-in-out infinite;
}

 .duel-inline-loader__letter {
	display: inline-block;
	color: rgba(255, 255, 255, .92);
	animation: duel-inline-loader-rotate 2.5s ease-in-out infinite;
	animation-delay: calc(var(--letter-index) * 0.1s);
	transform-origin: center center;
}

@keyframes duel-inline-loader-rotate {
	0%, 100% {
		transform: rotateY(0deg);
		opacity: .9;
	}
	20%, 80% {
		transform: rotateY(0deg);
		opacity: 1;
	}
	50% {
		transform: rotateY(180deg);
		opacity: .5;
	}
}

@keyframes duel-inline-loader-fade {
	0%, 100% { opacity: .45; transform: translateY(1px); }
	50% { opacity: 1; transform: translateY(0); }
}

@keyframes duel-inline-loader-slide {
	0%, 100% { transform: translateX(-10px); opacity: .5; }
	50% { transform: translateX(10px); opacity: .95; }
}

.duel-cat-grid {
	margin-bottom: 22px;
}

.duel-cat-grid__head {
	margin-bottom: 16px;
}

.duel-cat-grid__icon .cat-icon {
	width: 20px;
	height: 20px;
	margin-right: 0;
}

.duel-cat-grid__list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px;
}

.duel-cat-grid__card {
	width: 100%;
}

.duel-cat-tabs__more {
	margin: 0;
}

.duel-providers {
	margin: 8px 0 28px;
}

.duel-providers__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.duel-providers__title-wrap {
	min-width: 0;
}

.duel-providers__title-icon {
	color: var(--duel-text-muted);
}

.duel-providers__title {
	margin: 0;
}

.duel-providers__title-icon .cat-icon {
	width: 20px;
	height: 20px;
	margin-right: 0;
}

.duel-providers__controls {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.duel-providers__slide {
	width: 180px;
}

.duel-providers__card {
	width: 100%;
	height: 95px;
	border-radius: 12px;
	border: 1px solid rgb(51, 57, 92);
	background: rgb(33, 38, 70);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	transition: background-color .2s cubic-bezier(.4, 0, .2, 1), border-color .2s cubic-bezier(.4, 0, .2, 1), transform .2s cubic-bezier(.4, 0, .2, 1);
}

.duel-providers__card:hover {
	background: rgb(41, 47, 84);
	border-color: rgb(68, 76, 118);
	transform: translateY(-1px);
}

.duel-providers__logo {
	width: 112px;
	max-width: 100%;
	height: auto;
	opacity: .8;
	transition: opacity .2s cubic-bezier(.4, 0, .2, 1);
}

.duel-providers__card:hover .duel-providers__logo {
	opacity: 1;
}

/* Live category provider grid (custom block on /categories/live) */
.duel-live-providers {
	margin-bottom: 8px;
}

.duel-live-providers__head {
	margin-bottom: 10px;
}

.duel-live-providers__title {
	margin-bottom: 0;
}

.duel-live-providers__card {
	height: 122px;
	border-radius: 14px;
	padding: 16px;
}

.duel-live-providers__logo-mask {
	width: min(100%, 170px);
	height: 44px;
}

@media (max-width: 991px) {
	.duel-live-providers__card {
		height: 110px;
	}

	.duel-live-providers__logo-mask {
		width: min(100%, 150px);
		height: 40px;
	}
}

@media (hover: hover) and (pointer: fine) {
	.duel-hover-scale-102:hover {
		--tw-scale-x: 1.02;
		--tw-scale-y: 1.02;
		transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
	}
}

@media only screen and (max-width: 767px) {
	.duel-cat-carousel__title {
		font-size: 18px;
	}

	.duel-cat-carousel__slide {
		width: 164px;
	}

	.duel-cat-carousel {
		--duel-cat-slide-width: 164px;
	}

	.duel-cat-card {
		height: 114px;
	}

	.duel-cat-tabs__tab {
		height: 34px;
		padding: 0 10px;
		font-size: 13px;
	}

	.duel-cat-tabs__top {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-bottom: 24px;
	}

	.duel-cat-grid__list {
		grid-template-columns: repeat(auto-fill, minmax(164px, 1fr));
	}

	.duel-cat-tabs__search {
		height: 44px;
	}

	.duel-cat-tabs__search-empty {
		min-height: 120px;
	}

	.duel-providers {
		margin-bottom: 24px;
	}

	.duel-providers__slide {
		width: 128px;
	}

	.duel-providers__card {
		height: 64px;
		padding: 8px;
	}

	.duel-providers__logo {
		width: clamp(64px, 72%, 112px);
	}

	.duel-live-providers__card {
		height: 94px;
		padding: 10px;
	}

	.duel-live-providers__logo-mask {
		width: min(100%, 132px);
		height: 34px;
	}
}

/* Duel footer */
.duel-footer {
	margin-top: 40px;
	padding: 42px 0 20px;
	background: linear-gradient(180deg, rgba(7, 11, 35, .98) 0%, rgba(9, 16, 46, .98) 100%);
	border-top: 1px solid rgba(47, 62, 112, .58);
}

.duel-footer__container {
	max-width: 1180px;
}

.duel-footer__top {
	display: grid;
	grid-template-columns: minmax(240px, 1fr) minmax(240px, 1fr) minmax(180px, .8fr);
	gap: 28px;
	margin-bottom: 30px;
}

.duel-footer__col--reasons {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.duel-footer__reasons-top {
	display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.duel-footer__reasons-text {
	font-size: 14px;
	font-weight: 500;
	color: #eedf2a;
}

.duel-footer__reasons-coins {
	display: flex;
	align-items: center;
	gap: 10px;
}

.duel-footer__reasons-coins img {
	width: 32px;
	height: 32px;
}

.duel-footer__reasons-medals {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	align-items: center;
	justify-items: center;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 12px;
	background-color: #321159;
}

.duel-footer__reasons-medals img {
	width: 100%;
	max-width: 52px;
	height: auto;
}

.duel-footer__reasons-medal--wide {
	max-width: min(76px, 100%);
}

.duel-footer__title {
	margin: 0 0 12px;
	font-family: var(--font-main);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}

.duel-footer__links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.duel-footer__links li {
	margin: 0 0 7px;
	list-style: none;
}

.duel-footer__links a {
	color: var(--duel-text-muted);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	text-decoration: none;
	transition: color .15s cubic-bezier(.4, 0, .2, 1);
}

.duel-footer__links a:hover {
	color: #fff;
}

.duel-footer__links a.duel-footer__link--active {
	color: #fff;
}

.duel-footer__socials {
	display: flex;
	align-items: center;
	gap: 8px;
}

.duel-footer__social {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgb(51, 57, 92);
	border-radius: 8px;
	background: rgb(38, 44, 80);
	color: var(--duel-text-muted);
	text-decoration: none;
	transition: background-color .15s cubic-bezier(.4, 0, .2, 1), border-color .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1);
}

.duel-footer__social:hover {
	background: rgb(33, 38, 70);
	border-color: rgb(46, 51, 83);
	color: #fff;
}

.duel-footer__social svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.duel-footer__legal {
	margin-bottom: 22px;
}

.duel-footer__legal p {
	margin: 0;
	color: rgb(71, 80, 124);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
}

.duel-footer__legal a {
	color: inherit;
	text-decoration: underline;
}

.duel-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: rgb(71, 80, 124);
	font-size: 13px;
}

.duel-footer__copy {
	color: inherit;
	font-size: inherit;
	font-weight: 500;
	line-height: 1.35;
	font-size: 12px;
}

.duel-footer__license {
	width: auto;
	height: 32px;
	opacity: .9;
}

.duel-footer-mobile {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 30;

	display: none;
	align-items: center;
	justify-content: space-around;
	gap: 4px;
	padding: 8px 8px 10px;

	background: linear-gradient(180deg, rgba(7, 11, 35, .98) 0%, rgba(9, 16, 46, .98) 100%);
	border-top: 1px solid rgba(47, 62, 112, .58);
	box-shadow: 0 -8px 24px rgba(0, 0, 0, .5);
}

.duel-footer-mobile__item {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 6px 4px;

	border: 0;
	border-radius: 10px;
	background: transparent;
	color: rgb(143, 154, 204);
	font-family: var(--font-main);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;

	cursor: pointer;
	transition: background-color .12s ease-out, color .12s ease-out;
}

.duel-footer-mobile__item:hover,
.duel-footer-mobile__item:focus-visible {
	background: rgba(52, 60, 100, .9);
	color: #fff;
	outline: 0;
}

.duel-footer-mobile__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: rgba(34, 41, 80, .95);
}

.duel-footer-mobile__icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

.duel-footer-mobile__label {
	white-space: nowrap;
}

@media only screen and (max-width: 991px) {
	.duel-footer__top {
		grid-template-columns: 1fr 1fr;
	}
}

@media only screen and (max-width: 768px) {
	/* Футер: показываем только мобильный нижний бар */
	.duel-footer {
		display: none;
	}

	.duel-footer__top {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.duel-footer__title {
		font-size: 14px;
	}

	.duel-footer__links a {
		font-size: 14px;
	}

	.duel-footer__legal p {
		font-size: 14px;
	}

	.duel-footer__copy {
		font-size: 12px;
	}

	.duel-footer-mobile {
		display: flex;
	}

	body {
		padding-bottom: 72px;
	}

	/* Сайдбар на мобильных: скрыт по умолчанию, выезжает по кнопке меню */
	.duel-side-nav-root {
		position: fixed;
		left: 0;
		top: 0;
		bottom: 0;
		width: 260px;
		max-width: 85vw;
		z-index: 35;
		transform: translateX(-100%);
		transition: transform .22s cubic-bezier(.4, 0, .2, 1);
		box-shadow: none;
	}
	body.duel-mobile-nav-open .duel-side-nav-root {
		transform: translateX(0);
		box-shadow: 8px 0 24px rgba(0, 0, 0, .4);
	}

	.duel-mobile-nav-backdrop {
		display: none;
		position: fixed;
		inset: 0;
		z-index: 34;
		background: rgba(0, 0, 0, .5);
	}
	body.duel-mobile-nav-open .duel-mobile-nav-backdrop {
		display: block;
	}

	body:not(.game-page),
	body:not(.game-page).duel-side-nav-collapsed {
		padding-left: 0;
	}

	body.game-page,
	body.game-page.duel-side-nav-collapsed {
		padding-left: 0;
	}

	body:not(.game-page) header,
	body:not(.game-page).duel-side-nav-collapsed header,
	body.game-page header,
	body.game-page.duel-side-nav-collapsed header {
		left: 0;
	}
}

/* Scroll to top button */
.button-scroll-top {
	display: none !important;
	right: 22px !important;
	bottom: 20px !important;
	width: 46px !important;
	height: 46px !important;
	border-radius: 8px !important;
	border: 1px solid rgb(51, 57, 92);
	background: rgb(38, 44, 80) !important;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .24);
	z-index: 34;
}

.button-scroll-top img {
	width: 16px;
	height: 16px;
	filter: var(--duel-icon-filter-muted);
}

.button-scroll-top:hover {
	background: rgb(33, 38, 70) !important;
	border-color: rgb(46, 51, 83);
}

.button-scroll-top:hover img {
	filter: var(--duel-icon-filter-white);
}

/* Duel hero */
.duel-hero {
	padding: 20px 0;
	background: rgba(23, 35, 84, .36);
	overflow: hidden;
}

.duel-hero__container {
	padding: 0;
}

.duel-hero__grid {
	display: grid;
	grid-template-columns: minmax(280px, 1fr) minmax(700px, 1.42fr);
	gap: 16px;
	align-items: stretch;
	padding: 30px 0;
}

.duel-hero__lead {
	padding: 8px 2px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.duel-hero__eyebrow {
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .03em;
	text-transform: uppercase;
	color: rgb(118, 127, 170);
}

.duel-hero__title {
	margin: 0;
	display: grid;
	gap: 8px;
	font-family: var(--font-main);
	font-size: clamp(28px, 3.1vw, 40px);
	line-height: 1.08;
	font-weight: 700;
	text-align: left;
	color: #fff;
}

.duel-hero__actions {
	margin-top: auto;
	padding-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.duel-hero__btn {
	min-width: 132px;
	height: 44px;
	padding: 0 18px;
}

.duel-hero__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(180px, 1fr));
	gap: 14px;
}

.duel-hero-card {
	position: relative;
	display: block;
	border: 1px solid rgba(84, 108, 176, .34);
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	background: rgba(18, 25, 63, .22);
	aspect-ratio: 8 / 5;
}

.duel-hero-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s cubic-bezier(.4, 0, .2, 1), filter .3s cubic-bezier(.4, 0, .2, 1);
	filter: saturate(1.05) brightness(1);
}

.duel-hero-card__foot {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 12px 14px;
	background: linear-gradient(180deg, rgba(7, 11, 35, 0) 0%, rgba(7, 11, 35, .62) 80%);
	color: #fff;
}

.duel-hero-card__content {
	display: grid;
	gap: 4px;
}

.duel-hero-card__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.05;
	padding-bottom: 5px;
	color: #fff;
}

.duel-hero-card__text {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.25;
	color: rgb(118, 127, 170);
}

@media (hover: hover) and (pointer: fine) {
	.duel-hero-card:hover img {
		transform: scale(1.035);
		filter: saturate(1.06) brightness(1);
	}
}

@media only screen and (max-width: 1199px) {
	.duel-hero__title {
		font-size: clamp(24px, 3vw, 36px);
	}

	.duel-hero-card__title {
		font-size: 20px;
	}

	.duel-hero-card__text {
		font-size: 14px;
	}
}

@media only screen and (max-width: 991px) {
	.duel-hero {
		margin-top: 14px;
	}

	.duel-hero__container {
		padding: 0;
	}

	.duel-hero__grid {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 16px 0;
	}

	.duel-hero__lead {
		padding: 2px 0;
	}

	.duel-hero__cards {
		grid-template-columns: repeat(2, minmax(140px, 1fr));
	}

}

@media only screen and (max-width: 640px) {
	.duel-hero__cards {
		grid-template-columns: 1fr;
	}

	.duel-hero__actions {
		display: flex;
	}

	.duel-hero__btn {
		min-width: 0;
	}
}


.faq-block .main-title {
	display: none;
}

.rules hr {
	visibility: hidden;
	height: 10px;
}

.parnter-btn.bocome-partner {
	margin-top: 30px;
}


.popup-close {
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 10;
	padding: 10px 10px;
	border-radius: 8px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 12px;
	line-height: 1;
	color: var(--dark-100, #8b92a6);
	outline: none;
	transition: background-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
	border: 0;
	background: transparent;
	cursor: pointer;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.popup-close:hover {
	
	color: var(--light-000, #ffffff);
	/* 
	background-color: var(--dark-600, #2a2f45);
	 */
}

.popup-close:active {
	/* Replaces: active:text-light-000 */
	color: var(--light-000, #ffffff);
}

.popup-close:disabled {
	/* Replaces: disabled:bg-transparent disabled:text-light-000 disabled:opacity-50 disabled:cursor-not-allowed */
	background-color: transparent;
	color: var(--light-000, #ffffff);
	opacity: 0.5;
	cursor: not-allowed;
}

.popup-close__icon {
	/* Replaces: size-16 */
	width: 12px;
	height: 12px;
	display: inline-flex;
}

.popup-close__icon svg {
	/* Replaces: ms-h-full ms-w-full */
	width: 100%;
	height: 100%;
	display: block;
}

/* Header responsive styles */
@media (max-width: 1200px) {
	.duel-wager-scale {
		display: none;
	}
	
	.duel-head-balance-link {
		font-size: 14px;
		padding: 0 12px;
	}

	.duel-head-icon-btn {
		width: 42px;
		height: 42px;
	}

	.duel-head-icon-btn svg,
	.duel-head-icon-btn .cat-icon {
		width: 18px;
		height: 18px;
	}
}

@media (max-width: 768px) {
	.desctop .duel-head-balance-link,
	.duel-wager-scale {
		display: none;
	}

	.duel-head-mobile {
		justify-content: flex-start;
	}

	.duel-head-mobile__menu {
		display: none !important;
	}

	.duel-head-mobile__logo {
		margin: 0 !important;
		justify-content: flex-start;
	}

	.duel-head-mobile__actions {
		gap: 6px;
		margin-left: auto;
	}

	.duel-head-mobile__actions .duel-head-btn:not(.duel-head-mobile-profile) {
		height: 37.5px;
		padding: 0 14px;
		font-size: 13px;
		border-radius: 8px;
		white-space: nowrap;
	}

	.duel-head-icon-btn {
		width: 37.5px;
		height: 37.5px;
		border-radius: 8px;
	}

	.duel-head-icon-btn svg,
	.duel-head-icon-btn .cat-icon {
		width: 16px;
		height: 16px;
	}
}

@media (max-width: 500px) {
	.duel-head-mobile-profile {
		display: none !important;
	}
}

/* Support page */
.duel-support-page {
	padding-bottom: 32px;
}

/*
.duel-support {
	position: relative;
	padding: 24px;
	border-radius: 18px;
	border: 1px solid #2a345f;
	background:
		radial-gradient(70% 90% at 0% 0%, rgba(62, 90, 189, 0.22) 0%, rgba(62, 90, 189, 0) 68%),
		#1f2546;
	box-shadow: 0 18px 40px rgba(5, 9, 27, 0.45);
}
*/

.duel-support__head {
	margin-bottom: 22px;
}

.duel-support__title {
	margin: 0;
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
}

.duel-support__subtitle {
	margin: 10px 0 0;
	max-width: 720px;
	font-size: 15px;
	line-height: 1.55;
	color: rgb(118, 127, 170);
}

.duel-support__layout {
	display: grid;
	grid-template-columns: minmax(320px, 1.15fr) minmax(260px, 1fr);
	gap: 18px;
}

.duel-support__form-wrap {
	padding: 20px;
	border-radius: 14px;
	border: 1px solid #2f3a6a;
	background: #161d3b;
}

.duel-support-field + .duel-support-field {
	margin-top: 14px;
}

.duel-support-field label {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: rgb(118, 127, 170);
}

.duel-support-field input,
.duel-support-field textarea {
	width: 100%;
	border: 1px solid #2f3a6a;
	border-radius: 10px;
	background: #0f1429;
	color: #fff;
	box-shadow: none;
	padding: 12px 14px;
	font-size: 15px;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.duel-support-field textarea {
	min-height: 136px;
	resize: vertical;
}

.duel-support-field input:focus,
.duel-support-field textarea:focus {
	border-color: #4d61ff;
	box-shadow: 0 0 0 2px rgba(77, 97, 255, 0.22);
}

.duel-support-submit {
	margin-top: 16px;
	padding: 12px 22px;
	border: 1px solid #4d61ff;
	border-radius: 12px;
	background: #4d61ff;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color .2s ease, transform .2s ease;
}

.duel-support-submit:hover {
	background: #5e71ff;
	transform: translateY(-1px);
}

.duel-support .reply-contact-form {
	margin-top: 12px;
	font-weight: 600;
	font-size: 14px;
	text-align: left;
	color: #8ea4ff;
}

.duel-support__channels {
	display: grid;
	gap: 12px;
}

.duel-support-card {
	display: flex;
	gap: 14px;
	padding: 16px;
	border-radius: 14px;
	border: 1px solid #2f3a6a;
	background: #232a53;
}

.duel-support-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 42px;
	height: 42px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(77, 97, 255, 0.38) 0%, rgba(108, 63, 186, 0.42) 100%);
	color: #d7defb;
}

.duel-support-card__icon svg {
	width: 20px;
	height: 20px;
	display: block;
}

.duel-support-card__body h2 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}

.duel-support-card__body p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: rgb(152, 164, 210);
}



@media (max-width: 1024px) {
	.duel-support__layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.duel-support {
		padding: 18px 14px;
		border-radius: 14px;
	}

	.duel-support__form-wrap {
		padding: 14px;
	}

	.duel-support-card {
		padding: 14px;
	}
}

.mobile-menu .link .cat-icon {
	width: 20px;
	height: 20px;
	margin-right: 15px;
	color: var(--duel-text-muted);
}

.mobile-menu .link:hover .cat-icon {
	color: #fff;
}

.duel-sport-page {
	padding: 26px 0 8px;
}

.duel-sport-soon {
	position: relative;
	margin: 0 auto;
	max-width: 760px;
	padding: 34px 30px;
	border: 1px solid rgba(51, 57, 92, 1);
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(14, 20, 52, 0.95) 0%, rgba(10, 15, 40, 0.98) 100%);
	box-shadow: 0 18px 46px rgba(3, 7, 27, 0.42);
}

.duel-sport-soon__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	margin-bottom: 14px;
	border: 1px solid rgba(51, 57, 92, 1);
	border-radius: 999px;
	background: rgba(31, 41, 85, 0.75);
	color: var(--duel-text-muted);
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

.duel-sport-soon__badge .cat-icon {
	width: 16px;
	height: 16px;
	margin-right: 0;
}

.duel-sport-soon__title {
	margin: 0 0 12px;
	color: #fff;
	font-size: 32px;
	font-weight: 800;
	line-height: 1.18;
}

.duel-sport-soon__text {
	margin: 0;
	max-width: 640px;
	color: rgb(152, 164, 210);
	font-size: 16px;
	line-height: 1.6;
}

@media (max-width: 767px) {
	.duel-sport-page {
		padding-top: 18px;
	}

	.duel-sport-soon {
		padding: 22px 16px;
		border-radius: 12px;
	}

	.duel-sport-soon__title {
		font-size: 24px;
	}

	.duel-sport-soon__text {
		font-size: 14px;
	}
}

.duel-providers__logo-mask {
	/* Sizing box (same for all) */
width: 155px;
  height: 35px;

	/* Color */
	--logo-color: rgba(220, 224, 232, 0.92);
	background-color: var(--logo-color);

	/* Mask */
	-webkit-mask-image: var(--logo-url);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 50% 50%;

	/* Key: constrain by HEIGHT, not by width */
	-webkit-mask-size: auto 78%;
	mask-image: var(--logo-url);
	mask-repeat: no-repeat;
	mask-position: 50% 50%;
	mask-size: auto 78%;

	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35));
	transition: background-color 180ms ease, filter 180ms ease, -webkit-mask-size 180ms ease;
}

.duel-providers__card:hover .duel-providers__logo-mask {
	--logo-color: rgba(240, 242, 248, 0.98);
	filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.12));
}

/* Bonus actions: keep decorative glow from blocking clicks in redesigned cabinet */
.bonus-panel__action::before {
	pointer-events: none;
}

.bonus-panel__button,
.activate-bonus,
.deactivate-bonus {
	position: relative;
	z-index: 2;
}

/* Cabinet bonuses redesign (new Duel style) */
#cabinet-modal.duel-cabinet-modal #bonuses.tab-bonuses {
	display: block;
}

#cabinet-modal.duel-cabinet-modal #bonuses .tab-bonuses__gallery {
	padding: 0;
}

#cabinet-modal.duel-cabinet-modal #bonuses .tab-bonuses__item {
	margin: 0 0 16px;
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel {
	position: relative;
	display: grid;
	grid-template-columns: 170px minmax(0, 1fr);
	align-items: stretch;
	gap: 18px;
	width: 100%;
	min-height: 0;
	padding: 18px;
	border: 1px solid #2f3a6a;
	border-radius: 14px;
	background: #232a53;
	box-shadow: 0 10px 28px rgba(5, 10, 35, 0.28);
	overflow: hidden;
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__desc {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 34%);
	align-items: start;
	gap: 24px;
	height: auto;
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__view {
	display: block;
	padding-left: 0;
	width: 170px;
	height: 112px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #3a477f;
	background: #1a2142;
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__info {
	display: block;
	padding: 0;
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__title {
	margin: 0 0 12px;
	color: #fff;
	font-size: 20px;
	line-height: 26px;
	font-weight: 700;
	letter-spacing: 0;
	word-break: normal;
	overflow-wrap: anywhere;
	text-wrap: balance;
	text-transform: inherit;
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__desc-text {
	display: grid;
	gap: 6px;
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	line-height: 1.4;
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__row > span:first-child {
	color: rgb(171, 181, 223);
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__row > span:last-child {
	color: #fff;
	font-weight: 700;
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__action {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 9px;
	width: auto;
	min-width: 0;
	padding: 10px 8px;
	text-align: center;
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(40, 51, 100, 0.55) 0%, rgba(31, 39, 76, 0.35) 100%);
	border: 1px solid rgba(71, 84, 140, 0.55);
	width: 100%;
	max-width: 380px;
	margin-left: auto;
	overflow: hidden;
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__action::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(232, 35, 79, 0.25) 0%, rgba(232, 35, 79, 0) 72%);
	pointer-events: none;
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__action .bonus-panel__title {
	margin: 0;
	font-size: 15px;
	line-height: 1.28;
	text-align: center;
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__title_alert,
#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__title_important {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 7px 14px;
	border-radius: 999px;
	border: 1px solid rgba(244, 136, 158, 0.52);
	background: linear-gradient(180deg, rgba(133, 52, 84, 0.7) 0%, rgba(86, 36, 61, 0.78) 100%);
	color: #ffb8c6;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: none;
	line-height: 1.2;
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__informer {
	margin: 0;
	padding: 7px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: none;
	color: #e3f6ea;
	background: linear-gradient(180deg, #3a9166 0%, #287d53 100%);
	border: 1px solid rgba(112, 220, 161, 0.4);
}


#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__action.activated {
	display: none;
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__action.activated.active {
	display: flex;
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__action.deactivated {
	display: none;
}

#cabinet-modal.duel-cabinet-modal #bonuses .timer__table {
	margin: 0 auto;
}

#cabinet-modal.duel-cabinet-modal #bonuses .timer__row.timer__row_digit {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
	justify-content: center;
	column-gap: 8px;
	font-variant-numeric: tabular-nums;
	font-feature-settings: "tnum" 1;
	white-space: normal;
	width: 100%;
	max-width: none;
	margin: 0 auto;
}

#cabinet-modal.duel-cabinet-modal #bonuses .timer__row.timer__row_digit .timer__cell {
	display: block;
	font-variant-numeric: tabular-nums;
	font-feature-settings: "tnum" 1;
	color: #fff;
	font-family: "TT-Interphases-Pro", system-ui, sans-serif;
}

#cabinet-modal.duel-cabinet-modal #bonuses .timer__row.timer__row_digit .timer__cell--unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 64px;
	padding: 5px 3px 6px;
	border-radius: 8px;
	background: rgba(18, 25, 54, 0.28);
	border: 1px solid rgba(80, 94, 156, 0.34);
}

#cabinet-modal.duel-cabinet-modal #bonuses .timer__row.timer__row_digit .timer__num {
	display: block;
	min-width: 2.5ch;
	text-align: center;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.01em;
}

#cabinet-modal.duel-cabinet-modal #bonuses .timer__row.timer__row_digit .timer__label {
	display: block;
	text-align: center;
	font-size: clamp(8px, 1vw, 10px);
	font-weight: 700;
	color: rgb(171, 181, 223);
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__action .bonus-panel__button.button.btn.btn-filled.red {
	margin-top: 8px;
}

#cabinet-modal.duel-cabinet-modal #bonuses .timer__row_caption {
	display: none;
}

@media (max-width: 1200px) {
	#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__desc {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 38%);
	}
}

@media (max-width: 767px) {
	#cabinet-modal.duel-cabinet-modal #bonuses .timer__row.timer__row_digit {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		column-gap: 6px;
		max-width: none;
	}

	#cabinet-modal.duel-cabinet-modal #bonuses .timer__row.timer__row_digit .timer__num {
		font-size: 24px;
	}

	#cabinet-modal.duel-cabinet-modal #bonuses .timer__row.timer__row_digit .timer__label {
		font-size: 8px;
	}
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-popup {
	background: rgba(6, 10, 29, 0.9);
	backdrop-filter: blur(3px);
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-popup__title {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}

#cabinet-modal.duel-cabinet-modal #bonuses .bonus-popup__btns .button {
	min-width: 140px;
}

#cabinet-modal.duel-cabinet-modal #bonuses .empty-bonuses-label {
	margin: 0;
	padding: 20px;
	border: 1px solid #2f3a6a;
	border-radius: 12px;
	background: #232a53;
	color: rgb(171, 181, 223);
	font-size: 15px;
	text-align: center;
}

@media (max-width: 991px) {
	#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel {
		grid-template-columns: 140px minmax(0, 1fr);
		gap: 14px;
	}

	#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__desc {
		grid-template-columns: 1fr;
	}

	#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__action {
		padding: 14px 12px;
		max-width: none;
		margin-left: 0;
	}

	#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__title {
		font-size: 20px;
		line-height: 26px;
	}

	#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__title_alert,
	#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__title_important {
		font-size: 18px;
	}
}

@media (max-width: 639px) {
	#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel {
		grid-template-columns: 1fr;
		padding: 14px;
	}

	#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__desc {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__view {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
	}

	#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__row {
		grid-template-columns: 1fr;
		gap: 3px;
	}

	#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__title {
		font-size: 20px;
		line-height: 26px;
	}

	#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__button.button.btn.btn-filled.red {
		min-width: 0;
		width: 100%;
	}
}

/* Bonus popups redesign */
#deposit-for-bonus-modal.popup2,
#have_active_bonus.popup2 {
	width: min(960px, calc(100vw - 36px));
	max-width: 960px;
	max-height: calc(100vh - 36px);
	padding: 22px 24px 24px;
	border: 1px solid #2a345f;
	border-radius: 14px;
	background: radial-gradient(130% 150% at 18% 0%, #2a3263 0%, #1f2546 45%, #1a2141 100%);
	box-shadow: 0 16px 32px rgba(2, 6, 30, 0.45);
	overflow-x: hidden;
	overflow-y: auto;
}

#deposit-for-bonus-modal.popup2 .popup__close,
#have_active_bonus.popup2 .popup__close {
	width: 28px;
	height: 28px;
	right: 10px;
	top: 10px;
}

#deposit-for-bonus-modal.popup2 .popup__close .svg__close,
#have_active_bonus.popup2 .popup__close .svg__close {
	width: 11px;
	height: 11px;
}

#deposit-for-bonus-modal.popup2 .popup__content {
	padding: 0;
	text-align: center;
}

#deposit-for-bonus-modal.popup2 .popup_section__main {
	display: block;
	max-width: none;
	padding: 16px 0 0;
}

#deposit-for-bonus-modal.popup2 .payment {
	padding: 14px;
	border: 1px solid #2f3a6a;
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(44, 53, 101, 0.76) 0%, rgba(34, 42, 82, 0.92) 100%);
	text-align: left !important;
}

#deposit-for-bonus-modal.popup2 .payment__row {
	padding: 0;
}

#deposit-for-bonus-modal.popup2 .payment__row-inner {
	display: grid;
	gap: 12px;
}


#deposit-for-bonus-modal.popup2 .payment__tooltip {
	margin: 12px 0 0;
	width: 100%;
}

#deposit-for-bonus-modal.popup2 .pay-tooltip__summ { display: grid; }


#deposit-for-bonus-modal.popup2 .payitem-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 120px;
	padding: 16px;
	border: 1px dashed rgba(116, 130, 196, 0.7);
	border-radius: 10px;
	background: rgba(24, 31, 63, 0.7);
	color: rgb(171, 181, 223);
	font-size: 14px;
	text-align: center;
}

#have_active_bonus.popup2 {
	width: min(520px, calc(100vw - 36px));
	max-width: 520px;
}

#have_active_bonus.popup2 .popup__head {
	margin-bottom: 8px;
}

#have_active_bonus.popup2 .popup__content {
	padding: 0;
}

#have_active_bonus.popup2 .popup__footer {
	padding-top: 16px;
}

#have_active_bonus.popup2 .popup__button.button.button_color_brightblue {
	min-width: 120px;
	height: 40px;
	border: 1px solid #3a477f;
	border-radius: 9px;
	background: linear-gradient(180deg, #4b58a0 0%, #3d4a8c 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

@media (max-width: 767px) {
	#deposit-for-bonus-modal.popup2,
	#have_active_bonus.popup2 {
		width: calc(100vw - 18px);
		max-height: calc(100vh - 18px);
		padding: 14px;
	}

	#deposit-for-bonus-modal.popup2 .payment__row-inner { gap: 8px; }
}

/* Unified secondary popups redesign */
.popup2.popup_restorePassword,
.popup2.popup_remindSuccess,
.popup2.popup_emailVerification,
.popup2.popup_phoneVerification,
.popup2.popup_phoneVerified,
.popup2.popup_changePassword,
.popup2.popup_passwordChanged,
.popup2.popup_favoritesAdded,
.popup2.popup_favoritesAddedFail,
.popup2.popup_gotoRegistration {
	width: min(520px, calc(100vw - 36px));
	max-width: 520px;
	max-height: calc(100vh - 36px);
	padding: 20px;
	border: 1px solid #2a345f;
	border-radius: 14px;
	background: radial-gradient(120% 140% at 20% 0%, #2a3263 0%, #1f2546 45%, #1a2141 100%);
	box-shadow: 0 16px 32px rgba(2, 6, 30, 0.45);
	overflow-x: hidden;
	overflow-y: auto;
}

.popup2.popup_changePassword {
	max-width: 560px;
	width: min(560px, calc(100vw - 36px));
}

.popup2.popup_restorePassword .popup__close,
.popup2.popup_remindSuccess .popup__close,
.popup2.popup_emailVerification .popup__close,
.popup2.popup_phoneVerification .popup__close,
.popup2.popup_phoneVerified .popup__close,
.popup2.popup_changePassword .popup__close,
.popup2.popup_passwordChanged .popup__close,
.popup2.popup_favoritesAdded .popup__close,
.popup2.popup_favoritesAddedFail .popup__close,
.popup2.popup_gotoRegistration .popup__close {
	width: 28px;
	height: 28px;
	right: 10px;
	top: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.popup2.popup_restorePassword .popup__close .svg__close,
.popup2.popup_remindSuccess .popup__close .svg__close,
.popup2.popup_emailVerification .popup__close .svg__close,
.popup2.popup_phoneVerification .popup__close .svg__close,
.popup2.popup_phoneVerified .popup__close .svg__close,
.popup2.popup_changePassword .popup__close .svg__close,
.popup2.popup_passwordChanged .popup__close .svg__close,
.popup2.popup_favoritesAdded .popup__close .svg__close,
.popup2.popup_favoritesAddedFail .popup__close .svg__close,
.popup2.popup_gotoRegistration .popup__close .svg__close {
	width: 11px;
	height: 11px;
}

/* Cashier deposit tab redesign */
#cashier #payment-tab.payment {
	padding: 0;
}

#cashier #payment-tab .payment__gallery {
	padding: 0;
}

#cashier #payment-tab .payment-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

#cashier #payment-tab .payment__row {
	padding: 0;
	margin: 0;
}

#cashier #payment-tab .payment__row-inner {
	display: grid;
	gap: 12px;
}


#cashier #payment-tab .payment__tooltip {
	position: static;
	left: auto;
	top: auto;
	right: auto;
	width: 100%;
	margin: 0;
	transform: none;
	opacity: 1;
	pointer-events: auto;
}

#cashier #payment-tab .payment__tooltip_inner {
	max-width: none;
	padding: 0;
}

#cashier #payment-tab .pay-tooltip__summ,
#deposit-for-bonus-modal.popup2 .pay-tooltip__summ {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px 14px;
	align-items: end;
}


#cashier #payment-tab .payitem-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 132px;
	padding: 16px;
	border: 1px dashed rgba(116, 130, 196, 0.7);
	border-radius: 12px;
	background: rgba(24, 31, 63, 0.7);
	color: #b8c4ff;
	font-size: 14px;
	text-align: center;
}

/* Shared payment UI (cashier + bonus deposit modal) */
#cashier #payment-tab .payment__row-inner,
#deposit-for-bonus-modal.popup2 .payment__row-inner {
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	align-items: stretch;
}

#cashier #payment-tab .payment__item.payitem,
#deposit-for-bonus-modal.popup2 .payment__item.payitem {
	width: 100%;
	min-width: 0;
	height: 100%;
	margin: 0;
	display: flex;
	flex-direction: column;
	border-radius: 14px;
	border: 1px solid rgba(89, 104, 171, 0.72);
	background: linear-gradient(180deg, rgba(35, 45, 90, 0.95) 0%, rgba(27, 35, 76, 0.98) 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 22px rgba(4, 8, 30, 0.34);
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

#cashier #payment-tab .payment__item.payitem:hover,
#deposit-for-bonus-modal.popup2 .payment__item.payitem:hover {
	transform: translateY(-2px);
	border-color: rgba(126, 146, 224, 0.92);
	background: linear-gradient(180deg, rgba(46, 58, 108, 0.98) 0%, rgba(34, 46, 92, 0.98) 100%);
}

#cashier #payment-tab .payment__item.payitem.active,
#deposit-for-bonus-modal.popup2 .payment__item.payitem.active {
	border-color: #8fa4ff;
	background: linear-gradient(180deg, rgba(56, 69, 126, 0.98) 0%, rgba(40, 52, 103, 0.98) 100%);
	box-shadow: 0 0 0 1px rgba(143, 164, 255, 0.35), 0 14px 30px rgba(9, 16, 46, 0.5);
}

#cashier #payment-tab .payitem__img,
#deposit-for-bonus-modal.popup2 .payitem__img {
	min-height: 88px;
}

#cashier #payment-tab .payitem__img_inner,
#deposit-for-bonus-modal.popup2 .payitem__img_inner {
	min-height: 76px;
	padding: 12px;
}

#cashier #payment-tab .payitem__img_inner img,
#deposit-for-bonus-modal.popup2 .payitem__img_inner img {
	max-height: 50px;
	object-fit: contain;
}

#cashier #payment-tab .payitem__footer,
#deposit-for-bonus-modal.popup2 .payitem__footer {
	margin-top: auto;
	padding: 12px;
	background: transparent;
	box-shadow: none;
	border-top: 1px solid rgba(108, 124, 198, 0.28);
}

#cashier #payment-tab .payitem__note,
#deposit-for-bonus-modal.popup2 .payitem__note {
	color: #fff;
	font-size: 16px;
	line-height: 1.24;
	font-weight: 700;
	text-shadow: none;
}

#cashier #payment-tab .payitem__note_small,
#deposit-for-bonus-modal.popup2 .payitem__note_small {
	margin-top: 6px;
	color: #b8c4ff;
	font-size: 13px;
	line-height: 1.35;
	font-weight: 500;
	text-shadow: none;
}

#cashier #payment-tab .pay-tooltip,
#deposit-for-bonus-modal.popup2 .pay-tooltip {
	border-radius: 14px;
	padding: 14px;
}

#cashier #payment-tab .pay-tooltip:after,
#deposit-for-bonus-modal.popup2 .pay-tooltip:after {
	display: none !important;
}

#cashier #payment-tab .pay-tooltip__input,
#deposit-for-bonus-modal.popup2 .pay-tooltip__input {
	position: relative !important;
	display: block;
	width: 100%;
	max-width: 100%;
}

#cashier #payment-tab .pay-tooltip__input .input__inner,
#deposit-for-bonus-modal.popup2 .pay-tooltip__input .input__inner {
	width: 100%;
	max-width: 100%;
}

#cashier #payment-tab .pay-tooltip__input .input__inner:focus,
#deposit-for-bonus-modal.popup2 .pay-tooltip__input .input__inner:focus {
	border-color: #8ca0ff;
	box-shadow: 0 0 0 2px rgba(140, 160, 255, 0.25);
}

#cashier #payment-tab .duel-pay-field,
#deposit-for-bonus-modal.popup2 .duel-pay-field {
	display: flex;
	align-items: center;
	gap: 0;
}

#cashier #payment-tab .duel-pay-currency-placeholder,
#deposit-for-bonus-modal.popup2 .duel-pay-currency-placeholder {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #aebcf7;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	pointer-events: none;
	user-select: none;
}

#cashier #payment-tab .duel-amount-chips,
#deposit-for-bonus-modal.popup2 .duel-amount-chips {
	grid-column: 1 / 2;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

#cashier #payment-tab .duel-amount-chip,
#deposit-for-bonus-modal.popup2 .duel-amount-chip {
	height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid rgba(86, 102, 171, 0.9);
	background: rgba(23, 31, 67, 0.9);
	color: #c7d2ff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: all .16s ease;
}

#cashier #payment-tab .duel-amount-chip:hover,
#cashier #payment-tab .duel-amount-chip.is-active,
#deposit-for-bonus-modal.popup2 .duel-amount-chip:hover,
#deposit-for-bonus-modal.popup2 .duel-amount-chip.is-active {
	border-color: #8fa4ff;
	color: #fff;
	background: rgba(67, 82, 146, 0.95);
}

#cashier #payment-tab .pay-tooltip__button,
#deposit-for-bonus-modal.popup2 .pay-tooltip__button {
	grid-column: 2 / 3;
	grid-row: 1 / 3;
	align-self: stretch;
	position: static !important;
	min-width: 176px;
	margin: 0;
}

#cashier #payment-tab .pay-tooltip__note,
#deposit-for-bonus-modal.popup2 .pay-tooltip__note {
	margin: 0 0 12px;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid rgba(230, 116, 139, 0.5);
	background: linear-gradient(180deg, rgba(86, 38, 70, 0.5) 0%, rgba(54, 25, 54, 0.42) 100%);
	color: #ffc3ce;
	font-size: 14px;
	line-height: 1.35;
}

#cashier #payment-tab .pay-tooltip__note *,
#cashier #payment-tab .pay-tooltip__note .error__info,
#cashier #payment-tab .pay-tooltip__note i,
#deposit-for-bonus-modal.popup2 .pay-tooltip__note *,
#deposit-for-bonus-modal.popup2 .pay-tooltip__note .error__info,
#deposit-for-bonus-modal.popup2 .pay-tooltip__note i {
	color: #ffc3ce;
}

@media (max-width: 991px) {
	#cashier #payment-tab .payment__row-inner,
	#deposit-for-bonus-modal.popup2 .payment__row-inner {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	}

	#cashier #payment-tab .pay-tooltip__summ,
	#deposit-for-bonus-modal.popup2 .pay-tooltip__summ {
		grid-template-columns: 1fr;
		gap: 10px;
		align-items: stretch;
	}

	#cashier #payment-tab .pay-tooltip__button,
	#deposit-for-bonus-modal.popup2 .pay-tooltip__button {
		grid-column: 1 / 2;
		grid-row: auto;
		position: static !important;
		z-index: 1;
		width: 100%;
		min-width: 0;
		margin: 2px 0 0;
	}
}

@media (max-width: 640px) {
	#cashier #payment-tab .pay-tooltip,
	#deposit-for-bonus-modal.popup2 .pay-tooltip {
		padding: 12px;
	}

	#cashier #payment-tab .pay-tooltip__input .input__inner,
	#deposit-for-bonus-modal.popup2 .pay-tooltip__input .input__inner {
		height: 42px;
		font-size: 18px;
		padding-right: 50px;
	}

	#cashier #payment-tab .duel-amount-chip,
	#deposit-for-bonus-modal.popup2 .duel-amount-chip {
		flex: 1 1 calc(50% - 8px);
		min-width: 86px;
	}

	#cashier #payment-tab .payment__row-inner,
	#deposit-for-bonus-modal.popup2 .payment__row-inner {
		grid-template-columns: 1fr;
	}
}

/* Cashier withdraw tab redesign */
#cashier #withdraw-tab.payment {
	padding: 0;
}

#cashier #withdraw-tab .payment__gallery {
	padding: 0;
	background: transparent;
}

#cashier #withdraw-tab .payment-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

#cashier #withdraw-tab .payment__row {
	padding: 0;
	margin: 0;
}

#cashier #withdraw-tab .payment__row-inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 14px;
	align-items: stretch;
	margin-top: 20px;
}

#cashier #withdraw-tab .payment__item.payitem {
	width: 100% !important;
	min-width: 0;
	height: 100%;
	margin: 0 !important;
	display: flex;
	flex-direction: column;
	border-radius: 14px;
	border: 1px solid rgba(89, 104, 171, 0.72);
	background: linear-gradient(180deg, rgba(35, 45, 90, 0.95) 0%, rgba(27, 35, 76, 0.98) 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 22px rgba(4, 8, 30, 0.34);
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

#cashier #withdraw-tab .payment__item.payitem:hover {
	transform: translateY(-2px);
	border-color: rgba(126, 146, 224, 0.92);
	background: linear-gradient(180deg, rgba(46, 58, 108, 0.98) 0%, rgba(34, 46, 92, 0.98) 100%);
}

#cashier #withdraw-tab .payment__item.payitem.active {
	border-color: #8fa4ff;
	background: linear-gradient(180deg, rgba(56, 69, 126, 0.98) 0%, rgba(40, 52, 103, 0.98) 100%);
	box-shadow: 0 0 0 1px rgba(143, 164, 255, 0.35), 0 14px 30px rgba(9, 16, 46, 0.5);
}

#cashier #withdraw-tab .payment__item.payitem > svg {
	display: none;
}

#cashier #withdraw-tab .payitem__img {
	min-height: 88px;
}

#cashier #withdraw-tab .payitem__img_inner {
	min-height: 76px;
	padding: 12px;
}

#cashier #withdraw-tab .payitem__img_inner img {
	max-height: 50px;
	object-fit: contain;
}

#cashier #withdraw-tab .payitem__footer {
	margin-top: auto;
	padding: 12px;
	background: transparent;
	box-shadow: none;
	border-top: 1px solid rgba(108, 124, 198, 0.28);
}

#cashier #withdraw-tab .payitem__note {
	color: #fff;
	font-size: 16px;
	line-height: 1.24;
	font-weight: 700;
	text-shadow: none;
}

#cashier #withdraw-tab .payitem__note_small {
	margin-top: 6px;
	color: #b8c4ff;
	font-size: 13px;
	line-height: 1.35;
	font-weight: 500;
	text-shadow: none;
}

#cashier #withdraw-tab .payment__tooltip {
	position: static;
	left: auto;
	top: auto;
	right: auto;
	width: 100%;
	margin: 0;
	transform: none;
	opacity: 1;
	pointer-events: auto;
}

#cashier #withdraw-tab .payment__tooltip_inner {
	max-width: none;
	padding: 0;
}

#cashier #withdraw-tab .tab__head {
	background: transparent;
}

#cashier #withdraw-tab .payment__close {
	padding: 0;
	margin: 0 0 10px;
	text-align: right;
}

#cashier #withdraw-tab .pay-tooltip {
	border-radius: 14px;
	padding: 14px;
}

#cashier #withdraw-tab .pay-tooltip:after {
	display: none !important;
}

#cashier #withdraw-tab .pay-tooltip__head-sub {
	color: #fff;
	font-size: 16px;
	margin-bottom: 25px;
	text-align: center;
	font-weight: 600px;
}

#cashier #withdraw-tab .pay-tooltip__number,
#cashier #withdraw-tab .pay-tooltip__input {
	margin-bottom: 10px;
}

#cashier #withdraw-tab .pay-tooltip__input {
	position: relative !important;
	display: block;
	width: 100%;
	max-width: 100%;
}

#cashier #withdraw-tab .pay-tooltip__input .input__inner {
	width: 100%;
	max-width: 100%;
}

#cashier #withdraw-tab .pay-limits-wrapper {
	margin: -10px 0px 20px;
	color: rgb(77, 83, 111);
	font-size: 12px;
	font-weight: 500;
}

#cashier #withdraw-tab .pay-tooltip__button {
	width: 100%;
	margin: 35px 0 0;
	position: static !important;
}

#cashier #withdraw-tab .pay-tooltip__note {
	margin: 0 0 12px;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid rgba(230, 116, 139, 0.5);
	background: linear-gradient(180deg, rgba(86, 38, 70, 0.5) 0%, rgba(54, 25, 54, 0.42) 100%);
	color: #ffc3ce;
	font-size: 14px;
	line-height: 1.35;
}

#cashier #withdraw-tab .pay-tooltip__note *,
#cashier #withdraw-tab .pay-tooltip__note .error__info,
#cashier #withdraw-tab .pay-tooltip__note i {
	color: #ffc3ce;
}

@media (max-width: 991px) {
	#cashier #withdraw-tab .payment__row-inner {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	}
}

@media (max-width: 640px) {
	#cashier #withdraw-tab .payment__row-inner {
		grid-template-columns: 1fr;
	}

	#cashier #withdraw-tab .pay-tooltip {
		padding: 12px;
	}

	#cashier #withdraw-tab .pay-tooltip__input .input__inner {
		height: 42px;
		font-size: 17px;
	}
}

.popup2.popup_restorePassword .popup__close i.icon_cross-bold {
	font-size: 11px;
	color: #b9c3f0;
}

.popup2.popup_restorePassword .popup__head,
.popup2.popup_remindSuccess .popup__head,
.popup2.popup_emailVerification .popup__head,
.popup2.popup_phoneVerification .popup__head,
.popup2.popup_phoneVerified .popup__head,
.popup2.popup_changePassword .popup__head,
.popup2.popup_passwordChanged .popup__head,
.popup2.popup_favoritesAdded .popup__head,
.popup2.popup_favoritesAddedFail .popup__head,
.popup2.popup_gotoRegistration .popup__head {
	margin-bottom: 8px;
}

.popup2.popup_restorePassword .popup__content,
.popup2.popup_remindSuccess .popup__content,
.popup2.popup_emailVerification .popup__content,
.popup2.popup_phoneVerification .popup__content,
.popup2.popup_phoneVerified .popup__content,
.popup2.popup_changePassword .popup__content,
.popup2.popup_passwordChanged .popup__content,
.popup2.popup_favoritesAdded .popup__content,
.popup2.popup_favoritesAddedFail .popup__content,
.popup2.popup_gotoRegistration .popup__content {
	padding: 0;
}


.popup2.popup_gotoRegistration .popup__content .popup__title.popup__title_accent {
	margin-top: 2px;
	color: #c4ccf5;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.popup2.popup_restorePassword .popup__subtitle,
.popup2.popup_emailVerification .popup__caption,
.popup2.popup_phoneVerification .popup__caption {
	margin-bottom: 10px;
	color: rgb(171, 181, 223);
	font-size: 15px;
	line-height: 1.35;
}

.popup2.popup_restorePassword .popup__input.input,
.popup2.popup_phoneVerification .popup__input.input,
.popup2.popup_changePassword .popup__input.input {
	margin-bottom: 10px;
}

.popup2.popup_restorePassword .popup__input .input__inner,
.popup2.popup_phoneVerification .popup__input .input__inner,
.popup2.popup_changePassword .popup__input .input__inner {
	height: 44px;
	border-radius: 8px;
	border: 1px solid rgba(80, 92, 149, 0.8);
	background: rgba(20, 26, 56, 0.9);
	color: #fff;
}

.popup2.popup_changePassword .popup__label.popup__label_small.input__label {
	margin-bottom: 5px;
	color: #aab4e2;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.popup2.popup_restorePassword .popup__footer,
.popup2.popup_remindSuccess .popup__footer,
.popup2.popup_emailVerification .popup__footer,
.popup2.popup_phoneVerification .popup__footer,
.popup2.popup_phoneVerified .popup__footer,
.popup2.popup_changePassword .popup__footer,
.popup2.popup_passwordChanged .popup__footer,
.popup2.popup_favoritesAdded .popup__footer,
.popup2.popup_favoritesAddedFail .popup__footer,
.popup2.popup_gotoRegistration .popup__footer {
	padding-top: 14px;
}

.popup2.popup_restorePassword .popup__button,
.popup2.popup_remindSuccess .popup__button,
.popup2.popup_emailVerification .popup__button,
.popup2.popup_phoneVerification .popup__button,
.popup2.popup_phoneVerified .popup__button,
.popup2.popup_changePassword .popup__button,
.popup2.popup_passwordChanged .popup__button,
.popup2.popup_favoritesAdded .popup__button,
.popup2.popup_favoritesAddedFail .popup__button,
.popup2.popup_gotoRegistration .popup__button {
	min-width: 132px;
	height: 42px;
	border: 1px solid #3a477f;
	border-radius: 9px;
	background: linear-gradient(180deg, #4b58a0 0%, #3d4a8c 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

@media (max-width: 767px) {
	.popup2.popup_restorePassword,
	.popup2.popup_remindSuccess,
	.popup2.popup_emailVerification,
	.popup2.popup_phoneVerification,
	.popup2.popup_phoneVerified,
	.popup2.popup_changePassword,
	.popup2.popup_passwordChanged,
	.popup2.popup_favoritesAdded,
	.popup2.popup_favoritesAddedFail,
	.popup2.popup_gotoRegistration {
		width: calc(100vw - 18px);
		max-height: calc(100vh - 18px);
		padding: 16px;
	}

}

/* Gameplay gallery popup (if enabled later) */
.popup2.popup_gameplayGallery {
	width: min(1080px, calc(100vw - 36px));
	max-width: 1080px;
	max-height: calc(100vh - 36px);
	padding: 20px;
	border: 1px solid #2a345f;
	border-radius: 14px;
	background: radial-gradient(120% 140% at 20% 0%, #2a3263 0%, #1f2546 45%, #1a2141 100%);
	box-shadow: 0 16px 32px rgba(2, 6, 30, 0.45);
	overflow: auto;
}

.popup2.popup_gameplayGallery .popup__content {
	padding: 0;
}

.popup2.popup_gameplayGallery .popup__footer {
	padding-top: 14px;
}

@media (max-width: 767px) {
	.popup2.popup_gameplayGallery {
		width: calc(100vw - 18px);
		max-height: calc(100vh - 18px);
		padding: 14px;
	}
}

/* Unified error styling across duel forms and popups */
.duel-cabinet-modal .tabErrorMessage:not(:empty),
.popup.auth-tabs .error-text,
.popup2 .error-text,
.popup2 .reply-pin-block:not(:empty),
.popup2 .reply-contact-form:not(:empty),
.partner-error-text {
	margin: 10px 0 0;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid rgba(230, 116, 139, 0.45);
	background: linear-gradient(180deg, rgba(86, 38, 70, 0.45) 0%, rgba(54, 25, 54, 0.36) 100%);
	color: #ffc3ce !important;
	font-size: 14px;
	line-height: 1.35;
	text-shadow: none;
	font-weight: 500;
}

.duel-cabinet-modal .modal__error .modal__note_important:not(:empty),
.popup.auth-tabs .error-text,
.popup2 .error-text,
.popup2 .reply-pin-block:not(:empty),
.popup2 .reply-contact-form:not(:empty),
.partner-error-text {
	display: block;
	margin: 10px 0 0;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid rgba(230, 116, 139, 0.45);
	background: linear-gradient(180deg, rgba(86, 38, 70, 0.45) 0%, rgba(54, 25, 54, 0.36) 100%);
	color: #ffc3ce !important;
	text-shadow: none !important;
	font-weight: 500;
}


.enter-pin .duel-profile-info-item__label {
	padding: 0px 15px 5px 0px;
}

/* Cabinet history redesign */
#cabinet-modal.duel-cabinet-modal #history.history {
	display: block;
}

#cabinet-modal.duel-cabinet-modal #history .duel-history-select-wrapper {
	margin: 0 0 14px;
}

#cabinet-modal.duel-cabinet-modal #history .duel-history-select.input__inner {
	height: 48px;
	min-width: 260px;
	max-width: 320px;
	border: 1px solid #3b4a88;
	border-radius: 10px;
	background: linear-gradient(180deg, rgba(39, 49, 96, 0.96) 0%, rgba(27, 35, 73, 0.98) 100%);
	color: #eef2ff;
	font-size: 15px;
	font-weight: 700;
	padding: 0 42px 0 16px;
}

#cabinet-modal.duel-cabinet-modal #history .tab__content-history {
	max-width: none;
	width: 100%;
}

#cabinet-modal.duel-cabinet-modal #history .history__main {
	display: none;
}

#cabinet-modal.duel-cabinet-modal #history .history__main.active {
	display: block;
}

#cabinet-modal.duel-cabinet-modal #history .history__body {
	overflow-x: auto;
	overflow-y: visible;
}

#cabinet-modal.duel-cabinet-modal #history .history__row {
	display: grid;
	grid-template-columns: minmax(84px, .75fr) minmax(170px, 1.2fr) minmax(140px, 1fr) minmax(120px, .9fr) minmax(130px, .85fr);
	gap: 12px 16px;
	margin: 0;
	padding: 14px 16px;
	border: 1px solid #2f3a6a;
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(36, 45, 87, 0.95) 0%, rgba(28, 36, 74, 0.98) 100%);
	box-shadow: 0 8px 22px rgba(4, 8, 30, 0.24);
}

#cabinet-modal.duel-cabinet-modal #history #tab-content__log .history__row {
	grid-template-columns: minmax(0, .65fr) minmax(0, 1.1fr) minmax(0, .8fr) minmax(0, .8fr) minmax(0, .8fr) minmax(0, 1.7fr);
}

#cabinet-modal.duel-cabinet-modal #history #tab-content__log .history__cell:last-child {
	overflow-wrap: anywhere;
	word-break: break-word;
}

#cabinet-modal.duel-cabinet-modal #history .history__row + .history__row {
	margin-top: 12px;
}

#cabinet-modal.duel-cabinet-modal #history .history__cell {
	margin: 0;
	min-width: 0;
	color: #fff;
	font-size: 14px;
	line-height: 1.42;
	font-weight: 600;
	word-break: break-word;
}

#cabinet-modal.duel-cabinet-modal #history .history__cell span {
	display: block;
	margin: 0 0 3px;
	color: #aebcf7;
	font-size: 11px;
	line-height: 1.25;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

#cabinet-modal.duel-cabinet-modal #history .pagination {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

#cabinet-modal.duel-cabinet-modal #history .pagination .page-item {
	margin: 0;
}

#cabinet-modal.duel-cabinet-modal #history .pagination .page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #5567b3;
	border-radius: 10px;
	background: linear-gradient(180deg, #5f74cf 0%, #4558a9 100%);
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

#cabinet-modal.duel-cabinet-modal #history .pagination .page-link:hover {
	filter: brightness(1.06);
	transform: none;
}

@media (max-width: 1199px) {
	#cabinet-modal.duel-cabinet-modal #history .history__row,
	#cabinet-modal.duel-cabinet-modal #history #tab-content__log .history__row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	#cabinet-modal.duel-cabinet-modal #history .duel-history-select.input__inner {
		max-width: none;
		width: 100%;
		height: 44px;
		font-size: 15px;
	}

	#cabinet-modal.duel-cabinet-modal #history .history__row,
	#cabinet-modal.duel-cabinet-modal #history #tab-content__log .history__row {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 12px;
	}

	#cabinet-modal.duel-cabinet-modal #history .history__cell {
		font-size: 13px;
	}

	#cabinet-modal.duel-cabinet-modal #history .pagination .page-link {
		min-width: 36px;
		height: 36px;
		font-size: 16px;
	}
}


#cabinet-modal.duel-cabinet-modal #bonuses .bonus-panel__title_alert {
	border: none;
	background: none;
	padding-top: 0px;
}




.tawk-min-chat-icon {
	width: 16px !important;
	height: 16px !important;
}

.tawk-min-container .tawk-button-circle.tawk-button-large {
	width: 24px !important;
	height: 24px !important;
	bottom: 12px !important;
	left: 13px !important;
}
