*, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after {display: table;  content: ''; }
.clearfix:after { clear: both; }

html, body {
	height: 100%;
	overflow: hidden;
}

body {
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: #fff;
	background: #0c0c0e;
	background-image: radial-gradient(ellipse 120% 80% at 50% 40%, rgba(28, 28, 32, 0.6) 0%, transparent 55%),
	                  radial-gradient(ellipse 80% 50% at 50% 100%, rgba(20, 20, 24, 0.9) 0%, transparent 50%);
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	outline: none;
	color: #aaa;
	text-decoration: none;
}

a:hover, a:focus {
	color: #fff;
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

/* Header */
.header {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	padding: 0.9em 1.5em;
	background: rgba(8, 8, 10, 0.72);
	backdrop-filter: blur(16px) saturate(1.1);
	-webkit-backdrop-filter: blur(16px) saturate(1.1);
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	font-size: 0.85em;
}

.header__center {
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	pointer-events: none;
}

.header__title {
	font-size: 1.1em;
	margin: 0;
	padding: 0;
	color: rgba(255, 255, 255, 0.38);
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.note {
	font-weight: bold;
	margin: 0 0 0 auto;
	display: none;
	padding: 0 0.5em;
	color: #de6363;
}

.no-preserve3d .note--support {
	display: block;
}