@import url('https://fonts.googleapis.com/css?family=Poppins:400,400i,500,600,700|Roboto:400,700&display=swap');
* {
	padding: 0;
	margin: 0;
	text-decoration: none;
	list-style: none;
	border: none;
	font-family: 'Roboto', 'Poppins', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
html {
	height: 100vh;
	width: 100vw;
}
body {
	height: 100%;
	width: 100%;
	overflow-x: hidden;
	background: #111214;
}


button::-moz-focus-inner {
  border: 0;
}


.root {
    height: 100%;
    width: 100%;
}
.wrapper-notification {
    position: relative;
}
.wrapper-notification > .notification {
    position: absolute;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-transform: translate(100%, calc(50% - 8.5px));
        -ms-transform: translate(100%, calc(50% - 8.5px));
            transform: translate(100%, calc(50% - 8.5px));
    font-size: 12px;
	top: 0;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 16px;
    border-radius: 10px;
    background-color: #d63031;
    color: #fff;
	right: -20px;
	opacity: 1;
	-webkit-animation-name: notification;
	        animation-name: notification;
	-webkit-animation-duration: .25s;
	        animation-duration: .25s;
}
@-webkit-keyframes notification {
	0% {
		right: 0;
		opacity: 0;
	}
	100% {
		right: -20px;
		opacity: 1;
	}
}
@keyframes notification {
	0% {
		right: 0;
		opacity: 0;
	}
	100% {
		right: -20px;
		opacity: 1;
	}
}

.wrapper-notification > .notification svg {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -8px;
}

.top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    height: 75px;
	background-color: rgba(32, 34, 37, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	z-index: 2;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 4px 16px rgba(0, 0, 0, 0.3);
	position: relative;
	align-items: center;
	margin-left: 565px;
}
.top .top-quotes {
    position: absolute;
    left: 40px;
    display: flex;
    align-items: center;
}
.top .top-quotes p {
    margin-left: 10px;
    font-size: 14px;
    color: #fff;
    opacity: .8;
}
.top .top-register {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 0;
	height: 100%;
	right: 0;
}
.top .top-register button {
	position: relative;
	height: 100%;
	padding: 0 75px;
	display: block;
	margin-left: 35px;
	font-size: 14px;
	color: #000;
	text-transform: uppercase;
	font-weight: bold;
	cursor: pointer;
	background: -o-linear-gradient(bottom, #D7AD04 0%, rgba(255,221,0,1) 40%, rgba(255,224,0,1) 100%);
	background: -webkit-gradient(linear, left bottom, left top, from(#D7AD04), color-stop(40%, rgba(255,221,0,1)), to(rgba(255,224,0,1)));
	background: linear-gradient(0deg, #D7AD04 0%, rgba(255,221,0,1) 40%, rgba(255,224,0,1) 100%);
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
	-webkit-animation-name: arrow;
	        animation-name: arrow;
	-webkit-animation-duration: 3s;
	        animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
	overflow: hidden;
}
.top .top-register button:focus {
	outline: none;
}
.top .top-register button:hover > svg {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    left: 100%;
    -webkit-transition: 1.5s;
    -o-transition: 1.5s;
    transition: 1.5s;
}
.top .top-register button svg {
    fill: #fff;
    height: 75px;
    width: 100px;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    position: absolute;
    opacity: .45;
    -webkit-transition: 1.5s;
    -o-transition: 1.5s;
    transition: 1.5s;
}
@-webkit-keyframes arrow {
	0% {
		margin-left: 35px;
	}
	50% {
		margin-left: 75px;
	}
	100% {
		margin-left: 35px;
	}
}
@keyframes arrow {
	0% {
		margin-left: 35px;
	}
	50% {
		margin-left: 75px;
	}
	100% {
		margin-left: 35px;
	}
}
main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
    height: calc(100% - 150px);
	min-height: 787px;
    margin: 0 175px;
}
main .banner {
	display: block;
	position: absolute;
    top: -75px;
    left: 0;
	width: 260px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
	background-color: rgba(32, 34, 37, 0.92);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	padding: 50px 65px;
	z-index: 3;
	border-radius: 0 0 20px 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    -webkit-transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
    -o-transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}
main .banner.register {
    height: auto;
	display: block;
    -webkit-transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
    -o-transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}
main .banner#registerForm {
	display: none;
}
main .banner.off {
    top: calc(-100% - 130px);
    opacity: 0;
    -webkit-transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
    -o-transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}
main .banner.on {
    top: -75px;
    opacity: 1;
    -webkit-transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
    -o-transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}
main .banner h2 {
	color: #fff;
	font-size: 14px;
	font-family: 'Poppins';
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 25px;
	pointer-events: none;
}
main .banner .banner-top {
	margin-bottom: 50px;
}
main .banner .banner-top a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-bottom: 10px;
}
main .banner .banner-top a h1 {
	margin-left: 10px;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
}
main .banner .banner-top .userCount {
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	opacity: .45;
	pointer-events: none;
}
main .banner .banner-form label {
	font-size: 12px;
	text-transform: uppercase;
	color: #fff;
	font-weight: bold;
	opacity: .45;
	display: block;
	pointer-events: none;
	margin-bottom: 10px;
}
main .banner .banner-form input:not([type="submit"]):not([type="button"]) {
	background-color: rgba(48, 51, 57, 0.8) !important;
	border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
	width: calc(100% - 72px);
	padding: 20px 20px 20px 50px;
	margin-bottom: 20px;
	color: #fff;
	font-size: 14px;
	font-weight: normal;
	font-family: 'Roboto';
	margin-bottom: 20px;
	-webkit-transition: .25s ease;
	-o-transition: .25s ease;
	transition: .25s ease;
}
main .banner .banner-form input:not([type="submit"]):not([type="button"]):hover {
	border: 1px solid rgba(253, 202, 0, 0.4);
	background-color: rgba(48, 51, 57, 1) !important;
}
main .banner .banner-form input:not([type="submit"]):not([type="button"]):focus {
	border: 1px solid #FDCA00;
	outline: none;
	box-shadow: 0 0 0 3px rgba(253, 202, 0, 0.15);
	background-color: rgba(48, 51, 57, 1) !important;
}
main .banner .banner-form input.username {
	background: no-repeat url(../img/icons/head.png) 18px center;
}
main .banner .banner-form input.password {
	background: no-repeat url(../img/icons/lock.png) 18px center;
}
main .banner .banner-form input.email {
	background: no-repeat url(../img/icons/mail.png) 18px center;
    margin-bottom: 50px;
}
.disabled {
	opacity: .2;
	pointer-events: none;
}
main .banner .banner-form .spanLink {
	width: 100%;
	display: block;
	text-align: right;
	margin-bottom: 50px;
}
main .banner .banner-form .spanLink.register {
	margin-top: 15px;
	margin-bottom: 0;
	display: none;
	text-align: center;
}
main .banner .banner-form .spanLink a {
	color: #fff;
	opacity: .25;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: bold;
}
main .banner .banner-form .spanLink a:hover {
	color: #FDCA00;
	opacity: 1;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
main .banner .banner-form button:not(.btn-back), main .banner .banner-form input[type="submit"], main .banner .banner-form input[type="button"] {
	width: 100%;
	padding: 25px 0;
	font-size: 14px;
	color: #000;
	text-transform: uppercase;
	font-weight: bold;
	border-radius: 12px;
	cursor: pointer;
	background: linear-gradient(0deg, #D7AD04 0%, rgba(255,221,0,1) 40%, rgba(255,224,0,1) 100%);
	opacity: .6;
	-webkit-transition: .25s ease;
	-o-transition: .25s ease;
	transition: .25s ease;
}
main .banner .banner-form button:not(.btn-back):hover, main .banner .banner-form input[type="submit"]:hover, main .banner .banner-form input[type="button"]:hover {
	opacity: 1;
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(253, 202, 0, 0.3);
	-webkit-transition: .25s ease;
	-o-transition: .25s ease;
	transition: .25s ease;
}
main .banner .banner-form button:not(.btn-back):active, main .banner .banner-form input[type="submit"]:active, main .banner .banner-form input[type="button"]:active {
	transform: translateY(0);
	box-shadow: none;
}
main .banner .banner-form button:not(.btn-back):focus, main .banner .banner-form input[type="submit"]:focus, main .banner .banner-form input[type="button"]:focus {
	outline: none;
}
/* Photo Marquee - Vertical scrolling columns */
.photo-marquee {
	position: absolute;
	right: 0;
	top: 0;
	width: 62%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
	padding: 0 5px 0 50px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.photo-marquee::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 40%;
	z-index: 3;
	pointer-events: none;
	background: -webkit-gradient(linear, left top, left bottom, from(#111214), color-stop(70%, rgba(17, 18, 20, 0.6)), to(transparent));
	background: -o-linear-gradient(top, #111214 0%, rgba(17, 18, 20, 0.6) 70%, transparent 100%);
	background: linear-gradient(to bottom, #111214 0%, rgba(17, 18, 20, 0.6) 70%, transparent 100%);
}
.photo-marquee::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 40%;
	z-index: 3;
	pointer-events: none;
	background: -webkit-gradient(linear, left bottom, left top, from(#111214), color-stop(70%, rgba(17, 18, 20, 0.6)), to(transparent));
	background: -o-linear-gradient(bottom, #111214 0%, rgba(17, 18, 20, 0.6) 70%, transparent 100%);
	background: linear-gradient(to top, #111214 0%, rgba(17, 18, 20, 0.6) 70%, transparent 100%);
}
.photo-marquee-fade-left {
	display: none;
}
.photo-marquee-col {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	min-width: 0;
	overflow: hidden;
}
.photo-marquee-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 12px;
	will-change: transform;
}
.photo-marquee-track.scroll-up {
	-webkit-animation: marquee-up linear infinite;
	        animation: marquee-up linear infinite;
}
.photo-marquee-track.scroll-down {
	-webkit-animation: marquee-down linear infinite;
	        animation: marquee-down linear infinite;
}
@-webkit-keyframes marquee-up {
	0% { -webkit-transform: translateY(0); transform: translateY(0); }
	100% { -webkit-transform: translateY(-50%); transform: translateY(-50%); }
}
@keyframes marquee-up {
	0% { -webkit-transform: translateY(0); transform: translateY(0); }
	100% { -webkit-transform: translateY(-50%); transform: translateY(-50%); }
}
@-webkit-keyframes marquee-down {
	0% { -webkit-transform: translateY(-50%); transform: translateY(-50%); }
	100% { -webkit-transform: translateY(0); transform: translateY(0); }
}
@keyframes marquee-down {
	0% { -webkit-transform: translateY(-50%); transform: translateY(-50%); }
	100% { -webkit-transform: translateY(0); transform: translateY(0); }
}
.photo-marquee-item {
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.photo-marquee-item::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 60%;
	pointer-events: none;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,0.7)), color-stop(50%, rgba(0,0,0,0.25)), to(transparent));
	background: -o-linear-gradient(bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
	background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
	border-radius: 0 0 14px 14px;
}
.photo-marquee-item > img {
	width: 100%;
	height: auto;
	display: block;
}
.photo-marquee-author {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 10px 12px;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,0.75)), color-stop(60%, rgba(0,0,0,0.35)), to(transparent));
	background: -o-linear-gradient(bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
	background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
}
.photo-marquee-author img {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	margin-right: 8px;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center center;
	   object-position: center center;
	border: 2px solid rgba(255, 255, 255, 0.6);
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
	        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.photo-marquee-author span {
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
	letter-spacing: 0.2px;
}

.footer-wrapper {
	height: 75px;
    width: 100%;
    position: relative;
}
footer {
    width: 100%;
    height: 75px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(32, 34, 37, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
	box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.04), 0 -4px 16px rgba(0, 0, 0, 0.2);
	z-index: 2;
}
footer .footer-wrapper {
    margin: 0 175px;
	height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
footer .footer-links ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
footer .footer-links ul li {
	margin-right: 40px;
	position: relative;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: bold;
}
footer .footer-links ul li a {
	color: rgba(255, 255, 255, .45);
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 5px;
}
footer .footer-links ul li a .footer-icon {
	width: 14px;
	height: 14px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
footer .footer-links ul li a:hover {
	color: #FDDE00;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
footer .footer-links ul li:first-child {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
footer .footer-links ul li:first-child img {
	margin-right: 10px;
}
footer .footer-links ul li::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translate(20px, -50%);
	    -ms-transform: translate(20px, -50%);
	        transform: translate(20px, -50%);
	height: 3px;
	width: 3px;
	border-radius: 50%;
	background-color: #fff;
}
footer .footer-links ul li:last-child::after {
	display: none;
}

footer .footer-wrapper .footer-social {
    margin-right: 350px;
}

footer .footer-social a {
	opacity: .45;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
footer .footer-social a svg path {
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
footer .footer-social a:hover {
	opacity: 1;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
footer .footer-social a:hover svg path {
	fill: #FDDE00;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}

.trapeze {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}
img.background {
    position: fixed;
    left: -400px;
    bottom: -160px;
    z-index: 1;
    pointer-events: none;
}

/* Hide reCAPTCHA v3 floating badge globally (register uses v2 widget which is unaffected) */
.grecaptcha-badge {
	visibility: hidden !important;
}

@media (max-width: 1620px) {
	.top .top-quotes {
        display: none;
	}
}
@media (max-width: 1450px) {
	.photo-marquee {
		width: 62%;
	}
}
@media (max-width: 1300px) {
	.top {
		margin-left: 515px;
	}
	main {
		margin: 0 125px;
	}
	footer .footer-wrapper .footer-social {
        margin-right: 250px;
    }
	footer .footer-wrapper {
		margin: 0 125px;
	}
	.photo-marquee-col:nth-child(4) {
		display: none;
	}
}
@media (max-width: 1200px) {
	.trapeze {
		left: -50px;
	}
	img.background {
	    left: -450px;
	}
}
@media (max-width: 1170px) {
	.top {
		margin-left: 490px;
	}
	main {
		margin: 0 100px;
	}
	footer .footer-wrapper .footer-social {
        margin-right: 200px;
    }
	footer .footer-wrapper {
		margin: 0 100px;
	}
	.trapeze {
		left: -100px;
	}
	img.background {
	    left: -500px;
	}
}
@media (max-width: 1110px) {
	.top {
		margin-left: 465px;
	}
	main {
		margin: 0 75px;
	}
	footer .footer-wrapper .footer-social {
        margin-right: 150px;
    }
	footer .footer-wrapper {
		margin: 0 75px;
	}
	.trapeze {
		left: -150px;
	}
	img.background {
	    left: -550px;
	}
}
@media (max-width: 1060px) {
	.top {
		margin-left: 440px;
	}
	main {
		margin: 0 50px;
	}
	footer .footer-wrapper .footer-social {
        margin-right: 100px;
    }
	footer .footer-wrapper {
		margin: 0 50px;
	}
	.trapeze {
		left: -200px;
	}
	img.background {
	    left: -600px;
	}
}
@media (max-width: 1000px) {
	.photo-marquee {
		width: 62%;
		padding: 0 5px 0 30px;
	}
	.photo-marquee-col:nth-child(4) {
		display: none;
	}
	.trapeze {
		left: -250px;
	}
	img.background {
	    left: -650px;
	}
}
@media (max-width: 950px) {
	.top-register img {
		display: none;
	}
	.top-register button {
		display: none !important;
	}
	main .banner .banner-form .spanLink.register {
		display: block;
	}
	footer {
		padding: 20px 0;
		height: -webkit-max-content;
		height: -moz-max-content;
		height: max-content;
		position: relative;
	}
	footer .footer-wrapper .footer-links ul {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
	footer .footer-wrapper .footer-links ul li {
		margin-bottom: 10px;
		width: 100%;
	}
	footer .footer-wrapper .footer-links ul li::after {
		display: none;
	}
}

@media (max-width: 825px) {
	.top {
		display: none;
	}

	html, body {
		overflow-x: hidden;
		max-width: 100vw;
	}

	body {
		background: #0d0e10;
	}

	/* Flex layout to pin footer to bottom */
	.root {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		min-height: 100vh;
		min-height: 100dvh;
	}

	main {
		-webkit-box-flex: 1;
		    -ms-flex: 1;
		        flex: 1;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		height: auto;
		min-height: 0;
		margin: 0;
		padding: 32px 20px;
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
		overflow: hidden;
	}

	/* Photo marquee - visible background with elegant overlay */
	.photo-marquee {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		-webkit-transform: none;
		    -ms-transform: none;
		        transform: none;
		opacity: 0.2;
		z-index: 0;
		gap: 6px;
	}
	.photo-marquee::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 2;
		pointer-events: none;
		background: radial-gradient(ellipse at center, transparent 0%, rgba(13, 14, 16, 0.6) 70%, rgba(13, 14, 16, 0.95) 100%);
	}
	.photo-marquee::after {
		height: 50%;
		background: -webkit-gradient(linear, left bottom, left top, from(#0d0e10), color-stop(60%, rgba(13, 14, 16, 0.8)), to(transparent));
		background: -o-linear-gradient(bottom, #0d0e10 0%, rgba(13, 14, 16, 0.8) 60%, transparent 100%);
		background: linear-gradient(to top, #0d0e10 0%, rgba(13, 14, 16, 0.8) 60%, transparent 100%);
	}
	.photo-marquee-fade-left {
		display: none;
	}
	.photo-marquee-author {
		display: none;
	}
	.photo-marquee-item {
		border-radius: 10px;
	}

	/* Banner card - premium glass morphism */
	main .banner {
		position: relative;
		top: 0 !important;
		left: auto;
		width: 100% !important;
		max-width: 400px;
		padding: 36px 30px !important;
		border-radius: 24px !important;
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
		-webkit-box-shadow:
			0 0 0 1px rgba(255, 255, 255, 0.08) inset,
			0 0 0 1px rgba(0, 0, 0, 0.3),
			0 12px 40px rgba(0, 0, 0, 0.6),
			0 2px 8px rgba(0, 0, 0, 0.4);
		        box-shadow:
			0 0 0 1px rgba(255, 255, 255, 0.08) inset,
			0 0 0 1px rgba(0, 0, 0, 0.3),
			0 12px 40px rgba(0, 0, 0, 0.6),
			0 2px 8px rgba(0, 0, 0, 0.4);
		z-index: 4;
		-webkit-backdrop-filter: blur(32px) saturate(180%);
		        backdrop-filter: blur(32px) saturate(180%);
		background: -webkit-gradient(linear, left top, left bottom, from(rgba(38, 40, 44, 0.95)), to(rgba(28, 30, 33, 0.97)));
		background: -o-linear-gradient(top, rgba(38, 40, 44, 0.95), rgba(28, 30, 33, 0.97));
		background: linear-gradient(180deg, rgba(38, 40, 44, 0.95), rgba(28, 30, 33, 0.97));
		-webkit-animation: mobileCardIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
		        animation: mobileCardIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
	}
	main .banner.on {
		top: 0 !important;
		opacity: 1 !important;
	}
	main .banner.off {
		top: 0 !important;
		opacity: 0 !important;
		-webkit-transform: translateY(20px) scale(0.97);
		    -ms-transform: translateY(20px) scale(0.97);
		        transform: translateY(20px) scale(0.97);
	}

	@-webkit-keyframes mobileCardIn {
		from {
			opacity: 0;
			-webkit-transform: translateY(24px) scale(0.96);
			        transform: translateY(24px) scale(0.96);
		}
		to {
			opacity: 1;
			-webkit-transform: translateY(0) scale(1);
			        transform: translateY(0) scale(1);
		}
	}
	@keyframes mobileCardIn {
		from {
			opacity: 0;
			-webkit-transform: translateY(24px) scale(0.96);
			        transform: translateY(24px) scale(0.96);
		}
		to {
			opacity: 1;
			-webkit-transform: translateY(0) scale(1);
			        transform: translateY(0) scale(1);
		}
	}

	/* Logo & brand area */
	main .banner .banner-top {
		margin-bottom: 28px;
	}
	main .banner .banner-top a {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	main .banner .banner-top a img {
		width: 32px;
		height: 32px;
		image-rendering: -webkit-optimize-contrast;
		image-rendering: pixelated;
	}
	main .banner .banner-top a h1 {
		font-size: 16px;
		letter-spacing: 0.5px;
	}
	main .banner .banner-top .userCount {
		display: none;
	}

	/* Section title */
	main .banner h2 {
		margin-bottom: 20px;
		text-align: center;
		font-size: 13px;
		letter-spacing: 1px;
		opacity: 0.7;
	}

	/* Form inputs */
	main .banner .banner-form label {
		font-size: 11px;
		margin-bottom: 8px;
		opacity: 0.35;
	}
	main .banner .banner-form input:not([type="submit"]):not([type="button"]) {
		padding: 16px 16px 16px 46px;
		margin-bottom: 14px;
		width: calc(100% - 64px);
		border-radius: 14px;
		font-size: 14px;
		background-color: rgba(255, 255, 255, 0.04) !important;
		border: 1px solid rgba(255, 255, 255, 0.08);
	}
	main .banner .banner-form input:not([type="submit"]):not([type="button"]):focus {
		background-color: rgba(255, 255, 255, 0.06) !important;
		border: 1px solid rgba(253, 202, 0, 0.6);
		-webkit-box-shadow: 0 0 0 4px rgba(253, 202, 0, 0.1);
		        box-shadow: 0 0 0 4px rgba(253, 202, 0, 0.1);
	}

	/* Recaptcha widget in register - center it */
	#recaptcha-element {
		margin-left: 0 !important;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}

	/* Buttons */
	main .banner .banner-form .spanLink {
		margin-bottom: 24px;
		text-align: center;
	}
	main .banner .banner-form .spanLink a {
		font-size: 11px;
		opacity: 0.3;
	}
	main .banner .banner-form button:not(.btn-back),
	main .banner .banner-form input[type="submit"],
	main .banner .banner-form input[type="button"] {
		padding: 18px 0;
		opacity: 1;
		border-radius: 14px;
		font-size: 14px;
		letter-spacing: 0.3px;
	}
	main .banner .banner-form .spanLink.register {
		padding: 20px 0 4px;
		margin: 0;
	}
	main .banner .banner-form .spanLink.register a {
		opacity: 0.4;
		font-size: 12px;
	}
	main .banner .banner-form input.email {
		margin-bottom: 20px;
	}

	/* Register steps */
	main .banner .reg-steps {
		margin-bottom: 24px;
	}
	main .banner .reg-step-dot {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}
	main .banner .reg-step-line {
		width: 24px;
	}
	main .banner .reg-step-title {
		font-size: 11px;
		margin-bottom: 14px;
	}
	main .banner .reg-hint {
		font-size: 11px;
	}
	main .banner .banner-form .reg-nav .btn-back {
		padding: 18px 0;
		border-radius: 14px;
		font-size: 14px;
	}

	/* Hide background decorations */
	img.background {
		display: none;
	}
	.trapeze {
		display: none;
	}

	/* Footer pinned to bottom */
	> .footer-wrapper {
		-ms-flex-negative: 0;
		    flex-shrink: 0;
		height: auto;
	}
	footer {
		padding: 0;
		height: auto;
		min-height: 52px;
		position: relative;
		background-color: rgba(20, 22, 25, 0.98) !important;
		-webkit-box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.04);
		        box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.04);
	}
	footer .footer-wrapper {
		margin: 0 20px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		padding: 14px 0;
		gap: 0;
	}
	footer .footer-links ul {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		gap: 0;
	}
	footer .footer-links ul li {
		width: auto !important;
		margin-bottom: 0 !important;
		margin-right: 16px;
		font-size: 10px;
	}
	footer .footer-links ul li a {
		color: rgba(255, 255, 255, 0.3);
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		gap: 4px;
	}
	footer .footer-links ul li a .footer-icon {
		width: 12px;
		height: 12px;
		opacity: 0.5;
		-ms-flex-negative: 0;
		    flex-shrink: 0;
	}
	footer .footer-links ul li::after {
		display: block !important;
		-webkit-transform: translate(8px, -50%) !important;
		    -ms-transform: translate(8px, -50%) !important;
		        transform: translate(8px, -50%) !important;
		width: 2px;
		height: 2px;
		opacity: 0.3;
	}
	footer .footer-links ul li:first-child img {
		display: none;
	}
	footer .footer-wrapper .footer-social {
		display: none;
	}
}

/* Small phones */
@media (max-width: 400px) {
	main {
		padding: 20px 14px;
	}
	main .banner {
		padding: 28px 22px !important;
		border-radius: 20px !important;
		max-width: 100%;
	}
	main .banner .banner-top a h1 {
		font-size: 15px;
	}
	main .banner h2 {
		font-size: 12px;
	}
	main .banner .banner-form input:not([type="submit"]):not([type="button"]) {
		padding: 14px 14px 14px 42px;
		font-size: 13px;
	}
	main .banner .banner-form button:not(.btn-back),
	main .banner .banner-form input[type="submit"],
	main .banner .banner-form input[type="button"] {
		padding: 16px 0;
		font-size: 13px;
	}
	main .banner .banner-form .reg-nav .btn-back {
		padding: 16px 0;
		font-size: 13px;
	}
	footer .footer-links ul li {
		margin-right: 12px !important;
		font-size: 9px !important;
	}
}

/* Mobile: Notifications unter dem Input anzeigen statt rechts daneben */
@media (max-width: 825px) {
	.wrapper-notification > .notification {
		position: relative !important;
		-webkit-transform: none !important;
		    -ms-transform: none !important;
		        transform: none !important;
		right: auto !important;
		top: auto !important;
		margin-top: -10px;
		margin-bottom: 14px;
		display: block;
		width: 100%;
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
		font-size: 11px;
		padding: 10px 14px;
		border-radius: 10px;
		-webkit-animation: none;
		        animation: none;
	}
	.wrapper-notification > .notification svg {
		display: none;
	}
}
