html,
body {
	position: relative;
	font-family: 'Philosopher';
	font-size: 14px;
	color: #fff;
	background-color: #041017;
}

.userway_buttons_wrapper {
    bottom: 13px !important;
    right: auto !important;
    top: auto !important;
}

.loader {
  border: 3px solid #0d3b44;
  border-top: 3px solid #00e6e6;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.credit-progress-title {
    display: flex;
    align-items: center;
    gap: 5px;
}

.credit-progress-title img {
    width: 17px;
    margin-bottom: 2px;
    cursor: pointer;
}

.tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: 300px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: left;
    border-radius: 8px;
    padding: 10px;
    position: absolute;
    top: 125%; /* or bottom: 125% for above */
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    font-size: 13px;
    line-height: 1.4;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    z-index: 10;
}

.tooltip-text::after {
    content: '';
    position: absolute;
    bottom: 100%; /* 👆 arrow points up */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent;
}

/* Show tooltip on hover */
.tooltip-wrapper:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Bar container */
.credit-progress-container {
    width: 200px;
    height: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    overflow: visible; /* let sparks escape */
    position: relative;
    margin: 5px auto;
}

/* Glowing bar */
.credit-progress-bar {
    height: 100%;
    width: 0%; /* dynamic fill */
    background: linear-gradient(90deg, #00ffe0, #00c3ff, #0078ff);
    border-radius: inherit;
    box-shadow:
        0 0 20px #00ffe0,
        0 0 50px #00c3ff,
        0 0 100px #0078ff;
    position: relative;
    transition: width 1s ease-in-out;
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

/* Particle container */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px; /* match bar */
    height: 16px; /* match bar */
    pointer-events: none;
    overflow: visible;
}

/* Individual spark */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    opacity: 0;
    animation: flyRandom 5s ease-out infinite; /* 🐢 Slowed down */
    filter: blur(1px);
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-align: center;
    white-space: nowrap;
}

.credit-progress-container:hover .progress-text {
    opacity: 1;
}

/* Fly randomly outward */
@keyframes flyRandom {
    0% {
        transform: translate(0px, 0px) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--x), var(--y)) scale(0.4);
        opacity: 0;
    }
}

/* Glow pulse animation */
@keyframes pulseGlow {
    from {
        box-shadow:
            0 0 20px #00ffe0,
            0 0 50px #00c3ff,
            0 0 100px #0078ff;
    }
    to {
        box-shadow:
            0 0 40px #00ffe0,
            0 0 80px #00c3ff,
            0 0 150px #0078ff;
    }
}

.logo {
}

a,
button {
	font-family: 'Philosopher';
	color: #fff;
}

.flex {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.flex-c {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.flex-s-c {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.button {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url('/templates/arcane_template/img/bg-button.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 221px;
	height: 47px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.button::after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 100%;
	box-shadow: 0px 15px 15px -10px #000;
}

.img-container {
	display: flex;
}

.img-container img {
	object-fit: contain;
	max-height: 100%;
	max-width: 100%;
}

.icon-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-size: contain;
	transition: all 0.3s;
}

.icon-container.icon-header-item {
	width: 26px;
	height: 26px;
	background-image: url('/templates/arcane_template/img/icon-header-item.png');
}

.icon-container.server-on {
	width: 30px;
	height: 30px;
	background-image: url('/templates/arcane_template/img/icon-server-on.png');
}
.icon-container.server-off {
	width: 30px;
	height: 30px;
	background-image: url('/templates/arcane_template/img/icon-server-off.png');
}

.icon-container.server-1 {
	width: 35px;
	height: 35px;
	background-image: url('/templates/arcane_template/img/icon-game-server.png');
}
.icon-container.server-2 {
	width: 35px;
	height: 35px;
	background-image: url('/templates/arcane_template/img/icon-game-server-1.png');
}

.icon-container.server-3 {
	width: 35px;
	height: 35px;
	background-image: url('/templates/arcane_template/img/icon-game-server-2.png');
}

.icon-container.navigation-icon {
	width: 40px;
	height: 40px;
	background-image: url('/templates/arcane_template/img/icon-section.png');
}

.icon-container.facebook {
	width: 18px;
	height: 18px;
	background-image: url('/templates/arcane_template/img/icon-facebook.png');
}
.icon-container.youtube {
	width: 24px;
	height: 18px;
	background-image: url('/templates/arcane_template/img/icon-youtube.png');
}
.icon-container.discord {
	width: 22px;
	height: 18px;
	background-image: url('/templates/arcane_template/img/icon-discord.png');
}

.hide-on-desktop {
	display: none !important;
}
.dropdown-custom {
	position: relative;
	display: inline-block;
	height: 100%;
}

.dropdown-custom-toggle {
	position: relative;
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	height: 100%;
	width: 100%;
	outline: none;
	border: none;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	padding: 0;
}

.dropdown-custom.lang .img-container {
	margin-right: 15px;
}

.dropdown-custom-toggle:hover {
	color: #83e0fb;
}

.dropdown-custom-toggle svg {
	transition: all 0.3s;
	transform: rotate(180deg);
	opacity: 0.3;
	stroke: #fff;
	fill: transparent;
}

.dropdown-custom-toggle.active svg {
	transform: rotate(0);
	opacity: 1;
}

.dropdown-custom-menu {
	display: none;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	top: 100%;
	width: 100%;
	background: linear-gradient(
		180deg,
		rgba(9, 29, 43, 1) 0%,
		rgba(9, 29, 43, 0.773546918767507) 79%,
		rgba(9, 29, 43, 0.13209033613445376) 100%
	);
}

.dropdown-custom-menu .dropdown-custom-item {
	display: flex;
	width: 100%;
	align-items: center;
	padding: 15px 30px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
}

.dropdown-custom-menu .dropdown-custom-item .img-container {
	margin-right: 20px;
}

.dropdown-custom-menu .dropdown-custom-item:hover {
	background-color: #5d95fa26;
}

.navigation {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	position: fixed;
	right: 50px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}

.navigation button {
	position: relative;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 10px;
}

.navigation button::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-45%);
	background-image: url('/templates/arcane_template/img/text-underline.png');
	width: 237px;
	height: 78px;
	opacity: 0;
	transition: all 0.3s;
}

.navigation button.active::after,
.navigation button:hover::after {
	opacity: 1;
}
.navigation button.active,
.navigation button:hover {
	color: #83e0fb;
}

.navigation button.active .icon-container,
.navigation button:hover .icon-container {
	background-image: url('/templates/arcane_template/img/icon-section-hover.png');
}

.section {
	position: relative;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 100%;
	min-height: 900px;
	height: 100vh;
}

.section1 {
	background-size: cover;
	min-height: 1080px;

	background-image: url('/templates/arcane_template/img/bg-section1.jpg');
}

.section2 {
	background-image: url('/templates/arcane_template/img/bg-section-2.png');
}
.section3 {
	background-image: url('/templates/arcane_template/img/bg-section-3.jpg');
}
.section4 {
	background-image: url('/templates/arcane_template/img/bg-section-4.jpg');
	max-width: 1900px;
	margin: 0 auto;
}

.section5 {
	background-image: url('/templates/arcane_template/img/bg-section-5.jpg');
}
.section6 {
	background-image: url('/templates/arcane_template/img/bg-section-6.jpg');
}

.section7 {
    min-height: 500px;
    height: 30vh;
}

.header {
	z-index: 30;
	position: absolute;
	top: 0;
	left: 0;
	height: 80px;
	width: 100%;
}

.header-content {
	display: flex;
	height: 100%;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.nav {
	height: 100%;
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.nav-link:hover .icon-header-item,
.dropdown-custom-toggle:hover .icon-header-item {
	background-image: url('/templates/arcane_template/img/icon-header-item-hover.png');
}

.nav .nav-item .nav-link,
.nav .nav-item .dropdown-custom {
	display: flex;
	align-items: center;
	padding: 15px 20px;
}

.nav .nav-item .nav-link:hover {
	color: #83e0fb;
	text-decoration: underline;
}

.header-content .right-content {
	display: flex;
	align-items: center;
	height: 100%;
}
.server-select {
	padding: 15px 20px;
}
.server-select .icon-server {
	position: relative;
	margin: 0px 10px;
}

.server-select .dropdown-custom-toggle {
	transition: all 0.3s;
	gap: 0;
}

.server-select .dropdown-custom-toggle:hover,
.server-select .dropdown-custom-toggle.active {
	background: linear-gradient(
		0deg,
		rgba(162, 172, 248, 1) 13%,
		rgba(122, 239, 255, 1) 37%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.server-select .dropdown-custom-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 10px;
}

.server-status,
.dropdown-custom-item .server-name,
.server-info {
	display: flex;
	align-items: center;
}

.dropdown-custom-item .server-name {
	margin-top: -10px;
	margin-bottom: 10px;
	text-transform: uppercase;
	background: linear-gradient(
		0deg,
		rgba(162, 172, 248, 1) 13%,
		rgba(122, 239, 255, 1) 37%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.server-info {
	justify-content: space-between;
	width: 100%;
}
.server-bar {
	margin: 0px 15px;
	height: 6px;
	border: 1px solid #051017;
	background-color: #051017;
	width: 60%;
}
.server-bar span {
	display: block;
	width: 100%;
	height: 4px;
	background-color: #1370d7;
}

.server-online {
	color: #dbdd0d;
	font-size: 16px;
	font-style: italic;
	font-weight: 700;
	margin-right: 15px;
}

.server-status {
	align-self: flex-end;
}

.server-status.offline {
	color: #f58987;
}

.server-select .icon-server::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url('/templates/arcane_template/img/bg-icon.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 49px;
	height: 37px;
}

.header-content .dropdown-custom .img-container {
	position: relative;
	width: 20px;
	height: 20px;
}

.header-content .dropdown-custom .img-container::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url('/templates/arcane_template/img/bg-icon.png');
	background-image: url('/templates/arcane_template/img/bg-icon.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 49px;
	height: 37px;
}

.dropdown-custom.lang {
	padding: 10px 30px;
}

.header-content .right-content .header-buttons {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-content .left-content {
	display: flex;
	align-items: center;
	height: 100%;
}

.login-btn {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	text-decoration: underline;
}

.login-btn:hover {
	text-decoration: none;
}

.button-separator {
	color: #8d9193;
}

.brightness:hover {
	filter: brightness(120%);
}

.top-buttons {
	position: absolute;
	bottom: 250px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 15px;
}

.top-buttons .button {
	height: 83px;
	width: 409px;
	background-size: contain;
	font-size: 24px;
	text-transform: uppercase;
	position: relative;
}

.top-buttons .button div {
	background-image: linear-gradient(
		0deg,
		rgba(122, 239, 255, 1) 0%,
		rgba(255, 255, 255, 0.7651435574229692) 100%
	);
	-webkit-background-clip: text;
	color: transparent;
	z-index: 1;
}

.top-buttons .button.secondary {
	background-image: url('/templates/arcane_template/img/bg-button-secondary.png');
}

/* section */
.section-container {
	max-width: 1234px;
	height: 100%;
	padding: 120px 17px;
	margin: 0 auto;
}

.section-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.section-title {
	position: relative;
	z-index: 5;
	margin-left: 75px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: max-content;
}

.section-title span {
	position: relative;
	z-index: 2;
	font-size: 24px;
	background-image: linear-gradient(
		0deg,
		rgba(122, 239, 255, 1) 0%,
		rgba(255, 255, 255, 0.7651435574229692) 100%
	);
	-webkit-background-clip: text;
	color: transparent;
	text-transform: uppercase;
}

.section-title::after {
	content: '';
	position: absolute;
	left: -170px;
	top: -75px;
	width: 409px;
	height: 195px;
	background-image: url('/templates/arcane_template/img/section-title.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: 0;
}

.news-container {
	display: flex;
	flex-wrap: wrap;
	padding-top: 75px;
	gap: 30px;
}

.news-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 380px;
	height: 500px;
	background-color: #06131c;
	background-image: url('/templates/arcane_template/img/shadow-news-block.png');
	background-repeat: no-repeat;
	background-size: contain;
}

.news-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 1px;
	background-image: url('/templates/arcane_template/img/block-line.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.news-wrapper::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 1px;
	background-image: url('/templates/arcane_template/img/block-line.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.news-wrapper .img-container {
	width: 100%;
	height: 270px;
}

.news-wrapper .img-container img {
	object-fit: cover;
}

.border-top-left {
	position: absolute;
	left: -17px;
	top: -8px;
	width: 35px;
	height: 48px;
	background-image: url('/templates/arcane_template/img/border-left.png');
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 5;
}
.border-top-right {
	position: absolute;
	right: -17px;
	top: -8px;
	width: 35px;
	height: 48px;
	background-image: url('/templates/arcane_template/img/border-right.png');
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 5;
}

.border-bottom-right {
	position: absolute;
	right: -17px;
	bottom: -8px;
	transform: rotate(180deg);
	width: 35px;
	height: 48px;
	background-image: url('/templates/arcane_template/img/border-left.png');
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 5;
}
.border-bottom-left {
	position: absolute;
	left: -17px;
	bottom: -8px;
	transform: rotate(180deg);
	width: 35px;
	height: 48px;
	background-image: url('/templates/arcane_template/img/border-right.png');
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 5;
}

.top-section {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 10px;
}

.news-title {
	display: flex;
	align-items: center;
	height: 75px;
	padding: 0px 10px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	background-image: linear-gradient(
		0deg,
		rgba(122, 239, 255, 1) 0%,
		rgba(255, 255, 255, 0.7651435574229692) 100%
	);
	-webkit-background-clip: text;
	color: transparent;
}

.news-title .news-title-container {
	height: 43px;
	width: 38px;
	background-image: url('/templates/arcane_template/img/news-title-icon.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.all-link {
	color: #8d9193;
	font-weight: 700;
	text-transform: uppercase;
	align-self: flex-start;
}

.all-link:hover {
	opacity: 0.5;
}

.news-bottom {
	position: absolute;
	bottom: 25px;
	width: 100%;
}

.news-des {
	font-size: 13px;
	line-height: 28px;
	font-weight: 700;
	padding: 0px 35px;
	margin-bottom: 30px;
}

.news-button {
	margin: 0 auto;
	text-transform: uppercase;
}

.news-block {
	margin-top: -13px;
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #071924cc;
	border-bottom: 1px solid #153046;
}

.news-block .news-title {
	margin-top: 20px;
	justify-content: center;
}

.news-block .img-container {
	padding: 0 30px;
	width: 100%;
	height: 390px;
	margin-bottom: 20px;
}
.news-block .img-container img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.news-block .news-bottom {
	position: static;
}

.news-block .news-button {
	margin-bottom: 40px;
}

/* ranking */

.tab-links {
	position: absolute;
	z-index: 5;
	top: -30px;
	left: 300px;
	display: flex;
	align-items: center;
}

.tab-link.tab-link--active,
.tab-link:hover,
.tab-link:hover::after,
.tab-link.tab-link--active::after {
	color: #fff;
}
.tab-link {
	cursor: pointer;
	position: relative;
	transition: all 0.3s;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 15px 30px;
	color: #8d9193;
}

.tab-link:hover {
	color: #fff;
}

.tab-content {
	position: relative;
	z-index: 15;
	display: none;
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.tab-content.active {
	display: block;
	overflow-x: auto;
}

.section3 .all-link {
	margin-top: -25px;
	align-self: flex-start;
	padding: 10px;
}

.rating-block {
	position: relative;
	margin-top: -13px;
	background-color: #071924cc;
	padding-top: 65px;
	padding-bottom: 40px;
	border-bottom: 1px solid #153046;
}

.rating-table {
	display: flex;
	width: 100%;
	min-width: 1000px;
	flex-direction: column;
}

.row-wrapper {
	position: relative;
}

.rating-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
	font-weight: 700;
	padding: 5px 20px;
	text-align: center;
	gap: 20px;
	transition: all 0.3s;
}
.rating-heading-row {
	padding: 10px 20px;

	background-color: #4a98ce26;
}

.rating-heading-row span {
	font-size: 16px;
	font-weight: 700;
	background-image: linear-gradient(
		0deg,
		rgba(122, 239, 255, 1) 0%,
		rgba(255, 255, 255, 0.7651435574229692) 100%
	);
	-webkit-background-clip: text;
	color: transparent;
}

.rating-row:not(.rating-heading-row):hover {
	background-color: #5d95fa29;
	transform: translateX(-10px);
}

.rating-number {
	min-width: 50px;
	width: 6%;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
}

.rating-number .icon-container {
	justify-content: center;
	position: relative;
}
.rating-number .icon-container::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url('/templates/arcane_template/img/bg-icon.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 49px;
	height: 37px;
}

.rating-icon {
	min-width: 75px;
	width: 8%;
}

.rating-icon-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.rating-icon .img-container {
	position: relative;
	width: 50px;
	height: 49px;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #264994;
}

.rating-icon .border-img {
	position: absolute;
	top: calc(50% - 1px);
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url('/templates/arcane_template/img/ava-border.png');
	width: 78px;
	height: 58px;
}

.rating-icon .img-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rating-icon.guild .img-container img {
	width: 25px;
	height: 25px;
}

.rating-name {
	min-width: 150px;
	width: 17%;
	overflow: hidden;
	text-align: start;
}

.rating-guild-name {
	min-width: 300px;
	width: 50%;
	text-align: start;
}

.rating-score {
	min-width: 150px;
	width: 17%;
	text-align: start;
}

a.rating-name:hover,
a.rating-guild-name:hover {
	opacity: 0.5;
}

.rating-char {
	min-width: 150px;
	width: 17%;
	text-align: start;
}

.rating-guild {
	min-width: 150px;
	width: 17%;
	text-align: start;
}

.rating-reset {
	min-width: 50px;
	width: 12%;
}
.rating-ranks {
	min-width: 50px;
	width: 12%;
}
.rating-level {
	min-width: 50px;
	width: 12%;
}

.rating-location {
    min-width: 70px;
    width: 20%;
}

.rating-country {
    min-width: 65px;
    width: 5%;
}

.rankings-update-time {
    margin: 25px 0 10px 25px;
}

sup {
	top: -5px;
	color: #ff0000;
	font-weight: normal;
	position: relative;
	font-size: 12px;
}
.rating-status {
	min-width: 50px;
	width: 12%;
}
.rating-row:not(.rating-heading-row) .rating-status {
	color: #dbdd0d;
}

.rating-row:not(.rating-heading-row) .rating-status.off {
	color: #f22e6e;
}

.events-table {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	max-height: 650px;
}

.events-table li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 40px;
	max-width: 50%;
}

.event-name a {
	display: block;
	font-weight: bold;
	color: #c096ff;
	font-size: 16px;
	margin-bottom: 5px;
}

.event-name a:hover {
	opacity: 0.5;
}

.event-time {
	text-align: right;
	color: #94bfdc;
}
.event-time p {
	font-size: 14px;
	margin-bottom: 5px;
}

/* characters */
.section4 {
	background-size: auto;
}
.section4 .section-container {
	height: max-content;
}
.charactersBlock {
	height: 100%;
	width: 100%;
	max-width: 1900px;
	position: absolute;
	top: 0;
	left: 0;
}

.slider-for .slick-active .team-online-barBlock-bar span {
	width: 100%;
}

.slider-for-block {
	max-width: 1900px;
	margin: 0 auto;
	position: relative;
}

.slider-for-slide {
	height: 673px;
	padding-top: 221px;
	padding-left: 350px;
	padding-right: 350px;
}

.hero-icon-class {
	background: url('/templates/arcane_template/img/hero-class-icon-1.png') no-repeat;
	width: 194px;
	height: 142px;
	display: inline-block;
	margin-right: 20px;
	position: relative;
}

.hero-title {
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 10px;
}

.hero-title_text {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	font-style: italic;
	max-width: 350px;
	height: 130px;
	line-height: 22px;
}
.hero-title_text span {
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
	display: block;
	margin-bottom: 15px;
}
.hero-title_text .coming-soon {
    display: inline-block;
    margin-left: 10px;
    text-transform: none;
    font-style: italic;
    font-size: 22px;
    color: #7d7dbf;
}
.hero-title_text .more-tooltip {
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    text-transform: none;
    text-decoration: underline;
    cursor: pointer;
}

.team-online-title {
	text-transform: uppercase;
	margin-bottom: 40px;
}

.team-online-icon {
	position: relative;
	display: inline-block;
	width: 89px;
	height: 63px;
	background-image: url('/templates/arcane_template/img/bg-icon.png');
	background-repeat: no-repeat;
	background-size: contain;
}

.team-online-icon::after {
	content: '';
	position: absolute;
	display: block;
	width: 55px;
	height: 64px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-repeat: no-repeat;
	background-size: contain;
}

.team-online-icon-power::after {
	background-image: url('/templates/arcane_template/img/char-icon-1.png');
}
.team-online-icon-defense::after {
	background-image: url('/templates/arcane_template/img/char-icon-2.png');
}
.team-online-icon-dexterity::after {
	background-image: url('/templates/arcane_template/img/char-icon-3.png');
}
.team-online-icon-speed::after {
	background-image: url('/templates/arcane_template/img/char-icon-4.png');
}
.team-online-icon-mastery::after {
	background-image: url('/templates/arcane_template/img/char-icon-5.png');
}

.team-online-block {
	display: flex;
	align-items: center;
	padding: 2px 0px;
	max-width: 285px;
	width: 100%;
	margin-right: 50px;
}
.team-online-block:nth-child(even) {
	margin-left: 15px;
}

.team-online-barBlock {
	display: flex;
	flex-direction: column;
	gap: 5px;
	max-width: 200px;
	width: 100%;
	margin-left: 8px;
}

.team-online-barBlock_title {
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	font-style: italic;
	text-transform: uppercase;
	margin-left: 10px;
}

.team-online-barBlock_title::first-letter {
	font-size: 20px;
}
.team-online-barBlock_percent {
	color: #73d1f4;
	font-weight: 700;
	font-style: italic;
}
.team-online-barBlock-bar {
	position: relative;
	background-color: #000;
	height: 8px;
	border: 1px solid #000;
	-webkit-transform: skew(-40deg);
	-moz-transform: skew(-40deg);
	-o-transform: skew(-40deg);
}
.team-online-barBlock-bar span {
	background: linear-gradient(
		90deg,
		rgba(6, 15, 23, 1) 0%,
		rgba(103, 109, 253, 1) 100%
	);
	display: block;
	height: 6px;
	width: 0%;
	transition: 2s;
}

.team-onlineBlock {
	display: flex;
	flex-direction: column;
}

.hero-img {
	position: absolute;
	width: 100%;
}

.slider-nav-slide-block {
	width: 160px;
	height: 155px;
	background: url('/templates/arcane_template/img/hero-small-bg.png') center no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
	position: relative;
	width: 100%;
	margin-top: 10px;
}
.slider-nav-slide-block:after {
	content: '';
	position: absolute;
	background: url('/templates/arcane_template/img/hero-small-bright-effect.png') center no-repeat;
	width: 72px;
	height: 50px;
	bottom: 33px;
	left: 50%;
	margin-left: -36px;
	opacity: 0;
	transition: 0.5s;
}
.slider-nav-slide-block img {
	position: absolute;
}

.hero-img {
	top: 50px;
	left: 50%;
}

.hero-img-2 {
	top: 0px;
	left: 30%;
}

.hero-img-5 {
	top: 0px;
}

.hero-img-7 {
	top: 0px;
}

.hero-img-9 {
	top: -50px;
}

.hero-img-10 {
	left: 30%;
}

.hero-img-14 {
	top: -50px;
}

.hero-small {
	margin-top: -50px;
	margin-left: 25px;
}
.hero-small-1 {
	margin-top: -45px;
	margin-left: 20px;
}

.hero-small-2 {
	margin-top: -50px;
	margin-left: 25px;
}

.hero-small-3 {
	margin-top: -40px;
	margin-left: 30px;
}

.hero-small-5 {
	margin-top: -50px;
	margin-left: 15px;
}

.hero-small-6 {
	margin-top: -55px;
	margin-left: -20px;
}

.hero-small-8 {
	margin-top: -40px;
	margin-left: 10px;
}

.hero-small-9 {
	margin-left: 15px;
}
.hero-small-11 {
	margin-top: -40px;
	margin-left: -30px;
}

.hero-small-12 {
	margin-left: 15px;
}
.hero-small-13 {
	margin-top: -45px;
	margin-left: 5px;
}

.hero-small-15 {
	margin-left: 5px;
}

.slider-nav-block {
	background: url('/templates/arcane_template/img/char-slide-active-border.png') center no-repeat;
	background-color: #020b10;
	height: 172px;
}

.slider-nav-slide {
	opacity: 0.5;
	transition: 0.5s;
	cursor: pointer;
}
.slider-nav-slide:hover {
	opacity: 1;
}

.slider-nav {
	max-width: 700px;
	margin: 0 auto;
}
.slider-nav .slick-center {
	opacity: 1;
}
.slider-nav .slick-center .slider-nav-slide-block {
	background: url('/templates/arcane_template/img/hero-small-hover-bg.png') center no-repeat;
}
.slider-nav .slick-center .slider-nav-slide-block:after {
	opacity: 1;
}
.slider-nav .slick-arrow {
	position: absolute;
	width: 30px;
	height: 20px;
	font-size: 0px;
	top: 50%;
	transition: 0.3s;
	opacity: 0.7;
}
.slider-nav .slick-arrow:hover {
	opacity: 1;
	filter: drop-shadow(0px 0px 10px rgba(98, 132, 194, 0.2));
}
.slider-nav .slick-prev {
	background: url('/templates/arcane_template/img/slick-arrow.png') no-repeat;
	left: -70px;
	transform: rotate(-180deg);
}
.slider-nav .slick-next {
	background: url('/templates/arcane_template/img/slick-arrow.png') no-repeat;
	right: -70px;
}

/* media */

.section6 .tab-links {
	position: relative;
	z-index: 5;
	top: 0;
	left: 0;
	margin-top: 35px;
}

.section6 .tab-links .tab-link {
	display: flex;
	align-items: center;
	color: #fff;
}

.section6 .tab-links .tab-link {
	color: #fff;
}

.section6 .tab-links .tab-link.tab-link--active,
.section6 .tab-links .tab-link:hover {
	color: #83e0fb;
	text-decoration: underline;
}

.section6 .tab-links .tab-link.tab-link--active .icon-header-item,
.section6 .tab-links .tab-link:hover .icon-header-item {
	background-image: url('/templates/arcane_template/img/icon-header-item-hover.png');
}

.media-slider {
	perspective: 500px;
	overflow: visible;
	display: none;
}
.media-slider.active {
    display: block;
}
.media-slider .slick-list {
	padding-left: 0 !important;
	padding-right: 0 !important;
	padding-top: 20px !important;
	padding-bottom: 40px !important;
	overflow-y: visible;
}
.media-slider .media-slide {
	position: relative;
	transition: 0.5s;
	width: 900px;
	margin: 0 -100px;
	box-shadow: 0 10px 20px 0 #060a0d;
}

.media-slider .slick-slide.is-right {
	transform: translateX(-150px) skew(0deg, 1deg) scale(0.9);
}

.media-slider .slick-slide.is-right-2 {
	margin-left: -150px;
	transform: scale(0.8);
}

.media-slider .slick-slide.is-left {
	transform: translateX(150px) skew(0deg, -1deg) scale(0.9);
}
.media-slider .slick-slide.is-left-2 {
	margin-right: -150px;
	transform: scale(0.8);
}

.media-slider .media-slide.slick-center {
	z-index: 10;
}

.media-slide img {
	object-fit: cover;
	width: 100%;
	height: 600px !important;
}

.media-slider .slick-arrow {
	z-index: 70;
	width: 47px;
	height: 47px;
	font-size: 0px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0.6;
}
.media-slider .slick-arrow:hover {
	opacity: 1;
}
.media-slider .slick-next {
	background: url('/templates/arcane_template/img/slick-arrow-2.png') no-repeat;
	right: 0px;
	margin-right: -70px;
}
.media-slider .slick-prev {
	background: url('/templates/arcane_template/img/slick-arrow-2.png') no-repeat;
	transform: rotate(180deg) translateY(25px);
	left: 0px;
	margin-left: -65px;
}

.tiktok-embed {
  width: 900px !important;
  height: 600px !important;
  max-width: unset !important;
  
}

.tiktok-embed iframe {
  width: 100% !important;
  height: 100% !important;
}

.tiktok-embed #embed-video-container {
    background: #041017 !important;
    background-color: #041017 !important;
}

.footerMenu {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	max-width: 1234px;
    margin: 0 auto;
    padding: 50px 17px;
}

.footerMenu-block {
	width: 25%;
}

.f-menu li {
	padding: 5px 0px;
}
.f-menu li a {
	display: block;
	width: 100%;
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	color: #5d7587;
}
.f-menu li a:hover {
	color: #83e0fb;
	text-decoration: underline;
}
.f-menu li:first-child {
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
}
.email-support {
	color: #5d7587;
}

.f-menu li .support-link {
	color: #fff;
}

.copyrights {
	display: flex;
	justify-content: center;
	width: max-content;
	gap: 5px;
	color: #5d7587;
	margin: 0 auto;
}

.copyrights a:hover {
	color: #83e0fb;
	text-decoration: underline;
}

/* burger menu */
.hamburger-menu {
	position: relative;
	z-index: 15;
	top: 50%;
	transform: translateY(-50%);
	left: 0px;
	cursor: pointer;
	display: block;
	width: 75px;
	height: 100%;
	background-image: url('/templates/arcane_template/img/menu.png');
	background-repeat: no-repeat;
	background-position: center;
}

.hamburger-menu-close {
	cursor: pointer;
	display: block;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	padding: 15px 30px;
}

.hamburger-menu-content {
	position: fixed;
	z-index: 50;
	height: 100vh;
	max-height: 100vh;
	width: 100%;
	max-width: 620px;
	overflow-y: auto;
	background-color: #000;
	transform: translateX(-100%);
	transition: all 0.3s;
}

.hamburger-menu-content.active {
	transform: translateX(0);
}

.hamburger-menu-content .nav {
	height: max-content;
	flex-direction: column;
	align-items: flex-start;
}

.hamburger-menu-content .nav-item {
	display: flex;
	width: 100%;
}

.hamburger-menu-content .nav .nav-item .nav-link,
.hamburger-menu-content .nav .dropdown-custom-toggle {
	position: relative;
	font-size: 24px;
	height: 100%;
	width: 100%;
	justify-content: flex-start;
	padding: 10px 30px;
}

.hamburger-menu-content .nav .dropdown-custom {
	padding: 0;
	width: 100%;
}

.hamburger-menu-content .nav-link:hover {
	color: #ffba36;
}

.hamburger-menu-content .dropdown-custom.lang,
.hamburger-menu-content .server-select {
	height: max-content;
	width: 100%;
}
.hamburger-menu-content .dropdown-custom .img-container {
	width: 20px;
	height: 20px;
}

.hamburger-menu-content .server-name {
	font-size: 20px;
}

.hamburger-menu-content .lang-name {
	font-size: 20px;
}

.modal {
	display: none;
	position: fixed;
	z-index: 150;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
	justify-content: center;
	align-items: center;
}

.modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0 auto;
	display: flex;
	align-items: center;
	flex-direction: column;
	max-width: 600px;
	width: calc(100% - 20px);
	height: auto;
	background-color: #041017;
	padding: 75px 0px;
	border-bottom: 1px solid #153046;
}

.modal-title {
	position: absolute;
	z-index: 5;
	left: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: max-content;
	margin-top: -10px;
}

.modal-title span {
	position: relative;
	z-index: 2;
	font-size: 24px;
	background-image: linear-gradient(
		0deg,
		rgba(122, 239, 255, 1) 0%,
		rgba(255, 255, 255, 0.7651435574229692) 100%
	);
	-webkit-background-clip: text;
	color: transparent;
	text-transform: uppercase;
	margin-left: 75px;
}

.modal-title::after {
	content: '';
	position: absolute;
	left: 0px;
	top: -75px;
	width: 409px;
	height: 195px;
	background-image: url('/templates/arcane_template/img/section-title.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: 0;
}

.modal-title::after {
	left: -93px;
}

.modal-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 15px 0px;
}

.modal-wrapper {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	padding: 0 75px;
	overflow-y: auto;
	overflow-x: hidden;
}

.modal .close {
	position: absolute;
	z-index: 150;
	top: -15px;
	right: -15px;
	cursor: pointer;
	display: block;
	width: 30px;
	height: 30px;
	background-image: url('/templates/arcane_template/img/modal-close.png');
	background-repeat: no-repeat;
	background-size: contain;
}

.modal .close::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url('/templates/arcane_template/img/bg-icon.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 49px;
	height: 37px;
}

.registration-text {
	margin-left: 25px;
	background-image: linear-gradient(
		0deg,
		rgba(122, 239, 255, 1) 0%,
		rgba(255, 255, 255, 0.7651435574229692) 100%
	);
	-webkit-background-clip: text;
	color: transparent;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
}

.registration-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}
.registration-form .button {
	padding: 16px;
}

.form-group {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 5px;
	max-width: 240px;
	margin: 0 auto;
	margin-bottom: 10px;
}

.form-input {
	position: relative;
	border: 1px solid transparent;
	background-color: #010910;
	height: 33px;
	display: flex;
	width: 100%;
	align-items: center;
	color: #fff;
	transition: all 0.3s;
	padding: 12px;
	font-size: 14px;
	outline: none;
	clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
}

.form-input-with-icon {
	padding-left: 60px;
}

.registration-label {
	display: flex;
	gap: 5px;
}

.input-container {
	position: relative;
}

.input-container .icon-container {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	z-index: 15;
}

.input-container .icon-container::after {
	content: '';
	position: absolute;
	top: calc(50% + 1px);
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url('/templates/arcane_template/img/bg-icon.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 49px;
	height: 37px;
}

.icon-container.icon-user {
	width: 26px;
	height: 25px;
	background-image: url('/templates/arcane_template/img/icon-user.png');
}

.icon-container.icon-password {
	width: 24px;
	height: 26px;
	background-image: url('/templates/arcane_template/img/icon-password.png');
}

.icon-container.icon-email {
	width: 26px;
	height: 22px;
	background-image: url('/templates/arcane_template/img/icon-email.png');
}

.modal-info-submit {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	gap: 40px;
}

.modal-info-submit .reg-btn {
	text-transform: uppercase;
}

.modal-info-submit .forum-btn {
	text-transform: uppercase;
}

.modal-link {
	color: #7cd1f9;
	text-decoration: underline;
}

.modal-link:hover {
	opacity: 0.5;
}

/* custom-checkbox */

.custom-checkbox {
	position: absolute;
	z-index: -1;
	opacity: 0;
	height: 0;
	width: 0;
}

.custom-checkbox + label {
	position: relative;
	cursor: pointer;
	align-items: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	display: flex;
	gap: 3px;
	width: 100%;
	height: 100%;
	color: #4d7286;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	padding-left: 30px;
}
.custom-checkbox + label::before {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0px;
	content: '';
	display: flex;
	width: 14px;
	height: 14px;
	border: 2px solid #7cd5ee33;
	background-repeat: no-repeat;
	background-position: center center;
	transition: all 0.3s;
}
.custom-checkbox:hover + label::before {
	border: 2px solid #7cd5eeb3;
}
.custom-checkbox:checked + label::before {
	content: '';
	position: absolute;
	background-image: url('/templates/arcane_template/img/checkbox.png');
}

.logo {
	display: flex;
	justify-content: center;
	margin-top: 90px;
	width: 100%;
}

.logo img {
	position: relative;
    width: 1500px;
    top: -140px;
    left: 10px;
}

.footer-logo {
	display: flex;
	justify-content: center;
	width: 100%;
}

.footer-logo img {
	width: 500px;
    margin-bottom: 20px;
}

.toTop {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 5px;
	z-index: 55;
	bottom: 200px;
	right: 0px;
	width: 125px;
	height: 50px;
	transform: rotate(-90deg);
	transition: all 0.3s;
	background-color: #031018b3;
	border-radius: 25px;
}

.toTop .icon-container {
	width: 47px;
	height: 47px;
	background-image: url('/templates/arcane_template/img/totop-button.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transform: rotate(90deg);
}

.pages .section-container {
	padding-bottom: 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: end;
}

.pages .footerMenu {
	width: 100%;
}

.pages .top-section {
	align-self: flex-start;
}

.pages .section-title {
	margin-left: 66px;
}

.pages .section6 {
	margin-top: -800px;
}

.main {
	position: relative;
}

.main-content {
	position: relative;
	transform: translateY(-400px);
	z-index: 2;
	height: max-content;
}

.main-content .news-block {
	height: 100%;
}

.pages .logo-section .section-container {
	justify-content: center;
}

.pages .news-title {
	position: relative;
	z-index: 15;
	margin: 0 auto;
	margin-top: 20px;
	padding: 30px 0px;
	max-width: 80%;
	text-align: center;
}

.pages .news-date {
	margin-left: 35px;
	margin-bottom: 35px;
	padding-left: 20px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
	width: 241px;
	height: 42px;
	background-image: url('/templates/arcane_template/img/news-date.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	font-size: 16px;
	color: #33576c;
	font-size: 14px;
	font-weight: 700;
}

.pages .news-date span {
	font-size: 20px;
	color: #7cd1f9;
}

/* account-panel */

.pages .account-block {
	padding-top: 75px;
	margin-top: -13px;
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #071924cc;
	border-bottom: 1px solid #153046;
}

.pages .home-block-subtitle {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 30px;
	text-align: center;
}

.pages .account-setting {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 50px;
	padding: 0px 15px;
}

.pages .account-setting_block {
	width: calc(50% - 2px);
	height: 60px;
	display: flex;
	align-items: center;
	padding: 0px 25px;
}
.pages .account-setting_block:nth-child(1) {
	background-color: #031018;
}
.pages .account-setting_block:nth-child(2) {
	background-color: #031018;
}
.pages .account-setting_block:nth-child(1) {
	background-color: #031018;
}
.pages .account-setting_block:nth-child(5) {
	background-color: #031018;
}
.pages .account-setting_block:nth-child(6) {
	background-color: #031018;
}
.pages .account-setting_block:nth-child(9) {
	background-color: #031018;
}
.pages .account-setting_block:nth-child(10) {
	background-color: #031018;
}

.pages .account-icon {
	display: inline-block;
	width: 21px;
	height: 21px;
	background-image: url('/templates/arcane_template/img/account-setting-icons.png');
	background-repeat: no-repeat;
	margin-right: 35px;
	flex-shrink: 0;
}

.pages .account-icon-user {
	background-position: left top;
}

.pages .account-icon-member {
	background-position: left top -286px;
}

.pages .account-icon-email {
	background-position: left top -60px;
}

.pages .account-icon-last-login {
	background-position: left top -346px;
}

.pages .account-icon-rank {
	background-position: left top -119px;
	height: 18px;
}

.pages .account-icon-ip {
	background-position: left top -407px;
}

.pages .account-icon-server {
	background-position: left top -180px;
	height: 19px;
}

.pages .account-icon-current-ip {
	background-position: left top -467px;
}

.pages .account-icon-current-vip {
	background-position: left top -240px;
}

.pages .account-icon-current-vip-exp {
	background-position: left top -529px;
}

.pages .account-setting_f {
	display: block;
	width: 50%;
	font-weight: 700;
}

.pages .charOptions-title {
	text-align: center;
	color: #ffffff;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 36px;
}

.charOptions-flex {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	padding: 0px 30px;
	padding-bottom: 60px;
}

.pages .charOptions-col {
	padding: 12px;
}

.pages .charOptions-block {
	display: flex;
	align-items: center;
	justify-content: center;
	align-content: center;
	flex-wrap: wrap;
	width: 374px;
	height: 125px;
	background: url('/templates/arcane_template/img/option-bg.jpg') center no-repeat;
	background-size: cover;
	color: #6ec9eb;
	font-style: italic;
	position: relative;
}
.pages .charOptions-block:hover {
	filter: brightness(120%);
}
.pages .charOptions-block p {
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-size: 32px;
	margin-bottom: 10px;
}

.lkBlock {
	position: relative;
}

.panel-active {
	position: relative;
	padding: 0px 34px 0px 12px;
	cursor: pointer;
	transition: 0.3s;
	height: 90px;
}
.panel-active:hover {
	background-color: #071621;
}
.panel-active.active {
	background-color: #071621;
}
.panel-active img {
	margin-right: 12px;
	width: 60px;
	height: 60px;
}
.panel-active::before {
	content: '';
	position: absolute;
	right: 7px;
	top: 42px;
	border: 7px solid transparent;
	border-top: 7px solid #6ec9eb;
}

.panel-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	left: unset;
	background-color: #031018;
	padding-top: 40px;
	display: none;
	width: max-content;
	transform: translateX(0px);
}

.panel-dropdown_title {
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 40px;
	text-align: center;
}

.panel-dropdown_my-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #ffb400;
	font-weight: bold;
	padding: 0 20px;
	margin-bottom: 20px;
}

.color-green {
	color: #b0d90e !important;
}

.panel-dropdown_list {
	margin-bottom: 5px;
}
.panel-dropdown_list li a {
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	padding: 10px 20px;
}
.panel-dropdown_list li a:hover {
	background-color: #172f49;
}
.panel-dropdown_button {
	text-align: center;
	margin: 20px 0;
	padding: 0 20px;
}

/* rankings */

.pages .ranking-block {
	padding-top: 75px;
	margin-top: -13px;
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #071924cc;
	border-bottom: 1px solid #153046;
}

.pages .breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 15;
	margin: 0 40px;
	margin-bottom: 30px;
}
.pages .breadcrumbs ul {
	display: flex;
	align-items: center;
	margin-left: -15px;
}
.pages .breadcrumbs ul li {
	position: relative;
	padding: 15px;
}
.pages .breadcrumbs ul li:after {
	content: '';
	position: absolute;
	right: -8px;
	top: 50%;
	margin-top: -4px;
	border: 5px solid transparent;
	border-left: 5px solid #fff;
}
.pages .breadcrumbs ul li:last-child:after {
	display: none;
}
.pages .breadcrumbs ul li a {
	color: #fff;
}
.pages .breadcrumbs ul li a:hover {
	color: #6ec9eb;
}
.pages .selectTop {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 40px;
	padding: 0 40px;
}
.pages .rankings-search {
    position: absolute;
    top: 78px;
    left: 40px;
}
.pages .rankings-search .search-container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 6;
}

.pages .rankings-search .search-container form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pages .rankings-search .search-container button {
    width: 138px;
    height: 28px;
}

.pages .rankings-search .search-container input {
    width: unset;
    clip-path: unset;
    border-radius: 5px;
}

.pages .topThree {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 70px;
	padding: 0 40px;
}

.pages .topThree-block {
	max-width: 360px;
	height: 120px;
	display: flex;
}

.pages .topThree-block_place {
	width: 78px;
}

.pages .first-place {
	background: url('/templates/arcane_template/img/first-place-img.jpg') center bottom no-repeat;
	background-color: #0c0c0e;
}

.pages .second-place {
	background: url('/templates/arcane_template/img/second-place-img.jpg') center bottom no-repeat;
	background-color: #0c0c0e;
}

.pages .third-place {
	background: url('/templates/arcane_template/img/third-place-img.jpg') center bottom no-repeat;
	background-color: #0c0c0e;
}

.pages .topThree-block_class {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #102a3b;
	overflow: hidden;
	position: relative;
	width: 134px;
}

.pages .topThree-block_class .hero-small {
	margin-top: 0;
}

.pages .topThree-block_class .slider-nav-slide-block {
	width: 165px;
	background: url('/templates/arcane_template/img/hero-small-hover-bg.png') center no-repeat;
	transform: scale(0.7);
	margin-top: 0px;
}
.pages .topThree-block_class .slider-nav-slide-block:after {
	opacity: 1;
}

.pages .topThree-block_text {
	background-color: #031018;
	padding: 20px 18px;
	position: relative;
}

.pages .topThree-block_text-t p {
	color: #6ec9eb;
	font-weight: bold;
	margin-bottom: 10px;
}

.pages .topThree-block_text-b {
	position: absolute;
	left: 18px;
	bottom: 20px;
}

.pages .slider-nav-slide-block img {
	top: 0;
}

.pages .online {
	color: #b0d90e;
}

.pages .offline {
	color: #e91414;
}

select {
	background: #26272b;
	width: 100%;
	max-width: 290px;
	border: none;
	color: #fff;
	padding: 0px 40px 0px 20px;
	height: 45px;
	font-size: 14px;
	position: relative;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	-ms-appearance: none;
	appearance: none !important;
	cursor: pointer;
}

.selectTop {
    position: relative;
}

.selectTop::before {
	content: '';
    position: absolute;
    right: 55px;
    top: 20px;
    border: 7px solid transparent;
    border-top: 7px solid #6ec9eb;
    z-index: 1;
}

.select {
	width: 100%;
	max-width: 290px;
	height: 45px;
	padding: 0px 40px 0px 20px;
	color: #fff;
	font-size: 14px;
	display: flex;
	align-items: center;
	outline: none;
	position: relative;
	cursor: pointer;
	user-select: none;
	background-color: #031018;
}

.select:focus .select_dropdown {
	display: block;
}

.select_dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	list-style-type: none;
	background-color: #031018;
	display: none;
	z-index: 10;
	transition: 0.3s;
}

option.select_option {
	height: 45px;
	padding: 0px 20px;
	display: flex;
	align-items: center;
	border-top: 1px solid #031018;
	color: #83e0fb;
}

option.select_option:hover {
	background-color: #071621 !important;
}

.ranking-wrapper {
	width: 100%;
	overflow-x: auto;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin: 20px 0;
}
.pagination li {
	padding: 6px;
}

.number {
	display: flex;
	align-items: center;
	justify-content: center;
	background: url('/templates/arcane_template/img/bg-icon.png') no-repeat;
	background-size: contain;
	width: 49px;
	height: 37px;
	color: #fff;
}

.number::after {
	content: '';
	position: absolute;
	z-index: -1;
	background-color: #031018;
	width: 35px;
	height: 30px;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
	opacity: 0;
	transition: all 0.3s;
}

.number.active::after,
.number:hover::after {
	opacity: 1;
}
.number.active {
	filter: drop-shadow(0px 0px 10px rgba(98, 132, 194, 0.2));
}

.number:hover {
	filter: drop-shadow(0px 0px 10px rgba(98, 132, 194, 0.2));
}

.number-nav {
	display: block;
	width: 47px;
	height: 47px;
	background: url('/templates/arcane_template/img/slick-arrow-2.png') no-repeat;
	opacity: 0.5;
}
.number-nav:hover {
	opacity: 1;
	filter: drop-shadow(0px 0px 10px rgba(98, 132, 194, 0.2));
}

.nav-prev {
	transform: rotate(180deg);

	margin-right: 30px;
}

.nav-next {
	margin-left: 30px;
}

/* download */

.flex-c-c {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.pages .download-block {
	padding-top: 50px;
	padding: 50px 35px;
	margin-top: -13px;
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #071924cc;
	border-bottom: 1px solid #153046;
}
.d-block {
	margin-bottom: 50px;
	overflow: hidden;
}

.dTop {
	display: flex;
	flex-wrap: wrap;
}

.dTop-left {
	width: 60%;
	height: 570px;
}
.dTop-left > div {
	height: 100%;
}

.dTop-right {
	width: 40%;
}
.dTop-right > div {
	height: 100%;
}

.dTop-cat {
	width: 100%;
	padding: 3px;
}

.dTop-cat_title {
	font-size: 15px;
	text-align: center;
	margin-bottom: 10px;
}

.dTop-cat_blocks {
	flex-wrap: wrap;
}

.dTop-cat_block {
    max-width: 25%;
	padding: 0 10px;
	display: block;
	margin: 3px;
	background-color: #020a0e;
	height: 140px;
	position: relative;
}
.dTop-cat_block:before {
	content: '';
	position: absolute;
	width: 128px;
	height: 89px;
	left: 50%;
	margin-left: -64px;
	bottom: -10px;
	z-index: 2;
	transition: 0.3s;
	opacity: 0;
}
.dTop-cat_block:hover:before {
	opacity: 1;
}

.dTop-cat_block-blue:before {
	background: url('/templates/arcane_template/img/hover-blue.png') no-repeat;
}

.dTop-cat_block-green:before {
	background: url('/templates/arcane_template/img/hover-green.png') no-repeat;
}

.dTop-cat_block-orange:before {
	background: url('/templates/arcane_template/img/hover-orange.png') no-repeat;
}

.dTop-cat_block-turquoise:before {
	background: url('/templates/arcane_template/img/hover-turquoise.png') no-repeat;
}

.dTop-cat_block-img {
	display: flex;
	align-items: center;
	justify-items: center;
	width: 115px;
	height: 115px;
	margin: 0 auto;
}

.dTop-cat_block-title {
	text-align: center;
	position: relative;
	margin-top: -15px;
	z-index: 3;
}

.dtop-update {
	text-align: center;
}

.dtop-update_title {
	font-weight: bold;
	font-size: 15px;
	margin-bottom: 20px;
	text-transform: uppercase;
	background-image: linear-gradient(
		0deg,
		rgba(122, 239, 255, 1) 0%,
		rgba(255, 255, 255, 0.7651435574229692) 100%
	);
	-webkit-background-clip: text;
	color: transparent;
}

.dtop-update_text {
	color: #d5e7e8;
	line-height: 30px;
	max-width: 330px;
	margin: 0 auto;
	margin-bottom: 30px;
}

.button-middle {
	margin: 0 auto;
}

.d-title {
	font-weight: bold;
	font-size: 18px;
	color: #7cd1f9;
	position: relative;
	margin: 0 auto;
	margin-bottom: 40px;
	width: max-content;
}
.d-title:before {
	content: '';
	position: absolute;
	background: url('/templates/arcane_template/img/separator-arrow.png') no-repeat;
	background-size: contain;
	width: 130px;
	height: 23px;
	left: -140px;
	top: 50%;
	transform: translateY(-50%);
}
.d-title::after {
	content: '';
	position: absolute;
	background: url('/templates/arcane_template/img/separator-arrow.png') no-repeat;
	background-size: contain;
	width: 130px;
	height: 23px;
	right: -140px;
	top: 50%;
	transform: translateY(-50%) rotate(180deg);
}
.table-top-scroll {
	overflow-x: auto;
}
.pages table {
	width: 100%;
}
.pages table td {
	border-collapse: collapse;
	padding: 20px 30px;
	border-top: 1px solid #262525;
	vertical-align: middle;
}
.pages table th {
	border-collapse: collapse;
	padding: 20px 30px;
	text-align: left;
	color: #ffb400;
	font-weight: bold;
}
.pages table thead tr {
	background-color: #152530;
	border-top: 2px solid #1d2d39;
}

.table-download {
	border-top: 1px solid #1d2d39;
}
.table-download thead {
	font-weight: bold;
}
.table-download thead td {
	background-color: #152530;
	font-size: 15px;
}
.table-download td {
	text-align: center;
	border: 1px solid #1d2d39;
	background-color: #0f1f29;
}
.table-download td:first-child {
	width: 25%;
}

.driverBlock {
	display: block;
	padding: 12px;
}

.d-title-d {
	margin-bottom: 30px;
}

.faq-block_title {
	color: #7cd1f9;
	font-weight: bold;
	font-size: 15px;
	text-decoration: underline;
	margin-bottom: 30px;
	position: relative;
	padding-left: 50px;
}
.faq-block_title:before {
	content: '';
	position: absolute;
	background: url('/templates/arcane_template/img/icon-question.png') no-repeat;
	width: 36px;
	height: 36px;
	left: 0px;
	top: 50%;
	margin-top: -18px;
}

.faq-block_text {
	line-height: 30px;
}

.faq-block {
	margin-bottom: 50px;
}
.faq-block:last-child {
	margin-bottom: 0px;
}

/* market page */

.pages .market-block {
	padding-top: 75px;
	margin-top: -13px;
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #071924cc;
	border-bottom: 1px solid #153046;
}

.market-block .search-input {
	position: relative;
}

.market-block .search-input:after {
	cursor: pointer;
	content: '';
	position: absolute;
	right: 22px;
	top: calc(50% - 9.5px);
	width: 17px;
	height: 19px;
	background: url('/templates/arcane_template/img/search-icon.png') center no-repeat;
}

.market-block .search-input input {
	width: 100%;
	height: 45px;
	border: none;
	outline: none;
	color: #fff;
	background: #031018;
	font-size: 16px;
	padding: 0 32px;
}

.market-block .search-input input::placeholder {
	color: #fff;
}

.market-block .deposit-top {
	margin: 0 40px;
}

.market-block .game-items {
	padding: 40px;
}

.market-block .filter-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 40px;
}

.market-block .filter-item a {
	display: flex;
	align-items: center;
	font-size: 16px;
	opacity: 0.6;
	transition: 0.3s;
}

.market-block .filter-item a img {
	margin-right: 5px;
}

.market-block .filter-item.active a,
.market-block .filter-item:hover a {
	opacity: 1;
	color: #6ec9eb;
}

.market-block .search-block {
	margin-top: 50px;
	gap: 10px;
}

.market-block .search-block .left {
	width: 60%;
}

.market-block .search-block .right {
	width: calc(40% - 10px);
	justify-content: end;
}

.market-block .search-block .left,
.market-block .search-block .current-item {
	flex-wrap: nowrap;
}

.market-block .search-block .current-item-label {
	color: #6ec9eb;
	text-transform: uppercase;
	margin-left: 15px;
}

.market-block .search-block .input-wrap {
	width: 100%;
	margin-left: 30px;
	margin-right: auto;
}

.market-block .search-block .sort-by {
	flex-wrap: nowrap;
}

.market-block .search-block .sort-by p {
	font-size: 14px;
	margin-right: 40px;
	white-space: nowrap;
}

.market-block .search-block .sort-by .select {
	width: 100%;
}

.market-block .search-block .sort-by .select,
.market-block .search-block .sort-by .select a {
	font-size: 14px;
	color: #fff;
}

.market-block .items-content {
	flex-wrap: wrap;
	padding: 0 40px;
	gap: 15px 15px;
}

.market-block .items-content .item-content:hover {
	transform: translateY(-10px);
	box-shadow: 0px 10px 30px #000000bf;
}

.market-block .items-content .item-content {
	border: 1px solid #062131;
	background-color: #031018;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 210px;
	min-height: 320px;
	position: relative;
	transition: 0.3s all;
}

.market-block .items-content .item-content .border-bottom-left,
.market-block .items-content .item-content .border-bottom-right,
.market-block .items-content .item-content .border-top-left,
.market-block .items-content .item-content .border-top-right,
.market-block .plan-items .plan-item .border-bottom-left,
.market-block .plan-items .plan-item .border-bottom-right,
.market-block .plan-items .plan-item .border-top-left,
.market-block .plan-items .plan-item .border-top-right {
	width: 20px;
	height: 20px;
}

.market-block .items-content .item-content .border-top-left,
.market-block .items-content .item-content .border-top-right,
.market-block .plan-items .plan-item .border-top-left,
.market-block .plan-items .plan-item .border-top-right {
	top: -3px;
	left: -8px;
}

.market-block .items-content .item-content .border-top-right,
.market-block .plan-items .plan-item .border-top-right {
	left: unset;
	right: -13px;
}

.market-block .items-content .item-content .border-bottom-left,
.market-block .plan-items .plan-item .border-bottom-left {
	left: -13px;
	bottom: -3px;
}

.market-block .items-content .item-content .border-bottom-right,
.market-block .plan-items .plan-item .border-bottom-right {
	right: -8px;
	bottom: -3px;
}

.market-block .items-content .title-item {
	font-size: 14px;
	margin-bottom: 30px;
	color: #fff;
}
.market-block .items-content .icon-item {
	height: 170px;
}

.market-block .items-content .price-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #b0d90e;
}

.market-block .item-content .price-item .icon-container.coin {
	background: url('/templates/arcane_template/img/coin-icon-bordered.png') center/contain no-repeat;
}

.market-block .items-content .button,
.market-block .plan-items .button {
	margin-top: 22px;
	width: 168px;
	height: 35px;
}

.market-block .deposit-plan-block {
	padding: 0 40px 40px 40px;
}

.market-block .nickname-block {
	padding: 0 40px;
}

.nickname-block .nickname-input {
    margin-top: 20px;
}

.nickname-block .nickname-input input {
    margin-left: 5px;
    padding: 5px;
    outline: none;
    border-radius: 5px;
    border: none;
}

.market-block .deposit-plan-title h2 {
	color: #6ec9eb;
	text-transform: uppercase;
	margin: 0 15px;
}

.market-block .plan-items {
	cursor: pointer;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 20px;
	gap: 15px 15px;
}

.market-block .plan-item {
	position: relative;
	width: 210px;
	height: 320px;
	background: url('/templates/arcane_template/img/plan-items-bg.jpg') center/cover no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	border: 1px solid #062131;
	transition: 0.3s;
}

.market-block .plan-item .icon-item {
	max-width: 100%;
}

.market-block .plan-item:hover,
.market-block .plan-item.active {
	transform: translateY(-10px);
	box-shadow: 0px 10px 30px #000000bf;
}

.market-block .plan-item .price-item {
	color: #b0d90e;
}

.market-block .plan-item.active .selected-elem {
	display: block;
	top: -29px;
	left: -29px;
}

.market-block .plan-item.selected button {
	box-shadow: 0 10px 20px 0 rgba(98, 223, 234, 0.4);
	background: url('/templates/arcane_template/img/blue-button-bg.jpg') center no-repeat;
	background-size: cover;
	border-radius: 5px;
}

.market-block .plan-item-content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	border: 1px solid rgba(109, 251, 195, 0.15);
}

.market-block .plan-item-content-bottom {
	position: absolute;
	bottom: 35px;
}

.market-block .plan-item .plan-amount {
	text-align: center;
	color: #fbc430;
	font-size: 18px;
}

.payment-methods {
	margin-top: 20px;
}

.market-block .plan-item button {
	margin-top: 20px;
}

.market-block .payment-method-block {
	padding: 40px;
}

.market-block .confirm-block {
	padding: 40px;
}

.market-block .confirm-block .content {
	background: #031018;
	margin-top: 20px;
	padding: 30px 40px;
}

.market-block .confirm-block .content > div {
	width: 25%;
}

.market-block .confirm-block .content .plan-details {
	gap: 20px 45px;
    width: 65%;
    justify-content: unset;
}

.market-block .confirm-block .key {
	font-size: 14px;
	color: #889cad;
	font-weight: bold;
	margin-bottom: 8px;
}

.market-block .confirm-block .value {
	font-size: 18px;
}

.market-block .confirm-block .value span {
	font-size: 18px;
	display: inline;
}

.market-block .pagination {
	padding: 50px 0;
}

.back-btn {
	position: relative;
	padding-left: 20px;
}

.back-btn:before {
	content: '';
	position: absolute;
	width: 11px;
	height: 11px;
	background: url('/templates/arcane_template/img/back-icon.png') center no-repeat;
	top: calc(50% - 7px);
	left: 0;
}

.icon-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 78px;
	height: 69px;
	background: url('/templates/arcane_template/img/input-elem-bg.png') center no-repeat;
}

.online-status {
	font-size: 16px;
	color: #cbff3f;
	text-shadow: 0 0 10px #cbff3f;
}

.deposit-top .content {
	width: 100%;
	position: relative;
	background: #102a3b;
}

.deposit-top .profile-deposit,
.deposit-top .deposit-amount,
.deposit-top .cart {
	padding: 0 30px;
}

.deposit-top .deposit-profile-image {
	width: 100px;
	height: 100px;
	margin-right: 35px;
}

.deposit-top .deposit-profile-info h2 {
	color: #6ec9eb;
	font-size: 14px;
}

.deposit-top .deposit-profile-info {
	font-size: 14px;
	line-height: 24px;
}

.deposit-top .deposit-profile-info a {
	display: block;
	color: #00fffc;
	margin-top: 10px;
	text-decoration: underline;
}

.deposit-top .deposit-amount {
	width: 460px;
	min-height: 120px;
	background: #031018;
	margin-left: auto;
	margin-right: 20px;
	justify-content: center;
	gap: 20px;
}

.deposit-top .deposit-amount .amount {
	color: #b0d90e;
	font-size: 24px;
	text-shadow: 0 0 10px #cbff3f;
}

.deposit-top .deposit-amount .button {
	text-transform: uppercase;
}
.deposit-top .deposit-amount img {
	width: 30px;
	height: 30px;
}

.deposit-top .cart {
	position: relative;
	margin-right: 50px;
}

.deposit-top .cart .icon-wrap {
	margin-right: 15px;
}

.deposit-top .cart p {
	font-size: 14px;
	color: #6ec9eb;
	margin-bottom: 5px;
}

.payment-method {
	transition: 0.3s;
	cursor: pointer;
	position: relative;
	width: calc(25% - 15px);
	height: 135px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #031018;
}

.payment-method.active,
.payment-method:hover {
	background: #00060a;
}

.payment-method.active .selected-elem {
	top: -30px;
	left: -30px;
	display: block;
}

.selected-elem {
	display: none;
	top: -22px;
	left: -22px;
	position: absolute;
	border: 30px solid #36d1b4;
	border-top-color: transparent;
	border-right-color: transparent;
	border-left-color: transparent;
	transform: rotate(-45deg);
	z-index: 10;
}

.selected-elem:after {
	content: '';
	top: 16px;
	left: -3px;
	position: absolute;
	width: 10px;
	height: 4px;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	z-index: 10;
}

.alert {
    border: 1px solid;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 5px;
}

.alert-success {
    border-color: green;
    background-color: rgb(0 128 0 / 50%);
}

.alert-danger {
    border-color: red;
    background-color: rgb(255 0 0 / 50%);
}

.alert-warning {
    border-color: orange;
    background-color: rgb(255 165 0 / 50%);
}

.registration-container {
    position: relative;
    bottom: 300px;
    top: unset;
    left: unset;
    transform: unset;
}

.reset-container {
    position: relative;
    top: unset;
    left: unset;
    bottom: 200px;
    transform: unset;
    max-width: unset;
    width: fit-content;
}

.reset-container .modal-wrapper {
    overflow: hidden;
}

.change-class .select-container {
    margin-bottom: 20px;
}

.change-class .select-container select {
    margin-top: 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(data:image/svg+xml,%3Csvg%20fill=%27white%27%20height=%2716%27%20viewBox=%270%200%2024%2024%27%20width=%2716%27%20xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath%20d=%27M7%2010l5%205%205-5z%27/%3E%3C/svg%3E) no-repeat calc(100% - 5px) center / 17px, rgb(38, 39, 43) !important;
    padding-right: 31px;
    padding-left: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 35px;
    color: white;
    outline: none;
}

.change-class .requirements ul {
    list-style: disc;
    margin: 5px 0 10px 17px;
}

.change-class .requirements ul li:not(:first-child) {
    margin-top: 5px;
}

.change-class .checkboxes-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.change-class .button-container {
    margin-top: 20px;
}

.change-class .button-container button {
    margin: auto;
}


.login-container {
    top: 57%;
}

.change-email-container {
    top: 56%;
}

.recaptcha {
    margin: 0 auto;
}

.regisration-validation {
    font-size: 11px;
    margin: 5px 0 0 5px;
    color: #737373;
}

.discord-panel {
    position: absolute;
    top: 150px;
    left: 40px;
    z-index: 99;
    background: linear-gradient(145deg, rgba(16, 22, 34, 0.95), rgba(36, 46, 66, 0.9));
    border: 2px solid rgba(103, 179, 255, 0.4);
    box-shadow: 0 0 20px rgba(88, 151, 255, 0.3);
    border-radius: 16px;
    padding: 12px;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.discord-title {
  color: #78a7f0;
  font-family: 'Cinzel', serif; /* You can replace with your theme font */
  font-size: 18px;
  text-align: center;
  margin-bottom: 8px;
  text-shadow: 0 0 6px rgba(120, 167, 240, 0.8);
}

.discord-panel iframe {
    border: none;
    border-radius: 12px;
}

.character-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.character-grid-title {
    text-align: center;
    color: #ffffff;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 36px;
}

.character-card {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #2e2e3e;
  border-radius: 10px;
  padding: 12px;
  width: 200px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 15px #01f0ff33;
  transition: transform 0.3s ease;
}

.character-card .slider-nav-slide-block img {
    top: unset;
}

.character-card:hover {
  box-shadow: 0 0 25px #00e0ff88;
}

.character-name {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: #e0c36d;
  margin-bottom: 8px;
}

.character-avatar {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #444;
}

.character-info {
  margin-top: 8px;
  font-size: 14px;
  color: #00ffff;
  line-height: 1.3;
}

.character-online-status-indicator {
    margin-left: 5px;
}

.usercp-table {
  width: 100%;
  max-width: 1000px;
  border-collapse: collapse;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  color: #e6f1ff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  border: none;
}

.usercp-table tr td {
    border: none;
}

.usercp-table tr:first-child {
  background-color: rgba(255, 255, 255, 0.05);
  font-weight: bold;
  font-size: 1.1em;
}

.usercp-table .button-column {
    width: 225px;
}

.usercp-table tr:not(:first-child) {
  border-bottom: 1px solid #1d2736;
}

.usercp-table td {
  padding: 16px 12px;
}

.usercp-table .tables-character-class-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.usercp-table button {
	width: 200px;
	height: 40px;
}

button:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.module-requirements {
    display: flex;
    margin-top: 15px;
    gap: 10px;
    flex-direction: column;
}

.addstats-container {
    position: relative;
    top: unset;
    left: unset;
    bottom: 200px;
    transform: unset;
    max-width: unset;
    width: 40%;
}

.addstats-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 100px;
    padding: 40px 0 10px 0;
}

.addstats-container .container {
    margin: unset;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 40px;
    width: unset;
    max-width: unset;
    background: linear-gradient(rgb(9, 29, 43) 0%, rgba(9, 29, 43, 0.773) 79%, rgba(9, 29, 43, 0.133) 100%);
    color: #fff;
    box-shadow: 0 0 10px #9d9f9f50;
}

.addstats-container .character-name {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.addstats-container .slider-nav-slide-block {
    width: 160px;
}

.addstats-container .slider-nav-slide-block img {
    top: unset;
}

.addstats-container .form-group {
    margin-bottom: 10px;
}

.addstats-container .form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.addstats-container .form-group input[type="number"] {
    width: 100%;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
}

.addstats-container button[name="submit"] {
    background: #00f6ff;
    color: #000;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.addstats-container button[name="submit"]:hover {
    background: #00d5e0;
    transform: scale(1.02);
}

.addstats-container .module-requirements {
    width: 100%;
    margin-left: 140px;
    font-size: 16px;
    color: #ccc;
}
.profile-block {
	padding: 50px 35px;
	margin-top: -13px;
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #071924cc;
	border-bottom: 1px solid #153046;
}

.profile-block .slider-nav-slide-block img {
    top: unset;
}

.profile-block .cname {
    text-align: center;
    font-size: 18px;
}

.profile-table {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  background: #1e1e2f;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #e0e0e0;
}

.profile-table th,
.profile-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #2d2d3f;
}

.profile-table th {
  background-color: #2d2d3f;
  color: #f5f5f5;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.profile-table tr:nth-child(even) {
  background-color: #232334;
}

.profile-table tr:hover {
  background-color: #33334a;
  transition: background 0.2s ease-in-out;
}

.guild-profile {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 35px 0;
}

.guild-profile .guild_logo {
    text-align: center;
    margin-top: 15px;
}

.guild-profile-table {
    margin: unset;
}

.guild-position {
    min-width: 60px;
    width: 16%;
    text-align: start;
}

.referral-description {
    margin-bottom: 10px;
}

.referral-description .title {
    font-size: 16px;
    margin-bottom: 5px;
}

.referral-description p {
  line-height: 1.5;
}

.highlight {
  color: #4fb4ff;
  font-weight: bold;
}

.reward {
  color: #80ffb2;
  font-weight: bold;
}

.note {
  color: #888;
  font-size: 13px;
}

.referrals-list h3 {
    margin-bottom: 10px;
}

.referral-link {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 5px;
}

.referral-link .link {
    background-color: #303030;
    padding: 6px 8px;
    border-radius: 5px;
}

.referral-link img {
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.accessibilitystatement-container {
    max-width: 1000px;
    position: relative;
    bottom: 300px;
    top: unset;
    left: unset;
    transform: unset;
}

.accessibilitystatement-container .modal-wrapper {
    overflow: hidden;
    line-height: 2;
    font-size: 16px;
    color: #cdcdcd;
}

.accessibilitystatement-container ul {
    list-style: disc;
    margin-right: 35px;
    margin-left: 35px;
    margin-bottom: 20px;
}

.accessibilitystatement-container ol {
    list-style: decimal;
}

.accessibilitystatement-container .strong {
    color: white;
    font-weight: 600;
}



.sparks {
	position: absolute;
	width: 1200px;
	left: 50%;
	margin-left: -600px;
	bottom: 300px;
}

.sparks > div {
	position: absolute;
}

.sparks .spark_1 {
	background: url('/templates/arcane_template/img/animation/spark_1.png') no-repeat;
	width: 764px;
	height: 313px;
	right: 0;
	bottom: -320px;
	transform: scale(0.6);
	animation: spark-1 4s linear infinite;
	animation-delay: 1s;
}

@keyframes spark-1 {
	0% {
		bottom: -320px;
		transform: scale(0.6);
		opacity: 1;
	}
	25% {
		bottom: -240px;
		transform: scale(0.7);
		opacity: 1;
	}
	50% {
		bottom: -160px;
		transform: scale(0.8);
		opacity: 1;
	}
	75% {
		bottom: -80px;
		transform: scale(0.9);
		opacity: 0.5;
	}
	100% {
		bottom: 0;
		transform: scale(1);
		opacity: 0;
	}
}

.sparks .spark_2 {
	background: url('/templates/arcane_template/img/animation/spark_2.png') no-repeat;
	width: 179px;
	height: 335px;
	right: 230px;
	bottom: -320px;
	transform: scale(0.6);
	animation: spark-1 4s linear infinite;
	animation-delay: 2s;
}

.sparks .spark_3 {
	background: url('/templates/arcane_template/img/animation/spark_3.png') no-repeat;
	width: 128px;
	height: 165px;
	right: 280px;
	bottom: -140px;
	transform: scale(0.6);
	animation: spark-3 4s linear infinite;
	animation-delay: 2s;
}

@keyframes spark-3 {
	0% {
		bottom: -140px;
		transform: scale(0.6);
		opacity: 1;
	}
	25% {
		bottom: -80px;
		transform: scale(0.7);
		opacity: 1;
	}
	50% {
		bottom: -20px;
		transform: scale(0.8);
		opacity: 1;
	}
	75% {
		bottom: 40px;
		transform: scale(0.9);
		opacity: 0.5;
	}
	100% {
		bottom: 100px;
		transform: scale(1);
		opacity: 0;
	}
}

.sparks .spark-big {
	background: url('/templates/arcane_template/img/animation/spark_4.png') no-repeat;
	width: 794px;
	height: 176px;
	right: 0;
	bottom: -180px;
	transform: scale(0.6);
	animation: spark-5 4s linear infinite;
}

.sparks .spark_5 {
	animation-delay: 2s;
	right: 40px;
}

@keyframes spark-5 {
	0% {
		bottom: -180px;
		transform: scale(0.6);
		opacity: 1;
	}
	25% {
		bottom: -120px;
		transform: scale(0.7);
		opacity: 1;
	}
	50% {
		bottom: -60px;
		transform: scale(0.8);
		opacity: 1;
	}
	75% {
		bottom: 0;
		transform: scale(0.9);
		opacity: 0.5;
	}
	100% {
		bottom: 60px;
		transform: scale(1);
		opacity: 0;
	}
}

.animations {
	position: absolute;
	top: 100px;
	z-index: 5;
	left: 50%;
	transform: translateX(-1225px);
}

.ray {
	position: absolute;
	top: 90px;
	left: 225px;
	background: url('/templates/arcane_template/img/ray.png') no-repeat center/contain;
	width: 419px;
	height: 419px;
	animation: ray 14s infinite linear;
	transform-origin: center;
	opacity: 0.6;
}

.crystal-a {
	position: absolute;
	top: -50px;
    left: 790px;
	background: url('/templates/arcane_template/img/crystal.png') no-repeat center/contain;
	width: 181px;
	height: 239px;
	animation: crystal 3s infinite linear;
	transform-origin: center;
}
@keyframes ray {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


@keyframes crystal {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(20px);
	}
    100% {
		transform: translateY(0px);
	}
}
