:root
{
	--font-heading: 'Outfit', 'Segoe UI', sans-serif;
	--font-body: 'DM Sans', 'Segoe UI', sans-serif;
	
	--bg_color: #0a0a0f;
	--bg_color_solid: rgba(26, 10, 46, 0.95);
	--bar_color: #0a0a0f;
	--bar_color_solid: #0a0a0f;
	--loader_color: #6366f1;
	--shadow_color: rgba(0, 0, 0, 0.5);
	--button_color: #6366f1;
	--button_shadow_color: rgba(99, 102, 241, 0.4);
	--bg_anwers: rgba(0, 0, 0, 0.75);

	--text_color_1: rgba(226, 232, 240, 1);
	--text_color_2: rgba(148, 163, 184, 1);

	--border_color: rgba(99, 102, 241, 0.3);
	--outline_color: rgba(99, 102, 241, 0.5);
	--join_alpha_color: rgba(99, 102, 241, 0.08);
	
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	
	--container-max: 1200px;
	--section-padding: 80px 24px;
	--section-gap: 64px;
}

@media (max-width: 768px) {
	:root {
		--section-padding: 48px 20px;
	}
}

*, *:before, *:after
{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

a
{
	outline: none;
	text-decoration: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

html
{
	scroll-behavior: smooth;
}

::selection
{
	background: rgba(148, 163, 184, 0.25);
	color: white;
}

::-moz-selection
{
	background: rgba(148, 163, 184, 0.25);
	color: white;
}

html, body
{
	width: 100%;
	min-height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	color: white;
	background: var(--bg_color);
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
	font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6, p, a, span
{
	opacity: 1 !important;
	visibility: visible !important;
}

.loader
{
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	background: var(--bg_color);
	z-index: 3;
}

.loader .inner
{
	width: 80px;
	height: 80px;
	position: relative;
	background: linear-gradient(45deg, transparent, transparent, var(--loader_color));
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-animation: loader 1s linear infinite;
	-moz-animation: loader 1s linear infinite;
	-ms-animation: loader 1s linear infinite;
	-o-animation: loader 1s linear infinite;
	animation: loader 1s linear infinite;
}

.loader .inner:before
{
	top: 3px;
	left: 3px;
	right: 3px;
	bottom: 3px;
	content: '';
	position: absolute;
	border-radius: 50%;
	background: var(--bg_color);
	z-index: 1000;
}

.loader .inner:after
{
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	content: '';
	position: absolute;
	filter: blur(32px);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	background: linear-gradient(45deg, transparent, transparent, var(--loader_color));
	z-index: 1;
}

.navbar
{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	padding: 0 24px;
	min-height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(10, 10, 15, 0.4);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled
{
	background: rgba(10, 10, 15, 0.92);
	border-bottom: 1px solid rgba(255,255,255,0.04);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.navbar-cont
{
	width: 100%;
	max-width: var(--container-max);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar-logo
{
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: var(--transition);
}

.navbar-logo:hover .logo
{
	opacity: 0.9;
	transform: scale(1.02);
}

.navbar .logo
{
	width: 64px;
	height: 40px;
	background: url(../images/dr6vYH45KAvX.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: var(--transition);
}

.navbar-toggle
{
	display: none;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	transition: var(--transition);
}

.navbar-toggle:hover .navbar-toggle-bar
{
	background: white;
}

.navbar-toggle-bar
{
	width: 18px;
	height: 1.5px;
	background: rgba(255,255,255,0.9);
	border-radius: 1px;
	transition: var(--transition);
}

.navbar.menu-open .navbar-toggle-bar:nth-child(1)
{
	transform: translateY(6.5px) rotate(45deg);
}

.navbar.menu-open .navbar-toggle-bar:nth-child(2)
{
	opacity: 0;
}

.navbar.menu-open .navbar-toggle-bar:nth-child(3)
{
	transform: translateY(-6.5px) rotate(-45deg);
}

.navbar-menu
{
	display: flex;
	align-items: center;
	gap: 8px 32px;
}

.navbar-link
{
	color: rgba(255,255,255,0.9);
	font-size: 0.9rem;
	font-family: var(--font-body);
	font-weight: 500;
	text-decoration: none;
	transition: var(--transition);
	padding: 8px 0;
	position: relative;
}

.navbar-link::after
{
	content: '';
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 0;
	height: 1.5px;
	background: white;
	transition: width 0.25s ease;
}

.navbar-link:hover
{
	color: white;
}

.navbar-link:hover::after
{
	width: 100%;
}

.navbar-cta
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	background: white;
	color: #0a0a0f;
	font-size: 0.9rem;
	font-weight: 600;
	font-family: var(--font-body);
	text-decoration: none;
	border-radius: 8px;
	transition: var(--transition);
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.navbar-cta:hover
{
	background: rgba(255,255,255,0.95);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255,255,255,0.25);
}

.navbar-cta:active
{
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.navbar-toggle:active .navbar-toggle-bar
{
	opacity: 0.8;
}

.navbar-menu a
{
	display: inline-flex;
	align-items: center;
}

.navbar-actions
{
	display: flex;
	align-items: center;
	gap: 12px;
}

.lang-switch
{
	display: inline-flex;
	align-items: center;
	padding: 4px;
	background: rgba(0,0,0,0.25);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 9999px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 1px 2px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.03);
}

.lang-switch-btn
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 26px;
	padding: 0 11px;
	border: none;
	background: transparent;
	color: rgba(255,255,255,0.45);
	font-size: 0.7rem;
	font-weight: 500;
	font-family: var(--font-body);
	letter-spacing: 0.03em;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: 9999px;
	transition: color 0.15s ease, background 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
}

.lang-switch-btn:hover:not(.active)
{
	color: rgba(255,255,255,0.75);
}

.lang-switch-btn.active
{
	background: rgba(255,255,255,0.95);
	color: #0a0a0f;
	box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

body.menu-open
{
	overflow: hidden;
}

.navbar-overlay
{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	z-index: 99;
	backdrop-filter: blur(2px);
}

body.menu-open .navbar-overlay
{
	display: block;
}

.header
{
	width: 100%;
	min-height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header .bg_cont
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.header .bg_cont .background
{
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 1;
}

.header .bg_cont .background.two
{
	display: none;
}

.header .bg_cont .background.one
{
	background: linear-gradient(180deg, rgba(10, 10, 15, 0.7) 0%, var(--bg_color) 70%), url(../images/6fY2tnMRUxs6.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.header .bg_cont .background.two
{
	background: linear-gradient(180deg, rgba(10, 10, 15, 0.7) 0%, var(--bg_color) 70%), url(../images/PgXHKU20YCR7.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.header .cont
{
	width: 100%;
	max-width: var(--container-max);
	position: relative;
	z-index: 2;
	left: 0;
	transform: none;
	padding: 0 24px;
	margin: 0 auto;
}

.header .cont .overlay
{
	width: 100%;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	padding: 100px 0 60px;
}

.header h1
{
	color: white;
	font-size: clamp(2.5rem, 8vw, 6rem);
	font-weight: 800;
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-shadow: 0 4px 24px rgba(0,0,0,0.3);
	line-height: 1.1;
}

.header h2
{
	color: var(--text_color_2);
	font-size: clamp(1rem, 2.5vw, 1.5rem);
	font-weight: 400;
	font-family: var(--font-body);
	text-transform: uppercase;
	letter-spacing: 0.3em;
	margin-top: 12px;
}

.scroll-arrow
{
	position: absolute;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: transform 0.2s, color 0.2s;
	animation: arrow-bounce 2s ease-in-out infinite;
	z-index: 3;
}
.scroll-arrow svg
{
	width: 100%;
	height: 100%;
}
@keyframes arrow-bounce
{
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(5px); }
}
.scroll-arrow:hover
{
	color: white;
	animation: none;
	transform: translateX(-50%) translateY(0);
}
.scroll-arrow:active,
.scroll-arrow.is-clicking
{
	animation: none;
	transform: translateX(-50%) scale(0.7);
	transition: transform 0.1s;
}

.header a:not(.scroll-arrow)
{
	margin-top: 10px;
	color: transparent;
}

.header .discord
{
	width: 62px;
	height: 62px;
	background-image: url(../images/ftGj7mmbz3VA.png);
	background-position: left;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.header .discord:hover
{
	background-position: right;
}

.about
{
	width: 100%;
	padding: var(--section-padding);
	background: var(--bg_color);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.about-header
{
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}

.about-header h2
{
	color: white;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	font-family: var(--font-heading);
	letter-spacing: -0.02em;
	margin-bottom: 20px;
	line-height: 1.2;
}

.about-header p
{
	color: var(--text_color_1);
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	font-family: var(--font-body);
	line-height: 1.7;
}

.join
{
	width: 100%;
	padding: var(--section-padding);
	background: var(--bg_color);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
}

.join-header
{
	text-align: center;
	max-width: 600px;
}

.join-header h2
{
	color: white;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	font-family: var(--font-heading);
	letter-spacing: -0.02em;
	margin-bottom: 12px;
}

.join-header p
{
	color: var(--text_color_1);
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	font-family: var(--font-body);
	line-height: 1.6;
}

.join-cards
{
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.join-card
{
	padding: 32px 28px;
	text-align: left;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	background: rgba(255,255,255,0.03);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.join-card:hover
{
	background: rgba(255,255,255,0.06);
	border-color: rgba(255,255,255,0.12);
	transform: translateY(-2px);
}

.join-card-icon
{
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(99, 102, 241, 0.15);
	border-radius: 12px;
	color: #818cf8;
	font-size: 1.25rem;
	margin-bottom: 4px;
}

.join-card-step
{
	color: var(--outline_color);
	font-size: 0.8rem;
	font-weight: 600;
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.join-card h3
{
	color: white;
	font-size: clamp(1.125rem, 1.5vw, 1.375rem);
	font-weight: 600;
	font-family: var(--font-heading);
	line-height: 1.3;
}

.join-card p
{
	color: var(--text_color_1);
	font-size: clamp(0.9rem, 1.1vw, 1rem);
	font-family: var(--font-body);
	line-height: 1.6;
	margin: 0;
}

.media
{
	padding: var(--section-padding);
	width: 100%;
	background: var(--bg_color);
}

.media .cont
{
	margin: 0 auto;
	max-width: var(--container-max);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.media .cont a
{
	display: block;
	outline: 0;
	overflow: hidden;
	font-size: 0;
	border-radius: var(--radius-sm);
	aspect-ratio: 1;
}

.media .cont a img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.media .cont a img:hover
{
	transform: scale(1.08);
	filter: brightness(0.7);
}

.download
{
	width: 100%;
	padding: var(--section-padding);
	background: var(--bg_color);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
}

.download-header
{
	text-align: center;
	max-width: 600px;
}

.download-header h2
{
	color: white;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	font-family: var(--font-heading);
	letter-spacing: -0.02em;
	margin-bottom: 12px;
}

.download-header p
{
	color: var(--text_color_1);
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	font-family: var(--font-body);
	line-height: 1.6;
}

.download-cards
{
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.download-card
{
	padding: 32px 28px;
	text-align: left;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	background: rgba(255,255,255,0.03);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	gap: 16px;
	text-decoration: none;
	color: inherit;
}

.download-card:hover
{
	background: rgba(255,255,255,0.06);
	border-color: rgba(255,255,255,0.12);
	transform: translateY(-2px);
}

.download-card-icon
{
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(99, 102, 241, 0.15);
	border-radius: 12px;
	color: #818cf8;
	font-size: 1.25rem;
}

.download-card h3
{
	color: white;
	font-size: clamp(1.125rem, 1.5vw, 1.375rem);
	font-weight: 600;
	font-family: var(--font-heading);
	line-height: 1.3;
	margin: 0;
}

.download-card p
{
	color: var(--text_color_1);
	font-size: clamp(0.85rem, 1vw, 0.95rem);
	font-family: var(--font-body);
	line-height: 1.6;
	margin: 0;
	flex: 1;
}

.download-card-cta
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #818cf8;
	font-size: 0.9rem;
	font-weight: 600;
	font-family: var(--font-body);
	transition: var(--transition);
}

.download-card:hover .download-card-cta
{
	color: #a5b4fc;
}

.rules
{
	width: 100%;
	min-height: 100%;
	background-color: var(--bg_color);
}

.rules .cont
{
	margin: 25px auto;
	width: 90%;
}

.rules h2
{
	color: white;
	font-size: 84px;
	font-style: normal;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 14px;
}

.rules h3
{
	color: white;
	font-size: 26px;
	font-style: normal;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
}

.rules p
{
	color: white;
	font-size: 22px;
	font-style: normal;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
}

.sign,
.recovery,
.reset
{
	padding: 50px 0;
	width: 100%;
	min-height: 100vh;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	background: linear-gradient(to top, var(--bg_color), transparent), url(../images/KxHWpUMXkkaK.png);
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.sign .cont,
.recovery .cont,
.reset .cont
{
	width: 95%;
}

.sign form,
.recovery form,
.reset form
{
	margin: 0 auto;
	padding: 60px 45px;
	width: 40%;
	border: 4px solid var(--border_color);
	background: linear-gradient(to top, var(--bg_color), var(--bar_color));
}

.sign form input[type="text"],
.sign form input[type="password"],
.recovery form input[type="text"],
.recovery form input[type="password"],
.reset form input[type="text"],
.reset form input[type="password"]
{
	margin: 10px 0;
	padding: 5px 0;
	width: 100%;
	color: white;
	outline: none;
	border: none;
	border-bottom: 4px solid var(--border_color);
	font-size: 30px;
	font-style: italic;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
	background-color: transparent;
}

.sign form span,
.recovery form span,
.reset form span
{
	left: 0;
	margin: 10px 0;
	padding: 5px 0;
	position: absolute;
	color: var(--text_color_1);
	font-size: 30px;
	font-style: italic;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
	pointer-events: none;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.sign form input[type="text"]:focus ~ span,
.sign form input[type="text"]:valid ~ span,
.sign form input[type="password"]:focus ~ span,
.sign form input[type="password"]:valid ~ span,
.recovery form input[type="text"]:focus ~ span,
.recovery form input[type="text"]:valid ~ span,
.recovery form input[type="password"]:focus ~ span,
.recovery form input[type="password"]:valid ~ span,
.reset form input[type="text"]:focus ~ span,
.reset form input[type="text"]:valid ~ span,
.reset form input[type="password"]:focus ~ span,
.reset form input[type="password"]:valid ~ span
{
	color: var(--outline_color);
	font-size: 26px;
	-webkit-transform: translateY(-30px);
	-moz-transform: translateY(-30px);
	-ms-transform: translateY(-30px);
	-o-transform: translateY(-30px);
	transform: translateY(-30px);
}

.sign form h3,
.recovery form h3,
.reset form h3
{
	color: white;
	font-size: 84px;
	font-style: normal;
	font-weight: 400;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 8px;
}

.sign form p,
.recovery form p,
.reset form p
{
	color: var(--text_color_1);
	font-size: 28px;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
	text-align: center;
}

.sign form a,
.recovery form a,
.reset form a
{
	color: var(--text_color_1);
	font-size: 26px;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
	text-transform: uppercase;
	border-bottom: 4px solid var(--text_color_1);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.sign form a:hover,
.recovery form a:hover,
.reset form a:hover
{
	color: white;
	border-bottom-color: white;
}

.sign form button,
.recovery form button,
.reset form button
{
	margin-top: 15px;
	padding: 20px 0;
	width: 80%;
	color: grey;
	font-size: 16px;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
	text-transform: uppercase;
	letter-spacing: 3px;
	outline: none;
	border: none;
	-webkit-border-radius: 45px;
	-moz-border-radius: 45px;
	-ms-border-radius: 45px;
	-o-border-radius: 45px;
	border-radius: 45px;
	-webkit-box-shadow: 0px 8px 15px 0px var(--shadow_color);
	-moz-box-shadow: 0px 8px 15px 0px var(--shadow_color);
	box-shadow: 0px 8px 15px 0px var(--shadow_color);
	background-color: white;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.sign form button:hover,
.recovery form button:hover,
.reset form button:hover
{
	color: white;
	-webkit-box-shadow: 0px 15px 20px 0px var(--button_shadow_color);
	-moz-box-shadow: 0px 15px 20px 0px var(--button_shadow_color);
	box-shadow: 0px 15px 20px 0px var(--button_shadow_color);
	background-color: var(--button_color);
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
}

.sign form .box,
.recovery form .box,
.reset form .box
{
	margin-top: 35px;
}

.sign form .box-input,
.recovery form .box-input,
.reset form .box-input
{
	margin-top: 10px;
	width: 100%;
	position: relative;
}

.sign form .box-button,
.recovery form .box-button,
.reset form .box-button
{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	position: relative;
}

.panel
{
	width: 100%;
	min-height: 100%;
	background-color: var(--bg_color);
}

.panel .cont
{
	margin: 0 auto;
	width: 85%;
}

.panel .box
{
	margin-top: 25px;
}

.panel .box-form
{
	margin-top: 25px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.panel .box-button
{
	margin: 0;
	margin-top: 50px;
	margin-bottom: 25px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.panel .box-active
{
	margin: 25px auto;
	width: 50%;
}

.panel h5
{
	color: white;
	font-size: 54px;
	font-style: normal;
	font-weight: 400;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
	text-align: center;
	text-transform: uppercase;
}

.panel h6
{
	color: var(--text_color_1);
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
	text-align: center;
}

.panel h6 span
{
	color: var(--text_color_2);
}

.panel .box-button a
{
	padding: 20px 0;
	width: 25%;
	display: inline-block;
	color: white;
	font-size: 16px;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 3px;
	-webkit-border-radius: 45px;
	-moz-border-radius: 45px;
	border-radius: 45px;
	-webkit-box-shadow: 0px 8px 15px 0px var(--shadow_color);
	-moz-box-shadow: 0px 8px 15px 0px var(--shadow_color);
	box-shadow: 0px 8px 15px 0px var(--shadow_color);
	background-color: var(--button_color);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.panel .box-button a:hover
{
	color: grey;
	background-color: white;
}

.panel form
{
	margin: 0 15px;
	width: 100%;
	position: relative;
}

.panel form input[type="text"],
.panel form input[type="password"]
{
	padding: 10px 15px;
	width: 100%;
	display: block;
	position: relative;
	color: var(--text_color_1);
	font-size: 32px;
	font-style: italic;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
	outline: none;
	border: none;
	border-bottom: 4px solid var(--border_color);
	background-color: transparent;
}

.panel form input:focus,
.panel form input:valid
{
	color: white;
}

.panel form span
{
	top: 0;
	left: 0;
	margin: 10px 0;
	padding: 0 15px;
	position: absolute;
	color: var(--text_color_1);
	font-size: 32px;
	font-style: italic;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
	pointer-events: none;
	-webkit-transition: 0.15s;
	-moz-transition: 0.15s;
	-ms-transition: 0.15s;
	-o-transition: 0.15s;
	transition: 0.15s;
}

.panel form input:valid ~ span
{
	color: transparent;
}

.panel form button
{
	margin: 0 auto;
	margin-top: 15px;
	padding: 20px 0;
	width: 40%;
	display: block;
	color: grey;
	font-size: 16px;
	font-style: normal;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
	text-transform: uppercase;
	letter-spacing: 3px;
	outline: none;
	border: none;
	-webkit-border-radius: 45px;
	-moz-border-radius: 45px;
	border-radius: 45px;
	-webkit-box-shadow: 0px 8px 15px 0px var(--shadow_color);
	-moz-box-shadow: 0px 8px 15px 0px var(--shadow_color);
	box-shadow: 0px 8px 15px 0px var(--shadow_color);
	background-color: white;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.panel form button:hover
{
	color: white;
	-webkit-box-shadow: 0px 15px 20px 0px var(--button_shadow_color);
	-moz-box-shadow: 0px 15px 20px 0px var(--button_shadow_color);
	box-shadow: 0px 15px 20px 0px var(--button_shadow_color);
	background-color: var(--button_color);
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
}

.panel form .box-input
{
	width: 100%;
	position: relative;
}

.panel table
{
	width: 100%;
}

.panel table thead
{
	color: var(--text_color_1);
	font-size: 32px;
	font-style: normal;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
	text-transform: uppercase;
}

.panel table tbody
{
	color: var(--text_color_2);
	font-size: 32px;
	font-style: normal;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
}

.panel th,
.panel td
{
	padding: 5px 10px;
}

.panel th:nth-child(2)
{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
}

.panel .icon_female
{
	width: 45px;
	height: 45px;
	background: url(../images/lkVJS6I4l3Im.png);
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.panel .icon_male
{
	width: 45px;
	height: 45px;
	background: url(../images/BnhWsBweo27S.png);
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.footer
{
	width: 100%;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-top: 1px solid rgba(255,255,255,0.06);
	background: rgba(0,0,0,0.2);
}

.footer-copy
{
	color: rgba(255,255,255,0.5);
	font-size: 0.85rem;
	font-family: var(--font-body);
	text-align: center;
	margin: 0;
}

.anwers
{
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100vh;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	opacity: 0;
	position: fixed;
	pointer-events: none;
	background-color: var(--bg_anwers);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.anwers.active
{
	opacity: 1;
	pointer-events: auto;
}

.anwers .cont
{
	width: 95%;
}

.anwers .cont .window
{
	margin: 0 auto;
	width: 50%;
	text-align: center;
	border: 4px solid var(--outline_color);
	background: linear-gradient(to top, var(--bar_color), var(--bg_color));
}

.anwers .cont .window .title
{
	padding: 10px 0;
	-webkit-box-shadow: 0px 5px 8px 0px var(--shadow_color);
	-moz-box-shadow: 0px 5px 8px 0px var(--shadow_color);
	box-shadow: 0px 5px 8px 0px var(--shadow_color);
	background-color: var(--bar_color);
}

.anwers .cont .window .box
{
	margin-top: 40px;
	margin-bottom: 20px;
}

.anwers .cont .window .box .btn-button
{
	margin-top: 5px;
}

.anwers h3
{
	color: white;
	font-size: 54px;
	font-style: normal;
	font-weight: 400;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
	text-transform: uppercase;
}

.anwers p
{
	color: white;
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
}

.button
{
	margin-top: 10px;
	width: 140px;
	height: 45px;
	display: inline-block;
	color: grey;
	font-size: 16px;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 3px;
	line-height: 45px;
	-webkit-border-radius: 45px;
	-moz-border-radius: 45px;
	-ms-border-radius: 45px;
	-o-border-radius: 45px;
	border-radius: 45px;
	-webkit-box-shadow: 0 8px 15px var(--shadow_color);
	-moz-box-shadow: 0 8px 15px var(--shadow_color);
	box-shadow: 0 8px 15px var(--shadow_color);
	background-color: white;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.button:hover
{
	color: white;
	-webkit-box-shadow: 0 15px 20px var(--button_shadow_color);
	-moz-box-shadow: 0 15px 20px var(--button_shadow_color);
	box-shadow: 0 15px 20px var(--button_shadow_color);
	background-color: var(--button_color);
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
}

.home
{
	top: 50%;
	left: 0;
	margin-left: 20px;
	width: 100%;
	height: 100%;
	position: fixed;
	pointer-events: none;
}

.home a
{
	color: white;
	font-size: 124px;
	font-family: 'Open Sans', 'Arial', 'Tahoma', 'Verdana';
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
	line-height: 0;
	pointer-events: auto;
}

.home a:hover
{
	color: var(--text_color_2);
}

.line
{
	margin: 16px auto;
	width: 80px;
	height: 4px;
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, var(--border_color), transparent);
}

.checked
{
	display: none;
}

@media screen and (max-width: 1680px)
{
	.loader .inner
	{
		width: 70px;
		height: 70px;
	}

	.navbar .logo
	{
		width: 64px;
		height: 40px;
	}

	.navbar-menu a
	{
		font-size: 0.9rem;
	}

	.header h1
	{
		font-size: 104px;
		letter-spacing: 20px;
	}

	.header h2
	{
		font-size: 30px;
		letter-spacing: 20px;
	}

	.header .cont .overlay
	{
		border-width: 3px;
	}

	.header .discord
	{
		width: 52px;
		height: 52px;
	}

	.about-header h2
	{
		font-size: 2.5rem;
	}

	.about-header p
	{
		font-size: 1.1rem;
	}

	.join-header h2
	{
		font-size: 2.5rem;
	}

	.join-card h3
	{
		font-size: 1.5rem;
	}

	.join-card p
	{
		font-size: 1.1rem;
	}

	.download-header h2
	{
		font-size: 2.5rem;
	}

	.download-card h3
	{
		font-size: 1.5rem;
	}

	.rules .cont
	{
		width: 90%;
	}

	.rules h2
	{
		font-size: 64px;
	}

	.rules h3
	{
		font-size: 24px;
	}

	.rules p
	{
		font-size: 20px;
	}

	.footer-copy
	{
		font-size: 0.8rem;
	}

	.anwers .cont .window
	{
		width: 50%;
		border-width: 3px;
	}

	.anwers .cont .window h3
	{
		font-size: 44px;
	}

	.anwers .cont .window p
	{
		font-size: 22px;
	}

	.sign form,
	.recovery form,
	.reset form
	{
		padding: 60px 45px;
		width: 40%;
		border-width: 3px;
	}

	.sign form input[type="text"],
	.sign form input[type="password"],
	.recovery form input[type="text"],
	.recovery form input[type="password"],
	.reset form input[type="text"],
	.reset form input[type="password"]
	{
		font-size: 24px;
		border-width: 3px;
	}

	.sign form span,
	.recovery form span,
	.reset form span
	{
		font-size: 24px;
	}

	.sign form input[type="text"]:focus ~ span,
	.sign form input[type="text"]:valid ~ span,
	.sign form input[type="password"]:focus ~ span,
	.sign form input[type="password"]:valid ~ span,
	.recovery form input[type="text"]:focus ~ span,
	.recovery form input[type="text"]:valid ~ span,
	.recovery form input[type="password"]:focus ~ span,
	.recovery form input[type="password"]:valid ~ span,
	.reset form input[type="text"]:focus ~ span,
	.reset form input[type="text"]:valid ~ span,
	.reset form input[type="password"]:focus ~ span,
	.reset form input[type="password"]:valid ~ span
	{
		font-size: 20px;
		-webkit-transform: translateY(-24px);
		-moz-transform: translateY(-24px);
		-ms-transform: translateY(-24px);
		-o-transform: translateY(-24px);
		transform: translateY(-24px);
	}

	.sign form h3,
	.recovery form h3,
	.reset form h3
	{
		font-size: 64px;
	}

	.sign form p,
	.recovery form p,
	.reset form p
	{
		font-size: 22px;
	}

	.sign form a,
	.recovery form a,
	.reset form a
	{
		font-size: 20px;
		border-bottom-width: 3px;
	}

	.sign form button,
	.recovery form button,
	.reset form button
	{
		padding: 20px 0;
		font-size: 14px;
	}

	.sign form .box,
	.recovery form .box,
	.reset form .box
	{
		margin-top: 25px;
	}

	.panel .cont
	{
		width: 85%;
	}

	.panel form input[type="text"],
	.panel form input[type="password"]
	{
		font-size: 28px;
		border-bottom-width: 3px;
	}

	.panel form span
	{
		font-size: 28px;
	}

	.panel form button
	{
		padding: 13px 0;
		font-size: 14px;
	}

	.panel h5
	{
		font-size: 44px;
	}

	.panel h6
	{
		font-size: 28px;
	}

	.panel table thead,
	.panel table tbody
	{
		font-size: 28px;
	}

	.panel .box-button a
	{
		padding: 20px 0;
		width: 25%;
		font-size: 14px;
	}

	.panel .icon_female,
	.panel .icon_male
	{
		width: 41px;
		height: 41px;
	}

	.home
	{
		margin-left: 15px;
	}

	.home a
	{
		font-size: 104px;
	}

	.button
	{
		font-size: 14px;
	}

	.line
	{
		height: 3px;
	}
}

@media screen and (max-width: 1280px)
{
	.loader .inner
	{
		width: 60px;
		height: 60px;
	}

	.navbar .logo
	{
		width: 56px;
		height: 36px;
	}

	.navbar-menu
	{
		gap: 8px 24px;
	}

	.navbar-menu a
	{
		font-size: 0.85rem;
	}

	.header h1
	{
		font-size: 84px;
		letter-spacing: 18px;
	}

	.header h2
	{
		font-size: 22px;
		letter-spacing: 18px;
	}

	.header .cont .overlay
	{
		border-width: 2px;
	}

	.header .discord
	{
		width: 42px;
		height: 42px;
	}

	.about-header h2
	{
		font-size: 2rem;
	}

	.about-header p
	{
		font-size: 1rem;
	}

	.join-header h2
	{
		font-size: 2rem;
	}

	.join-card h3
	{
		font-size: 1.25rem;
	}

	.join-card p
	{
		font-size: 0.95rem;
	}

	.download-cards
	{
		margin-top: 0;
	}

	.download-header h2
	{
		font-size: 2rem;
	}

	.download-card h3
	{
		font-size: 1.25rem;
	}

	.rules .cont
	{
		width: 90%;
	}

	.rules h2
	{
		font-size: 44px;
	}

	.rules h3
	{
		font-size: 20px;
	}

	.rules p
	{
		font-size: 16px;
	}

	.footer-copy
	{
		font-size: 0.75rem;
	}

	.anwers .cont .window
	{
		width: 50%;
		border-width: 2px;
	}

	.anwers .cont .window h3
	{
		font-size: 34px;
	}

	.anwers .cont .window p
	{
		font-size: 16px;
	}

	.sign form,
	.recovery form,
	.reset form
	{
		padding: 50px 35px;
		width: 40%;
		border-width: 2px;
	}

	.sign form input[type="text"],
	.sign form input[type="password"],
	.recovery form input[type="text"],
	.recovery form input[type="password"],
	.reset form input[type="text"],
	.reset form input[type="password"]
	{
		font-size: 18px;
		border-width: 2px;
	}

	.sign form span,
	.recovery form span,
	.reset form span
	{
		font-size: 18px;
	}

	.sign form input[type="text"]:focus ~ span,
	.sign form input[type="text"]:valid ~ span,
	.sign form input[type="password"]:focus ~ span,
	.sign form input[type="password"]:valid ~ span,
	.recovery form input[type="text"]:focus ~ span,
	.recovery form input[type="text"]:valid ~ span,
	.recovery form input[type="password"]:focus ~ span,
	.recovery form input[type="password"]:valid ~ span,
	.reset form input[type="text"]:focus ~ span,
	.reset form input[type="text"]:valid ~ span,
	.reset form input[type="password"]:focus ~ span,
	.reset form input[type="password"]:valid ~ span
	{
		font-size: 14px;
		-webkit-transform: translateY(-18px);
		-moz-transform: translateY(-18px);
		-ms-transform: translateY(-18px);
		-o-transform: translateY(-18px);
		transform: translateY(-18px);
	}

	.sign form h3,
	.recovery form h3,
	.reset form h3
	{
		font-size: 44px;
	}

	.sign form p,
	.recovery form p,
	.reset form p
	{
		font-size: 16px;
	}

	.sign form a,
	.recovery form a,
	.reset form a
	{
		font-size: 14px;
		border-bottom-width: 2px;
	}

	.sign form button,
	.recovery form button,
	.reset form button
	{
		padding: 15px 0;
		font-size: 12px;
	}

	.sign form .box,
	.recovery form .box,
	.reset form .box
	{
		margin-top: 15px;
	}

	.panel .cont
	{
		width: 85%;
	}

	.panel form input[type="text"],
	.panel form input[type="password"]
	{
		font-size: 24px;
		border-bottom-width: 2px;
	}

	.panel form span
	{
		font-size: 24px;
	}

	.panel form button
	{
		padding: 13px 0;
		font-size: 12px;
	}

	.panel h5
	{
		font-size: 34px;
	}

	.panel h6
	{
		font-size: 24px;
	}

	.panel table thead,
	.panel table tbody
	{
		font-size: 24px;
	}

	.panel .box-button a
	{
		padding: 13px 0;
		width: 25%;
		font-size: 12px;
	}

	.panel .icon_female,
	.panel .icon_male
	{
		width: 33px;
		height: 33px;
	}

	.home
	{
		margin-left: 10px;
	}

	.home a
	{
		font-size: 84px;
	}

	.button
	{
		font-size: 12px;
	}

	.line
	{
		height: 2px;
	}
}

@media screen and (max-width: 980px)
{
	.loader .inner
	{
		width: 50px;
		height: 50px;
	}

	.navbar
	{
		min-height: 64px;
		padding: 0 20px;
	}

	.navbar .logo
	{
		width: 48px;
		height: 30px;
	}

	.navbar-toggle
	{
		display: flex;
	}

	.navbar-menu
	{
		position: fixed;
		top: 64px;
		left: 100%;
		width: 100%;
		max-width: 320px;
		height: calc(100vh - 64px);
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		padding: 24px;
		gap: 0;
		background: rgba(10, 10, 15, 0.98);
		backdrop-filter: blur(20px);
		border-left: 1px solid rgba(255,255,255,0.06);
		box-shadow: -8px 0 32px rgba(0,0,0,0.4);
		transition: left 0.3s ease;
		overflow-y: auto;
	}

	.navbar-menu.active
	{
		left: calc(100% - 320px);
	}

	.navbar-actions
	{
		flex-direction: column;
		width: 100%;
		margin-top: 8px;
		padding-top: 16px;
		border-top: 1px solid rgba(255,255,255,0.06);
		gap: 16px;
	}

	.lang-switch
	{
		align-self: center;
	}

	.navbar-menu a
	{
		padding: 16px 0;
		border-bottom: 1px solid rgba(255,255,255,0.06);
		font-size: 1rem;
		justify-content: center;
	}

	.navbar-actions .navbar-cta
	{
		width: 100%;
		justify-content: center;
	}

	.header h1
	{
		font-size: 64px;
		letter-spacing: 16px;
	}

	.header h2
	{
		font-size: 14px;
		letter-spacing: 16px;
	}

	.header .cont .overlay
	{
		border-width: 2px;
	}

	.header .discord
	{
		width: 32px;
		height: 32px;
	}

	.about-header h2
	{
		font-size: 1.75rem;
	}

	.about-header p
	{
		font-size: 0.95rem;
	}

	.join-header h2
	{
		font-size: 1.75rem;
	}

	.join-card h3
	{
		font-size: 1.125rem;
	}

	.join-card p
	{
		font-size: 0.9rem;
	}

	.download-header h2
	{
		font-size: 1.75rem;
	}

	.download-card h3
	{
		font-size: 1.125rem;
	}

	.rules h2
	{
		font-size: 34px;
	}

	.rules h3
	{
		font-size: 16px;
	}

	.rules p
	{
		font-size: 12px;
	}

	.footer-copy
	{
		font-size: 0.7rem;
	}

	.anwers .cont .window
	{
		width: 53%;
		border-width: 2px;
	}

	.anwers .cont .window h3
	{
		font-size: 24px;
	}

	.anwers .cont .window p
	{
		font-size: 10px;
	}

	.sign form,
	.recovery form,
	.reset form
	{
		padding: 30px 25px;
		width: 43%;
		border-width: 2px;
	}

	.sign form input[type="text"],
	.sign form input[type="password"],
	.recovery form input[type="text"],
	.recovery form input[type="password"],
	.reset form input[type="text"],
	.reset form input[type="password"]
	{
		font-size: 12px;
		border-width: 2px;
	}

	.sign form span,
	.recovery form span,
	.reset form span
	{
		font-size: 12px;
	}

	.sign form input[type="text"]:focus ~ span,
	.sign form input[type="text"]:valid ~ span,
	.sign form input[type="password"]:focus ~ span,
	.sign form input[type="password"]:valid ~ span,
	.recovery form input[type="text"]:focus ~ span,
	.recovery form input[type="text"]:valid ~ span,
	.recovery form input[type="password"]:focus ~ span,
	.recovery form input[type="password"]:valid ~ span,
	.reset form input[type="text"]:focus ~ span,
	.reset form input[type="text"]:valid ~ span,
	.reset form input[type="password"]:focus ~ span,
	.reset form input[type="password"]:valid ~ span
	{
		font-size: 8px;
		-webkit-transform: translateY(-12px);
		-moz-transform: translateY(-12px);
		-ms-transform: translateY(-12px);
		-o-transform: translateY(-12px);
		transform: translateY(-12px);
	}

	.sign form h3,
	.recovery form h3,
	.reset form h3
	{
		font-size: 24px;
	}

	.sign form p,
	.recovery form p,
	.reset form p
	{
		font-size: 10px;
	}

	.sign form a,
	.recovery form a,
	.reset form a
	{
		font-size: 8px;
		border-bottom-width: 2px;
	}

	.sign form button,
	.recovery form button,
	.reset form button
	{
		padding: 15px 0;
		font-size: 10px;
	}

	.sign form .box,
	.recovery form .box,
	.reset form .box
	{
		margin-top: 10px;
	}

	.panel .cont
	{
		width: 85%;
	}

	.panel form input[type="text"],
	.panel form input[type="password"]
	{
		font-size: 18px;
		border-bottom-width: 2px;
	}

	.panel form span
	{
		font-size: 18px;
	}

	.panel form button
	{
		padding: 13px 0;
		font-size: 10px;
	}

	.panel h5
	{
		font-size: 24px;
	}

	.panel h6
	{
		font-size: 18px;
	}

	.panel table thead,
	.panel table tbody
	{
		font-size: 18px;
	}

	.panel .box-button a
	{
		padding: 13px 0;
		width: 27%;
		font-size: 10px;
	}

	.panel .icon_female,
	.panel .icon_male
	{
		width: 26px;
		height: 26px;
	}

	.panel .box-active
	{
		width: 60%;
	}

	.home
	{
		margin-left: 5px;
	}

	.home a
	{
		font-size: 64px;
	}

	.button
	{
		font-size: 10px;
	}

	.line
	{
		height: 2px;
	}
}

@media screen and (max-width: 736px)
{
	.loader .inner
	{
		width: 50px;
		height: 50px;
	}

	.navbar
	{
		min-height: 60px;
		padding: 0 16px;
	}

	.navbar .logo
	{
		width: 40px;
		height: 28px;
	}

	.navbar-menu
	{
		top: 60px;
		height: calc(100vh - 60px);
		max-width: 100%;
	}

	.navbar-menu.active
	{
		left: 0;
	}

	.header h1
	{
		font-size: clamp(2rem, 10vw, 3.5rem);
		letter-spacing: 0.05em;
	}

	.header h2
	{
		font-size: 12px;
		letter-spacing: 14px;
	}

	.header .bg_cont .background.one
	{
		background-position-x: 50%;
		background-position-y: -10%;
	}

	.header .bg_cont .background.two
	{
		background-position-x: 50%;
		background-position-y: 40%;
	}

	.header .discord
	{
		width: 42px;
		height: 42px;
	}

	.about-header h2
	{
		font-size: 1.75rem;
	}

	.about-header p
	{
		font-size: 0.95rem;
	}

	.join-header h2
	{
		font-size: 1.75rem;
	}

	.join-card h3
	{
		font-size: 1.125rem;
	}

	.join-card p
	{
		font-size: 0.9rem;
	}

	.join-cards
	{
		grid-template-columns: repeat(2, 1fr);
	}

	.media .cont
	{
		grid-template-columns: repeat(3, 1fr);
	}

	.download-cards
	{
		grid-template-columns: repeat(2, 1fr);
	}

	.download-header h2
	{
		font-size: 1.75rem;
	}

	.download-card h3
	{
		font-size: 1.125rem;
	}

	.rules .cont
	{
		width: 87%;
	}

	.footer-copy
	{
		font-size: 0.7rem;
	}

	.anwers .cont .window
	{
		width: 65%;
		border-width: 2px;
	}

	.anwers .cont .window h3
	{
		font-size: 24px;
	}

	.anwers .cont .window p
	{
		font-size: 12px;
	}

	.sign form,
	.recovery form,
	.reset form
	{
		padding: 50px 35px;
		width: 60%;
		border-width: 2px;
	}

	.sign form input[type="text"],
	.sign form input[type="password"],
	.recovery form input[type="text"],
	.recovery form input[type="password"],
	.reset form input[type="text"],
	.reset form input[type="password"]
	{
		font-size: 14px;
		border-width: 2px;
	}

	.sign form span,
	.recovery form span,
	.reset form span
	{
		font-size: 14px;
	}

	.sign form input[type="text"]:focus ~ span,
	.sign form input[type="text"]:valid ~ span,
	.sign form input[type="password"]:focus ~ span,
	.sign form input[type="password"]:valid ~ span,
	.recovery form input[type="text"]:focus ~ span,
	.recovery form input[type="text"]:valid ~ span,
	.recovery form input[type="password"]:focus ~ span,
	.recovery form input[type="password"]:valid ~ span,
	.reset form input[type="text"]:focus ~ span,
	.reset form input[type="text"]:valid ~ span,
	.reset form input[type="password"]:focus ~ span,
	.reset form input[type="password"]:valid ~ span
	{
		font-size: 10px;
		-webkit-transform: translateY(-14px);
		-moz-transform: translateY(-14px);
		-ms-transform: translateY(-14px);
		-o-transform: translateY(-14px);
		transform: translateY(-14px);
	}

	.sign form h3,
	.recovery form h3,
	.reset form h3
	{
		font-size: 34px;
	}

	.sign form p,
	.recovery form p,
	.reset form p
	{
		font-size: 12px;
	}

	.sign form a,
	.recovery form a,
	.reset form a
	{
		font-size: 10px;
		border-bottom-width: 1px;
	}

	.sign form button,
	.recovery form button,
	.reset form button
	{
		padding: 15px 0;
		font-size: 10px;
	}

	.sign form .box,
	.recovery form .box,
	.reset form .box
	{
		margin-top: 10px;
	}

	.panel .cont
	{
		width: 85%;
	}

	.panel form input[type="text"],
	.panel form input[type="password"]
	{
		font-size: 14px;
		border-bottom-width: 2px;
	}

	.panel form span
	{
		font-size: 14px;
	}

	.panel form button
	{
		padding: 13px 0;
		font-size: 10px;
	}

	.panel h5
	{
		font-size: 18px;
	}

	.panel h6
	{
		font-size: 14px;
	}

	.panel table thead,
	.panel table tbody
	{
		font-size: 14px;
	}

	.panel .box-button a
	{
		padding: 13px 0;
		width: 27%;
		font-size: 10px;
	}

	.panel .box-active
	{
		width: 100%;
	}

	.panel .icon_female,
	.panel .icon_male
	{
		width: 20px;
		height: 20px;
	}

	.home
	{
		margin-left: 5px;
	}

	.home a
	{
		font-size: 64px;
	}

	.button
	{
		font-size: 10px;
	}

	.line
	{
		height: 2px;
	}
}

@media screen and (max-width: 480px)
{
	.loader .inner
	{
		width: 50px;
		height: 50px;
	}

	.navbar
	{
		min-height: 56px;
		padding: 0 12px;
	}

	.navbar .logo
	{
		width: 36px;
		height: 24px;
	}

	.navbar-menu
	{
		top: 56px;
		height: calc(100vh - 56px);
		max-width: 100%;
	}

	.navbar-menu.active
	{
		left: 0;
	}

	.header h1
	{
		font-size: clamp(1.5rem, 8vw, 2.5rem);
		letter-spacing: 0.05em;
	}

	.header h2
	{
		font-size: 10px;
		letter-spacing: 8px;
	}

	.header .bg_cont .background.one
	{
		background-position-x: 53%;
		background-position-y: 50%;
	}

	.header .bg_cont .background.two
	{
		background-position-x: 48%;
		background-position-y: 50%;
	}

	.header .discord
	{
		width: 42px;
		height: 42px;
	}

	.about-header h2
	{
		font-size: 1.5rem;
	}

	.about-header p
	{
		font-size: 0.9rem;
	}

	.join-header h2
	{
		font-size: 1.5rem;
	}

	.join-card h3
	{
		font-size: 1rem;
	}

	.join-card p
	{
		font-size: 0.85rem;
	}

	.join-cards
	{
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.media .cont
	{
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}


	.download-cards
	{
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.download-header h2
	{
		font-size: 1.5rem;
	}

	.download-card h3
	{
		font-size: 1rem;
	}

	.rules .cont
	{
		width: 83%;
	}

	.footer-copy
	{
		font-size: 0.7rem;
	}

	.anwers .cont .window
	{
		width: 100%;
		border-width: 2px;
	}

	.anwers .cont .window h3
	{
		font-size: 24px;
	}

	.anwers .cont .window p
	{
		font-size: 12px;
	}

	.sign form,
	.recovery form,
	.reset form
	{
		padding: 35px 20px;
		width: calc(90% - 2px);
		border-width: 2px;
	}

	.sign form input[type="text"],
	.sign form input[type="password"],
	.recovery form input[type="text"],
	.recovery form input[type="password"],
	.reset form input[type="text"],
	.reset form input[type="password"]
	{
		font-size: 14px;
		border-width: 2px;
	}

	.sign form span,
	.recovery form span,
	.reset form span
	{
		font-size: 14px;
	}

	.sign form input[type="text"]:focus ~ span,
	.sign form input[type="text"]:valid ~ span,
	.sign form input[type="password"]:focus ~ span,
	.sign form input[type="password"]:valid ~ span,
	.recovery form input[type="text"]:focus ~ span,
	.recovery form input[type="text"]:valid ~ span,
	.recovery form input[type="password"]:focus ~ span,
	.recovery form input[type="password"]:valid ~ span,
	.reset form input[type="text"]:focus ~ span,
	.reset form input[type="text"]:valid ~ span,
	.reset form input[type="password"]:focus ~ span,
	.reset form input[type="password"]:valid ~ span
	{
		font-size: 10px;
		-webkit-transform: translateY(-14px);
		-moz-transform: translateY(-14px);
		-ms-transform: translateY(-14px);
		-o-transform: translateY(-14px);
		transform: translateY(-14px);
	}

	.sign form h3,
	.recovery form h3,
	.reset form h3
	{
		font-size: 34px;
	}

	.sign form p,
	.recovery form p,
	.reset form p
	{
		font-size: 12px;
	}

	.sign form a,
	.recovery form a,
	.reset form a
	{
		font-size: 10px;
		border-bottom-width: 1px;
	}

	.sign form button,
	.recovery form button,
	.reset form button
	{
		padding: 15px 0;
		font-size: 10px;
	}

	.sign form .box,
	.recovery form .box,
	.reset form .box
	{
		margin-top: 10px;
	}

	.panel .cont
	{
		width: 85%;
	}

	.panel .box-form
	{
		margin: 0 auto;
		display: block;
	}

	.panel form
	{
		margin: 0;
		margin-top: 25px;
	}

	.panel form input[type="text"],
	.panel form input[type="password"]
	{
		font-size: 14px;
		border-bottom-width: 2px;
	}

	.panel form span
	{
		font-size: 14px;
	}

	.panel form button
	{
		padding: 13px 0;
		font-size: 10px;
	}

	.panel h5
	{
		font-size: 18px;
	}

	.panel h6
	{
		font-size: 14px;
	}

	.panel table thead,
	.panel table tbody
	{
		font-size: 14px;
	}

	.panel th,
	.panel td
	{
		padding: 5px 8px;
	}

	.panel th:nth-child(4),
	.panel th:nth-child(5)
	{
		display: none;
	}

	.panel .box-button a
	{
		padding: 13px 0;
		width: 45%;
		font-size: 10px;
	}

	.panel .icon_female,
	.panel .icon_male
	{
		width: 20px;
		height: 20px;
	}

	.home
	{
		margin-left: 0px;
	}

	.home a
	{
		font-size: 54px;
	}

	.button
	{
		font-size: 10px;
	}

	.line
	{
		height: 2px;
	}
}

@-webkit-keyframes loader
{
	0%
	{
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100%
	{
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes loader
{
	0%
	{
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100%
	{
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-ms-keyframes loader
{
	0%
	{
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100%
	{
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-o-keyframes loader
{
	0%
	{
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100%
	{
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes loader
{
	0%
	{
		transform: rotate(0deg);
	}
	100%
	{
		transform: rotate(360deg);
	}
}

::-webkit-scrollbar
{
	width: 0;
	background-color: var(--bar_color);
}

::-webkit-scrollbar-thumb
{
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-ms-border-radius: 7px;
	-o-border-radius: 7px;
	border-radius: 7px;
	background-color: var(--outline_color);
}

::-webkit-scrollbar-track
{
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-ms-border-radius: 7px;
	-o-border-radius: 7px;
	border-radius: 7px;
	background-color: var(--bar_color);
}

::-moz-selection
{
	color: white;
	text-shadow: none;
	background-color: rgba(148, 163, 184, 0.25);
}

::selection
{
	color: white;
	text-shadow: none;
	background-color: rgba(148, 163, 184, 0.25);
}