/* =====================================================================
   Ricky Casino_OFF_1 by talerbiz - main stylesheet
   Colors (ref): deep purple body, bright orange CTA, white text
   ===================================================================== */

:root {
	--rc-bg:          #0a1628;
	--rc-bg-2:        #122240;
	--rc-bg-3:        #071020;
	--rc-header:      rgba(8, 16, 36, 0.78);
	--rc-footer:      #0b1425;
	--rc-text:        #ffffff;
	--rc-text-dim:    #b8c8dc;
	--rc-muted:       #6a7f99;
	--rc-border:      rgba(255, 255, 255, 0.08);
	--rc-orange:      #00c9a7;
	--rc-orange-2:    #2ee8c6;
	--rc-orange-3:    #5dfce0;
	--rc-gradient:    linear-gradient(135deg, #00c9a7 0%, #2ee8c6 50%, #72f7d8 100%);
	--rc-radius-sm:   6px;
	--rc-radius:      10px;
	--rc-radius-lg:   14px;
	--rc-font:        'Inter', 'Segoe UI', 'Roboto', Arial, Helvetica, sans-serif;
	--rc-h-height:    72px;
	--rc-container:   1200px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

html, body {
	margin: 0;
	padding: 0;
	background: var(--rc-bg);
	color: var(--rc-text);
	font-family: var(--rc-font);
	font-size: 15px;
	line-height: 1.6;
	overflow-x: hidden;
	min-height: 100%;
}

body {
	background-image:
		radial-gradient(1200px 600px at 20% -10%, #0d2847 0%, transparent 60%),
		radial-gradient(900px 500px at 95% 0%, #0a2040 0%, transparent 55%),
		linear-gradient(180deg, #0a1628 0%, #060e1c 100%);
	background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rc-orange-2); text-decoration: none; }
a:hover { color: var(--rc-orange-3); }

.rc-container { max-width: var(--rc-container); margin: 0 auto; padding: 0 20px; }

.rc-skip {
	position: absolute;
	left: -9999px;
	top: -9999px;
}
.rc-skip:focus {
	left: 10px;
	top: 10px;
	background: #000;
	color: #fff;
	padding: 8px 12px;
	z-index: 9999;
}

/* ==========================================================
   HEADER
   ========================================================== */
.rc-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--rc-header);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--rc-border);
}

.rc-header__inner {
	max-width: var(--rc-container);
	margin: 0 auto;
	padding: 14px 20px;
	height: var(--rc-h-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.rc-header__left { display: flex; align-items: center; gap: 28px; min-width: 0; }
.rc-header__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.rc-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.rc-logo img { height: 36px; width: auto; max-width: 170px; }
.custom-logo-link img { height: 36px; width: auto; }

.rc-nav--desktop { display: flex; }

.rc-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 6px;
}
.rc-menu li { position: relative; }
.rc-menu li > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: var(--rc-radius-sm);
	transition: background .2s, color .2s;
}
.rc-menu li > a:hover,
.rc-menu li.current-menu-item > a {
	background: rgba(255, 255, 255, 0.06);
	color: var(--rc-orange-3);
}

/* Submenu */
.rc-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #0f1e38;
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius);
	padding: 6px 0;
	min-width: 200px;
	list-style: none;
	margin: 6px 0 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: .2s;
	z-index: 10;
}
.rc-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.rc-menu .sub-menu li > a { display: block; padding: 8px 14px; font-size: 12px; }

/* Buttons */
.rc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 20px;
	font-family: inherit;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 0;
	border-radius: var(--rc-radius-sm);
	cursor: pointer;
	white-space: nowrap;
	line-height: 1.2;
	transition: transform .15s ease, filter .15s ease, background .2s;
	text-decoration: none;
	color: #fff;
}
.rc-btn:hover { filter: brightness(1.08); transform: translateY(-1px); color: #fff; }
.rc-btn--cta {
	background: var(--rc-gradient);
	color: #0a1628;
	box-shadow: 0 6px 18px rgba(0, 201, 167, 0.28);
}
.rc-btn--cta:hover { color: #0a1628; }
.rc-btn--ghost {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #fff;
}
.rc-btn--ghost:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.rc-btn--block { width: 100%; }
.rc-btn--sm { padding: 8px 14px; font-size: 11px; }
.rc-btn__icon { display: inline-flex; }
.rc-btn__icon svg { width: 14px; height: 14px; }

/* CTA with angled cut — as in reference for SIGN UP */
.rc-btn--hero {
	padding: 14px 44px;
	font-size: 16px;
	letter-spacing: 0.12em;
	clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
	background: var(--rc-gradient);
	min-width: 220px;
}

/* Language switch */
.rc-lang {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 10px;
	border-radius: var(--rc-radius-sm);
}
.rc-lang img { width: 22px; height: 22px; border-radius: 50%; }

/* Burger */
.rc-burger {
	display: none;
	width: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	cursor: pointer;
	padding: 10px 10px;
	flex-direction: column;
	justify-content: space-between;
}
.rc-burger span {
	display: block;
	height: 2px;
	width: 100%;
	background: #fff;
	border-radius: 2px;
	transition: .2s;
}
.rc-burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.rc-burger.is-open span:nth-child(2) { opacity: 0; }
.rc-burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer */
.rc-mobile {
	display: none;
	padding: 14px 20px 20px;
	border-top: 1px solid var(--rc-border);
	background: #0b1830;
}
.rc-mobile__auth { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.rc-mobile__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}
.rc-mobile__menu li { border-top: 1px solid var(--rc-border); }
.rc-mobile__menu li:first-child { border-top: 0; }
.rc-mobile__menu li a {
	display: block;
	padding: 12px 4px;
	color: #fff;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
}
.rc-mobile__menu li a:hover { color: var(--rc-orange-2); }

/* ==========================================================
   HERO
   ========================================================== */
.rc-hero {
	position: relative;
	overflow: hidden;
	padding: 30px 20px 140px;
	min-height: 420px;
}
.rc-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: .65;
	z-index: 0;
}
.rc-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at center, rgba(6, 14, 28, 0) 0%, rgba(6, 14, 28, 0.7) 90%),
		linear-gradient(180deg, rgba(10, 22, 40, 0.2) 0%, rgba(10, 22, 40, 0.85) 100%);
	z-index: 1;
	pointer-events: none;
}
.rc-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	padding-top: 10px;
}
.rc-hero__h1 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: var(--rc-text-dim);
	margin: 0 0 10px;
	font-weight: 700;
}
.rc-hero__main {
	font-size: clamp(28px, 4vw, 46px);
	font-weight: 900;
	letter-spacing: 0.02em;
	color: #fff;
	line-height: 1.15;
	text-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.rc-hero__sub {
	font-size: clamp(22px, 3vw, 34px);
	font-weight: 800;
	color: #fff;
	margin-top: 8px;
}
.rc-hero__slot {
	margin: 16px 0 20px;
	font-size: 16px;
	font-weight: 800;
	color: var(--rc-orange-3);
	letter-spacing: 0.04em;
}

/* ==========================================================
   CATEGORIES
   ========================================================== */
.rc-cats {
	position: relative;
	margin-top: -80px;
	z-index: 3;
	padding: 0 0 14px;
}
.rc-cats__row {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 28px;
	flex-wrap: wrap;
}
.rc-cat {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: #fff;
	min-width: 64px;
	text-decoration: none;
	transition: color .2s;
}
.rc-cat:hover { color: var(--rc-orange-2); }
.rc-cat__icon {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.rc-cat__icon svg { width: 100%; height: 100%; }
.rc-cat:hover .rc-cat__icon { color: var(--rc-orange-3); }
.rc-cat__label {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* ==========================================================
   PROVIDERS slider
   ========================================================== */
.rc-providers { padding: 6px 0 10px; }
.rc-providers__wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}
.rc-providers__viewport {
	flex: 1;
	overflow: hidden;
}
.rc-providers__track {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 18px;
	align-items: center;
	transition: transform .35s ease;
}
.rc-providers__track li {
	flex: 0 0 calc((100% - 18px * 11) / 12);
	min-width: 60px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: .7;
	transition: opacity .2s;
}
.rc-providers__track li:hover { opacity: 1; }
.rc-providers__track img { max-height: 26px; max-width: 100%; width: auto; filter: brightness(0) invert(1); opacity: .75; }
.rc-providers__track a { display: block; width: 100%; text-align: center; }

.rc-providers__arrow {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: .2s;
}
.rc-providers__arrow:hover { background: rgba(255, 255, 255, 0.1); color: var(--rc-orange-2); }

/* ==========================================================
   GAMES grid
   ========================================================== */
.rc-games { padding: 20px 0 40px; }
.rc-games__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px;
}
.rc-game {
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: var(--rc-radius);
	overflow: hidden;
	display: block;
	background: #122240;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
	transform: translateZ(0);
	transition: transform .25s ease, box-shadow .25s ease;
}
.rc-game:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}
.rc-game__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.rc-game__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 10px 10px 12px;
	background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.85) 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #fff;
}
.rc-game__name {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.04em;
	line-height: 1.15;
	text-transform: uppercase;
}
.rc-game__prov {
	font-size: 9px;
	letter-spacing: 0.12em;
	color: var(--rc-text-dim);
	margin-top: 4px;
	text-transform: uppercase;
}
.rc-game__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .2s;
}
.rc-game:hover .rc-game__play { opacity: 1; }

/* ==========================================================
   MAIN CONTENT
   ========================================================== */
.rc-main { padding: 20px 0 50px; }
.rc-main--front { padding-top: 10px; padding-bottom: 40px; }
.rc-content { color: var(--rc-text); }

.rc-page-head {
	margin: 10px 0 24px;
	text-align: center;
}
.rc-page-title {
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 900;
	color: #fff;
	margin: 0 0 8px;
	letter-spacing: 0.02em;
}

.rc-article { margin: 0 auto; max-width: 960px; }
.rc-article__content,
.rc-content .rc-article,
.rc-content > .rc-article {
	color: #dce8f0;
	font-size: 16.5px;
	line-height: 1.85;
	letter-spacing: 0.01em;
}

.rc-content h2, .rc-content h3, .rc-content h4, .rc-content h5, .rc-content h6 {
	color: #fff;
	font-weight: 800;
	margin: 2em 0 0.7em;
	letter-spacing: 0.01em;
}
.rc-content h2 { font-size: 28px; border-left: 4px solid var(--rc-orange); padding-left: 14px; }
.rc-content h3 { font-size: 21px; color: var(--rc-orange-3); }
.rc-content h4 { font-size: 18px; }
.rc-content p { margin: 0 0 1.15em; }
.rc-content a { color: var(--rc-orange-2); text-decoration: underline; text-underline-offset: 2px; }
.rc-content a:hover { color: var(--rc-orange-3); }

.rc-content ul, .rc-content ol { padding-left: 22px; margin: 0 0 1em; }
.rc-content li { margin-bottom: .4em; }
.rc-content ul li::marker { color: var(--rc-orange-2); }

.rc-content blockquote {
	margin: 20px 0;
	padding: 14px 20px;
	border-left: 4px solid var(--rc-orange-2);
	background: rgba(255, 255, 255, 0.03);
	border-radius: 0 var(--rc-radius) var(--rc-radius) 0;
	color: #e3dae6;
	font-style: italic;
}

.rc-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	background: rgba(255, 255, 255, 0.03);
	border-radius: var(--rc-radius);
	overflow: hidden;
}
.rc-content th, .rc-content td {
	padding: 12px 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	text-align: left;
	font-size: 15px;
}
.rc-content th {
	background: linear-gradient(90deg, rgba(0, 201, 167, 0.2), rgba(46, 232, 198, 0.12));
	color: #fff;
	font-weight: 800;
	letter-spacing: 0.04em;
}
.rc-content tr:last-child td { border-bottom: 0; }
.rc-content tbody tr:hover { background: rgba(255, 255, 255, 0.04); }

.rc-content img { border-radius: var(--rc-radius); margin: 10px 0; }

/* Post list (blog) */
.rc-post-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}
.rc-article--card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius);
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: transform .2s;
}
.rc-article--card:hover { transform: translateY(-2px); }
.rc-article__thumb img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--rc-radius-sm); }
.rc-article__title { font-size: 18px; font-weight: 800; margin: 0; }
.rc-article__title a { color: #fff; text-decoration: none; }
.rc-article__title a:hover { color: var(--rc-orange-2); }
.rc-article__meta { font-size: 12px; color: var(--rc-muted); }
.rc-article__excerpt { color: var(--rc-text-dim); font-size: 14px; }

.rc-pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin: 30px 0;
}
.rc-pagination .page-numbers {
	padding: 8px 14px;
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius-sm);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
}
.rc-pagination .page-numbers.current,
.rc-pagination .page-numbers:hover {
	background: var(--rc-gradient);
	border-color: transparent;
	color: #fff;
}

/* 404 */
.rc-main--404 { padding: 80px 0 100px; text-align: center; }
.rc-404 { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.rc-404 .rc-page-title { font-size: 90px; letter-spacing: 0.02em; }
.rc-404__text { color: var(--rc-text-dim); font-size: 18px; }

/* Search form */
.rc-searchform { display: flex; gap: 8px; margin: 20px 0; }
.rc-searchform__input {
	flex: 1;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius-sm);
	color: #fff;
	font-size: 14px;
}
.rc-searchform__input:focus { outline: none; border-color: var(--rc-orange-2); }

/* ==========================================================
   CONTACT FORM ([contact])
   ========================================================== */
.rc-contact {
	max-width: 720px;
	margin: 30px auto;
	padding: 28px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius-lg);
	position: relative;
}
.rc-contact__title {
	font-size: 22px;
	font-weight: 900;
	margin: 0 0 18px;
	text-align: center;
	color: #fff;
	letter-spacing: 0.02em;
}
.rc-contact__form { display: flex; flex-direction: column; gap: 14px; position: relative; }
.rc-contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rc-contact__full { display: block; }
.rc-contact label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--rc-text-dim);
}
.rc-contact label > span { display: block; margin: 0 0 6px; }
.rc-contact input[type="text"],
.rc-contact input[type="email"],
.rc-contact textarea {
	width: 100%;
	padding: 12px 14px;
	background: rgba(0, 0, 0, 0.28);
	border: 1px solid var(--rc-border);
	border-radius: var(--rc-radius-sm);
	color: #fff;
	font-size: 14px;
	font-family: inherit;
	resize: vertical;
}
.rc-contact input:focus,
.rc-contact textarea:focus {
	outline: none;
	border-color: var(--rc-orange-2);
	box-shadow: 0 0 0 3px rgba(255, 155, 47, 0.14);
}
.rc-contact button { align-self: flex-start; margin-top: 4px; }
.rc-contact__success {
	background: rgba(46, 204, 113, 0.15);
	border: 1px solid rgba(46, 204, 113, 0.4);
	color: #cdf5dd;
	padding: 12px 14px;
	border-radius: var(--rc-radius-sm);
	margin-bottom: 14px;
}
.rc-contact__errors {
	background: rgba(231, 76, 60, 0.15);
	border: 1px solid rgba(231, 76, 60, 0.4);
	color: #ffd5d1;
	padding: 12px 14px;
	border-radius: var(--rc-radius-sm);
	margin-bottom: 14px;
}
.rc-contact__errors ul { margin: 0; padding-left: 18px; }

/* ==========================================================
   FOOTER
   ========================================================== */
.rc-footer {
	background: var(--rc-footer);
	padding: 34px 0 24px;
	margin-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rc-foot-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 22px 28px;
	padding: 14px 0;
}
.rc-foot-grid--payments { border-bottom: 1px solid rgba(255,255,255,.04); }
.rc-foot-grid--providers { border-bottom: 1px solid rgba(255,255,255,.04); gap: 20px 36px; }
.rc-foot-grid--rg { gap: 22px 30px; padding-top: 18px; }

.rc-foot-logo { display: inline-flex; align-items: center; opacity: .75; transition: opacity .2s; }
.rc-foot-logo:hover { opacity: 1; }
.rc-foot-logo img {
	max-height: 22px;
	width: auto;
	filter: grayscale(1) brightness(1.4);
	opacity: .7;
	transition: .2s;
}
.rc-foot-grid--rg .rc-foot-logo img { max-height: 28px; filter: grayscale(1) brightness(1.4); opacity: .75; }
.rc-foot-logo:hover img { filter: none; opacity: 1; }

.rc-foot-nav { text-align: center; padding: 22px 0 10px; }
.rc-foot-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px 22px;
}
.rc-foot-menu li a {
	color: var(--rc-text-dim);
	font-size: 12px;
	letter-spacing: 0.04em;
	text-decoration: none;
}
.rc-foot-menu li a:hover { color: #fff; }

.rc-foot-bottom {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(255,255,255,.04);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: var(--rc-muted);
	flex-wrap: wrap;
	gap: 10px;
}
.rc-foot-18 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border: 1px solid rgba(255,255,255,.35);
	border-radius: 50%;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
}

/* ==========================================================
   COOKIE BANNER
   ========================================================== */
.rc-cookie {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 100;
	background: rgba(10, 22, 40, 0.45);
	backdrop-filter: blur(20px) saturate(1.4);
	-webkit-backdrop-filter: blur(20px) saturate(1.4);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--rc-radius-lg);
	box-shadow: 0 18px 40px rgba(0, 0, 0, .55);
	padding: 14px 18px;
	max-width: 720px;
	margin: 0 auto;
}
.rc-cookie__inner {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: space-between;
	flex-wrap: wrap;
}
.rc-cookie__text {
	margin: 0;
	font-size: 13px;
	color: var(--rc-text-dim);
	flex: 1 1 260px;
	line-height: 1.45;
}
.rc-cookie__actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1100px) {
	.rc-games__grid { grid-template-columns: repeat(4, 1fr); }
	.rc-nav--desktop .rc-menu li > a { padding: 10px 10px; font-size: 11px; }
}

@media (max-width: 900px) {
	.rc-nav--desktop { display: none; }
	.rc-burger { display: inline-flex; }
	.rc-header__right .rc-btn { display: none; }
	.rc-header__right .rc-lang { display: none; }
	.rc-header__inner { padding: 10px 16px; height: 64px; }
	.rc-logo img { height: 30px; max-width: 140px; }

	.rc-header.is-open .rc-mobile { display: block; }

	.rc-games__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }

	.rc-cats__row { gap: 14px 18px; }
	.rc-cat { min-width: 56px; }
	.rc-cat__icon { width: 34px; height: 34px; }
	.rc-cat__label { font-size: 10px; }

	.rc-providers__track li { flex: 0 0 calc((100% - 18px * 5) / 6); }

	.rc-hero { padding: 20px 16px 110px; min-height: 340px; }
	.rc-hero__main { font-size: 26px; }
	.rc-hero__sub { font-size: 20px; }
	.rc-hero__slot { font-size: 14px; }
	.rc-btn--hero { padding: 12px 32px; font-size: 14px; min-width: 180px; }

	.rc-cats { margin-top: -70px; }

	.rc-contact__row { grid-template-columns: 1fr; }
	.rc-foot-menu { gap: 6px 14px; }
	.rc-foot-menu li a { font-size: 11px; }
}

@media (max-width: 640px) {
	.rc-games__grid { grid-template-columns: repeat(2, 1fr); }
	.rc-providers__track li { flex: 0 0 calc((100% - 18px * 3) / 4); }

	.rc-hero { padding: 14px 14px 100px; min-height: 300px; }
	.rc-hero__h1 { font-size: 12px; }
	.rc-hero__main { font-size: 22px; line-height: 1.2; }
	.rc-hero__sub { font-size: 16px; }
	.rc-hero__slot { font-size: 12px; margin: 10px 0 14px; }
	.rc-btn--hero { padding: 10px 26px; font-size: 13px; min-width: 160px; }

	.rc-cats { margin-top: -60px; padding-bottom: 6px; }
	.rc-cats__row { gap: 10px 14px; }
	.rc-cat { min-width: 50px; }
	.rc-cat__icon { width: 30px; height: 30px; }
	.rc-cat__label { font-size: 9px; }

	.rc-page-title { font-size: 22px; }
	.rc-container { padding: 0 14px; }

	.rc-cookie { left: 10px; right: 10px; bottom: 10px; padding: 10px 12px; border-radius: 12px; }
	.rc-cookie__inner { gap: 8px; flex-wrap: wrap; }
	.rc-cookie__text {
		font-size: 12px;
		line-height: 1.35;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		flex: 1 1 100%;
	}
	.rc-cookie__actions { width: 100%; justify-content: flex-end; }
	.rc-cookie__actions .rc-btn { padding: 7px 12px; font-size: 11px; }

	.rc-foot-grid { gap: 14px 20px; padding: 10px 0; }
	.rc-foot-logo img { max-height: 18px; }
	.rc-foot-grid--rg .rc-foot-logo img { max-height: 22px; }

	.rc-contact { padding: 18px; margin: 20px auto; }
}

@media (max-width: 420px) {
	.rc-games__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
	.rc-providers__track li { flex: 0 0 calc((100% - 18px * 2) / 3); }
	.rc-cats__row { gap: 6px 10px; }
}

/* Small utility */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

/* ==========================================================
   WOW EFFECTS & INTERACTIVE ELEMENTS
   ========================================================== */

/* Glow pulse on CTA buttons */
@keyframes ctaPulse {
	0%, 100% { box-shadow: 0 6px 18px rgba(0, 201, 167, 0.28); }
	50% { box-shadow: 0 6px 30px rgba(0, 201, 167, 0.55), 0 0 60px rgba(46, 232, 198, 0.15); }
}
.rc-btn--cta { animation: ctaPulse 2.5s ease-in-out infinite; }
.rc-btn--cta:hover { animation: none; box-shadow: 0 8px 35px rgba(0, 201, 167, 0.5); }

/* Hero shimmer text effect */
@keyframes heroShimmer {
	0% { background-position: -200% center; }
	100% { background-position: 200% center; }
}
.rc-hero__main {
	background: linear-gradient(90deg, #fff 20%, var(--rc-orange-3) 40%, #fff 60%, var(--rc-orange-3) 80%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: heroShimmer 4s linear infinite;
}

/* Game cards tilt on hover */
.rc-game {
	transition: transform .3s ease, box-shadow .3s ease;
}
.rc-game:hover {
	transform: translateY(-6px) scale(1.03);
	box-shadow: 0 14px 40px rgba(0, 201, 167, 0.2), 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* Category icons bounce on hover */
.rc-cat__icon {
	transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), color .2s;
}
.rc-cat:hover .rc-cat__icon {
	transform: scale(1.2) translateY(-3px);
}

/* Provider logos glow on hover */
.rc-providers__track li:hover img {
	filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(46, 232, 198, 0.6));
	opacity: 1;
}

/* Scroll reveal animation */
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}
.rc-game, .rc-cat, .rc-foot-logo {
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
}
.rc-game:nth-child(1) { animation-delay: 0.05s; }
.rc-game:nth-child(2) { animation-delay: 0.1s; }
.rc-game:nth-child(3) { animation-delay: 0.15s; }
.rc-game:nth-child(4) { animation-delay: 0.2s; }
.rc-game:nth-child(5) { animation-delay: 0.25s; }
.rc-game:nth-child(6) { animation-delay: 0.3s; }
.rc-game:nth-child(7) { animation-delay: 0.35s; }
.rc-game:nth-child(8) { animation-delay: 0.4s; }
.rc-game:nth-child(9) { animation-delay: 0.45s; }
.rc-game:nth-child(10) { animation-delay: 0.5s; }
.rc-game:nth-child(11) { animation-delay: 0.55s; }
.rc-game:nth-child(12) { animation-delay: 0.6s; }

/* Floating particles background on hero */
.rc-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image:
		radial-gradient(2px 2px at 10% 20%, rgba(46, 232, 198, 0.4) 0%, transparent 100%),
		radial-gradient(2px 2px at 30% 60%, rgba(93, 252, 224, 0.3) 0%, transparent 100%),
		radial-gradient(1.5px 1.5px at 50% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
		radial-gradient(2px 2px at 70% 70%, rgba(46, 232, 198, 0.35) 0%, transparent 100%),
		radial-gradient(1.5px 1.5px at 85% 25%, rgba(255, 255, 255, 0.25) 0%, transparent 100%),
		radial-gradient(2px 2px at 90% 80%, rgba(93, 252, 224, 0.3) 0%, transparent 100%);
	animation: particleFloat 8s ease-in-out infinite alternate;
	pointer-events: none;
}
@keyframes particleFloat {
	0% { transform: translateY(0) translateX(0); }
	100% { transform: translateY(-15px) translateX(8px); }
}

/* Interactive hover glow on game play button */
.rc-game__play svg circle {
	fill: var(--rc-orange);
	transition: fill .2s, filter .2s;
}
.rc-game:hover .rc-game__play svg circle {
	fill: var(--rc-orange-2);
	filter: drop-shadow(0 0 12px rgba(0, 201, 167, 0.7));
}

/* Smooth cookie banner entrance */
.rc-cookie:not([hidden]) {
	animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes slideUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
/* === readme-marker === */
