/* ==========================================================================
   Cosmoclub — clone of cosmoclub.com (UA online casino).
   Dark cosmic-purple theme, Roboto, vivid #8641ff accent, pill buttons (32px).
   Built from scratch from a Playwright probe of the live source.
   ========================================================================== */

:root {
	--bg:        #180b29;   /* page background (probed body bg) */
	--bg-2:      #1c0d31;   /* sidebar / topbar */
	--card:      #271248;   /* tiles, cards */
	--card-2:    #2b154e;   /* secondary button / hover surface */
	--card-3:    #34195e;   /* raised hover */
	--accent:    #8641ff;   /* primary purple (probed) */
	--accent-2:  #9a5dff;   /* accent hover */
	--accent-10: rgba(134, 65, 255, .12);
	--accent-20: rgba(134, 65, 255, .22);
	--muted:     #aaa7a8;   /* muted text (probed) */
	--muted-2:   #7d7989;
	--text:      #ffffff;
	--line:      rgba(255, 255, 255, .07);
	--good:      #36d07a;
	--gold:      #ffc24b;

	--radius-pill: 32px;
	--radius:      16px;
	--radius-sm:   8px;
	--radius-xs:   6px;

	--sidebar-w: 234px;
	--topbar-h:  72px;
	--maxw:      1240px;

	--shadow:    0 12px 30px rgba(0, 0, 0, .35);
	--font: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font);
	font-size: 15px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---- layout shell ------------------------------------------------------- */
.layout { display: flex; min-height: 100vh; }

.main-wrap {
	flex: 1;
	min-width: 0;
	margin-left: var(--sidebar-w);
	display: flex;
	flex-direction: column;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

main { flex: 1; padding-bottom: 48px; }

/* ---- sidebar ------------------------------------------------------------ */
.sidebar {
	position: fixed;
	inset: 0 auto 0 0;
	width: var(--sidebar-w);
	background: var(--bg-2);
	border-right: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	padding: 18px 14px;
	overflow-y: auto;
	z-index: 60;
}
.sidebar::-webkit-scrollbar { width: 6px; }
.sidebar::-webkit-scrollbar-thumb { background: var(--card-2); border-radius: 6px; }

.brand { display: flex; align-items: center; padding: 4px 8px 22px; }
.brand img, .brand svg { height: 34px; width: auto; }

.side-nav { display: flex; flex-direction: column; gap: 4px; }
.side-link {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 11px 14px;
	border-radius: var(--radius-sm);
	color: var(--muted);
	font-weight: 700;
	font-size: 14px;
	transition: background .15s, color .15s;
}
.side-link i, .side-link .ic { width: 20px; text-align: center; font-size: 17px; flex-shrink: 0; }
.side-link:hover { color: var(--text); background: var(--card); }
.side-link.active { color: var(--text); background: var(--accent-10); }
.side-link.active i { color: var(--accent-2); }

.side-foot { margin-top: auto; padding-top: 18px; }
.lang-switch {
	display: flex; align-items: center; justify-content: space-between;
	gap: 8px; width: 100%;
	padding: 11px 14px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	color: var(--text); font-weight: 700; font-size: 14px;
}
.lang-switch:hover { background: var(--card-2); }
.lang-switch .chev { color: var(--muted); font-size: 12px; }

/* ---- topbar ------------------------------------------------------------- */
.topbar {
	position: sticky; top: 0; z-index: 50;
	height: var(--topbar-h);
	display: flex; align-items: center; gap: 16px;
	padding: 0 24px;
	background: rgba(24, 11, 41, .82);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
}
.topbar .burger,
.topbar .brand-mobile { display: none; }

.search {
	flex: 1; max-width: 560px;
	display: flex; align-items: center; gap: 10px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius-pill);
	padding: 0 18px; height: 44px;
}
.search i { color: var(--muted); font-size: 15px; }
.search input {
	flex: 1; background: none; border: 0; outline: none;
	color: var(--text); font-size: 14px; font-family: inherit;
}
.search input::placeholder { color: var(--muted-2); }

.top-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* ---- buttons ------------------------------------------------------------ */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	border: 0; border-radius: var(--radius-pill);
	padding: 0 22px; height: 44px;
	font-weight: 700; font-size: 14px; color: var(--text);
	background: var(--card-2);
	transition: background .15s, transform .1s, box-shadow .15s;
	white-space: nowrap;
}
.btn:hover { background: var(--card-3); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); }
.btn-primary:hover { background: var(--accent-2); box-shadow: 0 8px 20px var(--accent-20); }
.btn-outline { background: transparent; border: 1px solid var(--accent); color: var(--text); }
.btn-outline:hover { background: var(--accent-10); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { background: var(--card); color: var(--text); }
.btn-sm { height: 36px; padding: 0 16px; font-size: 13px; }
.btn-lg { height: 52px; padding: 0 30px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---- section heading ---------------------------------------------------- */
.sec { margin-top: 34px; }
.sec-head {
	display: flex; align-items: center; gap: 12px;
	margin-bottom: 16px;
}
.sec-title { font-size: 20px; font-weight: 800; margin: 0; display: flex; align-items: center; gap: 9px; }
.sec-more { margin-left: auto; color: var(--muted); font-weight: 700; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; }
.sec-more:hover { color: var(--accent-2); }

/* ---- hero carousel ------------------------------------------------------ */
.hero { margin-top: 22px; }
.hero-frame { position: relative; border-radius: var(--radius); overflow: hidden; }
.hero-track { display: flex; transition: transform .5s ease; }
.hero-slide { position: relative; flex: 0 0 100%; }
.hero-slide img { width: 100%; height: auto; aspect-ratio: 1100 / 360; object-fit: cover; }
.hero-cap {
	position: absolute; inset: 0;
	display: flex; flex-direction: column; justify-content: center;
	gap: 14px; padding: 0 clamp(20px, 5vw, 56px); max-width: 60%;
}
.hero-cap .cap-title { display: block; margin: 0; font-size: clamp(20px, 3vw, 36px); font-weight: 800; line-height: 1.15; text-shadow: 0 3px 14px rgba(0,0,0,.5); }
.hero-cap p { margin: 0; font-size: clamp(13px, 1.4vw, 17px); color: #e9e2ff; max-width: 24em; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.hero-cap .btn { align-self: flex-start; }
.hero-arrow {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 40px; height: 40px; border-radius: 50%;
	background: rgba(20, 8, 38, .55); border: 1px solid var(--line);
	color: #fff; font-size: 15px; display: flex; align-items: center; justify-content: center;
	z-index: 3;
}
.hero-arrow:hover { background: var(--accent); }
.hero-arrow.prev { left: 14px; }
.hero-arrow.next { right: 14px; }
.hero-dots { position: absolute; left: 0; right: 0; bottom: 14px; display: flex; justify-content: center; gap: 8px; z-index: 3; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: 0; padding: 0; }
.hero-dot.active { background: #fff; width: 22px; border-radius: 5px; }

/* ---- category chips ----------------------------------------------------- */
.chips { display: flex; gap: 9px; overflow-x: auto; padding: 18px 0 4px; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip {
	flex: 0 0 auto;
	display: inline-flex; align-items: center; gap: 7px;
	padding: 9px 16px; border-radius: var(--radius-pill);
	background: var(--card); color: var(--muted);
	font-weight: 700; font-size: 13px; white-space: nowrap;
	border: 1px solid transparent;
}
.chip:hover { color: var(--text); background: var(--card-2); }
.chip.active { background: var(--accent-10); color: var(--text); border-color: var(--accent-20); }
.chip.icon-only { padding: 9px 12px; }

/* ---- game grid ---------------------------------------------------------- */
.game-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 14px;
}
.game {
	position: relative;
	border-radius: var(--radius-sm);
	overflow: hidden;
	background: var(--card);
	aspect-ratio: 1 / 1;
}
.game img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s, filter .3s; }
.game-ov {
	position: absolute; inset: 0;
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
	background: linear-gradient(180deg, rgba(24,11,41,.1), rgba(24,11,41,.82));
	opacity: 0; transition: opacity .25s;
}
.game:hover .game-ov { opacity: 1; }
.game:hover img { transform: scale(1.06); filter: brightness(.7); }
.game-play {
	width: 46px; height: 46px; border-radius: 50%;
	background: var(--accent); color: #fff; font-size: 16px;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 6px 18px var(--accent-20);
}
.game-name {
	position: absolute; left: 0; right: 0; bottom: 0;
	padding: 22px 8px 8px; font-size: 11px; font-weight: 600;
	text-align: center; color: #fff;
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
	background: linear-gradient(180deg, transparent, rgba(24,11,41,.92));
	opacity: 0; transition: opacity .25s;
}
.game:hover .game-name { opacity: 1; }
.game-badge {
	position: absolute; top: 7px; left: 7px; z-index: 2;
	display: inline-flex; align-items: center; gap: 4px;
	padding: 3px 8px; border-radius: var(--radius-pill);
	font-size: 10px; font-weight: 800; background: var(--accent); color: #fff;
}
.game-badge.hot { background: #ff5a3c; }
.game-fav { position: absolute; top: 7px; right: 7px; z-index: 2; color: var(--gold); font-size: 13px; opacity: .9; }

/* ---- providers ---------------------------------------------------------- */
.prov-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}
.prov {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
	height: 96px; padding: 16px;
	background: var(--card); border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	transition: background .15s, transform .15s;
}
.prov:hover { background: var(--card-2); transform: translateY(-2px); }
.prov img { height: 30px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .9; }
.prov span { font-size: 11px; color: var(--muted); font-weight: 600; }

/* ---- promo / bonus banner ---------------------------------------------- */
.promo {
	margin-top: 34px;
	display: flex; align-items: center; gap: 24px;
	padding: 28px 32px;
	background: linear-gradient(120deg, #2a1250, #4a1f8f 60%, #6a2bd6);
	border-radius: var(--radius);
	overflow: hidden; position: relative;
}
.promo::after {
	content: ""; position: absolute; right: -40px; top: -40px;
	width: 220px; height: 220px; border-radius: 50%;
	background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
}
.promo-txt { position: relative; z-index: 1; }
.promo-txt .promo-title { display: block; margin: 0 0 6px; font-size: 24px; font-weight: 800; }
.promo-txt p { margin: 0 0 16px; color: #e9e2ff; }
.promo .btn { position: relative; z-index: 1; }

/* ---- content / prose ---------------------------------------------------- */
.content { margin-top: 40px; }
.content--home { margin-top: 48px; }
.prose { max-width: none; }
.page-title { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin: 0 0 18px; line-height: 1.2; }
.prose h2 { font-size: 22px; font-weight: 800; margin: 30px 0 12px; }
.prose h3 { font-size: 18px; font-weight: 700; margin: 24px 0 10px; }
.prose p { margin: 0 0 14px; color: #ded8e6; }
.prose a { color: var(--accent-2); }
.prose ul.bullets { margin: 0 0 14px; padding-left: 0; }
.prose ul.bullets li { position: relative; padding-left: 26px; margin-bottom: 8px; color: #ded8e6; }
.prose ul.bullets li::before { content: "\f111"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--accent-2); font-size: 7px; position: absolute; left: 6px; top: 8px; }
.prose blockquote {
	margin: 18px 0; padding: 14px 20px;
	background: var(--card); border-left: 3px solid var(--accent);
	border-radius: var(--radius-xs); color: #e9e2ff;
}
.prose table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.prose th, .prose td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.prose th { background: var(--card); font-weight: 700; }
.prose img { border-radius: var(--radius-sm); margin: 14px auto; height: auto; }
.prose .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 16px 0; }
.prose .table-scroll table { margin: 0; min-width: 560px; }

/* shared demo .card / .rating styles (used by toplist demo content) */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 14px; }
.rating { background: var(--accent); color: #fff; font-weight: 800; border-radius: var(--radius-sm); padding: 8px 12px; font-size: 1.1rem; }

/* ---- toplist ------------------------------------------------------------ */
.toplist { display: flex; flex-direction: column; gap: 12px; }
.toprow {
	display: grid;
	grid-template-columns: 54px 1.4fr 90px 1.6fr auto;
	align-items: center; gap: 18px;
	background: var(--card); border: 1px solid var(--line);
	border-radius: var(--radius); padding: 16px 20px;
}
.toprow.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent-20), var(--shadow); }
.toprow-rank { font-size: 22px; font-weight: 800; color: var(--accent-2); text-align: center; }
.toprow-name { font-size: 17px; font-weight: 800; }
.toprow-pill { display: inline-block; margin-top: 4px; padding: 3px 10px; border-radius: var(--radius-pill); background: var(--accent-10); color: var(--accent-2); font-size: 11px; font-weight: 700; }
.toprow-rating { text-align: center; }
.toprow-rating .num { font-size: 22px; font-weight: 800; color: var(--gold); }
.toprow-rating .den { font-size: 12px; color: var(--muted); }
.toprow-bonus { color: var(--muted); font-size: 14px; }
@media (max-width: 760px) {
	.toprow { grid-template-columns: 40px 1fr auto; grid-row-gap: 10px; }
	.toprow-bonus { grid-column: 1 / -1; }
	.toprow .btn { grid-column: 1 / -1; }
}

/* ---- review ------------------------------------------------------------- */
.review-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 30px; align-items: start; }
.review-card {
	position: sticky; top: calc(var(--topbar-h) + 16px);
	background: var(--card); border: 1px solid var(--line);
	border-radius: var(--radius); padding: 22px; text-align: center;
}
.review-card .rc-logo { width: 84px; height: 84px; margin: 0 auto 12px; border-radius: var(--radius); background: linear-gradient(135deg, var(--accent), #c64bff); display: flex; align-items: center; justify-content: center; font-size: 34px; font-weight: 800; }
.review-card .rc-rate { font-size: 30px; font-weight: 800; color: var(--gold); }
.review-card .rc-rate small { font-size: 14px; color: var(--muted); font-weight: 600; }
.rc-meta { margin: 16px 0; text-align: left; }
.rc-meta div { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.rc-meta div span:first-child { color: var(--muted); }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 18px 0 24px; }
.pc { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
.pc h4 { margin: 0 0 10px; font-size: 15px; }
.pc.pros h4 i { color: var(--good); }
.pc.cons h4 i { color: #ff6b6b; }
.pc li { padding: 5px 0 5px 22px; position: relative; font-size: 13px; color: #ded8e6; }
.pc.pros li::before { content: "\f00c"; color: var(--good); }
.pc.cons li::before { content: "\f068"; color: #ff6b6b; }
.pc li::before { font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; font-size: 11px; top: 7px; }
@media (max-width: 860px) {
	.review-wrap { grid-template-columns: 1fr; }
	.review-card { position: static; }
	.pros-cons { grid-template-columns: 1fr; }
}

/* ---- landing ------------------------------------------------------------ */
.landing-hero { text-align: center; padding: 60px 24px 40px; max-width: 760px; margin: 0 auto; }
.landing-hero h1 { font-size: clamp(28px, 5vw, 46px); font-weight: 800; margin: 0 0 14px; }
.landing-hero h2 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; color: var(--accent-2); margin: 0 0 14px; }
.landing-hero p { color: var(--muted); font-size: 16px; margin: 0 auto 26px; max-width: 38em; }
.landing-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.landing-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: var(--maxw); margin: 10px auto 40px; padding: 0 24px; }
.lfeat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; text-align: center; }
.lfeat i { font-size: 28px; color: var(--accent-2); margin-bottom: 12px; }
.lfeat h3 { margin: 0 0 8px; font-size: 17px; }
.lfeat p { margin: 0; color: var(--muted); font-size: 14px; }
@media (max-width: 760px) { .landing-feats { grid-template-columns: 1fr; } }

/* ---- footer ------------------------------------------------------------- */
.footer { margin-top: 50px; border-top: 1px solid var(--line); background: var(--bg-2); padding: 34px 0 28px; }
.footer h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin: 0 0 16px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.foot-prov { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.foot-prov a { height: 52px; display: flex; align-items: center; justify-content: center; background: var(--card); border-radius: var(--radius-xs); padding: 10px; }
.foot-prov img { height: 22px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .8; }
.foot-prov a:hover img { opacity: 1; }
.pay-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.pay-row img { height: 30px; width: auto; background: #fff; border-radius: var(--radius-xs); padding: 5px 8px; }
.foot-support a { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 14px; padding: 5px 0; }
.foot-support a:hover { color: var(--text); }
.foot-links { display: flex; flex-direction: column; gap: 9px; }
.foot-links a { color: var(--muted); font-size: 14px; }
.foot-links a:hover { color: var(--accent-2); }
.foot-app { display: flex; gap: 12px; margin-top: 8px; }
.app-badge { display: flex; align-items: center; gap: 9px; padding: 9px 16px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.app-badge i { font-size: 22px; }
.app-badge span { display: flex; flex-direction: column; line-height: 1.1; }
.app-badge b { font-size: 13px; }
.app-badge small { font-size: 10px; color: var(--muted); }
.foot-bottom { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; gap: 14px; justify-content: space-between; }
.foot-disclaimer { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; }
.age { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; border: 2px solid #ff6b6b; color: #ff6b6b; font-weight: 800; font-size: 12px; flex-shrink: 0; }
.foot-copy { color: var(--muted-2); font-size: 12px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } .foot-prov { grid-template-columns: repeat(4, 1fr); } }

/* ---- mobile drawer / overlay / bottombar -------------------------------- */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); opacity: 0; visibility: hidden; transition: .25s; z-index: 70; }
.overlay.show { opacity: 1; visibility: visible; }
.drawer {
	position: fixed; inset: 0 auto 0 0; width: 280px; max-width: 84vw;
	background: var(--bg-2); z-index: 80;
	transform: translateX(-100%); transition: transform .25s;
	display: flex; flex-direction: column; padding: 18px 14px; overflow-y: auto;
}
.drawer.open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 0 6px 18px; }
.drawer-head img, .drawer-head svg { height: 30px; }
.drawer-close { background: none; border: 0; color: var(--muted); font-size: 20px; }
.drawer .side-nav { margin-bottom: 18px; }
.drawer-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }

.bottombar { display: none; }

/* ---- responsive --------------------------------------------------------- */
@media (max-width: 1024px) {
	.sidebar { display: none; }
	.main-wrap { margin-left: 0; }
	/* No top burger on mobile — navigation lives in the bottom bar (Меню opens
	   the full drawer), matching the source. */
	.topbar .brand-mobile { display: flex; align-items: center; }
	.topbar .brand-mobile img, .topbar .brand-mobile svg { height: 28px; }
	.game-grid { grid-template-columns: repeat(5, 1fr); }
	.prov-grid { grid-template-columns: repeat(4, 1fr); }
	main { padding-bottom: 78px; }
	.bottombar {
		display: flex; position: fixed; inset: auto 0 0 0; z-index: 65;
		background: var(--bg-2); border-top: 1px solid var(--line);
		height: 62px;
	}
	.bottombar a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; color: var(--muted); font-size: 10px; font-weight: 600; }
	.bottombar a i { font-size: 18px; }
	.bottombar a.active { color: var(--accent-2); }
	/* Keep the cookie bar clear of the fixed bottom nav. */
	.cookie { bottom: 74px; }
}
@media (max-width: 720px) {
	.search { display: none; }
	.btn-register span.lbl { display: none; }
	.game-grid { grid-template-columns: repeat(3, 1fr); }
	.prov-grid { grid-template-columns: repeat(2, 1fr); }
	/* Phone hero — taller crop of the wide desktop banner + compact caption. */
	.hero { margin-top: 14px; }
	.hero-slide img { aspect-ratio: 1100 / 600; }
	.hero-cap { max-width: 100%; gap: 10px; padding: 0 18px; }
	.hero-cap .cap-title { font-size: 18px; line-height: 1.2; max-width: 64%; }
	.hero-cap p { display: none; }
	.hero-cap .btn,
	.hero-cap .btn.btn-lg { height: 38px; padding: 0 20px; font-size: 13px; }
	/* No arrows on phones — swipe instead (see js/main.js). */
	.hero-arrow { display: none; }
	.promo { flex-direction: column; align-items: flex-start; text-align: left; }
	.container { padding: 0 16px; }
	.topbar { padding: 0 16px; gap: 10px; }
}

/* ---- cookie ------------------------------------------------------------- */
.cookie {
	position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
	max-width: 520px; margin: 0 auto;
	background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 16px 18px; box-shadow: var(--shadow);
	display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.cookie.hidden { display: none; }
.cookie p { margin: 0; flex: 1; min-width: 200px; font-size: 13px; color: var(--muted); }
.cookie-actions { display: flex; gap: 8px; }

.no-js .game-ov { opacity: 1; background: linear-gradient(180deg, rgba(24,11,41,0), rgba(24,11,41,.55)); }
