/* ==========================================================================
   dragon_1 (template 37) — cloned skin of our own UA casino property.
   Light #F5F5F5 surface, fixed crimson→orange gradient header, Ubuntu type,
   gold copy headings, 288×210 game tiles on horizontal rails.
   ========================================================================== */

:root {
	--dg-red-1: #c10626;
	--dg-red-2: #e04f29;
	--dg-btn-1: #c00426;
	--dg-btn-2: #e15129;
	--dg-pink: #df0129;
	--dg-gold: #ffcb3a;
	--dg-orange: #ffa82d;
	--dg-ink: #080b11;
	--dg-surface: #f5f5f5;
	--dg-chip: #e1e4e9;
	--dg-line: #c9ccd1;
	--dg-white: #f5f5f5;
	/* Dark-grey page surface; the copy panel shares the same tone. */
	--dg-bg-1: #3a383c;
	--dg-bg-2: #333135;
	--dg-bg-3: #2b292d;
	--dg-card: #333135;
	--dg-on-dark: #f2eeec;
	--dg-on-dark-mute: rgba(242, 238, 236, .72);
	--dg-wrap: 1200px;
	--dg-hdr: 61px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* The scrollbar gutter is always reserved, so locking the page for the drawer
   never shifts the layout sideways. */
html { scrollbar-gutter: stable; }

html.dg-lock { overflow: hidden; }

body {
	margin: 0;
	padding-top: var(--dg-hdr);
	font-family: Ubuntu, -apple-system, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--dg-on-dark);
	/* Dark-grey surface with a crimson glow under the header and a warm gold
	   wash on the right — game tiles and the copy panel both read against it. */
	background:
		radial-gradient(1100px 460px at 50% -80px, rgba(224, 79, 41, .26), transparent 66%),
		radial-gradient(820px 560px at 100% 20%, rgba(255, 168, 45, .08), transparent 70%),
		radial-gradient(720px 520px at 0% 52%, rgba(193, 6, 38, .10), transparent 72%),
		linear-gradient(180deg, var(--dg-bg-1) 0%, var(--dg-bg-2) 46%, var(--dg-bg-3) 100%);
	background-attachment: fixed;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.dg-wrap {
	width: 100%;
	max-width: var(--dg-wrap);
	margin: 0 auto;
	padding: 0 16px;
}

/* --- buttons ------------------------------------------------------------ */

.dg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 32px;
	min-height: 32px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	border-radius: 8px;
	border: 1px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition: filter .18s ease, transform .18s ease;
}

.dg-btn:hover { filter: brightness(1.07); }

.dg-btn:active { transform: translateY(1px); }

.dg-btn--primary {
	background: linear-gradient(90deg, var(--dg-btn-1), var(--dg-btn-2));
	border-color: rgba(245, 245, 245, .3);
	color: var(--dg-white);
}

.dg-btn--ghost {
	background: var(--dg-chip);
	border-color: var(--dg-line);
	color: var(--dg-pink);
}

.dg-btn--full { width: 100%; }

.dg-btn--lg { padding: 14px 40px; min-height: 48px; font-size: 18px; }

/* --- header ------------------------------------------------------------- */

.dg-hdr {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 60;
	height: var(--dg-hdr);
	background: linear-gradient(88.91deg, var(--dg-red-1) 17.99%, var(--dg-red-2) 99.06%);
}

.dg-hdr__in {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	height: 100%;
	padding: 0 16px;
}

.dg-hdr__burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0 8px;
	background: none;
	border: 0;
	cursor: pointer;
}

.dg-hdr__burger span {
	display: block;
	height: 3px;
	border-radius: 2px;
	background: var(--dg-white);
}

.dg-hdr__nav {
	display: flex;
	align-items: center;
	gap: 4px;
}

.dg-hdr__navitem {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 4px 10px;
	border-radius: 8px;
	color: var(--dg-white);
	font-size: 11px;
	font-weight: 400;
	transition: background .18s ease;
}

.dg-hdr__navitem:hover { background: rgba(255, 255, 255, .14); }

.dg-hdr__navitem img { width: 24px; height: 24px; }

.dg-hdr__logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: block;
}

.dg-hdr__logo img { width: auto; height: 48px; }

.dg-hdr__auth {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

/* --- drawer ------------------------------------------------------------- */

.dg-dim {
	position: fixed;
	inset: 0;
	z-index: 70;
	background: rgba(8, 11, 17, .55);
	opacity: 0;
	visibility: hidden;
	transition: opacity .22s ease, visibility .22s ease;
}

.dg-dim.is-on { opacity: 1; visibility: visible; }

.dg-drawer {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 80;
	width: 300px;
	max-width: 86vw;
	height: 100%;
	padding: 0 16px 24px;
	overflow-y: auto;
	color: var(--dg-on-dark);
	background:
		radial-gradient(420px 260px at 0% 0%, rgba(224, 79, 41, .34), transparent 72%),
		linear-gradient(180deg, #241a1b 0%, var(--dg-bg-2) 52%, var(--dg-bg-3) 100%);
	border-right: 1px solid rgba(255, 255, 255, .10);
	box-shadow: 0 0 40px rgba(0, 0, 0, .55);
	transform: translateX(-100%);
	transition: transform .24s ease;
}

.dg-drawer.is-on { transform: none; }

.dg-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	top: 0;
	z-index: 1;
	margin: 0 -16px;
	padding: 14px 16px;
	background: linear-gradient(88.91deg, var(--dg-red-1) 17.99%, var(--dg-red-2) 99.06%);
	color: var(--dg-white);
}

.dg-drawer__ttl { font-size: 17px; font-weight: 700; letter-spacing: .02em; }

.dg-drawer__x {
	width: 32px;
	height: 32px;
	font-size: 26px;
	line-height: 1;
	color: var(--dg-white);
	background: none;
	border: 0;
	cursor: pointer;
	opacity: .9;
}

.dg-drawer__x:hover { opacity: 1; }

.dg-drawer__promo {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 16px 0;
	padding: 16px;
	border-radius: 12px;
	background:
		radial-gradient(240px 160px at 100% 0%, rgba(255, 203, 58, .22), transparent 70%),
		linear-gradient(89deg, var(--dg-btn-1), var(--dg-btn-2));
	border: 1px solid rgba(255, 203, 58, .35);
	color: var(--dg-white);
}

.dg-drawer__promo-tag {
	font-size: 11px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--dg-gold);
}

.dg-drawer__promo-sum { font-size: 16px; font-weight: 700; line-height: 22px; }

.dg-drawer__promo .dg-btn {
	margin-top: 4px;
	background: var(--dg-gold);
	border-color: rgba(8, 11, 17, .18);
	color: #2a1204;
	font-weight: 700;
}

.dg-drawer__nav ul { margin: 0; padding: 0; list-style: none; }

.dg-drawer__nav li + li { border-top: 1px solid rgba(255, 255, 255, .08); }

.dg-drawer__nav a {
	display: flex;
	align-items: center;
	padding: 12px 10px;
	font-size: 16px;
	font-weight: 300;
	color: var(--dg-on-dark);
	border-radius: 8px;
	transition: background .18s ease, color .18s ease, padding-left .18s ease;
}

.dg-drawer__nav a:hover {
	padding-left: 16px;
	color: var(--dg-gold);
	background: rgba(255, 255, 255, .07);
}

/* --- hero --------------------------------------------------------------- */

.dg-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--dg-ink);
}

.dg-hero img {
	width: 100%;
	height: auto;
	aspect-ratio: 1800 / 390;
	object-fit: cover;
}

/* --- section titles ----------------------------------------------------- */

.dg-rail__ttl {
	display: block;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	color: var(--dg-on-dark);
}

/* --- game rails --------------------------------------------------------- */

.dg-rail { margin: 24px 0; }

.dg-rail__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.dg-rail__actions { display: flex; align-items: center; gap: 8px; }

.dg-rail__all { font-size: 16px; color: var(--dg-gold); }

.dg-rail__all:hover { color: var(--dg-orange); text-decoration: underline; }

.dg-rail__arr {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	font-size: 15px;
	color: var(--dg-on-dark);
	background: rgba(255, 255, 255, .09);
	border: 1px solid rgba(255, 255, 255, .20);
	border-radius: 8px;
	cursor: pointer;
	transition: background .18s ease;
}

.dg-rail__arr:hover { background: rgba(255, 255, 255, .18); }

.dg-rail__grid {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: auto;
	grid-auto-columns: 288px;
	gap: 16px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.dg-rail__grid::-webkit-scrollbar { display: none; }

.dg-rail__grid--two { grid-template-rows: auto auto; }

.dg-gc {
	position: relative;
	display: block;
	border-radius: 4px;
	overflow: hidden;
	background: rgba(255, 255, 255, .06);
	transition: transform .18s ease, box-shadow .18s ease;
}

.dg-gc img {
	width: 100%;
	height: 100%;
	aspect-ratio: 288 / 210;
	object-fit: cover;
}

.dg-gc:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(8, 11, 17, .18);
}

.dg-gc__badges {
	position: absolute;
	top: 8px;
	left: 8px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.dg-gc__badges img { width: 40px; height: auto; aspect-ratio: auto; }

/* --- page head (on the dark surface) ------------------------------------ */

.dg-phead { padding: 32px 0 0; }

.dg-phead h1 {
	margin: 0;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.15;
	color: var(--dg-gold);
}

.dg-phead p {
	margin: 12px 0 0;
	max-width: 860px;
	font-weight: 300;
	color: var(--dg-on-dark-mute);
}

/* --- CMS content surface ------------------------------------------------
   Same dark-grey tone as the page: the panel is set off by a hairline border
   and a soft shadow, not by a colour change. */

.dg-content {
	margin: 24px 0 48px;
	padding: 32px 40px 40px;
	border-radius: 12px;
	background: var(--dg-card);
	border: 1px solid rgba(255, 255, 255, .09);
	box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
	color: var(--dg-on-dark);
}

.dg-content > :first-child { margin-top: 0; }

.dg-content > :last-child { margin-bottom: 0; }

.dg-content h1 {
	margin: 0 0 16px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.15;
	color: var(--dg-gold);
}

.dg-content h2 {
	margin: 32px 0 12px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}

.dg-content h3 {
	margin: 24px 0 8px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
}

.dg-content h4 { margin: 20px 0 8px; font-size: 18px; font-weight: 500; }

.dg-content p { margin: 16px 0; }

.dg-content a { color: var(--dg-gold); text-decoration: underline; }

.dg-content a:hover { color: var(--dg-orange); }

/* Buttons inside the body keep their own skin, not the prose link styling. */
.dg-content a.dg-btn { text-decoration: none; }

.dg-content a.dg-btn--primary { color: var(--dg-white); }

.dg-content a.dg-btn--ghost { color: var(--dg-pink); }

.dg-content ul,
.dg-content ol { margin: 16px 0; padding-left: 22px; }

.dg-content li { margin: 6px 0; }

/* Body images: centred, never wider than 812px, and shrinking with the
   viewport on narrow screens. */
.dg-content img {
	display: block;
	width: auto;
	max-width: min(100%, 812px);
	height: auto;
	margin: 24px auto;
	border-radius: 8px;
}

.dg-content figure { margin: 24px 0; text-align: center; }

.dg-content figure img { margin: 0 auto; }

.dg-content figcaption {
	margin-top: 8px;
	font-size: 14px;
	font-weight: 300;
	color: var(--dg-on-dark-mute);
}

.dg-content blockquote {
	margin: 20px 0;
	padding: 12px 16px;
	border-left: 3px solid var(--dg-orange);
	background: rgba(255, 255, 255, .06);
	border-radius: 0 8px 8px 0;
}

.dg-tscroll { width: 100%; overflow-x: auto; margin: 16px 0; }

.dg-content table {
	border-collapse: collapse;
	width: 100%;
	min-width: 480px;
	font-size: 16px;
	font-weight: 300;
	background: rgba(255, 255, 255, .03);
}

.dg-content th,
.dg-content td {
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, .16);
	text-align: left;
	vertical-align: top;
}

.dg-content th { font-weight: 500; background: rgba(255, 168, 45, .12); }

.dg-content tbody tr:nth-child(even) { background: rgba(255, 255, 255, .03); }

/* --- toplist ------------------------------------------------------------ */

.dg-tlhead { padding: 32px 0 0; }

.dg-tlhead h1 {
	margin: 0 0 12px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.15;
	color: var(--dg-gold);
}

.dg-tlhead p { margin: 0; max-width: 860px; font-weight: 300; color: var(--dg-on-dark-mute); }

.dg-promo {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin: 24px 0;
	padding: 20px 24px;
	border-radius: 8px;
	background: linear-gradient(89.24deg, var(--dg-btn-1) -47.93%, var(--dg-btn-2) 137.2%);
	color: var(--dg-white);
}

.dg-promo__tag {
	display: block;
	font-size: 12px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--dg-gold);
}

.dg-promo__sum { display: block; font-size: 22px; font-weight: 700; }

.dg-promo .dg-btn {
	background: var(--dg-white);
	border-color: rgba(8, 11, 17, .12);
	color: var(--dg-pink);
}

/* --- review ------------------------------------------------------------- */

.dg-rv {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 24px;
	padding: 32px 0 0;
}

.dg-rv h1 {
	margin: 0 0 12px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.15;
	color: var(--dg-gold);
}

.dg-rv p { margin: 0 0 16px; font-weight: 300; color: var(--dg-on-dark-mute); }

.dg-rv__rate {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	font-weight: 300;
	color: var(--dg-on-dark-mute);
}

.dg-rv__score { color: var(--dg-on-dark); }

.dg-rv__stars { color: var(--dg-orange); font-size: 20px; letter-spacing: 2px; }

.dg-rv__score { font-size: 22px; font-weight: 700; }

.dg-rv__cta { display: flex; gap: 8px; flex-wrap: wrap; }

.dg-rv__facts {
	align-self: start;
	padding: 16px;
	border-radius: 12px;
	background: var(--dg-card);
	border: 1px solid rgba(255, 255, 255, .10);
	box-shadow: 0 14px 30px rgba(0, 0, 0, .28);
	color: var(--dg-on-dark);
}

.dg-rv__facts dl { display: grid; grid-template-columns: 1fr auto; gap: 8px 12px; margin: 0; }

.dg-rv__facts dt { font-weight: 300; color: var(--dg-on-dark-mute); }

.dg-rv__facts dd { margin: 0; font-weight: 500; text-align: right; }

/* --- landing ------------------------------------------------------------ */

.dg-lhero {
	margin: 24px 0;
	padding: 40px 24px;
	border-radius: 8px;
	text-align: center;
	background: linear-gradient(89.24deg, var(--dg-btn-1) -47.93%, var(--dg-btn-2) 137.2%);
	color: var(--dg-white);
}

.dg-lhero__ttl {
	display: block;
	margin-bottom: 12px;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.15;
	color: var(--dg-gold);
}

.dg-lhero p { max-width: 720px; margin: 0 auto 20px; font-weight: 300; }

.dg-lhero .dg-btn {
	background: var(--dg-white);
	border-color: rgba(8, 11, 17, .12);
	color: var(--dg-pink);
}

.dg-lcta { margin: 32px 0 8px; text-align: center; }

/* --- footer ------------------------------------------------------------- */

.dg-foot {
	margin-top: 32px;
	padding: 24px 0 48px;
	/* The header gradient, dimmed down so the footer sits back instead of
	   competing with the chrome at the top of the page. */
	background: linear-gradient(88.91deg, #6d0a18 17.99%, #7d2c18 99.06%);
	border-top: 1px solid rgba(255, 255, 255, .10);
	color: rgba(255, 255, 255, .9);
}

.dg-foot__in {
	display: grid;
	grid-template-columns: 314px 1fr 1fr 330px;
	gap: 24px;
	width: 100%;
	max-width: var(--dg-wrap);
	margin: 0 auto;
	padding: 24px 16px;
}

/* align-items:flex-start matters — in a stretch column the logo would be
   blown up to the column width and come out distorted. */
.dg-foot__brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.dg-foot__brand img {
	width: auto;
	max-width: 170px;
	height: 56px;
	object-fit: contain;
	object-position: left center;
}

.dg-foot__slogan { font-size: 16px; font-weight: 300; line-height: 24px; }

.dg-foot__age {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid var(--dg-white);
	color: var(--dg-white);
	font-size: 14px;
	font-weight: 700;
}

.dg-foot__col { display: flex; flex-direction: column; }

.dg-foot__col a {
	padding-bottom: 8px;
	font-size: 16px;
	font-weight: 300;
	color: rgba(255, 255, 255, .88);
}

.dg-foot__col a:hover { color: var(--dg-gold); }

.dg-foot__side { display: flex; flex-direction: column; gap: 12px; }

.dg-foot__bot {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 16px 8px 0;
	border-radius: 8px;
	overflow: hidden;
	background: rgba(8, 11, 17, .28);
	border: 1px solid rgba(255, 255, 255, .22);
	color: var(--dg-white);
}

.dg-foot__bot:hover { background: rgba(8, 11, 17, .38); }

.dg-foot__bot img { width: 96px; height: 72px; object-fit: contain; }

.dg-foot__bot-txt { font-size: 14px; font-weight: 300; line-height: 20px; }

.dg-foot__bot-arrow { margin-left: auto; font-size: 18px; }

.dg-foot__copy { font-size: 14px; font-weight: 300; line-height: 20px; }

.dg-foot__legal {
	width: 100%;
	max-width: var(--dg-wrap);
	margin: 0 auto;
	padding: 16px;
	border-top: 1px solid rgba(255, 255, 255, .18);
	font-size: 13px;
	font-weight: 300;
	line-height: 20px;
	color: rgba(255, 255, 255, .8);
}

.dg-foot__legal p { margin: 8px 0; }

/* --- responsive --------------------------------------------------------- */

@media (max-width: 1100px) {
	.dg-hdr__nav { display: none; }
	.dg-hdr__logo { left: auto; top: auto; transform: none; position: static; margin-left: 4px; }
	.dg-foot__in { grid-template-columns: 1fr 1fr; }
	.dg-rv { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 720px) {
	:root { --dg-hdr: 56px; }
	.dg-hdr__logo img { height: 38px; }
	.dg-hdr__auth .dg-btn { padding: 8px 14px; font-size: 14px; }
	.dg-rail__grid { grid-auto-columns: 46vw; }
	.dg-content h1,
	.dg-tlhead h1,
	.dg-rv h1 { font-size: 26px; }
	.dg-lhero__ttl { font-size: 26px; }
	.dg-foot__in { grid-template-columns: 1fr; }
	.dg-promo { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
	.dg-hdr__auth .dg-btn--ghost { display: none; }
}
