:root {
	--bg:        #121212;
	--surface:   #1c1c1c;
	--surface-2: #222222;
	--surface-3: #292929;
	--surface-4: #353535;
	--line:      rgba(255, 255, 255, .07);
	--orange:    #ff7b00;
	--red:       #e11f09;
	--red-hover: #ec410d;
	--green:     #19d748;
	--brand:     linear-gradient(180deg, #ff7b00 0%, #e11f09 100%);
	--brand-hover: linear-gradient(180deg, #ff644f 0%, #ec410d 100%);
	--text:      #ffffff;
	--muted:     #9a9aa6;
	--muted-2:   #6d6d78;
	--radius:    12px;
	--radius-sm: 8px;
	--head-h:    64px;
	--side-w:    244px;
	--font:      'Roboto', system-ui, 'Segoe UI', Arial, sans-serif;
	--display:   'Oswald', 'Arial Narrow', var(--font);
}

* { 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.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--red-hover); }
h1, h2, h3 { margin: 0; }

/* ---------- Buttons ---------- */
.hds-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 40px;
	padding: 0 20px;
	border-radius: var(--radius-sm);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .3px;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	border: none;
	color: #fff;
	transition: transform .12s ease, filter .15s ease, background .15s ease, border-color .15s ease;
	white-space: nowrap;
}
.hds-btn:hover { transform: translateY(-1px); color: #fff; }
.hds-btn--brand { background: var(--brand); }
.hds-btn--brand:hover { background: var(--brand-hover); }
.hds-btn--accent { background: var(--orange); color: #0f0f14; }
.hds-btn--accent:hover { background: var(--red-hover); color: #fff; }
.hds-btn--ghost { background: transparent; color: #fff; border: 1px solid var(--surface-4); }
.hds-btn--ghost:hover { background: var(--surface-3); border-color: var(--surface-4); }
.hds-btn--dark { background: var(--surface-3); color: #fff; }
.hds-btn--dark:hover { background: var(--surface-4); }
.hds-btn--lg { height: 48px; padding: 0 30px; font-size: 14px; }
.hds-btn--sm { height: 32px; padding: 0 14px; font-size: 12px; }

/* ============================================================
   Header (top bar)
   ============================================================ */
.hds-header {
	position: sticky;
	top: 0;
	z-index: 60;
	height: var(--head-h);
	background: var(--surface);
	border-bottom: 1px solid var(--line);
}
.hds-header__inner {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 0 16px;
}
.hds-burger {
	display: none;
	width: 40px; height: 40px;
	border: none;
	background: var(--surface-3);
	border-radius: var(--radius-sm);
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	flex: 0 0 auto;
}
.hds-burger span { width: 18px; height: 2px; background: #fff; border-radius: 2px; }
.hds-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.hds-logo img { height: 34px; width: auto; }
.hds-header__tabs {
	display: flex;
	align-items: center;
	gap: 4px;
	height: 100%;
	margin-left: 6px;
	overflow: hidden;
}
.hds-tab {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	height: 40px;
	padding: 0 14px;
	border-radius: var(--radius-sm);
	color: var(--muted);
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
}
.hds-tab:hover { color: #fff; background: var(--surface-2); }
.hds-tab.is-active { color: #fff; background: var(--surface-3); }
.hds-tab svg { width: 18px; height: 18px; }
.hds-header__spacer { flex: 1 1 auto; }
.hds-header__actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.hds-iconbtn {
	width: 40px; height: 40px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--surface-3);
	border: none; border-radius: var(--radius-sm);
	color: #fff; cursor: pointer;
}
.hds-iconbtn:hover { background: var(--surface-4); }
.hds-iconbtn svg { width: 18px; height: 18px; }

/* ============================================================
   Shell: sidebar + main
   ============================================================ */
.hds-shell { display: flex; align-items: flex-start; }

.hds-sidebar {
	position: sticky;
	top: var(--head-h);
	flex: 0 0 var(--side-w);
	width: var(--side-w);
	height: calc(100vh - var(--head-h));
	overflow-y: auto;
	background: var(--surface);
	border-right: 1px solid var(--line);
	padding: 12px 10px 40px;
	scrollbar-width: thin;
	scrollbar-color: var(--surface-4) transparent;
}
.hds-sidebar::-webkit-scrollbar { width: 6px; }
.hds-sidebar::-webkit-scrollbar-thumb { background: var(--surface-4); border-radius: 6px; }

.hds-side-item {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 10px 12px;
	border-radius: var(--radius-sm);
	color: #d6d6dd;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
}
.hds-side-item:hover { background: var(--surface-2); color: #fff; }
.hds-side-item.is-active { background: var(--surface-3); color: #fff; }
.hds-side-item.is-active .hds-side-item__ico { color: var(--orange); }
.hds-side-item__ico { width: 20px; height: 20px; color: var(--muted); flex: 0 0 auto; }
.hds-side-item__ico svg { width: 20px; height: 20px; }
.hds-side-item__label { flex: 1 1 auto; }
.hds-side-item__caret { width: 14px; height: 14px; color: var(--muted); transition: transform .15s ease; }
.hds-side-item.is-open .hds-side-item__caret { transform: rotate(180deg); }
.hds-tag {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	color: #05210f;
	background: var(--green);
	border-radius: 5px;
	padding: 2px 6px;
	letter-spacing: .4px;
}

.hds-side-sub { padding: 2px 0 6px 14px; margin-left: 8px; border-left: 1px solid var(--line); }
.hds-side-sub a {
	display: block;
	padding: 8px 12px;
	border-radius: var(--radius-sm);
	color: var(--muted);
	font-size: 13.5px;
	font-weight: 500;
}
.hds-side-sub a:hover { color: #fff; background: var(--surface-2); }

.hds-side-sep { height: 1px; background: var(--line); margin: 12px 8px; }

/* sidebar promo tiles */
.hds-side-promos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	padding: 4px 4px 0;
}
.hds-side-promo {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 8px;
	border-radius: 10px;
	padding: 12px 10px;
	min-height: 82px;
	font-weight: 700;
	font-size: 12px;
	line-height: 1.2;
	color: #fff;
	overflow: hidden;
	background: var(--surface-3);
}
.hds-side-promo:hover { color: #fff; filter: brightness(1.12); }
.hds-side-promo::after {
	content: "";
	position: absolute; inset: 0;
	background: radial-gradient(90% 90% at 100% 100%, rgba(255,123,0,.5) 0%, rgba(28,28,28,0) 70%);
}
.hds-side-promo--box::after   { background: radial-gradient(90% 90% at 100% 100%, rgba(217,70,239,.55) 0%, rgba(28,28,28,0) 70%); }
.hds-side-promo--spin::after  { background: radial-gradient(90% 90% at 100% 100%, rgba(0,114,222,.55) 0%, rgba(28,28,28,0) 70%); }
.hds-side-promo--map::after   { background: radial-gradient(90% 90% at 100% 100%, rgba(255,199,54,.55) 0%, rgba(28,28,28,0) 70%); }
.hds-side-promo__ico { position: relative; z-index: 1; width: 38px; height: 38px; object-fit: contain; }
.hds-side-promo span { position: relative; z-index: 1; }

/* ---------- Main ---------- */
.hds-main { flex: 1 1 auto; min-width: 0; padding: 16px; }
.hds-main__inner { max-width: 1180px; margin: 0 auto; }

/* ============================================================
   Hero slider
   ============================================================ */
.hds-hero {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 16px;
}
.hds-hero__track { display: flex; transition: transform .5s ease; }
.hds-hero__slide {
	position: relative;
	flex: 0 0 100%;
	min-height: 300px;
	background-size: cover;
	background-position: center right;
	display: flex;
	align-items: center;
}
.hds-hero__copy { position: relative; z-index: 2; padding: 40px clamp(24px, 5vw, 60px); max-width: 58%; }
.hds-hero__kicker { color: #fff; font-weight: 500; opacity: .9; margin-bottom: 10px; font-size: 15px; }
.hds-hero__title {
	font-family: var(--display);
	font-weight: 700;
	text-transform: uppercase;
	font-size: clamp(28px, 3.4vw, 46px);
	line-height: 1.02;
	letter-spacing: .5px;
	margin-bottom: 22px;
	text-shadow: 0 2px 18px rgba(0,0,0,.6);
}
.hds-hero__title span { color: var(--orange); }
.hds-hero__dots { position: absolute; left: 0; right: 0; bottom: 14px; z-index: 3; display: flex; justify-content: center; gap: 7px; }
.hds-hero__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; padding: 0; }
.hds-hero__dot.is-active { width: 22px; border-radius: 5px; background: var(--orange); }

/* ============================================================
   Filter chips
   ============================================================ */
.hds-chips {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding-bottom: 4px;
	margin-bottom: 22px;
	scrollbar-width: none;
}
.hds-chips::-webkit-scrollbar { display: none; }
.hds-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 40px;
	padding: 0 16px;
	border-radius: 10px;
	background: var(--surface);
	color: #d6d6dd;
	font-weight: 600;
	font-size: 13.5px;
	white-space: nowrap;
	flex: 0 0 auto;
}
.hds-chip:hover { background: var(--surface-3); color: #fff; }
.hds-chip.is-active { background: var(--orange); color: #0f0f14; }
.hds-chip svg { width: 18px; height: 18px; color: var(--orange); }
.hds-chip.is-active svg { color: #0f0f14; }

/* ============================================================
   Section header
   ============================================================ */
.hds-section { margin-bottom: 30px; }
.hds-section__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}
.hds-section__title {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 19px;
	font-weight: 700;
}
.hds-section__title svg { width: 22px; height: 22px; color: var(--orange); }
.hds-section__tools { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.hds-navbtn {
	width: 34px; height: 34px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--surface-3); border: none; border-radius: var(--radius-sm);
	color: #fff; cursor: pointer;
}
.hds-navbtn:hover { background: var(--surface-4); }
.hds-navbtn svg { width: 16px; height: 16px; }

/* ============================================================
   Game grid
   ============================================================ */
.hds-games {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}
.hds-game {
	position: relative;
	display: block;
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 427 / 575;
	background: var(--surface-2);
}
.hds-game img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.hds-game:hover img { transform: scale(1.06); }
.hds-badge {
	position: absolute;
	top: 8px; left: 8px;
	z-index: 2;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .4px;
	padding: 3px 7px;
	border-radius: 5px;
	color: #0f2f16;
	background: var(--green);
}
.hds-badge--excl { color: #0f0f14; background: linear-gradient(256deg,#ffb800 23%,#ed882b 85%); }

/* ============================================================
   Latest wins strip
   ============================================================ */
.hds-wins {
	display: flex;
	align-items: stretch;
	gap: 0;
	background: var(--surface);
	border-radius: var(--radius);
	padding: 10px 14px;
	margin-bottom: 30px;
	overflow-x: auto;
	scrollbar-width: none;
}
.hds-wins::-webkit-scrollbar { display: none; }
.hds-wins__label {
	display: flex; flex-direction: column; justify-content: center;
	font-family: var(--display);
	text-transform: uppercase;
	font-weight: 600;
	line-height: 1;
	color: var(--orange);
	padding-right: 16px;
	margin-right: 8px;
	border-right: 1px solid var(--line);
	flex: 0 0 auto;
}
.hds-wins__label span { color: #fff; font-size: 18px; }
.hds-win {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 4px 16px;
	border-right: 1px solid var(--line);
	flex: 0 0 auto;
}
.hds-win:last-child { border-right: none; }
.hds-win__thumb { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; flex: 0 0 auto; }
.hds-win__meta { display: flex; flex-direction: column; line-height: 1.3; }
.hds-win__game { font-size: 12px; color: var(--muted); }
.hds-win__amt { font-size: 13px; font-weight: 700; color: #fff; }

/* ============================================================
   Collections
   ============================================================ */
.hds-collections {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}
.hds-collection {
	position: relative;
	display: flex;
	align-items: flex-end;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 16 / 10;
	color: #fff;
}
.hds-collection img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.hds-collection::after {
	content: "";
	position: absolute; left: 0; right: 0; bottom: 0; height: 55%;
	background: linear-gradient(180deg, rgba(18,18,18,0) 0%, rgba(18,18,18,.75) 100%);
}
.hds-collection span {
	position: relative;
	z-index: 1;
	padding: 14px;
	font-size: 16px;
	font-weight: 700;
}
.hds-collection:hover img { transform: scale(1.05); }

/* ============================================================
   App promo banner
   ============================================================ */
.hds-app {
	position: relative;
	display: flex;
	align-items: center;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--surface);
	background-size: cover;
	background-position: center right;
	min-height: 190px;
	margin-bottom: 30px;
	padding: 28px clamp(20px, 4vw, 46px);
}
.hds-app__copy { position: relative; z-index: 1; max-width: 60%; }
.hds-app__title { font-size: clamp(20px, 2.4vw, 28px); font-weight: 700; line-height: 1.1; margin-bottom: 8px; }
.hds-app__text { color: var(--muted); margin-bottom: 18px; }

/* ============================================================
   Providers
   ============================================================ */
.hds-providers {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}
.hds-provider {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 7;
	background: var(--surface);
	border-radius: 10px;
	padding: 0 18px;
}
.hds-provider img { max-width: 78%; max-height: 46%; width: auto; height: auto; opacity: .7; transition: opacity .15s ease; }
.hds-provider:hover { background: var(--surface-2); }
.hds-provider:hover img { opacity: 1; }

/* ============================================================
   Article / content typography
   ============================================================ */
.hds-article { margin-top: 8px; }
.hds-article--plain { max-width: 900px; margin: 0 auto; padding: 8px 0 20px; }
.hds-article h1 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; margin: 6px 0 14px; }
.hds-article h2 { font-size: clamp(20px, 2.4vw, 25px); font-weight: 700; margin: 26px 0 12px; }
.hds-article h3 { font-size: 18px; font-weight: 700; margin: 20px 0 10px; }
.hds-article p { color: #c8c8d2; margin: 0 0 14px; }
.hds-article a { color: var(--orange); }
.hds-article a:hover { text-decoration: underline; }
.hds-article ul, .hds-article ol { color: #c8c8d2; padding-left: 20px; margin: 0 0 14px; }
.hds-article li { margin-bottom: 6px; }
.hds-article img { border-radius: 10px; margin: 14px 0; }
.hds-article table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 14px; }
.hds-article th, .hds-article td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.hds-article th { background: var(--surface-2); }

.hds-seo { margin-top: 6px; }
.hds-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 8px; }

/* landing */
.hds-land-hero {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	background-size: cover;
	background-position: center;
	padding: clamp(36px, 6vw, 70px) clamp(24px, 5vw, 60px);
	margin-bottom: 22px;
}
.hds-land-hero__title {
	font-family: var(--display);
	text-transform: uppercase;
	font-weight: 700;
	font-size: clamp(26px, 4vw, 44px);
	line-height: 1.05;
	max-width: 60%;
	margin-bottom: 22px;
	text-shadow: 0 2px 18px rgba(0,0,0,.6);
}
.hds-land-hero__title span { color: var(--orange); }

/* ============================================================
   Footer
   ============================================================ */
.hds-footer { background: var(--surface); border-top: 1px solid var(--line); margin-top: 20px; }
.hds-footer__inner { max-width: 1180px; margin: 0 auto; padding: 34px 20px 24px; }
.hds-footer__top { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.hds-footer__apps { display: flex; gap: 10px; margin-left: auto; flex-wrap: wrap; }
.hds-appbtn {
	display: inline-flex; align-items: center; gap: 9px;
	height: 44px; padding: 0 16px;
	background: var(--surface-3); border-radius: 10px;
	color: #fff; font-size: 12px; font-weight: 600;
}
.hds-appbtn:hover { background: var(--surface-4); color: #fff; }
.hds-appbtn small { display: block; font-size: 10px; color: var(--muted); font-weight: 400; }
.hds-appbtn svg { width: 22px; height: 22px; }
.hds-footer__cols {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
	padding: 26px 0;
}
.hds-footer__col-title { font-size: 14px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.hds-footer__col a { display: block; color: var(--muted); font-size: 13px; padding: 5px 0; }
.hds-footer__col a:hover { color: #fff; }
.hds-footer__bottom {
	padding-top: 20px;
	border-top: 1px solid var(--line);
	color: var(--muted-2);
	font-size: 12.5px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.hds-footer__crypto { color: var(--muted); }

/* ============================================================
   Mobile bottom tab bar (hidden on desktop)
   ============================================================ */
.hds-tabbar { display: none; }

/* backdrop for drawer */
.hds-backdrop {
	position: fixed; inset: 0;
	background: rgba(0,0,0,.6);
	z-index: 55;
	opacity: 0;
	transition: opacity .2s ease;
}
.hds-backdrop.is-show { opacity: 1; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1280px) {
	.hds-games, .hds-providers { grid-template-columns: repeat(4, 1fr); }
	.hds-collections { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
	.hds-burger { display: flex; }
	.hds-header__tabs { display: none; }
	.hds-sidebar {
		position: fixed;
		top: 0; left: 0;
		height: 100vh;
		z-index: 70;
		transform: translateX(-100%);
		transition: transform .25s ease;
		padding-top: 16px;
	}
	.hds-sidebar.is-open { transform: translateX(0); }
	.hds-main { padding-bottom: 80px; }
}
@media (max-width: 760px) {
	.hds-header__actions .hds-btn { height: 36px; padding: 0 14px; font-size: 12px; }
	.hds-games, .hds-providers { grid-template-columns: repeat(2, 1fr); }
	.hds-collections { grid-template-columns: repeat(2, 1fr); }
	.hds-footer__cols { grid-template-columns: repeat(2, 1fr); }
	.hds-hero__copy { max-width: 100%; padding: 26px 22px; }
	.hds-hero__slide { min-height: 220px; }
	.hds-app__copy, .hds-land-hero__title { max-width: 100%; }
	.hds-footer__apps { margin-left: 0; }
	/* bottom tab bar */
	.hds-tabbar {
		display: flex;
		position: fixed;
		bottom: 0; left: 0; right: 0;
		z-index: 58;
		height: 62px;
		background: var(--surface);
		border-top: 1px solid var(--line);
	}
	.hds-tabbar a {
		flex: 1 1 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 3px;
		color: var(--muted);
		font-size: 10px;
		font-weight: 600;
	}
	.hds-tabbar a.is-active { color: var(--orange); }
	.hds-tabbar svg { width: 20px; height: 20px; }
}
@media (max-width: 400px) {
	.hds-games { grid-template-columns: repeat(2, 1fr); }
	.hds-header__inner { gap: 10px; padding: 0 12px; }
	.hds-logo img { height: 28px; }
}
