:root {
	--bg: #15161a;
	--surface: #1a1d24;
	--line: #282d38;
	--text: #f1f4fa;
	--text-muted: #9aa7bb;
	--accent: linear-gradient(262.12deg, #bbfa55 0%, #95f24d 100%);
	--container: 1240px;
}

@font-face {
	font-family: "RF Dewi";
	src:
		url("../fonts/RFDewi-Light.woff2") format("woff2"),
		url("../fonts/RFDewi-Light.woff") format("woff"),
		url("../fonts/RFDewi-Light.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "RF Dewi Expanded italic";
	src:
		url("../fonts/RFDewiExpanded-Italic.woff2") format("woff2"),
		url("../fonts/RFDewiExpanded-Italic.woff") format("woff"),
		url("../fonts/RFDewiExpanded-Italic.ttf") format("truetype");
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "RF Dewi Expanded regular italic";
	src:
		url("../fonts/RFDewiExpanded-Italic.woff2") format("woff2"),
		url("../fonts/RFDewiExpanded-Italic.woff") format("woff"),
		url("../fonts/RFDewiExpanded-Italic.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "RF Dewi Expanded black italic";
	src:
		url("../fonts/RFDewiExpanded-BlackItalic.woff2") format("woff2"),
		url("../fonts/RFDewiExpanded-BlackItalic.woff") format("woff"),
		url("../fonts/RFDewiExpanded-BlackItalic.ttf") format("truetype");
	font-weight: 900;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "RF Dewi Expanded bold";
	src:
		url("../fonts/RFDewiExpanded-BlackItalic.woff2") format("woff2"),
		url("../fonts/RFDewiExpanded-BlackItalic.woff") format("woff"),
		url("../fonts/RFDewiExpanded-BlackItalic.ttf") format("truetype");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "RF Dewi Expanded bold italic";
	src:
		url("../fonts/RFDewiExpanded-BlackItalic.woff2") format("woff2"),
		url("../fonts/RFDewiExpanded-BlackItalic.woff") format("woff"),
		url("../fonts/RFDewiExpanded-BlackItalic.ttf") format("truetype");
	font-weight: 900;
	font-style: italic;
	font-display: swap;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}
td {
    border: 1px solid #fff;
    border-radius: 5px;
}
body {
	margin: 0;
	font-family: "RF Dewi", "Segoe UI", Arial, sans-serif;
	background: var(--bg);
	color: var(--text);
	overflow-x: clip;
}

a {
	color: inherit;
	text-decoration: none;
}

img, picture, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
	width: min(100% - 40px, var(--container));
	margin-inline: auto;
}

.header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: #1E1F25;
	border-bottom: 1px solid #202833;
	backdrop-filter: blur(6px);
}

.header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: linear-gradient(90deg, rgba(1, 111, 163, 0.15) 0%, #0388c9 48%, rgba(1, 111, 163, 0.15) 100%);
}

.header__inner {
	min-height: 64px;
	display: flex;
	align-items: center;
	gap: 22px;
}

.logo img {
	width: 171px;
}

.menu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
}

.menu__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 34px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu__list > .menu-item {
	position: relative;
}

.menu__list > .menu-item-has-children {
	padding-bottom: 14px;
	margin-bottom: -14px;
}

.menu a {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	color: #cfd3de;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.01em;
	line-height: 1;
	font-family: "RF Dewi Expanded regular italic";
}

.menu a img {
	width: 12px;
	height: 12px;
}

.menu__list .sub-menu {
	position: absolute;
	top: calc(100% - 6px);
	left: 50%;
	z-index: 20;
	display: none;
	min-width: 180px;
	margin: 0;
	padding: 8px;
	list-style: none;
	border: 1px solid #2a303a;
	border-radius: 10px;
	background: #171c24;
	transform: translateX(-50%);
}

.menu__list .sub-menu::before {
	content: "";
	position: absolute;
	top: -12px;
	left: 0;
	width: 100%;
	height: 12px;
}

.menu__list .sub-menu .menu-item + .menu-item {
	margin-top: 4px;
}

.menu__list .sub-menu a {
	display: block;
	padding: 8px 12px;
	border-radius: 8px;
	text-transform: none;
	font-size: 13px;
	white-space: nowrap;
	text-transform: uppercase;
}

.menu__list .sub-menu a:hover {
	background: #222833;
	color: #bbfa55;
}

.menu__list > .menu-item-has-children:hover > .sub-menu,
.menu__list > .menu-item-has-children:focus-within > .sub-menu {
	display: block;
}

.header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}
.ranking-card__button--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.icon-btn {
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	border-radius: 8px;
	border: 1px solid #2a303a;
	background: #171c24;
	cursor: pointer;
}

.header-burger {
	display: none;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid #2a303a;
	border-radius: 10px;
	background: #171c24;
	cursor: pointer;
	place-items: center;
	position: relative;
	flex-shrink: 0;
}

.header-burger__line {
	position: absolute;
	left: 10px;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: #eaf0fb;
	transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

.header-burger__line:nth-child(1) {
	top: 13px;
}

.header-burger__line:nth-child(2) {
	top: 19px;
}

.header-burger__line:nth-child(3) {
	top: 25px;
}

.header.is-menu-open .header-burger {
	border-color: #0388c9;
	background: #1a2330;
}

.header.is-menu-open .header-burger__line:nth-child(1) {
	top: 19px;
	transform: rotate(45deg);
}

.header.is-menu-open .header-burger__line:nth-child(2) {
	opacity: 0;
}

.header.is-menu-open .header-burger__line:nth-child(3) {
	top: 19px;
	transform: rotate(-45deg);
}

.header-search {
	position: relative;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.header-search__form {
	position: absolute;
	right: calc(100% + 8px);
	top: 50%;
	z-index: 12;
	display: flex;
	align-items: center;
	width: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	pointer-events: none;
	background: rgba(21, 22, 26, 0.98);
	border: 1px solid #2a303a;
	border-radius: 10px;
	box-shadow: -12px 0 32px rgba(0, 0, 0, 0.35);
	transform: translateY(-50%) translateX(12px);
	transition:
		width 0.38s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.28s ease,
		visibility 0.38s,
		transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-search.is-open .header-search__form {
	width: min(460px, calc(100vw - 220px));
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(-50%) translateX(0);
}

.header-search__input {
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	height: 32px;
	padding: 0 14px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: var(--text);
	font: inherit;
	font-size: 13px;
	line-height: 1;
	outline: none;
}

.header-search__input::placeholder {
	color: #727f95;
}

.header-search__toggle {
	position: relative;
	z-index: 13;
	flex-shrink: 0;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.header-search.is-open .header-search__toggle {
	border-color: #0388c9;
	background: #1a2330;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 17px;
	border: 0;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	cursor: pointer;
	font-family: "RF Dewi Expanded black italic";
}

.btn--primary {
	background: var(--accent);
	color: #11151d;
}

.main {
    padding: 40px 0 0;
    min-height: 77vh;
}

.hero {
	display: grid;
	gap: 14px;
}
.hero .swiper {
	width: 100%;
}
.hero__track:not(.swiper) {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.hero-card.hero-card--left {
	background-image: url('../images/first-slide.png');
}
.hero-card.hero-card--right {
	background-image: url('../images/second-slide.png');
}
.hero-card {
	display: flex;
	flex-direction: column;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	min-height: 218px;
	max-height: 220px;
	padding: 18px 20px;
	border-radius: 14px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
}

.hero-card__title {
	max-width: 60%;
	font-size: 28px;
	line-height: 1.4;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded bold italic";
	margin: 0;
}

.hero-card__text {
	color: #EEFFE699;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-family: 'RF Dewi Expanded bold italic';
}

.hero-card__amount {
	margin: 0 0 14px;
	font-family: "RF Dewi Expanded", "RF Dewi", "Segoe UI", Arial, sans-serif;
	font-size: 46px;
	line-height: 0.92;
	text-transform: uppercase;
}

.hero-card__amount span {
	color: #bbfa55;
}

.hero__dots {
	display: flex;
	justify-content: center;
	gap: 6px;
}
.hero__dots span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #323743;
}
.hero__dots .is-active {
	background: #bbfa55;
}


/* Swiper button */
.swiper-navigations {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.swiper-button {
	color: #f5f7fb;
  z-index: 3;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
	width: 24px;
	height: 24px;
	background: rgba(0, 0, 0, 0.38);
  transition: 0.5s;
  touch-action: manipulation;
  border-radius: 100%;

	border: none;
	cursor: pointer;
}
.swiper-button__icon {
  width: 1rem;
  height: 1rem;
}
.swiper-button__icon svg {
  display: block;
  fill: currentColor;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.swiper-button__text {
	font-size: 19px;
	line-height: 1;
}
.swiper-button:hover {
  background: #4b4b53;
}
.swiper-button-lock {
  display: none;
}
.swiper-button-disabled {
  background: #d2d2d2;
  pointer-events: none;
}

.swiper-pagination-bullets {
  pointer-events: all;
  z-index: 10;
  position: relative;
  top: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  left: 0 !important;
	display: flex;
	justify-content: center;
	gap: 6px;
  width: unset !important;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin-right: 0;
  margin-left: 0;
	width: 7px;
	height: 7px;
	background: #323743;
	border-radius: 50%;
	opacity: 1;
}
.swiper-pagination-bullet-active {
	background: #bbfa55 !important;
}


.ratings {
	padding-top: 14px;
	padding-bottom: 14px;
}

.ratings__title {
	margin: 0 0 20px;
	font-size: 24px;
	line-height: 1;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded bold italic", "RF Dewi Expanded black italic", "RF Dewi Expanded italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.ratings__title span {
	color: #8ff046;
}

.ratings__track {
	display: flex;
	align-items: center;
	gap: 11px;
	overflow-x: auto;
	padding-bottom: 4px;
	scrollbar-width: none;
}
.ratings__track::-webkit-scrollbar {
	display: none;
}

.ratings__track .swiper {}
.ratings__track .swiper-slide {
	width: auto;
	height: auto;
}

.rating-chip {
	flex: 0 0 auto;
	height: 52px;
	padding: 0 14px 0 18px;
	border-radius: 12px;
	border: 1px solid #2b313e;
	background: #1E1F25;
	display: inline-flex;
	align-items: center;
	gap: 17px;
	color: #f0f4fb;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0.01em;
	font-family: "RF Dewi Expanded bold italic", "RF Dewi Expanded black italic", "RF Dewi Expanded italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
	font-style: italic;
	font-weight: 900;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.rating-chip::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #1E1F25;
	z-index: -2;
}

.chip-data {
    position: relative;
    top: 0px;
    right: -21px;
    width: 55px;
    height: 84px;
    border-radius: 50%;
    background: #2E2F38;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-chip img {
	width: 22px;
	height: 22px;
}

.rating-chip span {
	white-space: nowrap;
}

.rating-chip--muted {
	opacity: 0.4;
}

.home-content {
	padding-bottom: 24px;
	padding-top: 35px;
}

.hero--prefooter {
	margin-top: 10px;
	margin-bottom: 18px;
}

.home-content__grid {
	display: grid;
	grid-template-columns: 953px 297px;
	gap: 14px;
	align-items: start;
}

.bk-section__title {
	margin: 0 0 25px;
	font-size: 24px;
	line-height: 1;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded bold italic", "RF Dewi Expanded black italic", "RF Dewi Expanded italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.bk-section__title span {
	color: #8ff046;
}

.bk-list {
	display: grid;
	gap: 20px;
}

.bk-card {
	border-radius: 18px;
	border: 1px solid #242a35;
	background: #1E1F25;
	overflow: hidden;
	padding: 10px;
	border-radius: 20px;
}

.bk-card__main {
	display: grid;
	grid-template-columns: 219px repeat(5, 1fr) 217px;
	align-items: center;
	min-height: 64px;
	background: #272931;
	border-radius: 12px;
}

.bk-card__col {
	height: 64px;
	display: grid;
	place-content: center;
}

.bk-card__col--brand {
	grid-template-columns: auto 1fr;
	display: grid;
	align-items: center;
	gap: 12px;
	padding: 0 16px;
}

.bk-card__place {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--accent);
	display: grid;
	place-items: center;
	color: #141922;
	font-size: 18px;
	font-family: "RF Dewi Expanded bold italic", "RF Dewi Expanded black italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.bk-card__logo {
	display: block;
	width: auto;
	height: 25px;
	margin: 0;
}

.bk-card__value {
	margin: 0;
	font-size: 16px;
	line-height: 1;
	color: #f2f5fb;
	font-family: "RF Dewi Expanded bold italic", "RF Dewi Expanded black italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.bk-card__label {
	margin: 2px 0 0;
	font-size: 12px;
	color: #707f96;
}

.bk-card__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	padding: 0 10px;
}
.bk-card__actions .btn {
	height: 40px;
}

.btn--ghost {
	background: #40434E;
	color: #fff;
}

.bk-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 10px 0;
}

.bk-card__bonus {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #dce2ec;
}

.bk-card__bonus img {
	width: 14px;
	height: 14px;
}

.bk-card__more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	border: 0;
	background: transparent;
	color: #6f7d93;
	font-size: 12px;
	cursor: pointer;
}

.bk-card__more img {
	width: 12px;
	height: 12px;
}

.sidebar {
	display: grid;
	gap: 18px;
}

.sidebar-box {
	border-radius: 24px;
	background: linear-gradient(180deg, #1b2029 0%, #171b23 100%);
	overflow: hidden;
}

.sidebar-box__title {
	margin: 0;
	padding: 16px 18px 14px;
	font-size: 14px;
	text-transform: uppercase;
	line-height: 1;
	font-family: "RF Dewi Expanded bold italic", "RF Dewi Expanded black italic", "RF Dewi Expanded italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
	border-bottom: 1px solid #262d3a;
	background: #272931;
}

.sidebar-box__title span {
	color: #8ff046;
}

.sidebar-list,
.sidebar-picks {
	list-style: none;
	padding: 0;
	margin: 0;
	background: #1E1F25;
}

.sidebar-list a {
	display: block;
	padding: 20px 18px;
	font-size: 12px;
	line-height: 1.22;
	border-bottom: 1px solid #d8e9ff40;
}

.sidebar-list li:last-child a {
	border-bottom: 0;
}

.sidebar-picks {
	padding: 12px;
	display: grid;
	gap: 10px;
}

.sidebar-picks a {
	min-height: 46px;
	padding: 0 14px;
	border-radius: 14px;
	background: #272931;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	font-size: 12px;
}

.sidebar-picks a i {
	font-style: normal;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #3e4655;
	display: grid;
	place-items: center;
	font-size: 13px;
	color: #e9eef7;
}

.breadcrumbs {
	display: flex;
	align-items: center;
}

.breadcrumbs__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.breadcrumbs__item {
	color: #f0f4fb;
	position: relative;
	display: inline-flex;
	align-items: center;
}

.breadcrumbs__item a,
.breadcrumbs__item span {
	font-size: 12px;
	line-height: 1;
}

.breadcrumbs__current {
	color: #d8e9ff66;
}

.single-placeholder {
	padding: 24px 0;
}

.single-placeholder p {
	margin: 0;
	font-size: 14px;
	color: #8d99ac;
}

.single-page {
	padding-top: 20px;
	padding-bottom: 26px;
}

.single-page__title {
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
	font-size: 28px;
	line-height: 1.4;
	text-transform: uppercase;
	margin: 0 0 32px;
}
.single-page__title span {
	background: linear-gradient(262.12deg, #BBFA55 0%, #95F24D 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.single-page__grid {
	display: grid;
	grid-template-columns: 820px 367px;
	gap: 57px;
	align-items: start;
}

.single-main {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	width: 100%;
}

.single-carousel {
	position: relative;
	width: 100%;
	max-width: 100%;
}
.single-carousel .swiper {
	width: 100%;
}
.single-carousel .swiper-slide {
	height: auto;
}
.single-carousel .swiper-button {
	position: absolute;
	top: calc(50% - 24px / 2);
}
.single-carousel .swiper-button_left {
	left: 7px;
}
.single-carousel .swiper-button_right {
	right: 7px;
}
.single-carousel .swiper-pagination {
	margin-top: 24px;
}
.single-carousel .swiper-pagination_absolute {
	position: absolute;
	top: auto !important;
	left: 50% !important;
	right: auto !important;
	bottom: 7px !important;
	transform: translateX(-50%) !important;
	padding: 2px 4px;
	margin-top: 0;
	background: rgba(0, 0, 0, 0.38);
	border-radius: 10px;
}
.single-carousel .hero-card {
	height: 100%;
	min-height: 140px;
	border-radius: 20px;
	border: 1px solid #2a313d;
}

.single-banner {
	position: relative;
	width: 100%;
	min-height: 138px;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #2a313d;
	background:
		linear-gradient(120deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.18) 100%),
		url("../images/single-fisrt-slide.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 14px;
}

.single-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(120deg, rgba(255, 136, 0, 0.08) 0 10px, transparent 10px 22px);
	pointer-events: none;
}

.single-banner__sup {
	margin: 0;
	font-size: 24px;
	color: #ff8f1f;
	line-height: 1;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.single-banner__nav {
	position: relative;
	z-index: 1;
	width: 24px;
	height: 24px;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.38);
	color: #f5f7fb;
	font-size: 19px;
	line-height: 1;
	cursor: pointer;
}

.single-banner__dots {
	position: absolute;
	left: 50%;
	bottom: 8px;
	transform: translateX(-50%);
	display: flex;
	gap: 5px;
}

.single-banner__dots span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #5f6775;
}

.single-banner__dots .is-active {
	background: #ffffff;
}

.single-about {
	display: grid;
	grid-template-columns: 1fr 233px;
	gap: 12px;
	width: 100%;
	padding: 22px 16px;
	border-radius: 18px;
	border: 1px solid #262d39;
	background: linear-gradient(270deg, rgba(30, 31, 37, 0.8) 0%, #1e1f25 800%),
  linear-gradient(360deg, rgba(30, 31, 37, 0) 0%, #1e1f25 100%),
  url("../images/info-bk.jpg") no-repeat center / cover;
}

.single-about__title {
	font-size: 20px;
	line-height: 0.92;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
	margin-top: 0;
}

.single-about__text {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.4;
	color: #E9F3FFB2;
}
.single-about__main {
    max-width: 90%;
}
.single-about__facts {
	display: grid;
	gap: 8px;
}

.single-about__fact {
	min-height: 38px;
	border-radius: 10px;
	background: #2a303c;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 12px;
	border: 1px solid rgba(255, 255, 255, 0.04);
}

.single-about__fact span {
	position: relative;
	padding-left: 20px;
	font-size: 14px;
	line-height: 1;
	font-family: "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.single-about__fact span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.single-about__fact p {
	margin: 0;
	font-size: 14px;
	line-height: 1;
	color: #f3f7fe;
}

.single-about__fact--plus span {
	color: #8ff046;
}

.single-about__fact--plus span::before {
	content: "+";
	background: linear-gradient(180deg, #bdfd63 0%, #95f24d 100%);
	color: #10151d;
}

.single-about__fact--plus {
	background: linear-gradient(90deg, rgba(143, 240, 70, 0.17) 0%, rgba(42, 48, 60, 0.9) 45%, rgba(42, 48, 60, 0.98) 100%);
}

.single-about__fact--minus span {
	color: #ff5757;
}

.single-about__fact--minus span::before {
	content: "−";
	background: linear-gradient(180deg, #ff6b6b 0%, #ff4f4f 100%);
	color: #10151d;
}

.single-about__fact--minus {
	background: linear-gradient(90deg, rgba(255, 87, 87, 0.17) 0%, rgba(42, 48, 60, 0.9) 45%, rgba(42, 48, 60, 0.98) 100%);
}

.single-rating-card {
	border-radius: 14px;
	padding: 14px;
	display: flex;
	gap: 12px;
	border: 1px solid transparent;
	background: linear-gradient(180deg, #272931 0%, rgba(255, 187, 78, 0.2) 0, #252b37 35%) padding-box,
  linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0, rgba(255, 255, 255, 0) 68.29%) border-box;
	min-width: 233px;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.single-rating-card__stars {
	display: flex;
	gap: 8px;
	line-height: 0;
}

.single-rating-card__stars img,
.single-rating-card__stars svg {
	width: 24px;
	height: 24px;
	display: block;
}

.single-rating-card__stars .is-half {
	opacity: 0.5;
}

.single-rating-card__title {
	margin: 0;
	font-size: 15px;
	line-height: 1;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.single-rating-card__title strong {
	color: #ffcb2f;
	font-weight: 900;
}

.single-rating-card__note {
	margin: -2px 0 0;
	font-size: 12px;
	color: #b3bece;
}

.single-rating-card__btn {
	width: 100%;
	height: 40px;
	font-size: 15px;
}

.single-sidebar__placeholder {
	min-height: 280px;
	border-radius: 18px;
	border: 1px dashed #313847;
	background: #1b2029;
	color: #7f8da3;
	display: grid;
	place-items: center;
	text-align: center;
	padding: 16px;
	font-size: 13px;
}

.single-sidebar-nav {
	border-radius: 18px;
	border: 1px solid #252c38;
	background: linear-gradient(180deg, #1e232d 0%, #181c24 100%);
	overflow: hidden;
	padding-bottom: 3%;
}

.single-sidebar-nav__title {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
	background: #272931;
	padding: 4% 3%;
}

.single-sidebar-nav__title span {
	color: #8ff046;
}

.single-sidebar-nav__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	padding: 0 4%;
}


.single-sidebar-reviews {
	margin-top: 14px;
	border-radius: 18px;
	border: 1px solid #252c38;
	background: linear-gradient(180deg, #1e232d 0%, #181c24 100%);
	overflow: hidden;
}

.single-sidebar-reviews__title {
	margin: 0;
	padding: 16px 14px 14px;
	font-size: 14px;
	line-height: 1;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
	border-bottom: 1px solid #262d3a;
	background: #272931;
}

.single-sidebar-reviews__title span {
	color: #8ff046;
}

.single-sidebar-reviews__list {
    padding: 10px;
    display: grid;
    gap: 10px;
    max-height: 520px;
    overflow: auto;
}

.single-sidebar-banner {
	display: block;
	margin-top: 14px;
	border-radius: 18px;
	border: 1px solid #252c38;
	background: linear-gradient(180deg, #1e232d 0%, #181c24 100%);
	overflow: hidden;
}
.single-sidebar-banner__image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: inherit;
}

.single-review-card {
	padding: 12px 12px 10px;
	border-radius: 14px;
	border: 1px solid #2a313f;
	background: #272931;
}

.single-review-card__head {
	display: grid;
	grid-template-columns: auto auto 1fr;
	align-items: center;
	column-gap: 8px;
}

.single-review-card__name {
	margin: 0;
	font-size: 14px;
	line-height: 1;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.single-review-card__date {
	margin: 0;
	font-size: 12px;
	color: #D8E9FF66;
	line-height: 1;
}

.single-review-card__stars {
	display: flex;
	justify-content: flex-end;
	gap: 3px;
	line-height: 0;
}

.single-review-card__stars img,
.single-review-card__stars svg {
	width: 14px;
	height: 14px;
}

.single-review-card__stars .is-half {
	opacity: 0.5;
}

.single-review-card__text {
	margin: 10px 0 0;
	font-size: 12px;
	line-height: 1.35;
	color: #E9F3FFB2;
}

.single-features {
	width: 100%;
	margin-top: 8px;
}

.single-features__title {
	margin: 0 0 14px;
	font-size: 20px;
	line-height: 1;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.single-features__title span {
	color: #8ff046;
}

.single-features__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.single-feature {
	height: 52px;
	border-radius: 10px;
	border: 1px solid #2b313b;
	background: #272931;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 8px;
	padding: 0 14px 0 44px;
	position: relative;
	overflow: hidden;
}

.single-feature::before {
	content: "";
	position: absolute;
	left: -34px;
	top: calc(50% - 35px);
	bottom: 0;
	width: 70px;
	height: 70px;
	border-radius: 100%;
	background: linear-gradient(180deg, #2b313d 0%, #262d39 100%);
}

.single-feature__icon {
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	display: grid;
	place-items: center;
}

.single-feature__icon img,
.single-feature__icon svg {
	display: block;
	width: 16px;
	height: 16px;
}

.single-feature__label {
	margin: 0;
	font-size: 10px;
	line-height: 1.05;
	color: #9aa5b9;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
	letter-spacing: 0.015em;
	white-space: nowrap;
	cursor: pointer;
}

.single-feature__value {
	margin: 0;
	font-size: 10px;
	line-height: 1.05;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
	white-space: nowrap;
	color: #f6f8fc;
}

.single-feature__action {
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
	color: #131822;
	font-size: 10px;
	line-height: 1;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 76px;
	height: 34px;
	border: 0;
	border-radius: 10px;
	background: var(--accent);
	cursor: pointer;
}

.single-feature__apps {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-self: end;
}

.single-feature__apps img {
	width: 19px;
	height: 19px;
}

.single-feature--nav {
	height: 50px;
	padding-left: 48px;
	padding-right: 12px;
	grid-template-columns: 1fr;
}

.single-feature--nav .single-feature__icon {
	left: 8px;
	width: 20px;
	height: 20px;
}
.single-feature--nav .single-feature__icon img,
.single-feature--nav .single-feature__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.single-feature--nav .single-feature__label {
	font-family: "RF Dewi", "Segoe UI", Arial, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.2;
	color: #f1f5fc;
	text-transform: none;
	letter-spacing: 0;
	white-space: wrap;
}

.single-feature--active {
	border-color: #BBFA55;
}

.single-article-content {
	font-family: RF Dewi;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.4;
	letter-spacing: 0%;
	width: 100%;
	margin-top: 12px;
}

.single-article-content > * {
	margin: 0;
	padding: 0;
}
.single-article-content > *:not(:last-child) {
	margin-bottom: 1rem;
}
.single-article-content h1,
.single-article-content h2,
.single-article-content h3,
.single-article-content h4,
.single-article-content h5,
.single-article-content img,
.single-article-content video {
	margin-top: 2rem;
}
.single-article-content ul,
.single-article-content ol {
	padding-left: 1em;
}
.single-article-content strong,
.single-article-content b {
	font-weight: 700;
}

/* .single-article-content p {
	margin: 0;
	min-height: 120px;
	border-radius: 14px;
	border: 1px dashed #2d3543;
	background: #1b2029;
	color: #7f8ca2;
	display: grid;
	place-items: center;
	font-size: 13px;
	text-align: center;
	padding: 16px;
} */

.single-share {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	min-height: 96px;
	padding: 0 28px;
	margin-top: 14px;
	border: 1px solid #252c38;
	border-radius: 18px;
	background: #1E1F25;
}

.single-share__title {
	margin: 0;
	font-size: 20px;
	line-height: 1;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.single-share__title span {
	color: #8ff046;
}

.single-share__socials {
	display: flex;
	align-items: center;
	gap: 10px;
}

.single-share__social {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: grid;
	place-items: center;
}

.single-share__social img {
	width: 40px;
	height: 40px;
}

.single-share__social--facebook {
	background: #3c5db0;
}

.single-share__social--ok {
	background: #ff8b00;
}

.single-share__social--telegram {
	background: #2aa8f5;
}

.single-share__social--vk {
	background: #1081ff;
}

.single-share__social--youtube {
	background: #6058d7;
}

.single-comment-form {
	display: block;
	width: 100%;
	padding: 18px 20px 20px;
	margin-top: 14px;
	border-radius: 18px;
	border: 1px solid #252c38;
	background: #1E1F25;
}

.single-comment-form__title {
	margin: 0 0 16px;
	font-size: 20px;
	line-height: 1;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.single-comment-form__title span {
	color: #8ff046;
}

.single-comment-form__form {
	display: grid;
	gap: 12px;
}

.single-comment-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.single-comment-form__field {
	display: grid;
	gap: 6px;
}

.single-comment-form__label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.single-comment-form input,
.single-comment-form textarea {
	width: 100%;
	border: 1px solid #2a313f;
	border-radius: 12px;
	background: #272931;
	color: #eaf0fb;
	font: inherit;
	font-size: 14px;
	padding: 0 16px;
}

.single-comment-form input {
	height: 54px;
}

.single-comment-form textarea {
	resize: vertical;
	min-height: 132px;
	padding-top: 14px;
	padding-bottom: 14px;
}

.single-comment-form input::placeholder,
.single-comment-form textarea::placeholder {
	color: #727f95;
}

.single-comment-form__submit {
	width: max-content;
	min-width: 176px;
	height: 48px;
	font-size: 14px;
}

.single-comment-form__message {
	width: 100%;
  padding: 8px 16px;
  border: 1px solid #2a313f;
  border-radius: 12px;
}
.single-comment-form__message:empty {
	display: none;
}

.single-comments-list {
	margin-top: 14px;
}

.single-comment-card {
	width: 100%;
	padding: 14px 16px 12px;
	background: linear-gradient(180deg, #1e232d 0%, #181c24 100%);
	border: 1px solid #252c38;
	border-radius: 18px;
}

.single-comment-card > .single-comment-card {
	margin-top: 10px;
	padding: 12px 12px 10px;
	border-radius: 14px;
	background: linear-gradient(180deg, #222833 0%, #1c212c 100%);
	border: 1px solid #2a313f;
}

.single-comments-list > .single-comment-card + .single-comment-card {
	margin-top: 10px;
}

.single-comment-card .single-comment-form {
	display: none;
	width: 100% !important;
	/* padding: 18px 20px 20px !important; */
}


.single-comment-card__head {
	margin-bottom: 10px;
}

.single-comment-card__author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.single-comment-card__avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #242a35;
	display: grid;
	place-items: center;
}

.single-comment-card__avatar img {
	width: 20px;
	height: 20px;
}

.single-comment-card__name {
	margin: 0;
	font-size: 16px;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.single-comment-card__name span {
	color: #8ff046;
}

.single-comment-card__date {
	margin: 0;
	font-size: 14px;
	color: #6f7d93;
}

.single-comment-card__body p {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.35;
	color: #e7edf8;
}

.single-comment-card__body p:last-child {
	margin-bottom: 0;
}

.single-comment-card__actions {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #252c38;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.single-comment-card__left-actions,
.single-comment-card__right-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.single-comment-card__reply,
.single-comment-card__share,
.single-comment-card__vote {
	border: 0;
	background: transparent;
	color: #8ff046;
	font-size: 14px;
	cursor: pointer;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.single-comment-card__reply-count {
	color: #8ff046;
	font-size: 14px;
	line-height: 1;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.single-comment-card__share {
	color: #a6b1c3;
}

.single-comment-card__vote {
	color: #e9eef7;
	font-family: "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.ranking-main {
	padding-top: 10px;
}

.ranking-page {
	padding: 12px 0 24px;
}

.ranking-page__title {
	margin: 0 0 16px;
	font-size: 28px;
	line-height: 1;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
	color: #f2f6ff;
}

.ranking-page__title span {
	background: var(--accent);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.ranking-section {
	margin-bottom: 50px;
}

.ranking-list {
	display: grid;
	gap: 10px;
}

.ranking-card {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 28px;
	padding: 20px;
	border: 1px solid #252c38;
	border-radius: 16px;
	background: #1E1F25;
}

.ranking-card__media {
	position: relative;
	display: block;
	width: 100%;
}

.ranking-card__top {
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
	font-style: italic;
	font-weight: 900;
	font-size: 18px;
	line-height: 1.4;
	text-transform: uppercase;
	color: #222222;
	position: absolute;
	top: 0px;
	left: 0px;
	display: inline-block;
	width: auto;
	height: auto;
	padding: 2px 8px 3px;
	background: #fff;
	border-radius: 6px;
	outline: 6px solid #1E1F25;
}
.ranking-card__top-1 {
	background: linear-gradient(292.67deg, #FECB00 0%, #FFE57C 98.43%);
}
.ranking-card__top-2 {
	background: linear-gradient(292.67deg, #717586 0%, #EAF3FF 98.43%);
}
.ranking-card__top-3 {
	background: linear-gradient(292.67deg, #FE6A00 0%, #FFAA7C 98.43%);
}

.ranking-card__poster {
	display: block;
	aspect-ratio: 1 / 1;
	width: 100%;
	height: auto;
	border-radius: 6px;
	border: 1px solid #2a313f;
	background:
		radial-gradient(50% 55% at 50% 35%, rgba(187, 250, 85, 0.3) 0%, rgba(187, 250, 85, 0) 100%),
		linear-gradient(160deg, #2f5d3a 0%, #1d2d24 48%, #1a1f29 100%);
	overflow: hidden;
	object-fit: cover;
	object-position: center;
}
.ranking-card__poster img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: inherit;
	object-position: inherit;
}

.ranking-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 15px;
}

.ranking-card__stars {
	display: flex;
	align-items: center;
	gap: 8px;
}
.ranking-card__stars img,
.ranking-card__stars svg {
	display: block;
	width: 28px;
	height: 28px;
}

.ranking-card__score {
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
	font-size: 18px;
	line-height: 0.9;
	color: #161b25;
	padding: 6px 12px 5px;
	margin: 0;
	background: linear-gradient(292.67deg, #FECB00 0%, #FFE57C 98.43%);
	border-radius: 6px;
}

.ranking-card__content {
	display: grid;
	gap: 20px;
}

.ranking-card__stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 20px;
}

.ranking-card__stat {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px 8px;
	min-height: 35px;
	background: #272931;
	border: 1px solid #27303d;
	border-radius: 8px;
}

.ranking-card__stat.is-open {
  background: #40434E;
  box-shadow: 0px 2px 14px #40434E;
}
.ranking-card__stat.is-open .ranking-card__stat-label::after {
	border-color: #252c38;
}

.ranking-card__stat .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}
.ranking-card__stat .icon svg,
.ranking-card__stat .icon img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}

.ranking-card__stat-label,
.ranking-card__stat-value {
	margin: 0;
	font-size: 14px;
	line-height: 1;
}

.ranking-card__stat-label {
	flex: 1;
	color: #edf2fa;
	display: flex;
	align-items: center;
	gap: 7px;
}
.ranking-card__stat-label::after {
	content: "";
	flex: 1;
	border-bottom: 1px dotted #40434E;
	border: 1px dashed #40434E;
	transform: translateY(1px);	
}

.ranking-card__stat-value {
	color: #909fb6;
	text-align: right;
	font-family: "RF Dewi", "Segoe UI", Arial, sans-serif;
}
.ranking-card__stat-value--icons {
	display: flex;
  align-items: center;
  gap: 6px;
}

.ranking-card__stat-count {
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
	font-weight: 900;
	font-size: 11px;
	color: #222222;
	text-align: center;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 24px;
	height: 24px;
	background: linear-gradient(262.12deg, #BBFA55 0%, #95F24D 100%);
	border: none;
	border-radius: 24px;
	cursor: pointer;
}

.ranking-card__stat-dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: -1px;
  z-index: 3;
  flex-basis: 100%;
	display: none;
	/* display: flex; */
  flex-wrap: wrap;
  width: calc(100% + 2px);
  gap: 6px;
  padding: 9px 12px 8px;
  background: #40434E;
	border: 1px solid #27303d;
	border-top: none;
	border-radius: 0 0 8px 8px;
  box-shadow: #40434E 0px 16px 14px;
  transition: ease all .4s;
}



.ranking-card__actions {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}
.ranking-card__button {
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	border: 1px solid #84d844;
	background: transparent;
	color: #99ef53;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.02em;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.ranking-card__button--primary {
	background: var(--accent);
	color: #11151d;
	border-color: transparent;
}

.ranking-more {
	margin-top: 12px;
	display: flex;
	justify-content: center;
}

.ranking-more__button {
	height: 34px;
	padding: 0 18px;
	border-radius: 8px;
	border: 1px solid #2d3644;
	background: linear-gradient(180deg, #2a313f 0%, #212833 100%);
	color: #f3f7ff;
	font-size: 13px;
	line-height: 1;
	font-family: "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
	cursor: pointer;
}

.ranking-banners {
	margin-top: 36px;
}

.ranking-banners__track {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.ranking-banner-card {
	min-height: 106px;
	padding: 12px 14px;
	border-radius: 14px;
	border: 1px solid #2a313f;
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(64% 100% at 88% 0%, rgba(155, 238, 87, 0.34) 0%, rgba(155, 238, 87, 0) 72%),
		linear-gradient(130deg, #1f4c33 0%, #223328 45%, #171d24 100%);
}

.ranking-banner-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 20px),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 32px);
	opacity: 0.35;
	pointer-events: none;
}

.ranking-banner-card__content {
	position: relative;
	z-index: 1;
}

.ranking-banner-card__title {
	margin: 0 0 12px;
	font-size: 40px;
	line-height: 1;
	text-transform: uppercase;
	color: #f2f6fd;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.ranking-banner-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	padding: 0 14px;
	border-radius: 8px;
	background: var(--accent);
	color: #131821;
	font-size: 13px;
	line-height: 1;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.ranking-banner-card--freebet {
	background:
		radial-gradient(80% 130% at 84% 12%, rgba(155, 238, 87, 0.45) 0%, rgba(155, 238, 87, 0) 74%),
		linear-gradient(130deg, #355d21 0%, #223225 43%, #171d24 100%);
}

.ranking-banner-card--mobile {
	background:
		radial-gradient(55% 90% at 86% 12%, rgba(155, 238, 87, 0.3) 0%, rgba(155, 238, 87, 0) 70%),
		linear-gradient(132deg, #1f3f2f 0%, #1f2833 44%, #171d24 100%);
}

.ranking-banners__dots {
	margin-top: 18px;
	display: flex;
	justify-content: center;
	gap: 6px;
}

.ranking-banners__dots span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #353c48;
}

.ranking-banners__dots .is-active {
	background: #bbfa55;
}

.payments-main {
	padding-top: 10px;
}

.payments-page {
	padding: 12px 0 24px;
}

.payments-page__title {
	margin: 0 0 14px;
	font-size: 28px;
	line-height: 1;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.payments-page__title span {
	background: var(--accent);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.payments-page__grid {
	display: grid;
	grid-template-columns: 807px 367px;
	gap: 14px;
	align-items: start;
}

.payments-main-column {
	display: grid;
	gap: 14px;
}

.payments-top-card {
	margin-bottom: 20px;
}

.payments-article {
	padding: 14px;
	border-radius: 16px;
	border: 1px solid #252c38;
	background: #1e1f25;
}

.payments-article__head {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.payments-article__meta {
	margin: 0;
	padding: 5px 9px;
	border-radius: 8px;
	background: #262c37;
	border: 1px solid #303744;
	font-size: 12px;
	color: #b2bfd3;
}

.payments-article__intro {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.45;
	color: #e7edf8;
}

.payments-section + .payments-section {
	margin-top: 18px;
}

.payments-section__title {
	margin: 0 0 8px;
	font-size: 20px;
	line-height: 1.12;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.payments-section__text {
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 1.45;
	color: #d7deeb;
}

.payments-shot {
	border: 1px solid #2b3240;
	border-radius: 12px;
	background:
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 24px),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 34px),
		linear-gradient(150deg, #222936 0%, #1a202a 52%, #151922 100%);
}

.payments-shot--wide {
	min-height: 190px;
}

.payments-shot--split {
	min-height: 170px;
	padding: 10px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.payments-shot--split span,
.payments-shot--gallery span {
	border-radius: 8px;
	border: 1px solid #2d3442;
	background:
		radial-gradient(65% 60% at 70% 18%, rgba(149, 242, 77, 0.2) 0%, rgba(149, 242, 77, 0) 100%),
		linear-gradient(160deg, #2a323e 0%, #1c222d 100%);
}

.payments-shot--gallery {
	min-height: 180px;
	padding: 10px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.payments-banners {
	margin-top: 0;
}

.payments-comments {
	margin-top: 0;
}

.payments-sidebar {
	display: grid;
	gap: 12px;
	align-content: start;
}

.payments-sidebar__reviews .single-sidebar-reviews__list {
	max-height: none;
}

.payments-sidebar__banner {
	padding: 14px 12px;
	border-radius: 14px;
	border: 1px solid #33404d;
	background:
		radial-gradient(60% 70% at 75% 22%, rgba(243, 145, 53, 0.4) 0%, rgba(243, 145, 53, 0) 100%),
		linear-gradient(145deg, #2f2b22 0%, #252730 60%, #1b2028 100%);
}

.payments-sidebar__banner-title {
	margin: 0 0 12px;
	font-size: 20px;
	line-height: 1.1;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.payments-sidebar__banner-title span {
	color: #f8d656;
}

.payments-sidebar__banner-button {
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	border-radius: 8px;
	background: var(--accent);
	color: #131821;
	font-size: 13px;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded black italic", "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.payments-sidebar__social {
	padding: 10px;
	border-radius: 12px;
	border: 1px solid #2a313d;
	background: #1e232d;
	display: flex;
	align-items: center;
	gap: 8px;
}

.payments-sidebar__social a {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	border: 1px solid #313845;
	background: #272d38;
	display: grid;
	place-items: center;
}

.payments-sidebar__social a img {
	width: 15px;
	height: 15px;
}

.footer {
	margin-top: 22px;
	background: #1E1F25;
	border-top: 1px solid #242a35;
}

.footer__top {
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.footer__brand {
	display: flex;
	align-items: center;
	gap: 18px;
}

.footer__brand img {
	width: 165px;
}

.footer__brand p {
	margin: 0;
	color: #878B9F;
	font-size: 14px;
	text-transform: uppercase;
}

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

.footer__social {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	border: 1px solid #313845;
	background: #272d38;
	display: grid;
	place-items: center;
}

.footer__social img {
	width: 15px;
}

.footer__ask {
	padding-inline: 20px;
	margin-left: 6px;
}

.footer__links {
	min-height: 48px;
	border-top: 1px solid #252c38;
	display: flex;
	align-items: center;
	gap: 34px;
}

.footer__links a {
	color: #878B9F;
	font-size: 14px;
}

.footer__bottom {
	background: #282932;
	border-top: 1px solid #252c38;
}

.footer__bottom-inner {
	min-height: 58px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.footer__bottom p,
.footer__bottom a {
	margin: 0;
	color: #878B9F80;
	font-size: 14px;
}
.footer__bottom a:hover {
	color: #bbfa55;
}



*[modal] {
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  z-index: 18;
}
.modal.open {
  opacity: 1;
  visibility: visible;
}
.modal.open .modal__content {
  transform: translateY(0px);
}
.modal__wrapper {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 100px 30px;
}
.modal__shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.modal__content {
  position: relative;
  width: 100%;
  max-width: 480px;
	padding: 0;
  margin: 0 auto;
  border-radius: 00;
  transition: 0.5s;
  transform: translateY(-30px);
}
.modal__close {
  color: currentColor;
  position: absolute;
  top: 18px;
  right: 20px;
  width: 24px;
  height: 24px;
  z-index: 3;

	padding: 0;
	background: none;
	border: none;
  transition: 0.5s;
	cursor: pointer;
}
.modal__close img,
.modal__close svg {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.modal__close:hover {
	transform: scale(1.1);
}

.modal .btn {
	width: 100%;
}




@media (max-width: 1180px) {
	.header__inner {
		position: relative;
		flex-wrap: nowrap;
		min-height: 60px;
		padding: 10px 0;
		gap: 12px;
	}

	.header__actions {
		margin-left: auto;
	}

	.header-burger {
		display: grid;
	}

	.menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		z-index: 15;
		display: block;
		width: 100%;
		max-height: 0;
		opacity: 0;
		visibility: hidden;
		overflow: hidden;
		border: 1px solid #202833;
		border-top: 0;
		border-radius: 0 0 16px 16px;
		background: rgba(21, 22, 26, 0.98);
		box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
		transform: translateY(-8px);
		transition:
			max-height 0.3s ease,
			opacity 0.2s ease,
			visibility 0.3s,
			transform 0.3s ease;
	}

	.header.is-menu-open .menu {
		max-height: calc(100vh - 80px);
		opacity: 1;
		visibility: visible;
		overflow-y: auto;
		transform: translateY(0);
	}

	.menu__list {
		display: grid;
		gap: 0;
		width: 100%;
		padding: 10px;
		justify-content: flex-start;
	}

	.menu__list > .menu-item {
		border-bottom: 1px solid #202833;
	}

	.menu__list > .menu-item:last-child {
		border-bottom: 0;
	}

	.menu__list > .menu-item-has-children {
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.menu a {
		justify-content: space-between;
		width: 100%;
		padding: 14px 8px;
		font-size: 13px;
		line-height: 1.2;
	}

	.menu__list .sub-menu {
		position: static;
		display: grid;
		min-width: 0;
		margin: -4px 0 10px;
		padding: 0 0 0 12px;
		border: 0;
		border-left: 1px solid #2a303a;
		border-radius: 0;
		background: transparent;
		transform: none;
	}

	.menu__list .sub-menu::before {
		display: none;
	}

	.menu__list .sub-menu a {
		padding: 10px 8px;
		white-space: normal;
	}

	.header-search.is-open .header-search__form {
		width: min(460px, calc(100vw - 48px));
	}

	.hero__track:not(.swiper) {
		grid-template-columns: 1fr;
	}

	.ratings__title {
		font-size: 24px;
	}

	.rating-chip {
		font-size: 14px;
		height: 48px;
	}

	.home-content__grid {
		grid-template-columns: 1fr;
	}

	.bk-card__main {
		grid-template-columns: 1fr;
	}

	.bk-card__col,
	.bk-card__col--brand {
		border-right: 0;
		border-bottom: 1px solid #2a313f;
	}

	.bk-card__actions {
		padding: 10px;
	}

	.footer__top,
	.footer__links,
	.footer__bottom-inner {
		flex-wrap: wrap;
		padding: 10px 0;
		min-height: auto;
	}

	.footer__links a,
	.footer__bottom p,
	.footer__bottom a {
		font-size: 14px;
	}

	.footer__brand {
		flex-wrap: wrap;
		gap: 8px;
	}

	.footer__brand p {
		font-size: 12px;
	}

	.breadcrumbs {
		min-height: 56px;
		padding: 0 14px;
	}

	.breadcrumbs__list {
		gap: 22px;
	}

	.breadcrumbs__item a,
	.breadcrumbs__item span {
		font-size: 18px;
	}

	.breadcrumbs__item:not(:last-child)::after {
		right: -14px;
		font-size: 18px;
	}

	.single-page__title {
		font-size: 30px;
	}

	.single-page__grid {
		grid-template-columns: 1fr;
	}

	.single-about {
		grid-template-columns: 1fr;
	}

	.single-banner__sup {
		font-size: 16px;
	}

	.single-banner__title {
		font-size: 42px;
	}

	.single-about__title {
		font-size: 20px;
	}

	.single-about__fact {
		flex-wrap: wrap;
		padding-block: 8px;
	}

	.single-about__fact span,
	.single-about__fact p {
		font-size: 14px;
	}

	.single-features__grid {
		grid-template-columns: 1fr;
	}

	.single-sidebar-nav__grid {
		grid-template-columns: 1fr;
	}

	.single-sidebar-reviews__list {
		max-height: none;
	}

	.single-share {
		flex-wrap: wrap;
		justify-content: flex-start;
		padding: 14px;
	}

	.single-comment-form {
		padding: 14px;
	}

	.single-comment-form__row {
		grid-template-columns: 1fr;
	}

	.single-comment-card__actions {
		flex-wrap: wrap;
	}

	.ranking-page__title {
		font-size: 34px;
	}

	.ranking-card {
		grid-template-columns: 1fr;
	}

	.ranking-card__score {
		font-size: 24px;
	}

	.ranking-card__stats,
	.ranking-card__actions {
		grid-template-columns: 1fr;
	}

	.ranking-card__stat {
		min-height: 38px;
	}

	.ranking-card__stat-label,
	.ranking-card__stat-value,
	.ranking-card__button {
		font-size: 14px;
	}

	.ranking-banners {
		margin-top: 20px;
	}

	.ranking-banners__track {
		grid-template-columns: 1fr;
	}

	.ranking-banner-card {
		min-height: 110px;
	}

	.ranking-banner-card__title {
		font-size: 26px;
	}

	.payments-page__grid {
		grid-template-columns: 1fr;
	}

	.payments-top-card {
		grid-template-columns: 1fr;
	}

	.payments-section__title {
		font-size: 20px;
	}

	.payments-shot--split,
	.payments-shot--gallery {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.bk-list {
		gap: 18px;
	}

	.bk-card {
		padding: 14px 14px 12px;
		border: 0;
		border-radius: 28px;
		background: #1E1F25;
	}

	.bk-card__main {
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 0;
		min-height: 0;
		padding: 22px 22px 0;
		border-radius: 18px;
		background: #272931;
	}

	.bk-card__col {
		height: auto;
		min-height: 86px;
		padding: 16px 8px 18px;
		border-right: 1px solid #3a3d47;
		border-bottom: 0;
		text-align: center;
		place-content: center;
	}

	.bk-card__col:nth-of-type(6) {
		border-right: 0;
	}

	.bk-card__col--brand {
		grid-column: 1 / 4;
		grid-row: 1;
		min-height: 40px;
		padding: 0;
		border-right: 0;
		grid-template-columns: auto 1fr;
		justify-content: start;
		gap: 22px;
		text-align: left;
		margin-bottom: 4%;
	}

	.bk-card__actions {
		grid-column: 4 / 6;
		grid-row: 1;
		align-self: start;
		justify-content: end;
		gap: 12px;
		padding: 0;
	}

	.bk-card__actions .btn {
		min-width: 0;
		height: 40px;
		padding: 0 20px;
		border-radius: 14px;
		font-size: 15px;
		line-height: 1;
	}

	.bk-card__place {
		width: 42px;
		height: 42px;
		font-size: 18px;
		font-style: italic;
	}

	.bk-card__logo {
		max-width: 205px;
		height: 34px;
		object-fit: contain;
		object-position: left center;
	}

	.bk-card__value {
		font-size: 15px;
		line-height: 1;
	}

	.bk-card__col:nth-of-type(2) .bk-card__value {
		color: #feca00;
	}

	.bk-card__label {
		margin-top: 8px;
		font-size: 13px;
		line-height: 1.15;
		color: #7f899a;
	}

	.bk-card__footer {
		min-height: 60px;
		padding: 16px 18px 0;
		gap: 16px;
	}

	.bk-card__bonus {
		position: relative;
		min-width: 0;
		padding-left: 34px;
		font-size: 22px;
		line-height: 1.2;
		color: #f0f4fb;
	}

	.bk-card__bonus::before {
		content: "";
		position: absolute;
		left: 0;
		top: 50%;
		width: 24px;
		height: 24px;
		background: url("../images/cup.svg") center / contain no-repeat;
		transform: translateY(-50%);
	}

	.bk-card__more {
		flex-shrink: 0;
		margin-left: auto;
		font-size: 12px;
		font-weight: 700;
		line-height: 1;
		color: #7f899a;
	}

	.bk-card__more img {
		width: 16px;
		height: 16px;
	}
}

@media (max-width: 560px) {
	.bk-card {
		padding: 10px 10px 12px;
		border-radius: 24px;
	}

	.bk-card__main {
		padding: 18px 14px 0;
		border-radius: 16px;
	}

	.bk-card__col--brand {
		gap: 12px;
	}

	.bk-card__actions {
		gap: 8px;
	}

	.bk-card__actions .btn {
		height: 48px;
		padding: 0 14px;
		border-radius: 12px;
		font-size: 15px;
	}

	.bk-card__place {
		width: 34px;
		height: 34px;
		font-size: 16px;
	}

	.bk-card__logo {
		max-width: 145px;
		height: 28px;
	}

	.bk-card__col {
		min-height: 72px;
		padding: 12px 4px 14px;
	}

	.bk-card__value {
		font-size: 20px;
	}

	.bk-card__label,
	.bk-card__bonus,
	.bk-card__more {
		font-size: 14px;
	}

	.bk-card__bonus {
		padding-left: 26px;
	}

	.bk-card__bonus::before {
		width: 18px;
		height: 18px;
	}
}

/* Archive, search, 404 */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-bottom: 32px;
	max-width: 560px;
}

.search-form__input {
	flex: 1 1 220px;
	min-width: 0;
	height: 54px;
	border: 1px solid #2a313f;
	border-radius: 12px;
	background: #272931;
	color: #eaf0fb;
	font: inherit;
	font-size: 14px;
	padding: 0 16px;
}

.search-form__input::placeholder {
	color: #727f95;
}

.search-form__submit {
	flex: 0 0 auto;
	min-width: 120px;
	height: 48px;
}

.archive-list {
	display: grid;
	gap: 20px;
	width: 100%;
}

.archive-item {
	display: grid;
	gap: 12px;
	padding: 20px;
	border: 1px solid #2a313f;
	border-radius: 14px;
	background: #1a1f28;
}

.archive-item__title {
	margin: 0;
	font-size: 20px;
	line-height: 1.3;
	text-transform: uppercase;
	font-family: "RF Dewi Expanded bold italic", "RF Dewi", "Segoe UI", Arial, sans-serif;
}

.archive-item__title a {
	color: #eaf0fb;
	text-decoration: none;
}

.archive-item__title a:hover {
	color: #bbfa55;
}

.archive-item__excerpt {
	color: #8d99ac;
	font-size: 14px;
	line-height: 1.5;
}

.archive-item__excerpt p {
	margin: 0;
}

.archive-item__link {
	width: max-content;
	height: 40px;
	font-size: 12px;
}

.archive-page__description {
	margin-bottom: 24px;
}

.archive-page__empty,
.not-found__text {
	margin: 0 0 24px;
	font-size: 14px;
	color: #8d99ac;
	line-height: 1.5;
}

.not-found__home {
	margin-top: 24px;
}

.search-page .nav-links, .archive-page .nav-links {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    justify-content: center;
}

.search-page .nav-links a,
.search-page .nav-links span,
.archive-page .nav-links a,
.archive-page .nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 8px;
	border: 1px solid #2a313f;
	background: #171c24;
	color: #eaf0fb;
	font-size: 14px;
	text-decoration: none;
}

.search-page .nav-links .current,
.archive-page .nav-links .current {
	background: var(--accent);
	color: #11151d;
	border-color: transparent;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	width: 100%;
}

.category-card {
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--surface);
	overflow: hidden;
}

.category-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.category-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-bottom: 1px solid var(--line);
	background:
		radial-gradient(50% 55% at 50% 35%, rgba(187, 250, 85, 0.22) 0%, rgba(187, 250, 85, 0) 100%),
		linear-gradient(160deg, #2f5d3a 0%, #1d2d24 48%, #1a1f29 100%);
}

.category-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.category-card__title {
	margin: 0;
	padding: 14px 16px;
	font-size: 14px;
	line-height: 1.3;
	font-weight: 600;
	color: var(--text);
}

.category-card__link:hover .category-card__title {
	color: #bbfa55;
}

@media (max-width: 1024px) {
	.category-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}
}

@media (max-width: 480px) {
	.category-grid {
		grid-template-columns: 1fr;
	}
}
