/* ==========================================================================
   Casino Review V2 — Matching Casinofy Theme
   Prefix: .rv2-
   ========================================================================== */

/* ---------- Player Review Avatar Placeholder ---------- */
.rv2-avatar-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(135deg, #7b2ff2, #a855f7);
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	margin: 0 auto 5px;
	text-transform: uppercase;
	user-select: none;
	flex-shrink: 0;
}

/* ---------- Variables (aligned to theme) ---------- */
:root {
	--rv2-bg: #090909;
	--rv2-card-bg: #161617;
	--rv2-card-border: rgba(255, 255, 255, 0.08);
	--rv2-card-border-hover: rgba(173, 96, 250, 0.4);
	--rv2-transparent-white: rgba(255, 255, 255, 0.04);
	--rv2-purple-start: #AD60FA;
	--rv2-purple-end: #5D2DE1;
	--rv2-purple-gradient: linear-gradient(132.02deg, #AD60FA 0.79%, #5D2DE1 109.62%);
	--rv2-purple-glow: rgba(170, 94, 249, 0.24);
	--rv2-green: #22c55e;
	--rv2-green-bg: rgba(34, 197, 94, 0.06);
	--rv2-red: #ef4444;
	--rv2-red-bg: rgba(239, 68, 68, 0.06);
	--rv2-text: rgba(255, 255, 255, 0.68);
	--rv2-text-muted: rgba(255, 255, 255, 0.5);
	--rv2-text-dim: rgba(255, 255, 255, 0.35);
	--rv2-white: #FFFFFF;
	--rv2-radius: 24px;
	--rv2-radius-sm: 16px;
	--rv2-shadow: 0px 4px 8px 0px #08101629, -2px -2px 4px 0px #E0E0FF05, 0px 1px 2px 0px #0810163D;
	--rv2-transition: 0.4s all;
}

/* ---------- Animations ---------- */
@keyframes rv2-shimmer {
	0% { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}
@keyframes rv2-float {
	0%, 100% { transform: translateY(0) scale(1); }
	50% { transform: translateY(-20px) scale(1.05); }
}
@keyframes rv2-pulse-glow {
	0%, 100% { box-shadow: 0px 16px 24px 0px #AA5EF93D; }
	50% { box-shadow: 0px 16px 40px 0px #AA5EF960; }
}

/* ---------- Container ---------- */
.rv2-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------- Decorative Glow Orbs ---------- */
.rv2-hero {
	position: relative;
	overflow: hidden;
	padding: 48px 0 0;
}
.rv2-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(150px);
	pointer-events: none;
	z-index: 0;
}
.rv2-orb--1 {
	width: 521px;
	height: 521px;
	background: var(--rv2-purple-gradient);
	top: -250px;
	left: -100px;
	opacity: 0;
	animation: rv2-float 8s ease-in-out infinite;
}
.rv2-orb--2 {
	width: 400px;
	height: 400px;
	background: var(--rv2-purple-gradient);
	top: -150px;
	right: -200px;
	opacity: 0.15;
	animation: rv2-float 10s ease-in-out infinite 2s;
}

/* ---------- Hero Card ---------- */
.rv2-hero__card {
	position: relative;
	z-index: 1;
	border-radius: var(--rv2-radius);
	padding: 0;
	background: var(--rv2-card-bg);
}
.rv2-hero__card-inner {
	background: var(--rv2-card-bg);
	border-radius: var(--rv2-radius);
	padding: 40px 44px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	position: relative;
	overflow: hidden;
}
/* Hero card inner — no decorative orb (keeps logo clean) */

.rv2-hero__left {
	display: flex;
	align-items: center;
	gap: 28px;
	flex: 1;
	min-width: 0;
	position: relative;
	z-index: 1;
}

.rv2-hero__logo {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	border-radius: var(--rv2-radius-sm);
	overflow: hidden;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}
.rv2-hero__logo img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
}

.rv2-hero__title {
	font-size: 28px;
	font-weight: 700;
	color: var(--rv2-white);
	margin: 0 0 6px;
	line-height: 1;
	letter-spacing: -0.96px;
}

/* Bonus pill (highlighted bonus text) */
.rv2-hero__bonus-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(173, 96, 250, 0.1);
	border: 1px solid rgba(173, 96, 250, 0.2);
	border-radius: 12px;
	margin: 0 0 8px;
}
.rv2-hero__bonus-pill span {
	font-size: 14px;
	color: var(--rv2-white);
	font-weight: 500;
	line-height: 1.4;
}
.rv2-hero__bonus-pill svg {
	flex-shrink: 0;
}

.rv2-hero__tc {
	font-size: 12px;
	color: var(--rv2-text-dim);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.rv2-hero__tc:hover {
	color: var(--rv2-text-muted);
}

.rv2-hero__right {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.rv2-hero__score {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}
.rv2-hero__score-label {
	font-size: 11px;
	color: var(--rv2-text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
}

.rv2-hero__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
	position: relative;
	z-index: 2;
}

.rv2-hero__wishlist {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--rv2-transparent-white);
	border: 1px solid var(--rv2-card-border);
	transition: var(--rv2-transition);
	position: absolute;
	top: -50px;
	right: -6px;
	z-index: 3;
}
.rv2-hero__wishlist:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--rv2-card-border-hover);
}
.rv2-hero__wishlist img {
	width: 18px;
	height: 18px;
}

/* ---------- Quick Stats Strip ---------- */
.rv2-quickstats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
	flex-wrap: wrap;
}
.rv2-quickstats__item {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: var(--rv2-card-bg);
	border-radius: var(--rv2-radius-sm);
	box-shadow: var(--rv2-shadow);
	font-size: 13px;
}
.rv2-quickstats__label {
	color: var(--rv2-text-muted);
}
.rv2-quickstats__value {
	color: var(--rv2-white);
	font-weight: 500;
}
.rv2-quickstats__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--rv2-green);
	box-shadow: 0 0 8px var(--rv2-green);
	animation: rv2-pulse-dot 2s ease-in-out infinite;
}
@keyframes rv2-pulse-dot {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

/* ---------- CTA Button — White bg, gradient text (matching theme's button--white) ---------- */
.rv2-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 28px 14px;
	border-radius: var(--rv2-radius-sm);
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	text-decoration: none;
	cursor: pointer;
	border: none;
	position: relative;
	overflow: hidden;
	transition: var(--rv2-transition);
}
.rv2-btn:hover {
	transform: translateY(-2px);
}

.rv2-btn--cta {
	background: #fff;
	box-shadow: none;
	opacity: 1;
}
.rv2-btn--cta::after {
	display: none;
}
.rv2-btn--cta span {
	background: linear-gradient(132deg, #AD60FA 0.79%, #5D2DE1 109.62%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	position: relative;
	z-index: 1;
	font-weight: 500;
	font-size: 15px;
}
.rv2-btn--cta svg {
	position: relative;
	z-index: 1;
	width: 16px;
	height: 16px;
	stroke: var(--rv2-purple-start);
}
.rv2-btn--cta:hover {
	box-shadow: none;
}

.rv2-btn--sidebar {
	width: 100%;
	padding: 16px;
	font-size: 16px;
}

.rv2-btn--full {
	width: 100%;
}

/* ---------- SVG Rating Rings ---------- */
.rv2-ring {
	display: block;
}
.rv2-ring circle:last-of-type {
	transition: stroke-dashoffset 1s cubic-bezier(.4,0,.2,1);
}

/* ---------- Two-column layout ---------- */
.rv2-body {
	padding: 32px 0 60px;
}

.rv2-layout {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 28px;
	align-items: start;
}

/* ---------- Content column ---------- */
.rv2-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
}

/* ---------- Cards (matching theme: dark-grey bg, 24px radius, theme shadow) ---------- */
.rv2-card {
	background-color: var(--rv2-card-bg);
	border-radius: var(--rv2-radius);
	padding: 24px;
	box-shadow: var(--rv2-shadow);
	position: relative;
	overflow: hidden;
}
.rv2-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 24px;
	right: 24px;
	height: 1px;
	background: var(--rv2-purple-gradient);
	opacity: 0;
	transition: opacity 0.4s;
}
.rv2-card:hover::before {
	opacity: 0;
}
.rv2-card--no-pad {
	padding: 0;
}
.rv2-card--no-pad::before {
	display: none;
}

/* Card header with icon */
.rv2-card__header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	line-height: 1;
}
.rv2-card__header h2,
.rv2-card__header h3 {
	margin: 0 !important;
	line-height: 34px;
}
.rv2-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: var(--rv2-transparent-white);
	flex-shrink: 0;
}

.rv2-card h2 {
	font-size: 16px;
	font-weight: 700;
	color: var(--rv2-white);
	margin: 0 0 16px;
	line-height: 1;
	letter-spacing: -0.04em;
}
.rv2-card h3 {
	font-size: 16px;
	font-weight: 500;
	color: var(--rv2-white);
	margin: 0 0 12px;
	line-height: 24px;
}

.rv2-card p,
.rv2-card li {
	font-size: 14px;
	color: var(--rv2-text);
	line-height: 20px;
}
.rv2-card a {
	color: var(--rv2-white);
	transition: var(--rv2-transition);
}
.rv2-card a:hover {
	color: var(--rv2-purple-start);
}

.rv2-content-inner h2,
.rv2-content-inner h3,
.rv2-content-inner h4 {
	color: var(--rv2-white);
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 12px;
}
.rv2-content-inner p,
.rv2-content-inner li,
.rv2-content-inner td,
.rv2-content-inner th {
	color: var(--rv2-text);
}
.rv2-content-inner strong {
	color: var(--rv2-white);
	font-weight: 500;
}
.rv2-content-inner table {
	border-color: var(--rv2-card-border);
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 8px;
}
.rv2-content-inner thead th {
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: var(--rv2-text);
	text-align: start;
}
.rv2-content-inner tbody td {
	padding: 16px;
	background-color: var(--rv2-transparent-white);
	color: var(--rv2-white);
	font-weight: 500;
}
.rv2-content-inner tbody td:first-child {
	border-radius: 16px 0 0 16px;
}
.rv2-content-inner tbody td:last-child {
	border-radius: 0 16px 16px 0;
}
/* Make tables scrollable on mobile */
.rv2-table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.rv2-content-inner .table-list-wrap,
.rv2-content-inner .category-table {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.rv2-content-inner .table-list-wrap table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 8px 16px;
	background: transparent;
	border: none;
}
.rv2-content-inner .table-list-wrap td {
	padding: 24px;
	background-color: var(--rv2-card-bg);
	border-radius: 16px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--rv2-text);
	vertical-align: top;
	border: none;
}
.rv2-content-inner .table-list-wrap td img {
	display: block;
	margin: 0 0 16px;
	width: 40px;
	height: 40px;
	filter: brightness(0) invert(1);
}
.rv2-content-inner img {
	margin-bottom: 16px;
}
.rv2-content-inner img:last-child {
	margin-bottom: 0;
}

/* ---------- Tags ---------- */
.rv2-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.rv2-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 7px 16px;
	border-radius: var(--rv2-radius-sm);
	font-size: 13px;
	font-weight: 400;
	background: var(--rv2-transparent-white);
	color: var(--rv2-text);
	transition: var(--rv2-transition);
	white-space: nowrap;
}
.rv2-tag--active {
	background: rgba(173, 96, 250, 0.12);
	color: var(--rv2-purple-start);
	border: 1px solid rgba(173, 96, 250, 0.2);
	box-shadow: 0 0 12px rgba(173, 96, 250, 0.08);
}
.rv2-tag--active svg {
	color: var(--rv2-purple-start);
}
.rv2-tag--disabled {
	opacity: 0.3;
}
.rv2-tag--link {
	text-decoration: none;
	cursor: pointer;
}
.rv2-tag--link:hover {
	background: rgba(173, 96, 250, 0.15);
	color: var(--rv2-white);
}

/* ---------- Logo Grid (providers / payment) ---------- */
.rv2-logo-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-height: 122px; /* ~2 rows of 56px items + gap */
	overflow: hidden;
}

.rv2-logo-item {
	width: 108px;
	height: 56px;
	background: var(--rv2-transparent-white);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	position: relative;
	overflow: hidden;
	transition: var(--rv2-transition);
}
.rv2-logo-item:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-2px);
}
.rv2-logo-item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.rv2-logo-item--more {
	background: rgba(173, 96, 250, 0.08);
}
.rv2-logo-item--more a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--rv2-purple-start);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}

/* ---------- Grid Toggle (show more / show less) ---------- */
.rv2-grid-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	padding: 8px 20px;
	background: rgba(173, 96, 250, 0.08);
	border-radius: 12px;
	color: var(--rv2-purple-start);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: var(--rv2-transition);
	cursor: pointer;
}
.rv2-grid-toggle:hover {
	background: rgba(173, 96, 250, 0.15);
}
/* When card is expanded, remove max-height from its grid */
.rv2-card.rv2-expanded .rv2-logo-grid,
.rv2-card.rv2-expanded .rv2-country-grid {
	max-height: none;
}

/* ---------- Country Grid ---------- */
.rv2-country-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	max-height: 120px; /* ~2 rows of country flags + gap */
	overflow: hidden;
}

.rv2-country-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 14px;
	background: var(--rv2-transparent-white);
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	transition: var(--rv2-transition);
}
.rv2-country-item:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-1px);
}
.rv2-country-item img {
	width: 32px;
	height: 32px;
	object-fit: cover;
	border-radius: 50%;
}
.rv2-country-item--more {
	background: rgba(173, 96, 250, 0.08);
}
.rv2-country-item--more a {
	color: var(--rv2-purple-start);
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
}

/* ---------- Details Grid (matching theme's casino-details__box) ---------- */
.rv2-details-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px;
}

.rv2-details-col {
	padding: 16px;
	background-color: var(--rv2-transparent-white);
	border-radius: var(--rv2-radius-sm);
	width: calc(50% - 4px);
}

.rv2-detail-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin: 0 0 4px 0;
}
.rv2-detail-row:last-child {
	margin-bottom: 0;
}

.rv2-detail-label {
	font-size: 14px;
	color: var(--rv2-text);
}
.rv2-detail-value {
	font-size: 14px;
	color: var(--rv2-white);
	text-align: right;
}

/* ---------- Pros & Cons — Split card with colored strips ---------- */
.rv2-pros-cons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.rv2-pros {
	padding: 24px;
	background: var(--rv2-transparent-white);
	border-radius: var(--rv2-radius);
	width: calc(50% - 4px);
}
.rv2-cons {
	padding: 24px;
	background: var(--rv2-transparent-white);
	border-radius: var(--rv2-radius);
	width: calc(50% - 4px);
}

.rv2-pc__header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}
.rv2-pc__header h3 {
	margin: 0;
	font-size: 16px;
	line-height: 24px;
}
.rv2-pc__header--pro { color: var(--rv2-purple-start); }
.rv2-pc__header--pro h3 { color: var(--rv2-purple-start); }
.rv2-pc__header--con { color: var(--rv2-text-muted); }
.rv2-pc__header--con h3 { color: var(--rv2-text-muted); }

.rv2-pros-list,
.rv2-cons-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.rv2-pros-list li,
.rv2-cons-list li {
	padding: 0;
	margin: 0 0 12px 0;
	font-size: 14px;
	color: var(--rv2-text);
}
.rv2-pros-list li::before,
.rv2-cons-list li::before {
	display: none;
}
.rv2-pros-list li:last-child,
.rv2-cons-list li:last-child {
	margin-bottom: 0;
}

.rv2-pc__label {
	font-weight: 500;
	color: var(--rv2-white);
	display: block;
	font-size: 14px;
}
.rv2-pc__text {
	display: block;
	margin-top: 4px;
	font-size: 14px;
	color: var(--rv2-text);
}

/* ---------- TOC ---------- */
.rv2-toc .rv2-toc__title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: var(--rv2-white);
	margin-bottom: 12px;
	cursor: pointer;
}
.rv2-toc .rv2-toc__title::after {
	content: '';
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--rv2-purple-start);
	border-bottom: 2px solid var(--rv2-purple-start);
	transform: rotate(45deg);
	margin-left: auto;
	transition: transform 0.3s;
}
.rv2-toc.is-open .rv2-toc__title::after {
	transform: rotate(-135deg);
}
.rv2-toc .guide-toc__list {
	list-style: none;
	padding: 0;
	margin: 0;
	columns: 2;
	column-gap: 16px;
}
.rv2-toc .guide-toc__list li {
	break-inside: avoid;
}
.rv2-toc .guide-toc__list li::before {
	display: none;
}
.rv2-toc .guide-toc__list a {
	display: block;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	color: var(--rv2-text);
	text-decoration: none;
	border-radius: 8px;
	transition: var(--rv2-transition);
}
.rv2-toc .guide-toc__list a:hover {
	color: var(--rv2-purple-start);
	background: var(--rv2-transparent-white);
}

/* ---------- Trustpilot (matching original template) ---------- */
.rv2-trustpilot__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.rv2-trustpilot {
	background-color: var(--rv2-card-bg);
}
.rv2-trustpilot__logo {
	line-height: 0;
}
.rv2-trustpilot__logo img {
	height: 24px;
}
.rv2-trustpilot__data {
	display: flex;
	align-items: center;
}
.rv2-trustpilot__item {
	display: flex;
	align-items: center;
	gap: 6px;
	padding-left: 32px;
	font-size: 14px;
}
.rv2-trustpilot__label {
	color: var(--rv2-text);
}
.rv2-trustpilot__value {
	color: var(--rv2-white);
	font-weight: 700;
}

/* ---------- Testimonials ---------- */
.rv2-link {
	font-size: 14px;
	color: var(--rv2-text);
	text-decoration: none;
	font-weight: 400;
	margin-left: auto;
}
.rv2-link:hover {
	color: var(--rv2-purple-start);
}

.rv2-testimonials__list {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 4px;
}
.rv2-testimonials__list::-webkit-scrollbar {
	display: none;
}

.rv2-testimonial-item {
	padding: 24px;
	display: flex;
	flex-direction: column;
	color: var(--rv2-text);
	background-color: var(--rv2-card-bg);
	border-radius: var(--rv2-radius);
	box-shadow: var(--rv2-shadow);
	flex-shrink: 0;
	width: 300px;
	position: relative;
	overflow: hidden;
}
.rv2-testimonial-item::before {
	position: absolute;
	top: -30px;
	left: -21px;
	width: 152px;
	height: 152px;
	content: "";
	background: var(--rv2-purple-gradient);
	border-radius: 50%;
	filter: blur(65px);
	pointer-events: none;
	z-index: 0;
}
.rv2-testimonial-item__quote {
	display: none;
}
.rv2-testimonial-item__top {
	margin: 0 0 16px;
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	z-index: 1;
}
.rv2-testimonial-item__img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}
.rv2-testimonial-item__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.rv2-testimonial-item__top h4 {
	font-size: 16px;
	font-weight: 500;
	color: var(--rv2-white);
	margin: 0 0 4px;
	line-height: 24px;
	position: relative;
	z-index: 1;
}
.rv2-testimonial-item__rating {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 500;
	color: var(--rv2-white);
	margin-left: auto;
	background: transparent;
	padding: 0;
}
.rv2-testimonial-item__rating img {
	width: 16px;
	height: 16px;
}
.rv2-testimonial-item__date {
	font-size: 12px;
	color: var(--rv2-text-dim);
	margin: 0;
}
.rv2-testimonial-item p {
	font-size: 14px;
	line-height: 20px;
	position: relative;
	z-index: 1;
}
.rv2-testimonial-item p:last-child {
	margin-top: auto;
}

/* ---------- FAQ ---------- */
.rv2-card .faq-list {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.rv2-card .faq-item {
	background: var(--rv2-transparent-white);
	border-radius: 12px;
	padding: 0;
	transition: background 0.3s, box-shadow 0.3s;
	overflow: hidden;
}
.rv2-card .faq-item:hover {
	background: rgba(255, 255, 255, 0.06);
}
.rv2-card .faq-item.active {
	background: rgba(173, 96, 250, 0.06);
	box-shadow: inset 0 0 0 1px rgba(173, 96, 250, 0.15);
}
.rv2-card .faq-item h3 {
	color: var(--rv2-white);
	font-size: 14px;
	padding: 16px 20px;
	margin: 0 !important;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 20px !important;
}
.rv2-card .faq-item h3 span {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 12px;
}
.rv2-card .faq-item h3 span::before {
	content: '';
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--rv2-purple-start);
	border-bottom: 2px solid var(--rv2-purple-start);
	transform: rotate(45deg);
	transition: transform 0.3s;
	margin-top: -2px;
}
.rv2-card .faq-item.active h3 span::before {
	content: '';
	transform: rotate(-135deg);
	margin-top: 2px;
}
.rv2-card .faq-content {
	padding: 0 20px 16px;
}
.rv2-card .faq-content,
.rv2-card .faq-content p {
	color: var(--rv2-text);
	font-size: 14px;
	line-height: 20px;
}

/* ---------- Author (matching theme's author-box) ---------- */
.rv2-author {
	padding: 24px;
}
.rv2-author__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}
/* Author purple orb glow (matching casino-right style) */
.rv2-author::before {
	content: "";
	position: absolute;
	top: -20px;
	right: -100px;
	width: 300px;
	height: 300px;
	background: linear-gradient(132.02deg, #AD60FA 0.79%, #5D2DE1 109.62%);
	border-radius: 50%;
	filter: blur(65px);
	pointer-events: none;
	z-index: 0;
}
.rv2-author__content {
	flex: 1;
	min-width: 0;
	position: relative;
	color: var(--rv2-text);
}
.rv2-author__content strong {
	font-weight: 500;
	color: var(--rv2-white);
}
.rv2-author__content p {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 20px;
}
.rv2-author__img {
	width: 192px;
	height: 192px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	line-height: 0;
}
.rv2-author__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.rv2-author__info {
	padding: 16px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.rv2-author__detail {
	display: flex;
	align-items: center;
	margin: 0 -12px;
}
.rv2-author__item {
	padding: 0 12px;
	display: flex;
	align-items: center;
	font-size: 14px;
	color: var(--rv2-text);
}
.rv2-author__item span {
	margin: 0 0 0 5px;
	color: var(--rv2-white);
	font-weight: 500;
}
.rv2-author__social {
	display: flex;
	gap: 18px;
	align-items: center;
}
.rv2-author__social a {
	line-height: 0;
	transition: var(--rv2-transition);
}
.rv2-author__social a:hover {
	opacity: 0.7;
}
.rv2-author__social img {
	width: 18px;
	height: 18px;
}

/* ---------- Sidebar ---------- */
.rv2-sidebar {
	min-width: 0;
}

.rv2-sidebar__sticky {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.rv2-sidebar-card {
	background-color: var(--rv2-card-bg);
	border-radius: var(--rv2-radius);
	padding: 24px;
	box-shadow: var(--rv2-shadow);
	position: relative;
	overflow: hidden;
}
/* Blurred gradient orb inside sidebar cards (matching theme pattern) */
.rv2-sidebar-card::after {
	position: absolute;
	bottom: -120px;
	right: -180px;
	width: 300px;
	height: 300px;
	content: "";
	background: var(--rv2-purple-gradient);
	border-radius: 50%;
	filter: blur(100px);
	pointer-events: none;
	z-index: 0;
	opacity: 0.15;
}
.rv2-sidebar-card > * {
	position: relative;
	z-index: 1;
}

/* Gradient accent line at top of sidebar cards */
.rv2-sidebar-card__accent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--rv2-purple-gradient);
}

.rv2-sidebar-card__title {
	font-size: 14px;
	font-weight: 700;
	color: var(--rv2-white);
	margin: 0 0 16px;
	letter-spacing: -0.04em;
}

/* Big centered overall gauge */
.rv2-gauge-hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 20px 0 16px;
}
.rv2-gauge-hero__label {
	font-size: 12px;
	color: var(--rv2-text-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Sub-rating gauges in a row */
.rv2-gauge-row {
	display: flex;
	justify-content: space-around;
	gap: 8px;
	padding-top: 16px;
	border-top: 1px solid var(--rv2-card-border);
}
.rv2-gauge-sm {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}
.rv2-gauge-sm__label {
	font-size: 11px;
	color: var(--rv2-text-dim);
	font-weight: 500;
}

/* Sidebar bonus details with icons */
.rv2-sidebar-detail {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
}
.rv2-sidebar-detail__icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: var(--rv2-transparent-white);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--rv2-purple-start);
}
.rv2-sidebar-detail__text {
	flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.rv2-sidebar-detail__label {
	font-size: 14px;
	color: var(--rv2-text);
}
.rv2-sidebar-detail__value {
	font-size: 14px;
	font-weight: 500;
	color: var(--rv2-white);
}

/* ---------- Mobile sidebar rating cards ---------- */
.rv2-sidebar-mobile {
	display: none;
}

.rv2-rating-cards {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 4px;
}
.rv2-rating-cards::-webkit-scrollbar {
	display: none;
}

.rv2-rating-card {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 16px 20px;
	background-color: var(--rv2-card-bg);
	border-radius: var(--rv2-radius-sm);
	box-shadow: var(--rv2-shadow);
	min-width: 100px;
}
.rv2-rating-card__label {
	font-size: 12px;
	color: var(--rv2-text-muted);
	font-weight: 500;
}

/* ---------- Mobile Sticky CTA ---------- */
.rv2-sticky-cta {
	display: none;
}

/* ---------- Comments / Players Reviews section ---------- */
.add-review-main {
	padding: 0;
}
.add-review-main .rv2-container {
	padding-top: 0;
}
.add-review-main .reviews {
	background-color: var(--rv2-card-bg);
	border-radius: var(--rv2-radius);
	padding: 24px;
	box-shadow: var(--rv2-shadow);
}
.add-review-main .reco_text h3 {
	color: var(--rv2-white);
	font-size: 16px;
	margin: 0 0 12px;
}
.add-review-main .add_review_wrapper a {
	display: inline-block;
	padding: 10px 24px 8px;
	background: var(--rv2-purple-gradient);
	color: #fff;
	border-radius: 12px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	margin-top: 12px;
}

/* ---------- Hidden wraps (override screen.css !important absolute popups) ---------- */
.rv2-card .all-game-provider-wrap,
.rv2-card .all-payment-methods-wrap,
.rv2-card .all-countries-wrap,
.rv2-card .all-cat-wrap {
	display: none !important;
	position: static !important;
	width: auto !important;
	opacity: 1 !important;
	visibility: visible !important;
	padding: 0 !important;
	background: none !important;
	border-radius: 0 !important;
}
.rv2-card .all-game-provider-wrap.active,
.rv2-card .all-payment-methods-wrap.active,
.rv2-card .all-countries-wrap.active,
.rv2-card .all-cat-wrap.active {
	display: flex !important;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}
.rv2-card .all-countries-wrap.active {
	gap: 8px;
}
.all-languages {
	display: none;
}
/* Style the expanded items to match V2 grid */
.rv2-card .all-game-provider-wrap .game-provider-list,
.rv2-card .all-payment-methods-wrap .payment-methods-list {
	width: auto;
}
.rv2-card .all-game-provider-wrap .game-provider-logo__box,
.rv2-card .all-payment-methods-wrap .payment-methods-logo__box {
	width: 108px;
	height: 56px;
	background: var(--rv2-transparent-white);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	position: relative;
	overflow: hidden;
}
.rv2-card .all-game-provider-wrap .game-provider-logo__box img,
.rv2-card .all-payment-methods-wrap .payment-methods-logo__box img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.rv2-card .all-countries-wrap .single-country {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px;
	background: var(--rv2-transparent-white);
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	width: auto;
	height: auto;
	flex: none;
}
.rv2-card .all-countries-wrap .single-country__icon {
	line-height: 0;
	margin: 0;
	width: 32px;
	height: 32px;
	min-height: 32px;
}
.rv2-card .all-countries-wrap .single-country__icon img {
	width: 32px;
	height: 32px;
	object-fit: cover;
	border-radius: 50%;
}
.rv2-card .all-countries-wrap .single-country p {
	display: none;
}

/* ---------- Overlay-link ---------- */
.rv2-logo-item .overlay-link,
.rv2-country-item .overlay-link {
	position: absolute;
	inset: 0;
	z-index: 1;
}

/* ======================================================================
   RESPONSIVE
   ====================================================================== */

@media (max-width: 1024px) {
	.rv2-layout {
		grid-template-columns: 1fr;
	}
	.rv2-sidebar {
		display: none;
	}
	.rv2-sidebar-mobile {
		display: block;
	}
}

@media (max-width: 768px) {
	/* Hide section icons on mobile */
	.rv2-card__icon {
		display: none;
	}
	.rv2-hero {
		padding: 16px 0 0;
	}
	.rv2-hero__card {
		position: relative;
	}
	.rv2-hero__card-inner {
		flex-direction: column;
		align-items: stretch;
		padding: 20px;
		gap: 20px;
	}
	.rv2-hero__left {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 12px;
	}
	.rv2-hero__logo {
		width: 100px;
		height: 100px;
	}
	.rv2-hero__info {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.rv2-hero__title {
		font-size: 22px;
	}
	.rv2-hero__bonus-pill {
		justify-content: center;
		text-align: center;
	}
	.rv2-hero__bonus-pill span {
		font-size: 13px;
	}
	.rv2-hero__right {
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 20px;
		position: static;
	}
	.rv2-hero__actions {
		flex-direction: row;
		align-items: center;
		gap: 10px;
		position: static;
	}
	.rv2-hero__wishlist {
		position: absolute;
		top: 16px;
		right: 16px;
		z-index: 5;
	}
	.rv2-btn--cta {
		padding: 13px 24px 11px;
		font-size: 14px;
	}

	.rv2-orb--1 { width: 250px; height: 250px; top: -100px; left: -60px; }
	.rv2-orb--2 { width: 200px; height: 200px; right: -80px; }

	/* Quick stats */
	.rv2-quickstats {
		gap: 6px;
	}
	.rv2-quickstats__item {
		padding: 6px 12px;
		font-size: 12px;
	}

	.rv2-card {
		padding: 20px;
	}

	/* Details & Pros grid single col */
	.rv2-details-grid {
		flex-direction: column;
	}
	.rv2-details-col {
		width: 100%;
	}
	.rv2-pros-cons {
		flex-direction: column;
	}
	.rv2-pros,
	.rv2-cons {
		width: 100%;
	}

	/* TOC single column */
	.rv2-toc .guide-toc__list {
		columns: 1;
	}

	/* Author */
	.rv2-author {
		padding: 24px;
	}
	.rv2-author__content {
		max-width: 100%;
	}
	.rv2-author__img {
		width: 120px;
		height: 120px;
		margin: 0 auto 16px;
	}
	.rv2-author__inner {
		flex-direction: column-reverse;
	}
	.rv2-author__info {
		flex-direction: column;
		gap: 12px;
	}
	.rv2-author__detail {
		margin: 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
	.rv2-author__item {
		padding: 0;
	}

	/* Hide toggle button on mobile — scroll handles it */
	.rv2-grid-toggle {
		display: none;
	}

	/* Logo/country/tags — horizontal scroll on mobile */
	.rv2-logo-grid,
	.rv2-country-grid,
	.rv2-tags {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: visible;
		max-height: none;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 4px;
	}
	.rv2-logo-grid::-webkit-scrollbar,
	.rv2-country-grid::-webkit-scrollbar,
	.rv2-tags::-webkit-scrollbar {
		display: none;
	}
	.rv2-logo-item {
		flex-shrink: 0;
		width: 93px;
		min-width: 93px;
		height: 50px;
		padding: 10px;
	}
	.rv2-country-item {
		flex-shrink: 0;
		padding: 10px 12px;
	}
	.rv2-country-item img {
		width: 28px;
		height: 28px;
	}
	.rv2-tag {
		flex-shrink: 0;
	}
	.rv2-card .all-game-provider-wrap .game-provider-logo__box,
	.rv2-card .all-payment-methods-wrap .payment-methods-logo__box {
		width: 93px;
		height: 50px;
		padding: 10px;
	}
	.rv2-card .all-countries-wrap .single-country {
		padding: 10px;
	}
	.rv2-card .all-countries-wrap .single-country__icon,
	.rv2-card .all-countries-wrap .single-country__icon img {
		width: 28px;
		height: 28px;
		min-height: 28px;
	}

	/* Tables – mobile scroll + tighter spacing */
	.rv2-content-inner table {
		min-width: 480px;
	}
	.rv2-content-inner thead th {
		padding: 6px 12px;
		font-size: 13px;
	}
	.rv2-content-inner tbody td {
		padding: 12px;
		font-size: 13px;
	}
	.rv2-content-inner .table-list-wrap table {
		border-spacing: 6px 10px;
	}
	.rv2-content-inner .table-list-wrap td {
		padding: 16px;
		font-size: 13px;
	}
	.rv2-content-inner .table-list-wrap td img {
		width: 32px;
		height: 32px;
		margin: 0 0 10px;
	}

	/* Testimonials */
	.rv2-testimonial-item {
		width: 260px;
	}

	/* Trustpilot */
	.rv2-trustpilot__inner {
		flex-wrap: wrap;
		gap: 12px;
	}
	.rv2-trustpilot__item {
		padding-left: 16px;
	}

	/* Sticky bottom CTA */
	.rv2-sticky-cta {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 999;
		padding: 14px 16px;
		padding-bottom: max(14px, env(safe-area-inset-bottom));
		background: linear-gradient(to top, var(--rv2-bg) 60%, rgba(9,9,9,.9) 80%, transparent);
	}
	.rv2-sticky-cta .rv2-btn {
		border-radius: var(--rv2-radius-sm);
		padding: 16px;
		font-size: 16px;
	}

	.rv2-body {
		padding-bottom: 24px;
	}
	/* Extra space at bottom of page for sticky CTA */
	.rv2-body ~ * footer.footer,
	.rv2-sticky-cta ~ footer.footer {
		padding-bottom: 100px;
	}
	footer.footer {
		padding-bottom: 100px;
	}
}

@media (max-width: 480px) {
	.rv2-container {
		padding: 0 16px;
	}
	.rv2-hero__logo {
		width: 90px;
		height: 90px;
	}
	.rv2-hero__title {
		font-size: 18px;
	}
	.rv2-hero__card-inner {
		padding: 20px;
	}
	.rv2-card {
		padding: 16px;
		border-radius: var(--rv2-radius-sm);
	}
	.rv2-logo-grid {
		gap: 8px;
	}
	.rv2-logo-item {
		width: 80px;
		min-width: 80px;
		height: 46px;
		padding: 8px;
	}
	/* Country items */
	.rv2-country-grid {
		gap: 6px;
	}
	.rv2-country-item {
		padding: 8px 10px;
	}
	.rv2-country-item img {
		width: 24px;
		height: 24px;
	}
	.rv2-card .all-countries-wrap .single-country {
		padding: 8px;
	}
	.rv2-card .all-countries-wrap .single-country__icon,
	.rv2-card .all-countries-wrap .single-country__icon img {
		width: 24px;
		height: 24px;
		min-height: 24px;
	}
	.rv2-pros,
	.rv2-cons {
		padding: 16px;
	}
}

/* ---------- T&C Tooltip ---------- */
.rv2-tc-wrap {
	position: relative;
	display: inline-block;
}
.rv2-tc-trigger {
	cursor: pointer;
}
.rv2-tc-tooltip {
	display: none;
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 50;
	width: 360px;
	max-width: calc(100vw - 32px);
	max-height: 300px;
	overflow-y: auto;
	overflow-x: hidden;
	background: var(--rv2-card-bg);
	border: 1px solid var(--rv2-card-border);
	border-radius: 16px;
	padding: 20px 24px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(173, 96, 250, 0.1);
}
.rv2-tc-tooltip::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(135deg, #AD60FA 0%, #5D2DE1 100%);
	border-radius: 0 0 16px 16px;
}
.rv2-tc-tooltip.is-visible {
	display: block;
	animation: rv2-tc-fadein 0.15s ease;
}
@keyframes rv2-tc-fadein {
	from { opacity: 0; transform: translate(-50%, 4px); }
	to { opacity: 1; transform: translate(-50%, 0); }
}
.rv2-tc-tooltip__close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: var(--rv2-transparent-white);
	border: none;
	color: var(--rv2-text-muted);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	padding: 4px 8px;
	border-radius: 8px;
	transition: var(--rv2-transition);
}
.rv2-tc-tooltip__close:hover {
	color: var(--rv2-white);
	background: rgba(255, 255, 255, 0.1);
}
.rv2-tc-tooltip__content {
	font-size: 13px;
	line-height: 1.7;
	color: var(--rv2-text);
	padding-top: 4px;
}
.rv2-tc-tooltip__content p {
	margin: 0 0 8px;
}
.rv2-tc-tooltip__content p:last-child {
	margin-bottom: 0;
}
.rv2-tc-tooltip__content a {
	color: var(--rv2-purple-start);
	text-decoration: underline;
}
.rv2-tc-tooltip::-webkit-scrollbar {
	width: 3px;
}
.rv2-tc-tooltip::-webkit-scrollbar-track {
	background: transparent;
}
.rv2-tc-tooltip::-webkit-scrollbar-thumb {
	background: rgba(173, 96, 250, 0.4);
	border-radius: 3px;
}

/* ---------- Mobile: hide header search when nav is open ---------- */
.is-open .header__search-icon {
	opacity: 0;
	pointer-events: none;
}

/* ==========================================================================
   V2 Improvements
   ========================================================================== */

/* ---------- Feature 1: Pros/Cons Icons ---------- */
.rv2-pros-list li,
.rv2-cons-list li {
	position: relative;
	padding-left: 24px;
}
.rv2-pros-list li::before {
	content: '';
	display: block !important;
	position: absolute;
	left: 0;
	top: 3px;
	width: 16px;
	height: 16px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8.5l3 3 7-7' stroke='%23AD60FA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
	background-size: contain;
}
.rv2-cons-list li::before {
	content: '';
	display: block !important;
	position: absolute;
	left: 0;
	top: 3px;
	width: 16px;
	height: 16px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 4l8 8M12 4l-8 8' stroke='%23ef4444' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
	background-size: contain;
}

/* ---------- Feature 2: Active TOC Link Highlight ---------- */
.rv2-toc .guide-toc__list a.active {
	color: var(--rv2-purple-start);
	background: rgba(173, 96, 250, 0.08);
}

/* ---------- Feature 4: Back to Top Button ---------- */
.rv2-back-to-top {
	position: fixed;
	bottom: 32px;
	right: 32px;
	z-index: 998;
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	background: var(--rv2-purple-gradient);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(170, 94, 249, 0.3);
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px);
	transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.rv2-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.rv2-back-to-top:hover {
	box-shadow: 0 6px 24px rgba(170, 94, 249, 0.5);
}
.rv2-back-to-top svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	display: block;
}

/* ---------- Feature 5: Rating Bars in Sidebar ---------- */
.rv2-gauge-sm__bar {
	width: 100%;
	height: 3px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 2px;
	overflow: hidden;
	margin-top: 4px;
}
.rv2-gauge-sm__bar-fill {
	height: 100%;
	background: var(--rv2-purple-gradient);
	border-radius: 2px;
	transition: width 1s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Feature 6: Sticky Sidebar CTA ---------- */
.rv2-sidebar__sticky {
	max-height: calc(100vh - 120px);
}
.rv2-sidebar-card {
	flex-shrink: 1;
}
.rv2-sidebar__sticky > .rv2-btn {
	flex-shrink: 0;
}

/* ---------- Feature 8: Similar Casinos ---------- */
.rv2-similar {
	margin-top: 12px;
}
.rv2-similar__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.rv2-similar-card {
	background: var(--rv2-transparent-white);
	border-radius: var(--rv2-radius-sm);
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	transition: var(--rv2-transition);
}
.rv2-similar-card:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-2px);
}
.rv2-similar-card__logo {
	width: 64px;
	height: 64px;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.rv2-similar-card__logo img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
}
.rv2-similar-card__name {
	font-size: 14px;
	font-weight: 500;
	color: var(--rv2-white);
	text-align: center;
	line-height: 1.3;
}
.rv2-similar-card__rating {
	font-size: 13px;
	color: var(--rv2-text-muted);
}
.rv2-similar-card__rating strong {
	color: var(--rv2-white);
	font-weight: 600;
}

/* ---------- Feature 9: AJAX Expanded Grid ---------- */
.rv2-ajax-target {
	display: none;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}
.rv2-ajax-target.active {
	display: flex;
}
.rv2-ajax-target--countries {
	gap: 8px;
}
/* Match AJAX-loaded country flags to initial grid style */
.rv2-ajax-target--countries .single-country {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px;
	background: var(--rv2-transparent-white);
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	width: auto;
	height: auto;
	flex: none;
}
.rv2-ajax-target--countries .single-country__icon {
	line-height: 0;
	margin: 0;
	width: 32px;
	height: 32px;
	min-height: 32px;
}
.rv2-ajax-target--countries .single-country__icon img {
	width: 32px;
	height: 32px;
	object-fit: cover;
	border-radius: 50%;
}
.rv2-ajax-target--countries .single-country > p {
	display: none;
}

/* ---------- Features 3 & 4 & 8 Mobile ---------- */
@media (max-width: 768px) {
	/* Scroll-snap on carousels */
	.rv2-testimonials__list {
		scroll-snap-type: x mandatory;
	}
	.rv2-testimonial-item {
		scroll-snap-align: start;
	}
	.rv2-rating-cards {
		scroll-snap-type: x mandatory;
	}
	.rv2-rating-card {
		scroll-snap-align: start;
	}
	/* T&C tooltip full-width on mobile */
	.rv2-tc-tooltip {
		width: calc(100vw - 48px);
		left: 50%;
		transform: translateX(-50%);
	}
	/* Back to top above sticky CTA */
	.rv2-back-to-top {
		bottom: 80px;
		right: 16px;
	}
	/* Similar casinos 2-col */
	.rv2-similar__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
