* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    background: #1C1E27;
    color: #F3F5F8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#site-header-bg {
	background: rgba(15,15,21,.9);
	border-bottom: 1px solid rgba(255,255,255,0.08);
	position: sticky;
	top: 0;
	z-index: 50;
}

.hdr__wrap {
	max-width: 1300px;
	margin: 0 auto;
	padding: 12px 16px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 16px;
}

.hdr__logo img {
	display: block;
    width: 100px;
    height: auto;
}

.hdr__actions {
	display: flex;
	gap: 10px;
	align-items: center;
}

.hdr__nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 22px;
	align-items: center;
    margin-left: 55px;
}

.hdr__nav li {
	margin: 0;
	padding: 0;
}

.hdr__nav a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: #F3F5F8;
	font: 500 16px/1.2 system-ui, -apple-system, Segoe UI, Inter, Arial;
	padding: 8px 6px;
	opacity: .95;
	transition: transform .15s ease, opacity .15s ease;
}

.hdr__nav a:hover {
	opacity: 1;
	transform: translateY(-1px);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 16px;
	border-radius: 10px;
	text-decoration: none;
	font: 600 14px/1 system-ui, -apple-system, Segoe UI, Inter, Arial;
	cursor: pointer;
	user-select: none;
}

.btn--login {
	color: #F3F5F8;
	background: linear-gradient(135deg, #FF8A3C, #6C5CF7);
	border: 0;
}

.btn--signup {
	color: #0B1420;
	background: linear-gradient(135deg, #25C4F8, #14E38A);
}

.btn--sm {
	height: 36px;
	padding: 0 14px;
	font-weight: 600;
}

.hdr__burger,
.hdr__logo--mobile,
.hdr__right {
	display: none;
}

.hdr__logo--mobile img{
    display: block;
    width: 75px;
    height: auto;
}

.hdr__burger {
	display: none;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(15,15,21,.9);
	position: relative;
	justify-content: center;
	align-items: center;
}

.hdr__burger span {
	position: absolute;
	left: 10px;
	right: 10px;
	height: 3px;
	background: #F3F5F8;
	border-radius: 3px;
	transition: transform .22s ease, opacity .22s ease, top .22s ease;
}

.hdr__burger span:nth-child(1) { top: 13px; }
.hdr__burger span:nth-child(2) { top: 20px; }
.hdr__burger span:nth-child(3) { top: 27px; }

.hdr__burger:active { transform: translateY(1px); }

.hdr__burger.is-open span:nth-child(1) {
	top: 20px;
	transform: rotate(45deg);
}

.hdr__burger.is-open span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0.4);
}

.hdr__burger.is-open span:nth-child(3) {
	top: 20px;
	transform: rotate(-45deg);
}

.icon-login {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: linear-gradient(135deg, #25C4F8 0%, #6C5CF7 60%, #F21FA4 100%);
	box-shadow: 0 2px 10px rgba(108,92,247,.35), inset 0 0 0 1px rgba(255,255,255,.08);
	text-decoration: none;
}

.icon-login .svg {
	width: 22px;
	height: 22px;
	fill: #FFFFFF;
	stroke: none;
}

.icon-login:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(37,196,248,.35), 0 2px 10px rgba(108,92,247,.35);
}

.icon-login:hover {
	transform: translateY(-1px);
}

.icon-login:active {
	transform: translateY(0);
}

.svg {
	width: 22px;
	height: 22px;
	stroke: #F3F5F8;
	fill: none;
	stroke-width: 1.8;
}

.mnav {
	display: none;
	background: rgba(15,15,21,.9);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mnav.is-open {
	display: block;
}

.mnav__list {
	list-style: none;
	margin: 0;
	padding: 10px 16px 16px;
	display: grid;
	gap: 8px;
}

.mnav__list a {
	display: block;
	color: #F3F5F8;
	text-decoration: none;
	font: 500 16px/1.2 system-ui, -apple-system, Segoe UI, Inter, Arial;
	padding: 12px;
	border-radius: 10px;
	background: rgba(255,255,255,0.03);
}

@media (max-width: 960px) {
	.hdr__wrap {
		grid-template-columns: auto 1fr auto;
		gap: 12px;
	}
	.hdr__nav,
	.hdr__actions {
		display: none;
	}
	.hdr__burger,
	.hdr__logo--mobile,
	.hdr__right {
		display: inline-flex;
		align-items: center;
	}
	.hdr__logo {
		display: none;
	}
	.hdr__right {
		gap: 8px;
	}
}

@media (max-width: 960px) {
	.hdr__burger { display: inline-flex; }
}

.hero-slider {
	position: relative;
	overflow: hidden;
	background: #1C1E27;
}

.hs__viewport {
	position: relative;
	max-width: 1300px;
	margin: 0px auto;
	border-radius: 1px;
	overflow: hidden;
}

.hs__track {
	display: flex;
	touch-action: pan-y;
	will-change: transform;
	transition: transform .35s ease;
}

.hs__slide {
	position: relative;
	min-width: 100%;
	height: 420px;
	background-image: var(--bg);
	background-size: cover;
	background-position: center right;
}

.hs__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.45) 100%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.05) 100%);
}

.hs__inner {
	position: relative;
	z-index: 2;
	height: 100%;
	padding: 36px 32px;
	display: flex;
	align-items: center;
}

.hs__left {
  max-width: 560px;
  display: grid;
  gap: 14px;
  justify-items: start;
}

.hs__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  color: #0B1420;
  background: linear-gradient(135deg, #25C4F8, #14E38A);
  font: 700 14px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  width: auto;
  white-space: nowrap;
  justify-self: start;
}

.hs__title {
	display: block;
	font: 800 32px/1.15 system-ui, -apple-system, Segoe UI, Inter, Arial;
	color: #F3F5F8;
	letter-spacing: .2px;
}

.hs__text {
	color: #B8C0CA;
	font: 500 16px/1.55 system-ui, -apple-system, Segoe UI, Inter, Arial;
}

.hs__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 18px;
	border-radius: 12px;
	text-decoration: none;
	color: #0B1420;
	background: linear-gradient(135deg, #25C4F8, #14E38A);
	font: 700 14px/1 system-ui, -apple-system, Segoe UI, Inter, Arial;
}

.hs__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 14px;
	display: flex;
	justify-content: center;
	gap: 10px;
	z-index: 3;
}

.hs__dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: rgba(255,255,255,.45);
	box-shadow: inset 0 0 0 2px rgba(0,0,0,.2);
}

.hs__dot.is-active {
	background: linear-gradient(135deg, #25C4F8, #6C5CF7, #F21FA4);
	box-shadow: 0 0 0 3px rgba(108,92,247,.28);
}

@media (max-width: 1080px) {
	.hs__title { font-size: 28px; }
}

@media (max-width: 820px) {
	.hs__slide { height: 380px; }
	.hs__inner { padding: 24px 16px; }
	.hs__title { font-size: 24px; }
}

@media (max-width: 480px) {
	.hs__slide { height: 340px; }
	.hs__title { font-size: 22px; }
	.hs__btn { height: 42px; padding: 0 16px; }
}

.games {
	max-width: 1300px;
	margin: 24px auto 40px;
	padding: 0 16px;
}

.games__row + .games__row {
	margin-top: 28px;
}

.games__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

.games__title {
	color: #F3F5F8;
	font: 800 22px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.games__more {
	color: #25C4F8;
	text-decoration: none;
	font: 700 14px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.games__carousel {
	position: relative;
}

.games__track {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-snap-type: x mandatory;
	padding: 2px 2px 10px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: #6C5CF7 rgba(255,255,255,0.06);
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}

.games__track::-webkit-scrollbar { height: 8px; }
.games__track::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); border-radius: 999px; }
.games__track::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: linear-gradient(135deg, #25C4F8 0%, #6C5CF7 60%, #F21FA4 100%);
	border: 2px solid #1C1E27;
}

.game {
	position: relative;
	flex: 0 0 150px;
	width: 150px;
	height: 120px;
	border-radius: 14px;
	overflow: hidden;
	background: #222430;
	scroll-snap-align: start;
}

.game img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.game__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	padding-right: 10px;
	opacity: 0;
	transition: opacity .2s ease;
	background: linear-gradient(90deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%);
}

.game:hover .game__overlay,
.game:focus-within .game__overlay {
	opacity: 1;
}

.gbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	padding: 0 12px;
	border-radius: 10px;
	text-decoration: none;
	font: 700 13px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
	white-space: nowrap;
}

.gbtn--play {
	color: #0B1420;
	background: linear-gradient(135deg, #25C4F8, #14E38A);
}

.gbtn--demo {
	color: #F3F5F8;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.18);
}

@media (hover: none), (pointer: coarse) {
  .game {
    display: grid;
    grid-template-rows: 120px auto;
    height: auto;
  }
  .game img {
    grid-row: 1;
  }
  .game__overlay {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 8px 8px;
    opacity: 1;
    background: transparent;
    backdrop-filter: none;
  }
  .gbtn {
    height: 36px;
    padding: 0 12px;
    border-radius: 10px;
    flex: 1 1 0;
  }
}

.jp-cont {
    margin: 16px;
}

.jp {
	background: linear-gradient(90deg, #6C5CF7 0%, #F21FA4 55%, #FF8A3C 100%);
	border-radius: 18px;
	overflow: hidden;
	max-width: 1300px;
	margin: 24px auto 16px;
	padding: 0 16px;
}

.jp__wrap {
	display: grid;
	grid-template-columns: 0.6fr auto auto;
	grid-template-areas: "content timer prize";
	align-items: center;
	gap: 24px;
	min-height: 200px;
}

.jp__content {
	grid-area: content;
	display: grid;
	gap: 12px;
	color: #F3F5F8;
	padding: 8px;
}

.jp__title {
	font: 800 28px/1.15 system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.jp__text {
	max-width: 520px;
	font: 500 14px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Arial;
	color: #E8ECF2;
}

.jp__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 18px;
	border-radius: 12px;
	text-decoration: none;
	color: #0B1420;
	background: linear-gradient(135deg, #25C4F8, #14E38A);
	font: 700 14px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
	width: max-content;
}

.jp__timer {
	grid-area: timer;
	display: grid;
	gap: 8px;
	justify-items: center;
	align-items: center;
	background: rgba(0,0,0,.14);
	border-radius: 14px;
	padding: 12px 14px;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.jp__label {
	color: #F3F5F8;
	font: 700 12px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
	opacity: .95;
}

.jp__clock {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.jp__cell {
	background: rgba(0,0,0,.22);
	padding: 8px 10px;
	border-radius: 10px;
	min-width: 56px;
	text-align: center;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.jp__num {
	display: block;
	font: 800 18px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
	color: #FFFFFF;
}

.jp__unit {
	display: block;
	margin-top: 4px;
	font: 600 10px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
	color: #F3F5F8;
	opacity: .9;
}

.jp__sep {
	font: 800 18px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
	color: #FFFFFF;
	opacity: .9;
}

.jp__prize {
	grid-area: prize;
	display: grid;
	justify-items: end;
	align-items: center;
	color: #FFFFFF;
	text-align: right;
	padding: 8px 12px;
}

.jp__caption {
	font: 800 16px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial;
	text-shadow: 0 2px 10px rgba(0,0,0,.2);
}

.jp__amount {
	font: 900 54px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
	letter-spacing: 1px;
	text-shadow: 0 6px 24px rgba(0,0,0,.25);
}

@media screen and (max-width: 768px) {
	.jp {
		margin: 20px 16px;
		padding: 16px;
		border-radius: 16px;
	}

	.jp__wrap {
		display: block !important;
		text-align: center;
		min-height: 0 !important;
	}

	.jp__content {
		margin: 0 0 14px 0 !important;
		padding: 2px 0 !important;
	}

	.jp__title { font-size: 24px; line-height: 1.2; }
	.jp__text  { font-size: 14px; line-height: 1.55; max-width: 100%; margin: 0 auto; }

	.jp__btn {
		height: 44px;
		padding: 0 16px;
		border-radius: 12px;
		margin: 10px auto 0;
	}

	.jp__prize {
		text-align: center !important;
		margin: 8px 0 14px 0 !important;
        justify-content: center;
		padding: 0 !important;
	}

	.jp__amount { font-size: 40px; letter-spacing: .5px; }

	.jp__timer {
		width: 100%;
		max-width: 520px;
		margin: 0 auto !important;
		padding: 12px;
		border-radius: 16px;
		background: linear-gradient(90deg, rgba(0,0,0,.18), rgba(0,0,0,.08));
		box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
		display: grid;
		justify-items: center;
		gap: 10px;
	}

	.jp__label { font-size: 12px; opacity: .95; }

	.jp__clock {
		display: flex !important;
		justify-content: center !important;
		align-items: stretch;
		gap: 8px;
		width: 100%;
	}

	.jp__cell {
		flex: 1 1 0;
		min-width: 0;
		padding: 10px 8px;
		border-radius: 12px;
		background: rgba(0,0,0,.22);
	}

	.jp__num  { font-size: 18px; }
	.jp__unit { font-size: 10px; margin-top: 2px; }
	.jp__sep  { width: 12px; text-align: center; opacity: .75; }
}

@media screen and (max-width: 360px) {
	.jp { margin: 20px 12px; }
	.jp__amount { font-size: 36px; }
}

.content {
	max-width: 1300px;
	margin: 24px auto;
	padding: 20px;
	background: #222430;
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.35);
	color: #F3F5F8;
}

.content h1 {
	font: 900 32px/1.15 system-ui, -apple-system, Segoe UI, Roboto, Arial;
	letter-spacing: .2px;
	margin: 6px 0 16px;
	background: linear-gradient(135deg, #25C4F8, #6C5CF7, #F21FA4);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.content h2 {
	font: 800 24px/1.25 system-ui, -apple-system, Segoe UI, Roboto, Arial;
	margin: 28px 0 12px;
	color: #F3F5F8;
}

.content h3 {
	font: 800 20px/1.25 system-ui, -apple-system, Segoe UI, Roboto, Arial;
	margin: 24px 0 10px;
	color: #F3F5F8;
}

.content p {
	margin: 12px 0;
	color: #B8C0CA;
	font: 500 16px/1.65 system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.content img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.08);
}

.content ul,
.content ol {
	margin: 12px 0 16px 20px;
	display: grid;
	gap: 8px;
}

.content li {
	color: #E3E7ED;
	font: 600 15px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Arial;
	position: relative;
}

.content ul li {
	list-style: none;
	padding-left: 14px;
}

.content ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(135deg, #25C4F8, #14E38A);
	box-shadow: 0 0 0 3px rgba(37,196,248,0.12);
}

.content ol {
	counter-reset: num;
}

.content ol li {
	list-style: none;
	padding-left: 28px;
}

.content ol li::before {
	counter-increment: num;
	content: counter(num) ".";
	position: absolute;
	left: 0;
	top: 0;
	color: #6C5CF7;
	font-weight: 800;
}

.content div {
	background: rgba(0,0,0,0.14);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px;
	padding: 10px;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scrollbar-width: thin;
	scrollbar-color: #6C5CF7 rgba(255,255,255,0.06);
}

.content div::-webkit-scrollbar {
	height: 8px;
}

.content div::-webkit-scrollbar-track {
	background: rgba(255,255,255,0.06);
	border-radius: 999px;
}

.content div::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #25C4F8, #6C5CF7, #F21FA4);
	border-radius: 999px;
	border: 2px solid #222430;
}

.content table {
	min-width: 760px;
	width: 100%;
	border-collapse: collapse;
}

.content thead th {
	text-align: left;
	font: 800 13px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
	color: #F3F5F8;
	padding: 12px 12px;
	background: rgba(255,255,255,0.06);
}

.content tbody td {
	padding: 12px 12px;
	color: #DDE2E9;
	border-top: 1px solid rgba(255,255,255,0.06);
}

.content tbody tr:hover td {
	background: rgba(255,255,255,0.03);
}

@media (max-width: 768px) {
	.content {
		margin: 20px 16px;
		padding: 16px;
		border-radius: 16px;
	}
	.content h1 { font-size: 26px; }
	.content p { font-size: 15px; }
}

.ft {
	background: rgba(15, 15, 21, .9);
	border-top: 1px solid rgba(255,255,255,0.06);
	color: #F3F5F8;
}

.ft__inner {
	max-width: 1300px;
	margin: 0 auto;
	padding: 28px 16px;
	display: grid;
	grid-template-columns: 1.2fr 2fr;
	gap: 32px;
}

.ft__brand {
	display: grid;
	gap: 12px;
}

.ft__brand img {
    width: 100px;
    height: auto;
}

.ft__brand p {
	color: #B8C0CA;
	font: 500 14px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Arial;
	max-width: 520px;
}

.ft__social {
	display: flex;
	gap: 10px;
}

.ft__social a {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	color: #F3F5F8;
	background: linear-gradient(135deg, #6C5CF7, #F21FA4);
	box-shadow: 0 4px 14px rgba(0,0,0,.25);
	text-decoration: none;
}

.ft__nav {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 32px;
}

.ft__col {
	display: grid;
	gap: 10px;
}

.ft__title {
	font: 800 14px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
	letter-spacing: .3px;
	color: #F3F5F8;
}

.ft__col ul {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ft__col ul li a {
	text-decoration: none;
	color: #B8C0CA;
	font: 600 14px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.ft__col ul li a:hover {
	color: #F3F5F8;
}

.ft__bar {
	border-top: 1px solid rgba(255,255,255,0.06);
}

.ft__bar {
	max-width: 1300px;
	margin: 0 auto;
	padding: 14px 16px 22px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	align-items: center;
}

.ft__copy {
	color: #B8C0CA;
	font: 500 13px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.ft__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 16px;
}

.ft__links li a {
	text-decoration: none;
	color: #B8C0CA;
	font: 600 13px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.ft__links li a:hover {
	color: #F3F5F8;
}

@media (max-width: 992px) {
	.ft__inner {
		grid-template-columns: 1fr;
        text-align: center;
	}
	.ft__nav {
		grid-template-columns: repeat(2, 1fr);
	}

    .ft__social {
        justify-content: center;
    }

    .ft__brand img {
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
	.ft__nav {
		grid-template-columns: 1fr;
	}
	.ft__bar {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}
	.ft__copy { order: 2; }
	.ft__links { order: 1; }
}

.scrollup {
	position: fixed;
	right: 16px;
	bottom: 16px;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 999px;
	color: #0B1420;
	background: linear-gradient(135deg, #25C4F8, #6C5CF7, #F21FA4);
	box-shadow: 0 10px 24px rgba(0,0,0,.35);
	display: grid;
	place-items: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px) scale(.96);
	transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
	z-index: 50;
}
.scrollup.is-show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}
.scrollup:active {
	transform: translateY(1px) scale(.98);
}
@media (max-width: 480px) {
	.scrollup { right: 12px; bottom: 12px; width: 44px; height: 44px; }
}
