:root {
	--cc-black: #111315;
	--cc-black-2: #171a1d;
	--cc-red: #e31b2f;
	--cc-red-dark: #b91525;
	--cc-gold: #f6b631;
	--cc-text: #15171a;
	--cc-muted: #69717c;
	--cc-line: #e5e8ec;
	--cc-soft: #f5f7fa;
	--cc-radius: 8px;
}

* { box-sizing: border-box; }

html,
body {
	margin: 0;
	min-width: 0;
	background: #fff;
	color: var(--cc-text);
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--cc-red); }

.cc-page {
	min-height: 100vh;
	background: #fff;
	overflow-x: hidden;
}

.cc-topbar {
	background: #0c0d0f;
	border-bottom: 1px solid rgba(255,255,255,.08);
	color: rgba(255,255,255,.84);
	font-size: 13px;
}

.cc-topbar__inner,
.cc-nav__inner,
.footer .wrp {
	max-width: 1710px;
	margin: 0 auto;
}

.cc-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 42px;
	padding: 0 70px;
}

.cc-topbar p {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.cc-topbar b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid #ff4b5b;
	color: #ff4b5b;
	font-size: 11px;
}

.cc-topbar nav {
	display: flex;
	align-items: center;
	gap: 34px;
	white-space: nowrap;
}

.cc-nav {
	position: relative;
	z-index: 10;
	background:
		linear-gradient(180deg, rgba(26,29,32,.98), rgba(19,21,24,.98));
	border-bottom: 1px solid rgba(255,255,255,.08);
}

.cc-nav__inner {
	height: 88px;
	padding: 0 70px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 54px;
}

.cc-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #fff;
}

.cc-brand__mark {
	position: relative;
	width: 42px;
	height: 42px;
	clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
	background: linear-gradient(135deg, #e91f32, #9d101e);
	box-shadow: inset 0 0 0 4px #fff;
}

.cc-brand__mark:after {
	content: "";
	position: absolute;
	left: 14px;
	top: 12px;
	width: 14px;
	height: 14px;
	background: #111315;
	clip-path: polygon(50% 0, 100% 28%, 100% 72%, 50% 100%, 0 72%, 0 28%);
}

.cc-brand__text {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -.01em;
	white-space: nowrap;
}

.cc-brand__text em {
	color: var(--cc-red);
	font-style: normal;
}

.cc-navlinks {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 34px;
	min-width: 0;
}

.cc-navlinks a {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	white-space: nowrap;
}

.cc-navlinks a.has-sub:after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-left: 8px;
	border-right: 2px solid rgba(255,255,255,.72);
	border-bottom: 2px solid rgba(255,255,255,.72);
	transform: translateY(-3px) rotate(45deg);
}

.cc-nav-cta,
.cc-red-btn,
.cc-dark-btn,
.cc-outline-wide {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	font-weight: 800;
}

.cc-nav-cta {
	min-width: 132px;
	height: 46px;
	background: var(--cc-red);
	color: #fff !important;
	box-shadow: 0 12px 24px rgba(227,27,47,.22);
}

.cc-nav-cta:before {
	content: "↗";
	margin-right: 10px;
}

.cc-main {
	max-width: none;
	padding: 0;
}

.cc-ref-hero {
	position: relative;
	min-height: 355px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 520px;
	align-items: center;
	overflow: hidden;
	padding: 0 70px 0 330px;
	background:
		radial-gradient(circle at 78% 35%, rgba(227,27,47,.42), transparent 25%),
		linear-gradient(135deg, #181b1e, #0f1113);
	color: #fff;
}

.cc-ref-hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 2px, transparent 2px 18px),
		radial-gradient(circle at 54% 26%, rgba(255,255,255,.045), transparent 34%);
	pointer-events: none;
}

.cc-peru-ribbon {
	position: absolute;
	left: -32px;
	top: 0;
	width: 285px;
	height: 355px;
	background:
		linear-gradient(90deg, #d6192b 0 70px, #fff 70px 145px, #d6192b 145px 100%);
	clip-path: polygon(0 0, 100% 0, 43% 100%, 0 100%);
	box-shadow: 24px 0 50px rgba(0,0,0,.26);
}

.cc-peru-ribbon:after {
	content: "";
	position: absolute;
	left: 78px;
	top: 0;
	width: 56px;
	height: 100%;
	background: repeating-linear-gradient(45deg, transparent 0 10px, rgba(214,25,43,.24) 10px 14px);
}

.cc-ref-hero__copy,
.cc-ref-visual {
	position: relative;
	z-index: 1;
}

.cc-ref-hero h1 {
	margin: 0 0 18px;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 52px;
	line-height: .98;
	color: #fff;
	letter-spacing: 0;
}

.cc-ref-hero p {
	max-width: 560px;
	margin: 0 0 28px;
	color: #fff;
	font-size: 18px;
	line-height: 1.45;
}

.cc-ref-features {
	display: grid;
	grid-template-columns: repeat(4, max-content);
	gap: 28px;
	margin-bottom: 24px;
}

.cc-ref-features div {
	display: grid;
	grid-template-columns: 34px auto;
	column-gap: 10px;
	align-items: center;
}

.cc-ref-features div + div {
	padding-left: 24px;
	border-left: 1px solid rgba(255,255,255,.2);
}

.cc-ico {
	grid-row: span 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	color: var(--cc-red);
	border: 2px solid var(--cc-red);
	border-radius: 6px;
	font-size: 12px;
	font-weight: 900;
}

.cc-ref-features b {
	color: #fff;
	font-size: 13px;
}

.cc-ref-features small {
	color: rgba(255,255,255,.68);
	font-size: 12px;
}

.cc-ref-actions {
	display: flex;
	gap: 16px;
}

.cc-red-btn {
	min-height: 44px;
	padding: 0 25px;
	background: var(--cc-red);
	color: #fff !important;
	border: 1px solid var(--cc-red);
	box-shadow: 0 12px 24px rgba(227,27,47,.2);
}

.cc-red-btn:hover { background: var(--cc-red-dark); color: #fff !important; }

.cc-dark-btn {
	min-height: 44px;
	padding: 0 28px;
	color: #fff !important;
	border: 1px solid rgba(255,255,255,.55);
	background: rgba(0,0,0,.14);
}

.cc-red-btn span,
.cc-dark-btn span { margin-left: 12px; }

.cc-ref-visual {
	height: 355px;
}

.cc-phone {
	position: absolute;
	right: 150px;
	top: 16px;
	width: 178px;
	height: 285px;
	padding: 20px 15px;
	border: 8px solid #050607;
	border-radius: 28px;
	background: linear-gradient(160deg, #111418, #050607);
	transform: rotate(-13deg);
	box-shadow: 0 28px 48px rgba(0,0,0,.5);
}

.cc-phone__bar,
.cc-phone__title {
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	margin-bottom: 14px;
}

.cc-phone__bar:before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-right: 6px;
	border-radius: 3px;
	background: var(--cc-red);
}

.cc-phone-row {
	display: grid;
	grid-template-columns: 28px 1fr auto;
	gap: 8px;
	align-items: center;
	height: 40px;
	margin-bottom: 8px;
	padding: 0 8px;
	border-radius: 8px;
	background: rgba(255,255,255,.08);
	color: #fff;
	font-size: 10px;
}

.cc-phone-row b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 5px;
	background: #e3e5e8;
	color: #16191c;
	font-size: 16px;
}

.cc-phone-row.is-gold b,
.cc-phone-row.is-bronze b {
	background: linear-gradient(135deg, #f7bd42, #a46523);
	color: #fff;
}

.cc-phone-row em {
	font-style: normal;
	font-size: 10px;
	color: #f4c35a;
}

.cc-phone-line {
	height: 14px;
	margin: 14px 0 8px;
	border-radius: 10px;
	background: rgba(255,255,255,.06);
}

.cc-phone-line.short { width: 70%; }

.cc-coin {
	position: absolute;
	right: 330px;
	bottom: 44px;
	width: 104px;
	height: 104px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background:
		radial-gradient(circle, #fff6d1 0 18%, #b87324 19% 28%, #f7c45a 29% 68%, #9e5b1f 69%);
	color: #fff;
	font-size: 38px;
	box-shadow: 0 20px 30px rgba(0,0,0,.35);
}

.cc-coin:before {
	content: "";
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: #fff;
	transform: rotate(45deg);
	box-shadow: inset 0 0 0 9px #b87324;
}

.cc-chips {
	position: absolute;
	right: 36px;
	bottom: 26px;
	width: 118px;
	height: 100px;
}

.cc-chips i {
	position: absolute;
	left: 0;
	right: 0;
	height: 26px;
	border-radius: 50%;
	background: repeating-linear-gradient(90deg, #b60e20 0 18px, #fff 18px 28px, #202326 28px 48px);
	border: 6px solid #d6d8db;
	box-shadow: 0 10px 20px rgba(0,0,0,.28);
}

.cc-chips i:nth-child(1) { bottom: 0; }
.cc-chips i:nth-child(2) { bottom: 18px; }
.cc-chips i:nth-child(3) { bottom: 36px; }
.cc-chips i:nth-child(4) { bottom: 54px; }

.cc-ref-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 470px;
	gap: 48px;
	padding: 20px 70px 0;
	max-width: 1710px;
	margin: 0 auto;
	background: #fff;
}

.cc-ref-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 0 0 14px;
}

.cc-ref-head h2,
.cc-guides h2 {
	position: relative;
	margin: 0;
	padding-left: 17px;
	font-size: 20px;
	line-height: 1.2;
	color: var(--cc-text);
}

.cc-ref-head h2:before,
.cc-guides h2:before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 3px;
	height: 18px;
	background: var(--cc-red);
}

.cc-ref-head a {
	color: #1b1e22;
	font-size: 13px;
}

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

.cc-rank-row {
	display: grid;
	grid-template-columns: 126px minmax(210px, 1fr) minmax(200px, 250px) minmax(260px, 310px) 150px;
	align-items: stretch;
	min-height: 103px;
	overflow: hidden;
	border: 1px solid var(--cc-line);
	border-radius: var(--cc-radius);
	background: #fff;
	box-shadow: 0 12px 28px rgba(18, 24, 31, .08);
}

.cc-rank-brand {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background:
		linear-gradient(135deg, rgba(17,19,21,.035), rgba(227,27,47,.03)),
		#fff;
}

.cc-rank-badge {
	position: absolute;
	left: 16px;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 48px;
	border-radius: 7px 7px 3px 3px;
	color: #fff !important;
	font-size: 20px;
	font-weight: 900;
	text-shadow: none !important;
	transform: translate(-12px, -50%);
	box-shadow: 0 14px 20px rgba(0,0,0,.16);
}

.cc-rank-badge:after {
	content: "";
	position: absolute;
	bottom: -9px;
	left: 0;
	width: 0;
	height: 0;
	border-left: 19px solid transparent;
	border-right: 19px solid transparent;
	border-top: 9px solid var(--badge);
}

.cc-rank-badge.gold { --badge: #ffc21e; background: linear-gradient(180deg, #ffc928, #f5ae17); }
.cc-rank-badge.silver { --badge: #dbe2ea; background: linear-gradient(180deg, #e9eef3, #cfd8e2); color: #4a5664 !important; }
.cc-rank-badge.bronze { --badge: #d8892a; background: linear-gradient(180deg, #e69831, #c8731e); }

.cc-casino-logo {
	align-self: center;
	justify-self: center;
	width: 78px;
	height: 78px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background:
		radial-gradient(circle at 70% 20%, rgba(255,255,255,.11), transparent 24%),
		linear-gradient(135deg, #171a1f, #050607);
	color: #e6a64a;
	font-size: 42px;
	box-shadow:
		inset 0 0 0 1px rgba(255,255,255,.08),
		0 18px 30px rgba(12,16,20,.16);
}

.cc-casino-logo svg {
	width: 40px;
	height: 40px;
	fill: none;
	stroke: #e4a64b;
	stroke-width: 4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cc-rank-name,
.cc-rank-bonus,
.cc-rank-pay,
.cc-rank-cta {
	padding: 18px;
	border-left: 1px solid var(--cc-line);
}

.cc-rank-name h3 {
	margin: 0 0 8px;
	font-size: 21px;
	line-height: 1.1;
}

.cc-rank-name p {
	margin: 0 0 6px;
	color: #1b1e22;
	font-size: 14px;
}

.cc-stars:before {
	content: "★★★★★";
	color: #ffb400;
	letter-spacing: 1px;
}

.cc-rank-name small,
.cc-rank-bonus small,
.cc-rank-pay small {
	color: var(--cc-muted);
	font-size: 11px;
	text-transform: uppercase;
}

.cc-rank-name small:before {
	content: "●";
	margin-right: 6px;
	color: #16a34a;
}

.cc-rank-bonus b {
	display: block;
	margin-top: 6px;
	font-size: 18px;
}

.cc-rank-bonus span {
	display: block;
	margin: 3px 0 6px;
	font-size: 15px;
}

.cc-rank-bonus a,
.cc-rank-cta a:last-child {
	color: var(--cc-red);
	font-size: 13px;
	font-weight: 700;
}

.cc-rank-pay {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	gap: 8px;
}

.cc-rank-pay small {
	flex: 0 0 100%;
}

.cc-rank-pay p {
	margin: 0;
	padding: 6px 12px;
	border-radius: 999px;
	background: #f1f3f5;
	font-size: 12px;
	font-weight: 700;
}

.cc-rank-pay span {
	margin-right: 16px;
	color: var(--cc-muted);
	font-size: 12px;
}

.cc-rank-cta {
	display: grid;
	align-content: center;
	justify-items: stretch;
	gap: 11px;
	text-align: center;
}

.cc-rank-cta .cc-red-btn {
	min-height: 40px;
	padding: 0 16px;
}

.cc-outline-wide {
	width: 100%;
	height: 38px;
	margin-top: 10px;
	border: 1px solid var(--cc-red);
	color: var(--cc-red);
	background: #fff;
	font-size: 15px;
}

.cc-outline-wide:before {
	content: "⌁";
	margin-right: 12px;
}

.cc-ref-side {
	min-width: 0;
}

.cc-bonus-box,
.cc-pay-strip,
.cc-guide-grid a {
	border: 1px solid var(--cc-line);
	border-radius: var(--cc-radius);
	background: #fff;
	box-shadow: 0 12px 28px rgba(18, 24, 31, .07);
}

.cc-bonus-box {
	margin-bottom: 28px;
	padding: 12px 18px;
}

.cc-bonus-box a {
	position: relative;
	display: grid;
	grid-template-columns: 52px 1fr 20px;
	grid-template-rows: auto auto;
	align-items: center;
	min-height: 66px;
	border-top: 1px solid var(--cc-line);
}

.cc-bonus-box a:first-child { border-top: 0; }

.cc-bonus-box span,
.cc-guide-grid span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--cc-line);
	border-radius: 8px;
	color: var(--cc-red);
	font-size: 25px;
}

.cc-bonus-box span:before,
.cc-guide-grid span:before {
	content: "";
	width: 16px;
	height: 16px;
	border: 2px solid var(--cc-red);
	border-radius: 4px;
}

.cc-bonus-box .cash:before,
.cc-guide-grid .user:before {
	border-radius: 50%;
}

.cc-bonus-box .spin:before {
	border-radius: 50%;
	border-right-color: transparent;
}

.cc-bonus-box .promo:before {
	width: 18px;
	height: 14px;
	border-left: 0;
	border-right: 0;
	border-radius: 0;
}

.cc-guide-grid .safe:before {
	transform: rotate(45deg);
	border-radius: 2px;
}

.cc-guide-grid .phone:before {
	width: 12px;
	height: 20px;
}

.cc-guide-grid .card:before {
	width: 20px;
	height: 14px;
	border-radius: 2px;
}

.cc-bonus-box span {
	grid-row: 1 / 3;
}

.cc-bonus-box b {
	grid-column: 2;
	grid-row: 1;
	align-self: end;
	display: block;
	font-size: 15px;
}

.cc-bonus-box small {
	grid-column: 2;
	grid-row: 2;
	align-self: start;
	display: block;
	color: var(--cc-muted);
	font-size: 12px;
}

.cc-bonus-box em {
	grid-column: 3;
	grid-row: 1 / 3;
	align-self: center;
	font-style: normal;
	font-size: 28px;
	color: #111;
}

.cc-ref-head.small {
	margin-top: 8px;
}

.cc-pay-strip {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 64px;
	padding: 12px;
}

.cc-pay-strip span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 40px;
	border-radius: 6px;
	color: #fff;
	font-size: 19px;
	font-weight: 900;
}

.cc-pay-strip .yape { background: #7815a4; }
.cc-pay-strip .plin { background: #087f9d; }
.cc-pay-strip .visa { background: #2447a6; font-style: italic; }
.cc-pay-strip .mc { background: #d71825; color: #ffbd2d; }

.cc-pay-strip .mc i {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ffbd2d;
	margin: 0 -1px;
}

.cc-pay-strip a {
	margin-left: auto;
	font-size: 11px;
	color: #1b1e22;
	white-space: nowrap;
}

.cc-guides {
	padding: 28px 70px 18px;
	max-width: 1710px;
	margin: 0 auto;
	background: #fff;
}

.cc-guide-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	margin-top: 16px;
}

.cc-guide-grid a {
	display: grid;
	grid-template-columns: 54px 1fr;
	grid-template-rows: auto auto auto;
	column-gap: 12px;
	min-height: 112px;
	padding: 17px;
}

.cc-guide-grid span {
	grid-row: 1 / 4;
}

.cc-guide-grid small {
	color: var(--cc-red);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.cc-guide-grid b {
	margin-top: 2px;
	font-size: 15px;
	line-height: 1.14;
}

.cc-guide-grid p {
	margin: 5px 0 0;
	color: var(--cc-muted);
	font-size: 12px;
	line-height: 1.35;
}

.footer {
	position: relative;
	margin: 0;
	padding: 34px 70px !important;
	background:
		linear-gradient(180deg, #171a1d, #0f1113) !important;
	color: rgba(255,255,255,.75);
	border-top: 9px solid #c41324;
}

.footer:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -9px;
	height: 9px;
	background: repeating-linear-gradient(45deg, #8e0d19 0 8px, #ef2238 8px 10px, #111 10px 14px);
}

.cc-footer-grid {
	max-width: 1710px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(250px, 1fr) 270px 300px minmax(420px, 1fr);
	gap: 28px;
	align-items: center;
}

.cc-footer-brand {
	color: #fff;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 22px;
	font-weight: 800;
}

.cc-footer-brand em {
	color: var(--cc-red);
	font-style: normal;
}

.cc-footer-grid p {
	margin: 8px 0 0;
	color: rgba(255,255,255,.72);
	font-size: 13px;
	line-height: 1.45;
}

.cc-footer-safe {
	display: flex;
	align-items: center;
	gap: 14px;
}

.cc-footer-safe span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 2px solid rgba(255,255,255,.85);
	border-radius: 50%;
	color: #fff;
	font-weight: 900;
}

.cc-footer-links {
	text-align: right;
}

.cc-footer-links nav {
	display: flex;
	justify-content: flex-end;
	gap: 24px;
	margin-bottom: 13px;
}

.cc-footer-links a {
	color: rgba(255,255,255,.82);
	font-size: 13px;
}

.copyright {
	color: rgba(255,255,255,.72);
	font-size: 13px;
}

.cc-inner-page {
	max-width: 1710px;
	margin: 0 auto;
	padding: 44px 70px 76px;
}

.cc-inner-content {
	max-width: 1320px;
}

.cc-inner-content > h1 {
	margin: 0 0 16px;
	color: #111827;
	font: 900 38px/1.12 Arial, Helvetica, sans-serif;
}

.cc-inner-content > h2 {
	margin: 28px 0 10px;
	color: #111827;
	font: 900 24px/1.2 Arial, Helvetica, sans-serif;
}

.cc-inner-content > p,
.cc-inner-content > ul {
	max-width: 980px;
	color: #263241;
	font-size: 16px;
	line-height: 1.65;
}

.cc-inner-content > ul {
	padding-left: 22px;
}

.cc-casino-card {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr) 170px;
	gap: 20px;
	align-items: center;
	margin: 14px 0;
	padding: 18px;
	border: 1px solid #e3e7ed;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(17,19,21,.06);
}

.cc-casino-card__rank {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 8px;
	background: linear-gradient(180deg, #e31b2f, #b91525);
	color: #fff;
	font-size: 0;
	font-weight: 900;
}

.cc-casino-card__rank:after {
	content: "01";
	font-size: 18px;
}

.cc-short__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}

.cc-short__meta span,
.cc-casino-card__chips span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	background: #f2f4f7;
	color: #334155;
	font-size: 12px;
	font-weight: 800;
}

.cc-casino-card h2 {
	margin: 0 0 8px;
	color: #111827;
	font: 900 22px/1.2 Arial, Helvetica, sans-serif;
}

.cc-casino-card__text {
	color: #263241;
	font-size: 15px;
	line-height: 1.5;
}

.cc-casino-card__text p {
	margin: 0;
}

.cc-casino-card__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.cc-casino-card__score {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding-left: 18px;
	border-left: 1px solid #e3e7ed;
	text-align: center;
}

.cc-casino-card__score span {
	color: #64748b;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.cc-casino-card__score b {
	color: #111827;
	font-size: 28px;
	line-height: 1;
}

.cc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 18px;
	border-radius: 6px;
	background: var(--cc-red);
	color: #fff !important;
	font-size: 13px;
	font-weight: 900;
}

.cc-btn:hover {
	background: var(--cc-red-dark);
	color: #fff !important;
}

.fullstory,
.static,
.cc-inner-content .box,
.cc-inner-content .story {
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.fullstory .box_in,
.static .box_in,
.cc-inner-content .box_in {
	padding: 0 !important;
}

.story_icons,
.meta,
.story_tools,
.next-prev,
#header,
#q_search,
#cat_menu,
.header,
.conteiner,
.content_top,
.wrp > .conteiner,
.soc_links,
#mobile_menu_btn,
#search_btn {
	display: none !important;
}

.cc-review-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 350px;
	gap: 34px;
	max-width: 1660px;
	margin: 0 auto;
	padding: 24px 70px 54px;
	background: #fff;
}

.cc-review-article {
	min-width: 0;
}

.cc-guide-article {
	grid-column: 1 / -1;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 24px 0 76px;
}

.cc-guide-head {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
	gap: 34px;
	align-items: stretch;
	margin-bottom: 34px;
	padding: 34px;
	border-bottom: 1px solid #e3e7ed;
	border: 1px solid #e3e7ed;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(227,27,47,.06), rgba(246,182,49,.06)),
		#fff;
	box-shadow: 0 18px 42px rgba(17,19,21,.07);
}

.cc-guide-head h1 {
	margin: 0 0 12px;
	color: #111827;
	font: 900 42px/1.08 Arial, Helvetica, sans-serif;
}

.cc-guide-copy {
	min-width: 0;
}

.cc-guide-head > p:not(.cc-kicker),
.cc-guide-lead {
	margin: 0 0 18px;
	color: #475569;
	font-size: 17px;
	line-height: 1.55;
}

.cc-guide-lead p {
	margin: 0;
}

.cc-guide-trust {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 4px 12px;
	align-items: center;
	max-width: 520px;
	margin-top: 20px;
	padding: 14px;
	border: 1px solid rgba(227,27,47,.18);
	border-radius: 8px;
	background: #fff;
}

.cc-guide-trust span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 2px solid var(--cc-red);
	border-radius: 50%;
	color: var(--cc-red);
	font-size: 12px;
	font-weight: 900;
	grid-row: span 2;
}

.cc-guide-trust b,
.cc-guide-trust em {
	display: block;
}

.cc-guide-trust b {
	color: #111827;
	font-size: 14px;
}

.cc-guide-trust em {
	color: #475569;
	font-size: 13px;
	font-style: normal;
	line-height: 1.4;
}

.cc-guide-visual {
	position: relative;
	min-height: 310px;
	margin: 0;
	overflow: hidden;
	border-radius: 8px;
	background: #111315;
	box-shadow: 0 20px 42px rgba(17,19,21,.22);
}

.cc-guide-visual img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cc-guide-visual:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(17,19,21,.28), rgba(17,19,21,0) 42%);
	pointer-events: none;
}

.cc-guide-body h2 {
	margin: 30px 0 12px;
	color: #111827;
	font: 900 26px/1.18 Arial, Helvetica, sans-serif;
}

.cc-guide-body p,
.cc-guide-body li {
	color: #263241;
	font-size: 16px;
	line-height: 1.7;
}

.cc-guide-body ul {
	padding-left: 22px;
}

.cc-guide-body {
	max-width: 920px;
}

.cc-review-breadcrumb {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 14px;
	color: var(--cc-muted);
	font-size: 13px;
}

.cc-review-breadcrumb b {
	color: var(--cc-red);
}

.cc-review-intro {
	display: grid;
	grid-template-columns: 310px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
	margin-bottom: 20px;
}

.cc-review-cover {
	width: 100%;
	aspect-ratio: 1.22 / 1;
	object-fit: cover;
	border-radius: 7px;
	box-shadow: 0 16px 32px rgba(17, 24, 31, .12);
}

.cc-review-title h1 {
	margin: 16px 0 12px;
	font-size: 34px;
	line-height: 1.12;
	color: #15171a;
}

.cc-review-title p {
	margin: 0 0 18px;
	color: var(--cc-muted);
	font-size: 16px;
	line-height: 1.55;
}

.cc-review-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	margin-bottom: 20px;
	color: #222831;
	font-size: 13px;
}

.cc-review-meta span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.cc-review-meta span:before {
	display: none !important;
	content: none !important;
}

.cc-review-meta svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: #1d2430;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex: 0 0 auto;
}

.cc-affiliate-alert {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 12px;
	align-items: center;
	padding: 14px 16px;
	border: 1px solid #f0c979;
	border-radius: 7px;
	background: #fffaf0;
}

.cc-affiliate-alert b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border: 2px solid #111827;
	border-radius: 50%;
	font-size: 15px;
}

.cc-affiliate-alert p {
	margin: 0;
	color: #171a1f;
	font-size: 13px;
	line-height: 1.45;
}

.cc-affiliate-alert a,
.cc-inline-link {
	color: var(--cc-red);
	font-weight: 800;
}

.cc-score-strip {
	display: grid;
	grid-template-columns: 230px repeat(6, minmax(90px, 1fr));
	overflow: hidden;
	margin-bottom: 24px;
	border: 1px solid var(--cc-line);
	border-radius: 7px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(17, 24, 31, .05);
}

.cc-score-main {
	padding: 18px;
	text-align: center;
	background: linear-gradient(135deg, #11151b, #050609);
	color: #fff;
}

.cc-score-main span,
.cc-side-score small {
	display: block;
	margin-bottom: 4px;
	font-size: 13px;
	font-weight: 800;
}

.cc-score-main strong,
.cc-side-score b {
	display: block;
	color: #d59a35;
	font-size: 42px;
	line-height: 1;
}

.cc-score-main em,
.cc-side-score em {
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
}

.cc-score-stars:before {
	content: "★★★★★";
	color: #ffbf18;
	letter-spacing: 3px;
	font-size: 17px;
}

.cc-score-main small,
.cc-side-score span {
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

.cc-score-item {
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 7px;
	min-height: 145px;
	padding: 12px;
	border-left: 1px solid var(--cc-line);
	text-align: center;
}

.cc-score-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: #202733;
}

.cc-score-icon svg {
	width: 34px;
	height: 34px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cc-score-item span {
	order: -1;
	font-size: 13px;
	font-weight: 800;
}

.cc-score-item b {
	color: #111827;
	font-size: 26px;
	line-height: 1;
}

.cc-score-item small {
	color: #111827;
	font-size: 13px;
}

.cc-review-body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 34px;
	align-items: start;
}

.cc-review-maintext {
	font-size: 15px;
	line-height: 1.62;
	color: #111827;
}

.cc-review-maintext h2 {
	margin: 26px 0 9px;
	font-size: 24px;
	line-height: 1.2;
	color: #111827;
}

.cc-review-maintext h3,
.cc-review-mid h3 {
	margin: 24px 0 10px;
	font-size: 19px;
	line-height: 1.2;
	color: var(--cc-red);
}

.cc-review-maintext p {
	margin: 0 0 10px;
}

.cc-review-table {
	width: 100%;
	margin: 12px 0;
	border-collapse: collapse;
	border: 1px solid var(--cc-line);
	font-size: 14px;
}

.cc-review-table th {
	padding: 11px 13px;
	background: #10141a;
	color: #fff;
	text-align: left;
}

.cc-review-table td {
	padding: 12px 13px;
	border: 1px solid var(--cc-line);
}

.cc-review-table.soft th {
	background: #fbfbfc;
	color: #111827;
}

.cc-payment-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 14px 0 0;
}

.cc-payment-pills span {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 16px 0 42px;
	border: 1px solid #e6e9ee;
	border-radius: 999px;
	background: #f7f8fa;
	color: #171d26;
	font-weight: 800;
	font-size: 13px;
	box-shadow: 0 8px 18px rgba(17,24,31,.05);
}

.cc-payment-pills .masha_index,
.cc-review-meta .masha_index {
	display: none !important;
}

.cc-payment-pills span:before {
	content: "";
	position: absolute;
	left: 12px;
	top: 50%;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
	border-radius: 6px;
	background: #dfe4eb;
}

.cc-payment-pills .yape {
	background: #7b1eb0;
	border-color: #7b1eb0;
	color: #fff;
}

.cc-payment-pills .yape:before {
	background: rgba(255,255,255,.22);
	box-shadow: inset 0 0 0 2px rgba(255,255,255,.48);
}

.cc-payment-pills .plin {
	background: #087f9d;
	border-color: #087f9d;
	color: #fff;
}

.cc-payment-pills .plin:before {
	border-radius: 50%;
	background: rgba(255,255,255,.28);
}

.cc-payment-pills .card:before {
	border-radius: 4px;
	background:
		linear-gradient(#1d2430, #1d2430) 3px 7px / 14px 2px no-repeat,
		#edf1f5;
	box-shadow: inset 0 0 0 2px #1d2430;
}

.cc-payment-pills .bank:before {
	background:
		linear-gradient(#1d2430, #1d2430) 2px 16px / 16px 2px no-repeat,
		linear-gradient(#1d2430, #1d2430) 3px 8px / 2px 8px no-repeat,
		linear-gradient(#1d2430, #1d2430) 9px 8px / 2px 8px no-repeat,
		linear-gradient(#1d2430, #1d2430) 15px 8px / 2px 8px no-repeat;
	clip-path: polygon(50% 0, 100% 34%, 100% 100%, 0 100%, 0 34%);
}

.cc-quick-info {
	padding: 18px;
	border: 1px solid #ead7b8;
	border-radius: 7px;
	background: #fffdf9;
}

.cc-quick-info h3 {
	margin-top: 0;
}

.cc-quick-info dl {
	margin: 0;
}

.cc-quick-info div {
	border-top: 1px solid var(--cc-line);
}

.cc-quick-info dt,
.cc-quick-info dd {
	display: inline-block;
	margin: 0;
	padding: 10px 0;
	vertical-align: top;
	font-size: 13px;
}

.cc-quick-info dt {
	width: 43%;
	color: #313844;
}

.cc-quick-info dd {
	width: 55%;
	color: #111827;
}

.cc-pros-cons.ref {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	margin-top: 24px;
}

.cc-pros-cons.ref h3 {
	margin-top: 0;
}

.cc-check-list,
.cc-x-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.cc-check-list li,
.cc-x-list li {
	position: relative;
	padding-left: 22px;
	margin: 0 0 9px;
	font-size: 13px;
	line-height: 1.45;
}

.cc-check-list li:before,
.cc-x-list li:before {
	position: absolute;
	left: 0;
	top: 2px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	font-size: 9px;
	font-weight: 900;
}

.cc-check-list li:before {
	content: "✓";
	border: 1px solid #1aa34a;
	color: #1aa34a;
}

.cc-x-list li:before {
	content: "x";
	border: 1px solid var(--cc-red);
	color: var(--cc-red);
}

.cc-faq-mini {
	margin-top: 18px;
}

.cc-faq-mini h3 {
	color: var(--cc-red);
}

.cc-faq-mini details {
	margin-bottom: 8px;
	border: 1px solid var(--cc-line);
	border-radius: 5px;
	background: #fff;
}

.cc-faq-mini summary {
	padding: 10px 12px;
	cursor: pointer;
	font-weight: 700;
}

.cc-faq-mini p {
	padding: 0 12px 12px;
	margin: 0;
	color: var(--cc-muted);
}

.cc-review-sidebar {
	position: sticky;
	top: 18px;
	align-self: start;
	width: auto;
	margin: 0;
	padding: 0;
}

.cc-sticky-stack {
	display: grid;
	gap: 14px;
}

.cc-side-casino,
.cc-side-box {
	overflow: hidden;
	border: 1px solid var(--cc-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(17,24,31,.07);
}

.cc-side-casino__top {
	padding: 18px 18px 22px;
	background:
		radial-gradient(circle at 20% 10%, rgba(246,182,49,.16), transparent 24%),
		linear-gradient(135deg, #11151b, #050609);
	color: #fff;
	text-align: center;
}

.cc-side-casino__top h3 {
	margin: 0 0 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255,255,255,.25);
	font-size: 20px;
	color: #fff;
}

.cc-side-score b {
	color: #d59a35;
	font-size: 44px;
}

.cc-side-bonus {
	padding: 17px 18px 14px;
	text-align: center;
}

.cc-side-bonus small {
	display: block;
	margin-bottom: 6px;
	color: #202733;
	font-size: 13px;
	font-weight: 800;
}

.cc-side-bonus b {
	display: block;
	color: var(--cc-red);
	font-size: 24px;
	line-height: 1.15;
}

.cc-side-bonus span {
	display: block;
	margin-top: 4px;
	font-size: 15px;
	font-weight: 800;
}

.cc-side-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	margin: 0 18px 12px;
	border-radius: 6px;
	background: var(--cc-red);
	color: #fff !important;
	font-size: 18px;
	font-weight: 900;
	box-shadow: 0 12px 26px rgba(227,27,47,.22);
}

.cc-side-secure {
	margin: 0;
	padding: 0 18px 14px;
	text-align: center;
	color: #303844;
	font-size: 13px;
}

.cc-side-resp {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 14px 18px;
	border-top: 1px solid var(--cc-line);
	background: #fbfbfc;
}

.cc-side-resp span {
	font-size: 13px;
	color: #303844;
}

.cc-side-resp b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 2px solid var(--cc-red);
	border-radius: 50%;
	color: var(--cc-red);
}

.cc-side-box {
	padding: 18px;
}

.cc-side-box h3 {
	margin: 0 0 14px;
	color: #111827;
	font-size: 17px;
}

.cc-side-payments {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-bottom: 18px;
	text-align: center;
}

.cc-side-payments span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	border-radius: 8px;
	background: #f4f6f8;
	font-size: 12px;
	font-weight: 800;
}

.cc-side-payments .yape { background: #7b1eb0; color: #fff; }
.cc-side-payments .plin { background: #087f9d; color: #fff; }
.cc-side-payments .card,
.cc-side-payments .bank { color: #202733; }

.cc-side-box small {
	display: block;
	color: var(--cc-muted);
	font-size: 11px;
}

.cc-toc {
	padding-bottom: 10px;
}

.cc-toc a {
	display: block;
	padding: 7px 0;
	color: var(--cc-red);
	font-size: 13px;
}

.cc-note {
	padding: 12px 14px;
	border: 1px solid #f0d68b;
	border-radius: var(--cc-radius);
	background: #fff7d9;
	color: #694b09;
	font-size: 13px;
	line-height: 1.45;
}

.cc-seo-landing {
	margin: 0 0 22px;
	padding: 34px;
	border: 1px solid #e3e7ed;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(227,27,47,.06), rgba(246,182,49,.06)),
		#fff;
	box-shadow: 0 18px 42px rgba(17,19,21,.06);
}

.cc-kicker {
	margin: 0 0 10px;
	color: var(--cc-red);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.cc-seo-landing h1 {
	margin: 0 0 12px;
	max-width: 760px;
	color: #111827;
	font: 900 36px/1.08 Arial, Helvetica, sans-serif;
}

.cc-seo-landing p {
	margin: 0;
	max-width: 880px;
	color: #334155;
	font-size: 16px;
	line-height: 1.65;
}

.cc-seo-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 22px;
}

.cc-seo-grid div {
	padding: 16px;
	border: 1px solid #e6e9ee;
	border-radius: 8px;
	background: #fff;
}

.cc-seo-grid b,
.cc-seo-grid span {
	display: block;
}

.cc-seo-grid b {
	margin-bottom: 6px;
	color: #111827;
	font-size: 14px;
}

.cc-seo-grid span {
	color: #475569;
	font-size: 13px;
	line-height: 1.45;
}

.cc-payment-pills--landing {
	margin-top: 20px;
}

.cc-bonus-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border: 1px solid var(--cc-line);
	border-radius: var(--cc-radius);
}

.cc-bonus-table th,
.cc-bonus-table td {
	padding: 12px;
	border-bottom: 1px solid var(--cc-line);
	text-align: left;
}

.cc-bonus-table th {
	background: #171a1d;
	color: #fff;
}

.cc-aff-card,
.cc-side-card {
	padding: 18px;
	margin-bottom: 14px;
}

.cc-aff-score b {
	color: var(--cc-red-dark);
	font-size: 46px;
}

.cc-side-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.cc-side-list li {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-top: 1px solid var(--cc-line);
	font-size: 13px;
}

.cc-side-list li:first-child { border-top: 0; }

@media (max-width: 1500px) {
	.cc-ref-content { grid-template-columns: 1fr; }
	.cc-ref-side {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
		gap: 24px;
		align-items: start;
	}
	.cc-ref-side .cc-ref-head.small {
		margin-top: 0;
	}
}

@media (max-width: 1280px) {
	.cc-ref-hero { padding-left: 240px; grid-template-columns: minmax(0, 1fr) 410px; }
	.cc-rank-row { grid-template-columns: 118px minmax(190px, 1fr) 220px 250px 140px; }
	.cc-guide-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
	.cc-topbar__inner,
	.cc-nav__inner,
	.cc-ref-content,
	.cc-guides,
	.cc-inner-page,
	.footer {
		padding-left: 22px !important;
		padding-right: 22px !important;
	}

	.cc-topbar__inner { height: auto; padding-top: 10px !important; padding-bottom: 10px !important; align-items: flex-start; }
	.cc-topbar nav { display: none; }
	.cc-nav__inner { height: auto; grid-template-columns: 1fr; gap: 16px; padding-top: 18px !important; padding-bottom: 18px !important; }
	.cc-navlinks { justify-content: flex-start; overflow-x: auto; gap: 22px; padding-bottom: 4px; }
	.cc-nav-cta { width: 100%; }
	.cc-ref-hero {
		grid-template-columns: 1fr;
		padding: 42px 22px !important;
	}
	.cc-ref-side { display: block; }
	.cc-review-layout {
		grid-template-columns: 1fr;
		padding: 24px 22px 40px;
	}
	.cc-guide-head {
		grid-template-columns: 1fr;
	}
	.cc-guide-visual {
		min-height: 260px;
		order: -1;
	}
	.cc-review-sidebar {
		position: static;
	}
	.cc-seo-grid {
		grid-template-columns: 1fr;
	}
	.cc-review-intro,
	.cc-review-body {
		grid-template-columns: 1fr;
	}
	.cc-review-cover {
		max-width: 420px;
	}
	.cc-score-strip {
		grid-template-columns: repeat(3, 1fr);
	}
	.cc-score-main {
		grid-column: 1 / -1;
	}
	.cc-peru-ribbon { opacity: .22; }
	.cc-ref-hero__copy { max-width: 620px; }
	.cc-ref-features { grid-template-columns: 1fr 1fr; }
	.cc-ref-visual { min-height: 280px; }
	.cc-rank-row { grid-template-columns: 116px 1fr; }
	.cc-rank-bonus,
	.cc-rank-pay,
	.cc-rank-cta { grid-column: 1 / -1; border-top: 1px solid var(--cc-line); }
	.cc-casino-card {
		grid-template-columns: 54px minmax(0, 1fr);
	}
	.cc-casino-card__score {
		grid-column: 1 / -1;
		align-items: flex-start;
		padding: 14px 0 0;
		border-left: 0;
		border-top: 1px solid #e3e7ed;
		text-align: left;
	}
}

@media (max-width: 640px) {
	.cc-brand__text { font-size: 29px; }
	.cc-seo-landing {
		padding: 22px;
	}
	.cc-seo-landing h1 {
		font-size: 30px;
	}
	.cc-inner-page {
		padding-top: 24px !important;
		padding-bottom: 46px !important;
	}
	.cc-inner-content > h1 {
		font-size: 30px;
	}
	.cc-guide-head {
		padding: 18px;
	}
	.cc-guide-head h1 {
		font-size: 34px;
	}
	.cc-guide-visual {
		min-height: 210px;
	}
	.cc-casino-card {
		padding: 14px;
		gap: 12px;
	}
	.cc-casino-card h2 {
		font-size: 20px;
	}
	.cc-ref-hero h1 { font-size: 41px; }
	.cc-ref-features { grid-template-columns: 1fr; gap: 12px; }
	.cc-ref-features div + div { padding-left: 0; border-left: 0; }
	.cc-phone { right: 92px; transform: rotate(-8deg) scale(.86); }
	.cc-coin { right: 220px; transform: scale(.8); }
	.cc-chips { right: -8px; transform: scale(.82); }
	.cc-ref-content { gap: 28px; }
	.cc-rank-row { grid-template-columns: 92px 1fr; }
	.cc-rank-brand { padding: 12px; }
	.cc-rank-badge { left: 12px; width: 32px; height: 42px; font-size: 17px; transform: translate(-8px, -50%); }
	.cc-rank-badge:after { border-left-width: 16px; border-right-width: 16px; }
	.cc-casino-logo { width: 62px; height: 62px; font-size: 32px; border-radius: 10px; }
	.cc-casino-logo svg { width: 34px; height: 34px; }
	.cc-rank-name, .cc-rank-bonus, .cc-rank-pay, .cc-rank-cta { padding: 14px; }
	.cc-guide-grid { grid-template-columns: 1fr; }
	.cc-pay-strip { flex-wrap: wrap; }
	.cc-pay-strip a { flex: 0 0 100%; margin-left: 0; }
	.cc-review-layout,
	.cc-pros-cons { grid-template-columns: 1fr; }
	.cc-review-layout { padding-left: 12px; padding-right: 12px; }
	.cc-review-title h1 { font-size: 30px; }
	.cc-score-strip { grid-template-columns: 1fr 1fr; }
	.cc-score-item { min-height: 116px; }
	.cc-pros-cons.ref,
	.cc-side-payments { grid-template-columns: 1fr 1fr; }
	.cc-footer-grid { grid-template-columns: 1fr; }
	.cc-footer-links,
	.cc-footer-links nav { text-align: left; justify-content: flex-start; flex-wrap: wrap; }
}
