@font-face {
	src: url('../fonts/GothamPro.ttf');
	font-family: 'GothamPro';
}

@font-face {
	font-family: 'GothamPro';
	src: url('GothamPro-BoldItalic.ttf');
	font-weight: bold;
	font-style: italic;
}

@font-face {
	font-family: 'GothamPro';
	src: url('GothamPro-Italic.ttf');
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: 'GothamPro';
	src: url('GothamPro-Bold.ttf');
	font-weight: bold;
	font-style: normal;
}

html {
	scroll-behavior: auto !important;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
	display: block;
}

button {
	background-color: transparent;
	border: none;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	position: relative;
	overflow-x: hidden;
}

body {
	width: 100%;
	background: url(../images/home-top-bg.png) calc(50% - 70px) top no-repeat;
	background-color: #0f1923;
	font-family: 'GothamPro', sans-serif;
	font-size: 14px;
	color: #fff;
	min-height: 100vh;
}
body.bg-pages {
	background: url(../images/bg-pages.png) calc(50% - 70px) top no-repeat;
	background-size: 2000px auto;
}

.modal-open,
#login-modal,
#registration-modal {
	padding-right: 0 !important;
}

a {
	transition: all 0.3s ease;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

p {
	margin-bottom: 20px;
}

img {
	max-width: 100%;
}

input,
textarea {
	outline: none;
	background: transparent;
	border: none;
	color: #fff;
	padding: 10px 0px;
	position: relative;
	font-size: 14px;
	font-family: 'GothamPro', sans-serif;
	width: 100%;
}

.button {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	cursor: pointer;
	background: url(../images/button.png) no-repeat;
	background-size: contain;
	height: 90px;
	width: 228px;
	color: #fff;
	position: relative;
	z-index: 1;
	text-align: center;
	text-transform: uppercase;
	font-family: 'GothamPro', sans-serif;
	font-size: 14px;
	font-weight: 700;
	transform: translateY(5px);
	padding-bottom: 15px;
}

.button:hover {
	filter: brightness(140%);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.section-download {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 15px;
	background-color: #0f1a1f;
}

.section-shop {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 15px;
	background-color: #0f1a1f;
}
/* Shop Balance Display */
.shop-balance-container {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.balance-display {
	background-color: #2d3a42;
	border: 1px solid #4a5a62;
	border-radius: 8px;
	padding: 15px 25px;
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.balance-display:hover {
	background-color: #3a4a52;
	border-color: #5a6a72;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.balance-refill-link {
    margin: 20px 0;
    text-align: center;
}

.refill-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
}

.refill-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.refill-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.refill-icon {
    font-size: 18px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Альтернативный стиль с золотым градиентом */
.refill-link.gold {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.refill-link.gold:hover {
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.4);
}

/* Стиль для темной темы */
.dark-theme .refill-link {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.dark-theme .refill-link:hover {
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

/* Анимация пульсации для привлечения внимания */
.refill-link.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(102, 126, 234, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .refill-link {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .refill-icon {
        font-size: 16px;
    }
}
.balance-label {
	color: #a0e1ff;
	font-size: 16px;
	font-weight: 600;
}

.balance-amount {
	color: #00ff88;
	font-size: 18px;
	font-weight: 700;
	text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.balance-currency {
	color: #ffd700;
	font-size: 14px;
	font-weight: 600;
	margin-left: 5px;
}

/* Shop Categories */
.shop-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
	justify-content: center;
	position: relative;
	z-index: 10;
}

.category-tab {
	background-color: #2d3a42;
	border: 1px solid #4a5a62;
	color: #a0e1ff;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
	font-weight: 600;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	position: relative;
	z-index: 10;
}

.category-tab:hover {
	background-color: #3a4a52;
	border-color: #5a6a72;
	transform: translateY(-2px);
}

.category-tab.active {
	background-color: #475d6e;
	border-color: #5a6a72;
	color: #fff;
}

/* Shop Search */
.shop-search {
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
}

.search-container {
	position: relative;
	max-width: 400px;
	width: 100%;
}

.search-input {
	width: 100%;
	padding: 12px 40px 12px 15px;
	background-color: #2d3a42;
	border: 1px solid #4a5a62;
	border-radius: 5px;
	color: #fff;
	font-size: 14px;
}

.search-input::placeholder {
	color: #a0e1ff;
}

.search-input:focus {
	outline: none;
	border-color: #5a6a72;
	background-color: #3a4a52;
}

.search-clear {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #a0e1ff;
	cursor: pointer;
	font-size: 12px;
	padding: 5px;
}

.search-clear:hover {
	color: #fff;
}

/* Shop Items Grid */
.shop-items-container {
	position: relative;
}

.shop-items-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.shop-item {
	background-color: #2d3a42;
	border: 1px solid #4a5a62;
	border-radius: 8px;
	padding: 20px;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.shop-item:hover {
	background-color: #3a4a52;
	border-color: #5a6a72;
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.item-image {
	margin-bottom: 15px;
}

.item-image img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.item-info {
	margin-bottom: 20px;
	flex-grow: 1;
}

.item-name {
	color: #a0e1ff;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
}

.item-category {
	color: #5a6a72;
	font-size: 12px;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.item-price {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.price-amount {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}

.price-currency {
	color: #a0e1ff;
	font-size: 14px;
}

.item-actions {
	width: 100%;
}

.buy-button {
	width: 100%;
	padding: 12px 20px;
	background-color: #475d6e;
	border: 1px solid #5a6a72;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.buy-button:hover {
	background-color: #5a6a72;
	border-color: #6a7a82;
	transform: translateY(-2px);
}

.buy-button:disabled {
	background-color: #3a4a52;
	border-color: #4a5a62;
	color: #5a6a72;
	cursor: not-allowed;
	transform: none;
}

/* No Results Message */
.no-results {
	text-align: center;
	padding: 40px 20px;
	color: #a0e1ff;
}

.no-results h3 {
	font-size: 24px;
	margin-bottom: 15px;
	color: #fff;
}

.no-results p {
	font-size: 16px;
	color: #5a6a72;
}

.hidden {
	display: none !important;
}

/* Purchase Modal */
.purchase-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
}

.purchase-modal .modal-content {
	position: relative;
	background-color: #2d3a42;
	border: 1px solid #4a5a62;
	border-radius: 8px;
	max-width: 400px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
}

.purchase-modal .modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	background: none;
	border: none;
	color: #a0e1ff;
	font-size: 24px;
	cursor: pointer;
	padding: 5px;
}

.purchase-modal .modal-close:hover {
	color: #fff;
}

.purchase-modal .modal-body {
	padding: 30px;
}

.modal-title {
	color: #a0e1ff;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	text-align: center;
}

.purchase-item {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	padding: 15px;
	background-color: #3a4a52;
	border-radius: 5px;
}

.purchase-item img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	flex-shrink: 0;
}

.purchase-info h4 {
	color: #fff;
	font-size: 16px;
	margin-bottom: 5px;
}

.purchase-info div {
	color: #5a6a72;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.purchase-price {
	text-align: center;
	margin-bottom: 25px;
	font-size: 18px;
	color: #a0e1ff;
}

.purchase-actions {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.confirm-purchase-btn {
	background-color: #475d6e;
	border: 1px solid #5a6a72;
	color: #fff;
	padding: 12px 25px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.confirm-purchase-btn:hover {
	background-color: #5a6a72;
	border-color: #6a7a82;
}

.cancel-btn {
	background-color: #3a4a52;
	border: 1px solid #4a5a62;
	color: #a0e1ff;
	padding: 12px 25px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.cancel-btn:hover {
	background-color: #4a5a62;
	border-color: #5a6a72;
	color: #fff;
}

/* Responsive Design for Shop */
@media (max-width: 768px) {
	.shop-categories {
		flex-direction: column;
		align-items: center;
	}
	
	.category-tab {
		width: 100%;
		max-width: 300px;
		text-align: center;
	}
	
	.shop-items-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.shop-item {
		padding: 15px;
	}
	
	.purchase-actions {
		flex-direction: column;
	}
	
	.confirm-purchase-btn,
	.cancel-btn {
		width: 100%;
	}
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.flex-c {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.flex-s {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flex-s-c {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.flex-c-c {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.bright {
	transition: all 0.3s;
}

.bright:hover {
	filter: brightness(120%);
}

.header {
	height: 90px;
	position: relative;
	z-index: 10;
}

.logo {
	position: absolute;
	top: -50px;
	left: 49%;
	transform: translateX(-50%);
}

.logo img {
	max-width: 500px;
	max-height: 350px;
	width: auto;
	height: auto;
}

/* Эффект подсветки */
.highlight-highlight {
	position: absolute;
    left: 480px;
	top: 450px;
}

.highlight {
	width: 133px;
	height: 133px;
	position: absolute;
	left: 645px;
	bottom: 129px;
	animation: highlight 10s infinite linear;
	opacity: 0;
	transform: scale(0);
}

.highlight .highlight-3 {
	width: 133px;
	height: 133px;
	background: url(../images/highlight-3.png) no-repeat;
	position: absolute;
	transform: rotate(0deg);
	animation: highlight-3 10s infinite linear;
}

.highlight .highlight-4 {
	width: 133px;
	height: 133px;
	background: url(../images/highlight-4.png) center no-repeat;
	position: absolute;
	transform: rotate(0deg);
	animation: highlight-4 10s infinite linear;
}

@keyframes highlight-3 {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}

@keyframes highlight-4 {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes highlight {
	0% {
		left: 480px;
		bottom: 50px;
		opacity: 0;
		transform: scale(0);
	}
	20% {
		left: 465px;
		bottom: 99px;
		opacity: 1;
		transform: scale(1);
	}
	80% {
		left: 465px;
		bottom: 99px;
		opacity: 1;
		transform: scale(1);
	}
	100% {
		left: 465px;
		bottom: 99px;
		opacity: 0;
		transform: scale(0);
	}
}

/* Эффекты для маскировки персонажей */
.character-mask-effects {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.character-mask-1 {
	position: absolute;
	top: 50px;
	left: 150px;
	width: 500px;
	height: 400px;
	background: radial-gradient(ellipse at center, rgba(15, 25, 35, 0.8) 0%, rgba(15, 25, 35, 0.4) 50%, transparent 70%);
	filter: blur(2px);
	animation: character-mask-float 8s ease-in-out infinite;
}

.character-mask-2 {
	position: absolute;
	top: 20px;
	right: 150px;
	width: 500px;
	height: 400px;
	background: radial-gradient(ellipse at center, rgba(15, 25, 35, 0.7) 0%, rgba(15, 25, 35, 0.3) 60%, transparent 80%);
	filter: blur(3px);
	animation: character-mask-float 10s ease-in-out infinite reverse;
}

.character-mask-3 {
	position: absolute;
	top: 80px;
	left: 50%;
	transform: translateX(-50%);
	width: 400px;
	height: 200px;
	background: linear-gradient(45deg, rgba(15, 25, 35, 0.6) 0%, transparent 50%, rgba(15, 25, 35, 0.6) 100%);
	filter: blur(1px);
	animation: character-mask-pulse 6s ease-in-out infinite;
}

.character-mask-4 {
	position: absolute;
	top: 30px;
	left: 30%;
	width: 200px;
	height: 300px;
	background: radial-gradient(circle at top, rgba(15, 25, 35, 0.9) 0%, rgba(15, 25, 35, 0.5) 40%, transparent 70%);
	filter: blur(2px);
	animation: character-mask-float 12s ease-in-out infinite;
}

@keyframes character-mask-float {
	0%, 100% {
		transform: translateY(0px) scale(1);
		opacity: 0.6;
	}
	50% {
		transform: translateY(-20px) scale(1.05);
		opacity: 0.8;
	}
}

@keyframes character-mask-pulse {
	0%, 100% {
		opacity: 0.4;
		transform: translateX(-50%) scale(1);
	}
	50% {
		opacity: 0.7;
		transform: translateX(-50%) scale(1.1);
	}
}

.header-wrapper {
	position: relative;
	width: 1900px;
	margin: 0 auto;
}

.header-wrapper-menu {
	position: relative;
	z-index: 51;
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 330px;
}

.header-wrapper_left {
	width: 49%;
}

.header-wrapper_right {
	width: 51%;
}

.header-wrapper_left {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.header-wrapper_right {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.header-menu {
	display: flex;
	align-items: center;
}
.header-menu li {
	position: relative;
	padding: 0px 5px;
}
.header-menu li a {
	display: flex;
	align-items: center;
	position: relative;
	height: 90px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0px 10px;
}

.header-menu li a:hover {
	color: #e5d9a5;
}

.header-wrapper_right {
	display: flex;
	align-items: center;
}

.login-button-mobile {
	position: absolute;
	top: 0;
	right: 10px;
	display: none;
}

.top-button {
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	width: 351px;
	height: 117px;
	padding: 0 55px;
	color: #feb92e;
	background-size: contain;
}

.top-button:hover {
	filter: brightness(150%);
}

.top-button span {
	color: #e5d9a5;
	font-size: 25px;
	margin-bottom: 10px;
}

.top-buttons-bg-left,
.top-buttons-bg-right {
	position: relative;
	height: 117px;
	width: 1px;
}
.top-buttons-bg-left::after {
	display: flex;
	content: '';
	position: absolute;
	height: 117px;
	width: 172px;
	left: -171px;
	background: url(../images/top-button-left.png) no-repeat;
}

.top-buttons-bg-right::after {
	display: flex;
	content: '';
	position: relative;
	left: 1px;
	top: 0;
	height: 117px;
	width: 172px;
	background: url(../images/top-button-right.png) no-repeat;
}

.top-donation {
	padding-left: 120px;
	background: url(../images/top-button-donation.png) no-repeat;
	background-size: cover;
}

.top-download {
	color: #a5c4d3;
	padding-left: 120px;
	background: url(../images/top-button-download.png) no-repeat;
	background-size: cover;
}

.top-reg {
	padding-left: 120px;
	background: url(../images/top-button-reg.png) no-repeat;
	background-size: cover;
}

/* Стили для социальных сетей в topButtons */
.topButtons .social-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 20px 25px;
	border-radius: 16px;
	background: linear-gradient(145deg, #2d3a42, #1e2a32);
	border: 2px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	min-width: 160px;
	height: 130px;
	justify-content: center;
	margin: 0 15px;
	position: relative;
	overflow: hidden;
}

.topButtons .social-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.6s ease;
}

.topButtons .social-button:hover::before {
	left: 100%;
}

.topButtons .social-button:hover {
	transform: translateY(-8px) scale(1.08);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
	border-color: rgba(100, 181, 246, 0.5);
	text-decoration: none;
	background: linear-gradient(145deg, #344a56, #2a3d47);
}

.topButtons .social-button img {
	width: 56px;
	height: 56px;
	margin-bottom: 12px;
	transition: all 0.4s ease;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.topButtons .social-button:hover img {
	transform: scale(1.15) rotate(5deg);
	filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.topButtons .social-button span {
	color: #e5d9a5;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	transition: all 0.3s ease;
}

.topButtons .social-button:hover span {
	color: #64b5f6;
	text-shadow: 0 4px 8px rgba(100, 181, 246, 0.4);
	transform: translateY(-2px);
}

.topButtons {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2px;
	margin-bottom: 25px;
	margin-top: 650px;
}

.top-rank {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	background-color: #152532;
	gap: 5px;
	max-width: 1200px;
	margin: 0 auto;
}

.top-list {
	position: relative;
	width: 444px;
	min-height: 410px;
}

.top-list::after {
	content: '';
	display: flex;
	height: 399px;
	width: 444px;
	background: url('../images/bg-top-rank.png');
	position: absolute;
	top: 5px;
	right: 0px;
}

.tabs-rank {
	display: flex;
	padding: 15px 30px;
}

.tabs-buttons {
	display: flex;
	gap: 15px;
	position: relative;
	z-index: 5;
}

.tabs-buttons button {
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 700;
	color: #4f6070;
	border-bottom: 1px solid transparent;
}

.tabs-buttons button.active {
	color: #fff;
	border-bottom: 1px solid #4191b6;
}

.tabs-buttons button {
	padding: 15px 5px;
	color: #5e6c7a;
	font-weight: 700;
	transition: all 0.3s ease;
}

.tabs-buttons button:hover {
	color: #fff;
	border-bottom: 1px solid #4191b6;
}

.tab-content {
	position: relative;
	z-index: 5;
}

.topSlider {
	position: relative;
}

.pagingInfo {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(21, 40, 50, 0.3);
	color: #e1d895;
	width: 100%;
	height: 56px;
	z-index: 5;
	bottom: 0px;
}

.pagingInfo .active {
	color: #fff;
}

.top-slider {
	height: 410px;
}

.top-slider .slick-list {
	height: 100%;
}

.top-slider .slick-arrow {
	width: 20px;
	height: 20px;
	font-size: 0px;
	position: absolute;
	bottom: 18px;
	opacity: 0.5;
	transition: all 0.3s;
}
.top-slider .slick-arrow:hover {
	opacity: 1;
}
.top-slider .slick-next {
	z-index: 10;
	background: url(../images/slick-next.png) no-repeat;
	right: 50%;
	margin-right: -45px;
}
.top-slider .slick-prev {
	z-index: 10;
	background: url(../images/slick-next.png) no-repeat;
	transform: rotate(180deg);
	left: 50%;
	margin-left: -45px;
}

.top-slide {
	position: relative;
}

.top-slide .slide-title {
	position: absolute;
	top: 50px;
	left: 10%;
	transform: translateX(-10%);
	text-align: end;
	text-transform: uppercase;
	font-size: 45px;
	font-weight: 700;
}
.top-slide .slide-text {
	position: absolute;
	bottom: 100px;
	left: 25%;
	transform: translateX(-25%);
	max-width: 100%;
	display: flex;
	align-items: center;
	font-size: 16px;
}

.top-slide img {
	width: 100%;
	object-fit: contain;
}

/* Оригинальные стили для главной страницы */
.table-top-scroll {
	overflow-x: auto;
}

/* Стили для top100 страницы */
.top100-page .table-top-scroll {
	overflow-x: auto;
	margin: 40px auto 0;
	width: 100%;
	max-width: 1200px;
}

/* Скроллбар только для top100 */
.top100-page .table-top-scroll::-webkit-scrollbar {
	height: 12px;
}

.top100-page .table-top-scroll::-webkit-scrollbar-track {
	background: linear-gradient(90deg, #1e2a32, #2d3a42, #1e2a32);
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.top100-page .table-top-scroll::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #64b5f6, #42a5f5, #2196f3);
	border-radius: 6px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 2px 8px rgba(100, 181, 246, 0.3);
}

.top100-page .table-top-scroll::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #42a5f5, #2196f3, #1976d2);
	box-shadow: 0 4px 12px rgba(100, 181, 246, 0.5);
}

.top100-page .table-top-scroll::-webkit-scrollbar-corner {
	background: #1e2a32;
}

/* Стили для таблицы top100 в стиле главной страницы */
.top100-page .top-table {
	min-width: 100%;
	width: 100%;
}

.top100-page .top-table li {
	display: flex;
	align-items: center;
	height: 60px;
	padding: 0px 30px;
	transition: 0.3s;
	position: relative;
	background: linear-gradient(135deg, #2d3a42, #1e2a32);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top100-page .top-table li:nth-child(even) {
	background: linear-gradient(135deg, #344a56, #2a3d47);
}

.top100-page .table-th {
	text-transform: uppercase;
	color: #fff;
	transition: all 0.3s;
	background: linear-gradient(135deg, #4a5f73, #3d5162, #2c3e50);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1px;
}

.top100-page .table-td {
	color: #a0e1ff;
}

.top100-page .top-table .table-td:hover {
	transform: translateX(-10px);
	background: linear-gradient(135deg, #294962, #1e3a4a);
	color: #e5d9a5;
}

.top100-page .top-table li:hover a {
	color: #e5d9a5;
}

/* Стили для колонок top100 */
.top100-page .td-1 {
	width: 10%;
	text-align: center;
	font-weight: 700;
	color: #64b5f6;
}

.top100-page .td-2 {
	width: 40%;
	text-align: center;
	padding: 0 20px;
}

.top100-page .td-3 {
	width: 25%;
	text-align: center;
	color: #81c784;
	font-style: italic;
}

/* Стили для заголовков с стрелочками */
.top100-page .table-th .td-4 {
	width: 12.5%;
	text-align: center;
	color: #4fc3f7;
	font-weight: 600;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
}

.top100-page .table-th .td-4:hover {
	color: #e5d9a5;
	transform: scale(1.05);
}

.top100-page .table-th .td-4::after {
	content: ' ↓';
	font-size: 12px;
	margin-left: 5px;
	opacity: 0.7;
}

.top100-page .table-th .td-4.sorted-asc::after {
	content: ' ↑';
}

.top100-page .table-th .td-4.sorted-desc::after {
	content: ' ↓';
}

.top100-page .table-th .td-5 {
	width: 12.5%;
	text-align: center;
	color: #ff7043;
	font-weight: 600;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
}

.top100-page .table-th .td-5:hover {
	color: #e5d9a5;
	transform: scale(1.05);
}

.top100-page .table-th .td-5::after {
	content: ' ↓';
	font-size: 12px;
	margin-left: 5px;
	opacity: 0.7;
}

.top100-page .table-th .td-5.sorted-asc::after {
	content: ' ↑';
}

.top100-page .table-th .td-5.sorted-desc::after {
	content: ' ↓';
}

/* Стили для данных в строках (без стрелочек и клика) */
.top100-page .table-td .td-4 {
	width: 12.5%;
	text-align: center;
	color: #4fc3f7;
	font-weight: 600;
	cursor: default;
}

.top100-page .table-td .td-5 {
	width: 12.5%;
	text-align: center;
	color: #ff7043;
	font-weight: 600;
	cursor: default;
}

/* Специальные стили для топ-3 в таблице */
.top100-page .top-table .table-td:nth-child(2) .td-1 {
	color: #ffd700;
	text-shadow: 0 2px 4px rgba(255, 215, 0, 0.5);
}

.top100-page .top-table .table-td:nth-child(3) .td-1 {
	color: #c0c0c0;
	text-shadow: 0 2px 4px rgba(192, 192, 192, 0.5);
}

.top100-page .top-table .table-td:nth-child(4) .td-1 {
	color: #cd7f32;
	text-shadow: 0 2px 4px rgba(205, 127, 50, 0.5);
}

.top-table {
	min-width: 440px;
}

.top-table li {
	display: flex;
	align-items: center;
	height: 60px;
	padding: 0px 30px;
	transition: 0.3s;
	position: relative;
}

.table-th {
	text-transform: uppercase;
	color: #fff;
	transition: all 0.3s;
}
.table-td {
	color: #a0e1ff;
}

.top-table .table-td:hover {
	transform: translateX(-10px);
	background-color: #294962;
	color: #e5d9a5;
}
.top-table li:hover a {
	color: #e5d9a5;
}
.top-table li:hover:after {
	opacity: 1;
}

#server-content .top-table .table-td:hover {
	transform: none;
	background-color: transparent;
	color: #a0e1ff;
}

#server-content .top-table .table-td.offline:hover {
	color: #fb0171;
}
#server-content .top-table .table-td.online:hover {
	color: #83d300;
}

.top-table.server {
	padding-top: 40px;
	max-width: 800px;
	margin: 0 auto;
}

#server-content .td-1 {
	width: 15% !important;
	text-align: left;
	font-weight: 700;
	color: #64b5f6;
}
#server-content .td-2 {
	width: 35% !important;
	text-align: left;
	padding: 0 20px;
	overflow: hidden;
}
#server-content .td-2 a {
	color: #a0e1ff;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
}
#server-content .td-3 {
	width: 15% !important;
	text-align: right;
	color: #4fc3f7;
	font-weight: 600;
}
#server-content .td-4 {
	width: 15% !important;
	text-align: right;
	color: #81c784;
	font-weight: 600;
}
#server-content .td-5 {
	width: 20% !important;
	text-align: right;
	color: #ff7043;
	font-weight: 600;
}

.online span {
	color: #83d300;
}
.offline span {
	color: #fb0171;
}

.td-1 {
	width: 15%;
}

.td-2 a {
	color: #a0e1ff;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
}

.td-2 {
	width: 41%;
	overflow: hidden;
}

.td-3 {
	font-weight: 700;
	width: 22%;
	text-align: center;
}

.table-th .td-3,
.table-th .td-4 {
	font-weight: 400;
}

.td-4 {
	font-weight: 700;
	width: 22%;
	text-align: center;
}

.server-icon {
	position: relative;
	display: flex;
}

.server-icon.online {
	margin-left: 5px;
	width: 30px;
	height: 30px;
	background: url('../images/server-online.png') no-repeat;
}
.server-icon.offline {
	margin-left: 5px;
	width: 30px;
	height: 30px;
	background: url('../images/server-offline.png') no-repeat;
}
.server-icon.account {
	width: 42px;
	height: 42px;
	background: url('../images/server-accounts-icon.png') no-repeat;
}
.server-icon.character {
	width: 42px;
	height: 42px;
	background: url('../images/server-characters-icon.png') no-repeat;
}

.banners {
	width: 752px;
}

.section-title {
	position: relative;
	color: #e5d9a5;
	font-size: 40px;
	text-align: center;
	display: flex;
	justify-content: center;
	margin-top: 70px;
	margin-bottom: 50px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 227px;
	height: 15px;
	background: url('../images/section-title.png') no-repeat;
	background-size: contain;
}

.news-section {
	max-width: 1200px;
	margin: 0 auto;
}

.news {
	position: relative;
}

.new-slide {
	position: relative;
	width: 376px !important;
	height: 600px;
	margin: 0 10px;
	padding: 30px;
	padding-top: 56px;
	transition: all 0.3s;
}

.new-slide::after {
	content: '';
	position: absolute;
	top: 26px;
	left: 0;
	width: 100%;
	height: 574px;
	background: url('../images/bg-news-slide.png');
	background-position-y: center;
}

.slide-wrapper {
	height: 100%;
	width: 100%;
	position: relative;
	z-index: 5;
}

.new-slide:hover {
	transform: translateY(-10px);
}

.new-slide-title {
	margin-top: 50px;
	margin-bottom: 30px;
	color: #a0e1ff;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
}
.new-slide-text {
	margin-bottom: 45px;
	font-size: 15px;
	line-height: 24px;
}

.new-slide-date {
	width: 100%;
	position: absolute;
	bottom: -35px;
	display: flex;
	justify-content: space-between;
}

.slide-date {
	margin-top: 10px;
	color: #4191b6;
	font-size: 14px;
}

.highlighted {
	font-size: 35px;
	color: #91cbe6;
}

.more-button {
	background: url('../images/small-button.png') no-repeat;
	background-position-x: center;
	width: 163px;
	height: 89px;
	padding-bottom: 38px;
	color: #193541;
}

.news-slider .slick-arrow {
	position: absolute;
	z-index: 50;
	width: 32px;
	height: 58px;
	font-size: 0px;
	top: 50%;
	transition: 0.3s;
	opacity: 0.7;
}
.news-slider .slick-arrow:hover {
	opacity: 1;
}
.news-slider .slick-prev {
	background: url(../images/slick-prev-hero.png) no-repeat;
	left: -20px;
}

.news-slider .slick-next {
	background: url(../images/slick-prev-hero.png) no-repeat;
	transform: rotate(-180deg);
	right: -20px;
}

.all-news-link {
	color: #5b5c5e;
	font-size: 14px;
	text-transform: none;
	text-decoration: underline;
}
.post img {
	min-height: 200px;
}
.post-title {
	position: relative;
	color: #00bbff;
	font-weight: 700;
	padding: 30px 0;
	padding-left: 50px;
}

.post-title::after {
	content: '';
	position: absolute;
	display: flex;
	width: 63px;
	height: 63px;
	top: 50%;
	transform: translateY(-50%);
	left: -10px;
	background: url(../images/news-icon.png) no-repeat;
}

.post-text {
	margin-top: 20px;
	line-height: 24px;
}

.post-date {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 30px;
	height: 50px;
	color: #5b5c5e;
	background: linear-gradient(
		90deg,
		rgba(20, 27, 38, 1) 0%,
		rgba(29, 39, 54, 1) 100%
	);
	margin-bottom: 30px;
}

.charactersBlock {
	position: relative;
	margin-top: -50px;
	background: url(../images/hero-slider-bg.jpg) center no-repeat;
	background-position-y: 50px;
	height: 700px;
}

.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 {
	padding-top: 60px;
	height: 900px;
	padding-left: 350px;
	padding-right: 350px;
}

.hero-icon-class {
	background: url(../images/hero-class-icon-1.png) no-repeat;
	background-size: contain;
	width: 100px;
	height: 111px;
	display: inline-block;
	margin-right: 20px;
	position: relative;
}

.hero-icon-class.dark-knight {
	background: url(../images/hero-class-icon-2.png) no-repeat;
}
.hero-icon-class.dark-lord {
	height: 120px;
	background: url(../images/hero-class-icon-3.png) no-repeat;
}
.hero-icon-class.fairy-elf {
	width: 89px;
	height: 102px;
	background: url(../images/hero-class-icon-4.png) no-repeat;
}
.hero-icon-class.magic-gladiator {
	background: url(../images/hero-class-icon-5.png) no-repeat;
}

.hero-title {
	display: flex;
	align-items: center;
	position: relative;
}

.hero-title_text {
	color: #e5d9a5;
	text-transform: uppercase;
	font-size: 18px;
}
.hero-title_text span {
	font-size: 50px;
	margin-bottom: 20px;
	font-weight: bold;
	color: #fff;
	display: block;
}

.team-online {
	position: relative;
	z-index: 5;
}

.team-online-title {
	text-transform: uppercase;
	font-size: 18px;
	margin-top: 80px;
	margin-bottom: 25px;
	margin-left: 120px;
}

.team-online-icon {
	display: flex;
	width: 80px;
	height: 80px;
	background-repeat: no-repeat;
	background-image: url(../images/icon-complexity.png);
}

.team-online-icon-attack {
	background-image: url(../images/icon-attack.png);
}

.team-online-icon-protection {
	background-image: url(../images/icon-defense.png);
}

.team-online-block {
	display: flex;
	align-items: center;
	width: 100%;
}

.team-online-barBlock {
	display: flex;
	flex-grow: 1;
}

.team-online-barBlock_title {
	text-transform: capitalize;
	min-width: 110px;
	color: #fff;
}

.team-online-barBlock-bar {
	width: 100%;
	max-width: 320px;
	position: relative;
	background-color: #283f4d;
	height: 10px;
	border: 3px solid #0a1720;
}
.team-online-barBlock-bar span {
	background: linear-gradient(
		270deg,
		rgba(169, 211, 0, 1) 0%,
		rgba(40, 63, 77, 0) 100%
	);
	display: block;
	height: 4px;
	width: 0%;
	transition: 2s;
}

.team-onlineBlock {
	display: flex;
	flex-wrap: wrap;
	max-width: 700px;
	margin-left: 40px;
}

.hero-img {
	position: absolute;
	width: 100%;
}

.slick-center .slider-nav-slide-block {
	height: 160px;
	margin-top: -12px;
	background: url(../images/hero-small-hover-bg.png) center no-repeat;
}
.slick-center .slider-nav-slide-block img {
	margin-bottom: 10px;
}

.slider-nav-slide:hover {
	opacity: 1;
}
.slider-nav-slide:hover .slider-nav-slide-block {
	height: 160px;

	background: url(../images/hero-small-hover-bg.png) center no-repeat;
}
.slider-nav-slide:hover .slider-nav-slide-block img {
	margin-bottom: 10px;
}

.slider-nav-slide-block {
	width: 100%;
	height: 150px;
	background: url(../images/hero-small-bg.png) center no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.5s;
	position: relative;
	margin: 0 auto;
	margin-top: -12px;
}

.slider-nav-slide-block img {
	position: relative;
	z-index: 2;
}

.hero-img-1 {
	top: 0px;
	left: 950px;
}

.hero-img-2 {
	top: 0px;
	left: 850px;
}

.hero-img-3 {
	top: 20px;
	left: 900px;
}

.hero-img-4 {
	top: 0px;
	left: 930px;
}

.hero-img-5 {
	top: 25px;
	left: 960px;
}

.slider-nav-block {
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	background-color: rgba(78, 91, 86, 0.3);
	height: 150px;
}

.slider-nav-slide {
	height: 150px;
	margin-top: 12px;
	opacity: 0.5;
	transition: 0.5s;
	cursor: pointer;
}

.slider-nav {
	max-width: 1000px;
	margin: 0 auto;
}

.slider-nav .slick-list {
	padding: 0 !important;
}

.slider-nav .slick-center {
	opacity: 1;
}

.slider-nav .slick-center .slider-nav-slide-block:after {
	opacity: 1;
}
.slider-nav .slick-arrow {
	position: absolute;
	z-index: 5;
	width: 55px;
	height: 55px;
	font-size: 0px;
	top: 72px;
	margin-top: -27px;
	transition: 0.3s;
	opacity: 0.6;
}
.slider-nav .slick-arrow:hover {
	opacity: 1;
}
.slider-nav .slick-prev {
	background: url(../images/slick-prev-hero.png) no-repeat;
	left: -70px;
}

.slider-nav .slick-next {
	background: url(../images/slick-prev-hero.png) no-repeat;
	transform: rotate(-180deg);
	right: -70px;
}

.media {
	position: relative;
}

.media-slide {
	padding: 0 7px;
	opacity: 0.5;
	transition: all 0.3s;
}

.media-slide:hover {
	opacity: 1;
}

.media-slide img {
	width: 100%;
}

.media-slider .slick-arrow {
	position: absolute;
	z-index: 5;
	width: 55px;
	height: 55px;
	background: url(../images/slick-prev-hero.png) no-repeat;
	font-size: 0px;
	top: 50%;
	margin-top: -30px;
	transition: 0.3s;
	opacity: 0.6;
}
.media-slider .slick-prev {
	left: -30px;
}
.media-slider .slick-next {
	transform: rotate(-180deg);
	right: -30px;
}

.media-slider .slick-arrow:hover {
	opacity: 1;
}

.media-slider .slick-current {
	opacity: 1;
}

.about-server {
	text-align: center;
}

.about-server-title {
	color: #a0e1ff;
	font-size: 24px;
	line-height: 48px;
	margin-bottom: 50px;
}

.about-server-text {
	font-size: 15px;
	line-height: 48px;
}

.to-top {
	position: relative;
	margin: 50px 0;
}
.to-top:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #2d3a44;
	left: 50%;
	transform: translateX(-50%);
	top: 50%;
	z-index: 2;
}

.toTop {
	position: relative;
	z-index: 3;
	background: url(../images/to-top.png) no-repeat;
	width: 58px;
	height: 46px;
	display: block;
	margin: 0 auto;
	cursor: pointer;
	transition: 0.3s;
}
.toTop:hover {
	filter: brightness(120%);
}

.footerMenu {
	display: flex;
	justify-content: center;
}

.f-menu {
	display: flex;
	min-width: 660px;
	gap: 25px;
	justify-content: space-between;
}
.f-menu li {
	padding: 12px 0px;
	text-align: center;
	position: relative;
}
.f-menu li a {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	position: relative;
	opacity: 0.5;
}
.f-menu li a:hover {
	opacity: 1;
}

.footerBottom {
	padding-top: 30px;
	position: relative;
	flex-direction: column;
	align-items: center;
	z-index: 5;
}

.footerBottom-block {
	display: flex;
	justify-content: center;
}

.footer {
	padding-top: 30px;
	position: relative;
	background-color: #0f1923;
	background: url(../images/footer-bg.png) no-repeat;
	background-position: bottom;
}

.f-info {
	font-size: 12px;
	color: #e5d9a5;
	text-align: center;
}

.f-info span {
	display: inline-block;
}

.f-link {
	color: #fff;
}

.f-link:hover {
	text-decoration: underline;
}

.f-logo {
	width: 280px;
	margin-right: 40px;
}

.f-logo img {
	max-width: 482px;
	max-height: 270px;
	width: auto;
	height: auto;
}

.f-epvp-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 20px 0 40px;
}

.f-epvp-logo img {
	max-width: 160px;
	max-height: 80px;
	padding-left: 30px;
	width: auto;
	height: auto;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.f-epvp-logo img:hover {
	opacity: 1;
}
.f-payments {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 30px;
}

.f-payment {
	display: flex;
	background: url('../images/footer-payments.png') no-repeat;
	height: 26px;
	width: 80px;
	margin: 0 25px;
	background-position-x: 10px;
	opacity: 0.5;
}
.f-payment:hover {
	opacity: 1;
}

.f-mastercard {
	width: 130px;
	background-position-x: -80px;
}
.f-g2pay {
	width: 180px;
	background-position-x: -220px;
}

.burger-menu {
	display: none;
}

/****************************************** Modals ******************************************/
.modal-backdrop.show {
	opacity: 0.9;
}

#login-modal .modal-dialog {
	position: relative;
	max-width: 550px;
	padding: 30px 0;
	top: 150px;
	height: 666px;
	background: url('../images/bg-modal-login.png') no-repeat;
	background-position: center;
}

#registration-modal .modal-dialog {
	height: 918px;
	background: url('../images/bg-modal-reg.png') no-repeat;
	background-position: center;
}

/* Login and Registration Modal Styles */
#login-modal .modal-content,
#registration-modal .modal-content,
#login-modal .modal-body,
#registration-modal .modal-body {
	background-color: transparent;
	border: none;
}

#login-modal .modal-body,
#registration-modal .modal-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0;
}

#login-modal .btn-close,
#registration-modal .btn-close {
	position: absolute;
	top: -40px;
	right: 0;
	background: url('../images/close-btn.png') no-repeat;
	width: 45px;
	height: 45px;
	opacity: 1;
}

#login-modal .modal-body .section-title,
#registration-modal .modal-body .section-title {
	font-size: 20px;
	margin: 20px auto;
	text-transform: uppercase;
}

#login-modal .modal-body .section-title span::first-letter,
#registration-modal .modal-body .section-title span::first-letter {
	font-size: 25px;
}

.form-group {
	font-size: 16px;
	position: relative;
	padding: 10px 0;
	text-transform: uppercase;
	text-align: center;
}

.form-login {
	width: 100%;
	padding: 25px 0;
}

.form-group label {
	position: relative;
	background: url('../images/form-input.png') no-repeat;
	background-size: contain;
	background-position: center;
	border: none;
	color: #1a3441;
	height: 60px;
	width: 100%;
	margin: 40px auto 15px;
	font-size: 20px;
	padding: 0 40px;
	font-weight: 700;
}

.form-group label div {
	position: absolute;
	color: #fff;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
}

.form-control {
	border: none;
	background-color: transparent;
	font-size: 20px;
	font-weight: 700;
	height: 100%;
	text-align: center;
}

.form-control:focus {
	box-shadow: none;
	background-color: transparent;
}

.form-control::placeholder {
	font-weight: 400;
	text-align: center;
}

.submit-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 226px;
	height: 98px;
	margin: 0 auto;
	margin-top: 30px;
	padding-bottom: 25px;
}

.accept-rules {
	margin-top: 30px;
	margin-left: 15px;
	display: flex;
	justify-content: center;
	gap: 15px;
}
.rules-link {
	color: #e5d9a5;
	text-decoration: underline;
}

.custom-checkbox {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.custom-checkbox + label {
	position: relative;
	cursor: pointer;
	display: inline;
	align-items: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding-left: 45px;
	line-height: 24px;
}
.custom-checkbox + label::before {
	position: absolute;
	top: -4px;
	left: 0;
	content: '';
	display: flex;
	width: 32px;
	height: 32px;
	background-image: url(../images/custom-checkbox.png);
	background-repeat: no-repeat;
	background-position: center center;
}

.custom-checkbox:checked + label::before {
	content: '';
	position: absolute;
	background-image: url(../images/custom-checkbox-checked.png);
}

.bg-pages .content {
	position: relative;
	background: url('../images/bg-pages-content.png') no-repeat;
	background-position: center;
	width: 100%;
	height: 1266px;
	padding: 50px;
	z-index:9;
}
.bg-pages .main {
	margin-top: 700px;
}

/****************************************** News ******************************************/

.news-title {
	margin-top: 20px;
	margin-bottom: 30px;
	color: #a0e1ff;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
}
.news-text {
	margin-bottom: 45px;
	font-size: 15px;
	line-height: 24px;
}

.news-date {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.news-date .date {
	margin-top: 10px;
	color: #4191b6;
	font-size: 14px;
}

.news-img {
	margin-bottom: 20px;
}

.highlighted {
	font-size: 35px;
	color: #91cbe6;
}

/****************************************** Download ******************************************/

.dTop-left {
	width: 60%;
	background-color: #3a4a52;
	border-right: 1px solid #4a5a62;
	height: 270px;
}
.dTop-left > div {
	height: 100%;
}

.dTop-right {
	width: 40%;
	height: 270px;
	background-color: #2d3a42;
}
.dTop-right > div {
	height: 100%;
}

.dTop-cat {
	width: 100%;
	padding: 3px;
}

.dTop-cat_title {
	font-size: 15px;
	text-align: center;
	margin-bottom: 50px;
}

.dTop-cat_blocks {
	justify-content: center;
	display: flex;
	width: 100%;
	margin: 0 auto;
	gap: 20px;
}

.dTop-cat_block {
	width: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #2d3a42;
	height: 120px;
	position: relative;
	border: 1px solid #4a5a62;
	padding: 15px 10px;
	text-decoration: none;
	color: #fff;
}

.dTop-cat_block-img {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px auto;
	flex-shrink: 0;
}

.dTop-cat_block .dTop-cat_block-img {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	height: 50px;
	width: 50px;
}

.dTop-cat_block .dTop-cat_block-img img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.dTop-cat_block-title {
	font-size: 12px;
	font-weight: 600;
	text-align: center;
	color: #a0e1ff;
	line-height: 1.2;
	margin-top: 5px;
}

.dTop-cat_block-mega .dTop-cat_block-img {
	background-image: url('../images/mega.png');
}
.dTop-cat_block-gd .dTop-cat_block-img {
	background-image: url('../images/google-disk.png');
}
.dTop-cat_block-torrent .dTop-cat_block-img {
	background-image: url('../images/torrent.png');
}
.dTop-cat_block-mediafire .dTop-cat_block-img {
	height: 35px;
	width: 60px;
	background-image: url('../images/media-fire.png');
}
.dTop-cat_block:hover {
	background-color: #3a4a52;
	border-color: #5a6a72;
	transform: translateY(-2px);
	transition: all 0.3s ease;
}

.dTop-cat_block:hover .dTop-cat_block-title {
	color: #fff;
}
.dTop-cat_block-mega:hover {
	background-color: #d9272e;
}
.dTop-cat_block-gd:hover {
	background-color: #57899c;
}
.dTop-cat_block-torrent:hover {
	background-color: #5acf5f;
}
.dTop-cat_block-mediafire:hover {
	background-color: #006e9e;
}
.dTop-cat_block-mega:hover .dTop-cat_block-img {
	background-image: url('../images/mega-hover.png');
}
.dTop-cat_block-gd:hover .dTop-cat_block-img {
	background-image: url('../images/google-disk-hover.png');
}
.dTop-cat_block-torrent:hover .dTop-cat_block-img {
	background-image: url('../images/torrent-hover.png');
}
.dTop-cat_block-mediafire:hover .dTop-cat_block-img {
	background-image: url('../images/media-fire-hover.png');
}

.dtop-update {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.dtop-update_button {
	margin-top: 20px;
}

.dtop-update_title {
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 20px;
	text-transform: capitalize;
}

.dtop-update_text {
	color: #d5e7e8;
	font-size: 14px;
	line-height: 28px;
	max-width: 330px;
	margin: 0 auto;
	margin-bottom: 30px;
}

.d-title {
	font-size: 24px;
	font-weight: 700;
	margin: 50px 0 30px;
	color: #a0e1ff;
	text-align: center;
}

.download-btn {
	background: url('../images/download-button.png');
	width: 150px;
	height: 60px;
	padding-bottom: 0;
	margin: 0 auto;
}

.table-download {
	width: 100%;
	border-collapse: collapse;
}
.table-download thead {
	font-weight: bold;
}
.table-download thead td {
	color: #fff;
	background-color: #2d3a42;
	font-size: 14px;
	padding: 20px 30px;
	text-align: left;
	border-top: 2px solid #3a4a52;
}
.table-download td {
	color: #fff;
	text-align: left;
	border-top: 1px solid #3a4a52;
	background-color: #3a4a52;
	padding: 20px 30px;
	vertical-align: middle;
}
.table-download td:first-child {
	width: 25%;
	font-weight: bold;
}

.driverBlock {
	display: block;
	padding: 10px;
}

.faq-block {
	background-color: #2d3a42;
	padding: 30px;
	border-radius: 8px;
	margin-bottom: 30px;
}

.faq-block_title {
	font-size: 18px;
	font-weight: 700;
	color: #a0e1ff;
	margin-bottom: 15px;
}

.faq-block_text {
	color: #fff;
	line-height: 1.6;
}

/****************************************** Top Players ******************************************/

.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: url(../images/arrow-v.png) right 20px center no-repeat;
	background-color: #566a7a;
}

.select:focus .select_dropdown {
	display: block;
}

.select_dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	list-style-type: none;
	background-color: #566a7a;
	display: none;
	z-index: 10;
	transition: 0.3s;
}

.select_option {
	height: 45px;
	padding: 0px 20px;
	display: flex;
	align-items: center;
	border-top: 1px solid #57768d;
	color: #f0e7aa;
}

.select_option:hover {
	background-color: gray;
}

.selectTop {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 30px;
}

.rank-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 30px;
}

.topThree {
	justify-content: center;
	gap: 20px;
	margin-bottom: 70px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}

.topThree-block {
	height: 140px;
	display: flex;
	position: relative;
	transition: all 0.3s ease;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.topThree-block:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.topThree-block_place,
.topThree-block_class,
.topThree-block_text {
	border: 1px solid #57768d;
	background-color: #475d6e;
}

.topThree-block_place {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	position: relative;
}

/* Специальные стили для мест на пьедестале */
.first-place {
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
	height: 160px;
}

.second-place {
	background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
	box-shadow: 0 0 15px rgba(192, 192, 192, 0.4);
	height: 150px;
}

.third-place {
	background: linear-gradient(135deg, #cd7f32, #daa520);
	box-shadow: 0 0 15px rgba(205, 127, 50, 0.4);
	height: 140px;
}

.topThree-block_place .circle {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #5388b1;
	height: 60px;
	width: 60px;
	font-size: 20px;
}

.topThree-block_class {
	overflow: hidden;
	position: relative;
	width: 134px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.topThree-block_class img {
	width: 100px;
	height: 100px;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.topThree-block:hover .topThree-block_class img {
	transform: scale(1.1);
}

.topThree-block_text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 280px;
	padding: 20px 18px;
	position: relative;
	background: linear-gradient(135deg, #475d6e, #3a4a5a);
}

.topThree-block_text-t {
	width: 100%;
}

.topThree-block_text-t p {
	color: #e5d9a5;
	font-size: 22px;
	font-weight: bold;
	margin: 0 0 8px 0;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.level-top, .guild-top, .pk-top {
	display: block;
	margin: 4px 0;
	font-size: 14px;
	color: #b8c5d1;
}

.level-top {
	color: #4fc3f7;
	font-weight: 600;
}

.guild-top {
	color: #81c784;
	font-weight: 500;
}

.pk-top {
	color: #ff7043;
	font-weight: 600;
}
.topThree-block_text-b {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 10px;
}

.online {
	color: #b0d90e;
}

.offline {
	color: #e91414;
}

.table-top-rank {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 
		0 20px 60px rgba(0, 0, 0, 0.4),
		0 8px 32px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	background: linear-gradient(145deg, #2d3a42, #1e2a32);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: table;
}
.table-top-rank thead tr {
	background: linear-gradient(135deg, #4a5f73, #3d5162, #2c3e50);
	position: relative;
}

.table-top-rank thead tr::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, #64b5f6, transparent);
}

.table-top-rank thead th {
	background: linear-gradient(135deg, #4a5f73, #3d5162, #2c3e50);
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 13px;
	text-align: center;
	padding: 25px 15px;
	position: relative;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	border-right: 2px solid rgba(255, 255, 255, 0.15);
	white-space: nowrap;
}

.table-top-rank thead th:last-child {
	border-right: none;
}

.table-top-rank thead th:hover {
	background: linear-gradient(135deg, #5a6f83, #4d6162, #3c4e60);
}

.table-top-rank {
	min-width: 800px;
}

/* Стили для строк таблицы */
.table-top-rank tbody tr {
	position: relative;
	left: 0px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: linear-gradient(135deg, #2d3a42, #1e2a32);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-top-rank tbody tr:nth-child(even) {
	background: linear-gradient(135deg, #344a56, #2a3d47);
}

.table-top-rank tbody tr:nth-child(odd) {
	background: linear-gradient(135deg, #2d3a42, #1e2a32);
}

/* Стили для ячеек таблицы */
.table-top-rank tbody tr td {
	height: 80px;
	color: #e5d9a5;
	font-size: 16px;
	text-align: center;
	padding: 20px 15px;
	position: relative;
	border-right: 2px solid rgba(255, 255, 255, 0.08);
	vertical-align: middle;
	white-space: nowrap;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.table-top-rank tbody tr td:last-child {
	border-right: none;
}

/* Hover эффекты */
.table-top-rank tbody tr:hover {
	background: linear-gradient(135deg, #3a4a5a, #2d3e50);
	left: -8px;
	box-shadow: 
		0 8px 25px rgba(0, 0, 0, 0.3),
		0 4px 15px rgba(100, 181, 246, 0.1);
	transform: translateX(5px) scale(1.01);
	border-left: 3px solid #64b5f6;
}

.table-top-rank tbody tr:hover td {
	color: #fff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Стили для изображений */
.table-top-rank td.table-img {
	padding: 0 15px;
}

.table-top-rank td.table-img img {
	height: 34px;
	width: 34px;
	object-fit: contain;
	border-radius: 6px;
	transition: transform 0.3s ease;
}

.table-top-rank tbody tr:hover td.table-img img {
	transform: scale(1.1);
}
.table-top-rank tbody tr:hover:after {
	opacity: 1;
}

/* ========== СТИЛИ ДЛЯ СТРАНИЦЫ TOP100 ========== */

/* Локальные стили для top100 - не влияют на другие страницы */
.top100-page {
	background: linear-gradient(135deg, #0a0e13, #1a1f2e, #0a0e13);
	min-height: 100vh;
}

.top100-page .section-download {
	background: transparent;
	padding: 40px 0;
}

.top100-page .section-title {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

.top100-page .section-title .section-separator {
	display: inline-block;
	font-size: 32px;
	font-weight: 700;
	color: #e5d9a5;
	text-transform: uppercase;
	letter-spacing: 3px;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
	position: relative;
}

.top100-page .section-title .section-separator::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #64b5f6, transparent);
}

.top100-page .section-title .section-separator::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #64b5f6, transparent);
}

/* Стили для топ-3 игроков на top100 */
.top100-page .topThree {
	justify-content: center;
	gap: 30px;
	margin-bottom: 80px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	padding: 0 20px;
}

.top100-page .topThree-block {
	height: 120px;
	display: flex;
	position: relative;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	background: linear-gradient(145deg, #2d3a42, #1e2a32);
	border: 2px solid rgba(255, 255, 255, 0.1);
}

.top100-page .topThree-block:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
	border-color: rgba(100, 181, 246, 0.3);
}

/* Стили для элементов топ-3 top100 */
.top100-page .topThree-block_place {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	position: relative;
}

.top100-page .rank-number {
	font-size: 32px;
	font-weight: 900;
	color: #fff;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.top100-page .topThree-block_class {
	overflow: hidden;
	position: relative;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.top100-page .character-portrait {
	width: 34px;
	height: 34px;
	object-fit: contain;
	transition: transform 0.3s ease;
	border-radius: 8px;
}

.top100-page .topThree-block:hover .character-portrait {
	transform: scale(1.1);
}

.top100-page .topThree-block_text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 160px;
	padding: 15px;
	position: relative;
	background: linear-gradient(135deg, #475d6e, #3a4a5a);
}

.top100-page .character-name {
	font-size: 16px;
	font-weight: 700;
	color: #e5d9a5;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	margin-bottom: 6px;
}

.top100-page .character-level {
	font-size: 12px;
	color: #4fc3f7;
	font-weight: 600;
	margin-bottom: 3px;
}

.top100-page .character-guild {
	font-size: 12px;
	color: #81c784;
	font-style: italic;
	margin-bottom: 3px;
}

.top100-page .character-pk {
	font-size: 12px;
	color: #ff7043;
	font-weight: 600;
}

/* Специальные стили для мест на пьедестале top100 */
.top100-page .first-place {
	background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
	box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
	height: 130px;
	border-color: #ffd700;
}

.top100-page .second-place {
	background: linear-gradient(135deg, #c0c0c0, #e8e8e8, #c0c0c0);
	box-shadow: 0 0 25px rgba(192, 192, 192, 0.5);
	height: 125px;
	border-color: #c0c0c0;
}

.top100-page .third-place {
	background: linear-gradient(135deg, #cd7f32, #daa520, #cd7f32);
	box-shadow: 0 0 25px rgba(205, 127, 50, 0.5);
	height: 120px;
	border-color: #cd7f32;
}

/* Скрываем квадраты с номерами мест для топ-3 */
.top100-page .topThree-block_place {
	display: none !important;
}

/* Стили для страницы топ-гильдий */
.topguild-page {
	background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
	min-height: 100vh;
	padding: 40px 0;
}

.topguild-page .table-top-scroll {
	overflow-x: auto;
	margin: 40px auto 0;
	width: 100%;
	max-width: 1200px;
}

.topguild-page .section-title {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

.topguild-page .section-title .section-separator {
	font-size: 48px;
	font-weight: 700;
	color: #64b5f6;
	text-shadow: 0 4px 8px rgba(100, 181, 246, 0.3);
	position: relative;
	display: inline-block;
}

.topguild-page .section-title .section-separator::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #64b5f6, transparent);
}

.topguild-page .section-title .section-separator::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #64b5f6, transparent);
}

.topguild-page .top-table {
	min-width: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.topguild-page .top-table li {
	display: flex;
	align-items: center;
	height: 60px;
	padding: 0px 30px;
	transition: 0.3s;
	position: relative;
	background: linear-gradient(135deg, #2d3a42, #1e2a32);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topguild-page .top-table li:nth-child(even) {
	background: linear-gradient(135deg, #344a56, #2a3d47);
}

.topguild-page .table-th {
	text-transform: uppercase;
	color: #fff;
	transition: all 0.3s;
	background: linear-gradient(135deg, #4a5f73, #3d5162, #2c3e50);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1px;
	width: 100%;
	display: flex;
	align-items: center;
}

.topguild-page .table-td {
	color: #a0e1ff;
}

.topguild-page .top-table .table-td:hover {
	transform: translateX(-10px);
	background: linear-gradient(135deg, #294962, #1e3a4a);
	color: #e5d9a5;
}

.topguild-page .top-table li:hover a {
	color: #e5d9a5;
}

/* Стили для колонок topguild */
.topguild-page .td-1 {
	width: 10%;
	text-align: center;
	font-weight: 700;
	color: #64b5f6;
}

.topguild-page .td-2 {
	width: 40%;
	text-align: center;
	padding: 0 20px;
}

.topguild-page .td-3 {
	width: 20%;
	text-align: center;
	color: #81c784;
	font-style: italic;
}

.topguild-page .td-4 {
	width: 15%;
	text-align: center;
	color: #4fc3f7;
	font-weight: 600;
}

.topguild-page .td-5 {
	width: 15%;
	text-align: center;
	color: #ff7043;
	font-weight: 600;
}

/* Стили для заголовка PK с возможностью сортировки */
.topguild-page .table-th .td-5 {
	width: 15%;
	text-align: center;
	color: #ff7043;
	font-weight: 600;
	position: relative;
	cursor: pointer;
	user-select: none;
}

.topguild-page .table-th .td-5:hover {
	color: #e5d9a5;
	transform: scale(1.05);
}

.topguild-page .table-th .td-5::after {
	content: ' ↓';
	font-size: 12px;
	margin-left: 5px;
	opacity: 0.7;
}

.topguild-page .table-th .td-5.sorted-asc::after {
	content: ' ↑';
}

.topguild-page .table-th .td-5.sorted-desc::after {
	content: ' ↓';
}

/* Стили для заголовков с стрелочками */
.topguild-page .table-th .td-3 {
	width: 20%;
	text-align: center;
	color: #4fc3f7;
	font-weight: 600;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
}

.topguild-page .table-th .td-3:hover {
	color: #e5d9a5;
	transform: scale(1.05);
}

.topguild-page .table-th .td-3::after {
	content: ' ↓';
	font-size: 12px;
	margin-left: 5px;
	opacity: 0.7;
}

.topguild-page .table-th .td-3.sorted-asc::after {
	content: ' ↑';
}

.topguild-page .table-th .td-3.sorted-desc::after {
	content: ' ↓';
}

.topguild-page .table-th .td-4 {
	width: 20%;
	text-align: center;
	color: #ff7043;
	font-weight: 600;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
}

.topguild-page .table-th .td-4:hover {
	color: #e5d9a5;
	transform: scale(1.05);
}

.topguild-page .table-th .td-4::after {
	content: ' ↓';
	font-size: 12px;
	margin-left: 5px;
	opacity: 0.7;
}

.topguild-page .table-th .td-4.sorted-asc::after {
	content: ' ↑';
}

.topguild-page .table-th .td-4.sorted-desc::after {
	content: ' ↓';
}

/* Стили для страницы личного кабинета */
.cabinet-page {
	background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
	min-height: 100vh;
	padding: 40px 0;
}

.cabinet-page .section-title {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

.cabinet-page .section-title .section-separator {
	font-size: 48px;
	font-weight: 700;
	color: #64b5f6;
	text-shadow: 0 4px 8px rgba(100, 181, 246, 0.3);
	position: relative;
	display: inline-block;
}

.cabinet-page .section-title .section-separator::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #64b5f6, transparent);
}

.cabinet-page .section-title .section-separator::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #64b5f6, transparent);
}

/* Приветствие */
.cabinet-welcome {
	text-align: center;
	margin-bottom: 40px;
}

.cabinet-welcome-title {
	font-size: 24px;
	font-weight: 700;
	color: #e5d9a5;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	margin-bottom: 10px;
}

/* Быстрые действия */
.cabinet-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 50px;
	flex-wrap: wrap;
	padding: 20px 0;
}

.cabinet-action-btn {
	display: flex;
	background: linear-gradient(135deg, #2d3a42, #1e2a32);
	border: 2px solid rgba(100, 181, 246, 0.3);
	border-radius: 12px;
	padding: 15px 25px;
	color: #e5d9a5;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
}

.cabinet-action-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(100, 181, 246, 0.1), transparent);
	transition: left 0.6s ease;
}

.cabinet-action-btn:hover::before {
	left: 100%;
}

.cabinet-action-btn:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(100, 181, 246, 0.4);
	border-color: rgba(100, 181, 246, 0.6);
	background: linear-gradient(135deg, #344a56, #2a3d47);
	color: #64b5f6;
	text-decoration: none;
}

/* Сетка кабинета */
.cabinet-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-bottom: 40px;
}

.cabinet-block {
	background: linear-gradient(135deg, #2d3a42, #1e2a32);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	transition: all 0.3s ease;
}

.cabinet-block:hover {
	border-color: rgba(100, 181, 246, 0.3);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.cabinet-block-title {
	font-size: 20px;
	font-weight: 700;
	color: #64b5f6;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0;
	padding: 20px 25px;
	background: linear-gradient(135deg, #4a5f73, #3d5162);
	border-bottom: 2px solid rgba(100, 181, 246, 0.3);
	text-align: center;
}

.cabinet-content {
	padding: 25px;
}

/* Информационные строки */
.cabinet-info-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cabinet-info-row:last-child {
	border-bottom: none;
}

.cabinet-info-label {
	color: #a0e1ff;
	font-weight: 600;
	font-size: 14px;
}

.cabinet-info-value {
	color: #e5d9a5;
	font-weight: 700;
	font-size: 14px;
}

.cabinet-balance-amount {
	color: #4fc3f7;
	font-weight: 700;
	font-size: 16px;
	text-shadow: 0 2px 4px rgba(79, 195, 247, 0.3);
}

.cabinet-status {
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.cabinet-status.active {
	background: rgba(34, 197, 94, 0.2);
	color: #22c55e;
	border: 1px solid rgba(34, 197, 94, 0.3);
}

.cabinet-status.blocked {
	background: rgba(239, 68, 68, 0.2);
	color: #f87171;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Таблица персонажей в стиле топ-100 */
.cabinet-table-container {
	overflow-x: auto;
	max-height: 400px;
}

.cabinet-table {
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
}

.cabinet-table-header {
	display: flex;
	align-items: center;
	height: 60px;
	padding: 0px 30px;
	background: linear-gradient(135deg, #4a5f73, #3d5162, #2c3e50);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cabinet-table-row {
	display: flex;
	align-items: center;
	height: 60px;
	padding: 0px 30px;
	transition: 0.3s;
	position: relative;
	background: linear-gradient(135deg, #2d3a42, #1e2a32);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cabinet-table-row:nth-child(even) {
	background: linear-gradient(135deg, #344a56, #2a3d47);
}

.cabinet-table-row:hover {
	transform: translateX(-10px);
	background: linear-gradient(135deg, #294962, #1e3a4a);
}

.cabinet-table-header .rank-col,
.cabinet-table-row .rank-col {
	width: 10%;
	text-align: center;
	font-weight: 700;
	color: #64b5f6;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cabinet-table-header .character-col,
.cabinet-table-row .character-col {
	width: 50%;
	text-align: left;
	padding: 0 20px;
	display: flex;
	align-items: center;
}

.cabinet-table-header .level-col,
.cabinet-table-row .level-col {
	width: 20%;
	text-align: center;
	color: #4fc3f7;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cabinet-table-header .pk-col,
.cabinet-table-row .pk-col {
	width: 20%;
	text-align: center;
	color: #ff7043;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cabinet-table-header .rank-col,
.cabinet-table-header .character-col,
.cabinet-table-header .level-col,
.cabinet-table-header .pk-col {
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
}

.cabinet-table-row .rank-col,
.cabinet-table-row .character-col,
.cabinet-table-row .level-col,
.cabinet-table-row .pk-col {
	color: #a0e1ff;
	font-weight: 600;
}

.cabinet-character-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.cabinet-character-icon {
	width: 32px;
	height: 32px;
	border-radius: 6px;
	border: 1px solid rgba(100, 181, 246, 0.3);
	filter: drop-shadow(0px 0px 6px rgba(100, 181, 246, 0.4));
	transition: all 0.3s ease;
}

.cabinet-character-icon:hover {
	border-color: #64b5f6;
	filter: drop-shadow(0px 0px 15px rgba(100, 181, 246, 0.8));
	transform: scale(1.1);
}

.cabinet-character-name {
	color: #ffffff;
	font-weight: bold;
	font-size: 16px;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.cabinet-level {
	color: #22c55e;
	font-weight: 700;
	font-size: 14px;
	text-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.cabinet-pk {
	color: #ff7043;
	font-weight: 700;
	font-size: 14px;
	text-shadow: 0 0 8px rgba(255, 112, 67, 0.4);
}

/* Адаптивность */
@media (max-width: 768px) {
	.cabinet-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.cabinet-actions {
		flex-direction: column;
		gap: 15px;
	}
	
	.cabinet-action-btn {
		width: 100%;
		max-width: 300px;
	}
}

/* Стили для страницы пополнения баланса */
.refill-page {
	background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
	min-height: 100vh;
	padding: 40px 0;
}

.refill-page .section-title {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

.refill-page .section-title .section-separator {
	font-size: 48px;
	font-weight: 700;
	color: #64b5f6;
	text-shadow: 0 4px 8px rgba(100, 181, 246, 0.3);
	position: relative;
	display: inline-block;
}

.refill-page .section-title .section-separator::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #64b5f6, transparent);
}

.refill-page .section-title .section-separator::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #64b5f6, transparent);
}

/* Пакеты пополнения */
.refill-packages {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

.refill-package {
	background: linear-gradient(135deg, #2d3a42, #1e2a32);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 30px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.refill-package::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(100, 181, 246, 0.1), transparent);
	transition: left 0.6s ease;
}

.refill-package:hover::before {
	left: 100%;
}

.refill-package:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
	border-color: rgba(100, 181, 246, 0.3);
}

.refill-package.selected {
	border-color: rgba(100, 181, 246, 0.6);
	background: linear-gradient(135deg, #344a56, #2a3d47);
	box-shadow: 0 12px 40px rgba(100, 181, 246, 0.2);
}

.refill-package-amount {
	font-size: 36px;
	font-weight: 800;
	color: #64b5f6;
	margin-bottom: 10px;
	text-shadow: 0 4px 8px rgba(100, 181, 246, 0.3);
}

.refill-package-price {
	font-size: 24px;
	font-weight: 700;
	color: #e5d9a5;
	margin-bottom: 15px;
}

.refill-package-bonus {
	font-size: 16px;
	font-weight: 700;
	color: #4caf50;
	margin-bottom: 10px;
	text-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
	padding: 8px 16px;
	border-radius: 20px;
	border: 1px solid rgba(76, 175, 80, 0.3);
}

.refill-package-description {
	font-size: 14px;
	color: #a0e1ff;
	line-height: 1.5;
	margin-bottom: 20px;
}


/* Форма пополнения */
.refill-form {
	background: linear-gradient(135deg, #2d3a42, #1e2a32);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.refill-form-group {
	margin-bottom: 25px;
}

.refill-form-label {
	display: block;
	color: #e5d9a5;
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 16px;
}

.refill-form-input {
	width: 100%;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	color: #fff;
	font-size: 16px;
	transition: all 0.3s ease;
}

.refill-form-input:focus {
	outline: none;
	border-color: #64b5f6;
	box-shadow: 0 0 20px rgba(100, 181, 246, 0.3);
	background: rgba(255, 255, 255, 0.15);
}

.refill-form-select {
	width: 100%;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	color: #fff;
	font-size: 16px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.refill-form-select:focus {
	outline: none;
	border-color: #64b5f6;
	box-shadow: 0 0 20px rgba(100, 181, 246, 0.3);
}

.refill-form-select option {
	background: #2d3a42;
	color: #fff;
}

.refill-submit-btn {
	width: 100%;
	padding: 18px 30px;
	background: linear-gradient(135deg, #2d3a42, #1e2a32);
	border: 2px solid rgba(100, 181, 246, 0.3);
	border-radius: 12px;
	color: #e5d9a5;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.refill-submit-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(100, 181, 246, 0.1), transparent);
	transition: left 0.6s ease;
}

.refill-submit-btn:hover::before {
	left: 100%;
}

.refill-submit-btn:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 25px rgba(100, 181, 246, 0.4);
	border-color: rgba(100, 181, 246, 0.6);
	color: #64b5f6;
}

.refill-submit-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

/* Стили для страницы транзакций */
.transactions-page {
	background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
	min-height: 100vh;
	padding: 40px 0;
}

.transactions-page .section-title {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

.transactions-page .section-title .section-separator {
	font-size: 48px;
	font-weight: 700;
	color: #64b5f6;
	text-shadow: 0 4px 8px rgba(100, 181, 246, 0.3);
	position: relative;
	display: inline-block;
}

.transactions-page .section-title .section-separator::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #64b5f6, transparent);
}

.transactions-page .section-title .section-separator::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #64b5f6, transparent);
}

/* Статистика транзакций */
/* Основной контейнер для статистики и таблицы */
.transactions-main-content {
	display: flex;
	gap: 30px;
	margin-bottom: 40px;
	align-items: flex-start;
}

.transactions-stats {
	background: linear-gradient(135deg, #2d3a42, #1e2a32);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	flex: 0 0 200px; /* Значительно уменьшенная ширина для статистики */
	min-width: 180px;
}

.stats-grid {
	display: grid;
	grid-template-columns: 1fr; /* Одна колонка для вертикального расположения */
	gap: 15px;
}

.stats-item {
	text-align: center;
}

.stats-number {
	font-size: 28px;
	font-weight: 800;
	color: #64b5f6;
	margin-bottom: 8px;
	text-shadow: 0 4px 8px rgba(100, 181, 246, 0.3);
}

.stats-label {
	font-size: 12px;
	color: #a0e1ff;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

/* Таблица транзакций */
.transactions-table-container {
	overflow-x: auto;
	flex: 1; /* Занимает оставшееся пространство */
	min-width: 0; /* Позволяет контейнеру сжиматься */
	width: 100%; /* Принудительно занимает всю доступную ширину */
}

.transactions-table {
	width: 100%;
	min-width: 100%; /* Минимальная ширина 100% */
	list-style: none;
	padding: 0;
	margin: 0;
	display: table; /* Используем table display для лучшего расширения */
}

.transactions-table-header {
	display: table-row;
	height: 60px;
	background: linear-gradient(135deg, #4a5f73, #3d5162, #2c3e50);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	width: 100%;
}

.transactions-table-row {
	display: table-row;
	height: 60px;
	transition: 0.3s;
	position: relative;
	background: linear-gradient(135deg, #2d3a42, #1e2a32);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	width: 100%;
}

.transactions-table-row:nth-child(even) {
	background: linear-gradient(135deg, #344a56, #2a3d47);
}

.transactions-table-row:hover {
	background: linear-gradient(135deg, #294962, #1e3a4a);
}

.transactions-table-header .col-id,
.transactions-table-row .col-id {
	display: table-cell;
	width: 12%;
	text-align: center;
	font-weight: 700;
	color: #64b5f6;
	vertical-align: middle;
	padding: 15px 10px;
}

.transactions-table-header .col-amount,
.transactions-table-row .col-amount {
	display: table-cell;
	width: 18%;
	text-align: center;
	color: #4fc3f7;
	font-weight: 600;
	vertical-align: middle;
	padding: 15px 10px;
}

.transactions-table-header .col-method,
.transactions-table-row .col-method {
	display: table-cell;
	width: 30%;
	text-align: center;
	color: #e5d9a5;
	font-weight: 600;
	vertical-align: middle;
	padding: 15px 10px;
}

.transactions-table-header .col-status,
.transactions-table-row .col-status {
	display: table-cell;
	width: 20%;
	text-align: center;
	vertical-align: middle;
	padding: 15px 10px;
}

.transactions-table-header .col-date,
.transactions-table-row .col-date {
	display: table-cell;
	width: 20%;
	text-align: center;
	color: #a0e1ff;
	font-weight: 600;
	vertical-align: middle;
	padding: 15px 10px;
}

.transactions-table-header .col-id,
.transactions-table-header .col-amount,
.transactions-table-header .col-method,
.transactions-table-header .col-status,
.transactions-table-header .col-date {
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
}

.transactions-table-row .col-id,
.transactions-table-row .col-amount,
.transactions-table-row .col-method,
.transactions-table-row .col-status,
.transactions-table-row .col-date {
	color: #a0e1ff;
	font-weight: 600;
}

.transaction-status {
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.transaction-status.completed {
	background: rgba(34, 197, 94, 0.2);
	color: #22c55e;
	border: 1px solid rgba(34, 197, 94, 0.3);
}

.transaction-status.pending {
	background: rgba(255, 193, 0, 0.2);
	color: #ffc100;
	border: 1px solid rgba(255, 193, 0, 0.3);
}

.transaction-status.failed {
	background: rgba(239, 68, 68, 0.2);
	color: #f87171;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Адаптивность */
@media (max-width: 1024px) {
	.refill-packages {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	
	/* Адаптивность для фоновых изображений на планшетах */
	body {
		background-size: 1000px auto;
		background-position: calc(50% - 50px) top;
	}
	
	body.bg-pages {
		background-size: 1000px auto;
		background-position: calc(50% - 50px) top;
	}
}

@media (max-width: 768px) {
	.refill-packages {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.transactions-table-header,
	.transactions-table-row {
		font-size: 12px;
		padding: 0px 15px;
	}
	
	/* Адаптивность для новой компоновки транзакций */
	.transactions-main-content {
		flex-direction: column;
		gap: 20px;
	}
	
	.transactions-stats {
		flex: none;
		width: 100%;
		min-width: auto;
	}
	
	.transactions-table-container {
		flex: none;
		width: 100%;
	}
}


/* Центрирование контейнера страницы */
.pageContent {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.table-top-rank-s {
	margin-bottom: 30px;
}

.pagination {
	margin-bottom: 20px;
}
.pagination li {
	padding: 6px;
}

.number {
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(../images/squad-bg.png) no-repeat;
	width: 45px;
	height: 45px;
	color: #e5d9a5;
}

.pagination-btn {
	display: flex;
	width: 45px;
	height: 45px;
	transition: all 0.3s;
	opacity: 0.5;
}

.number.active,
.number:hover {
	background: url(../images/squad-bg-active.png) no-repeat;
}

.pagination-btn:hover {
	opacity: 1;
}

.pagination-btn.nav-prev {
	background: url(../images/slick-prev.png) no-repeat;
}

.pagination-btn.nav-next {
	background: url(../images/slick-prev.png) no-repeat;
	transform: rotate(180deg);
}

/****************************************** Account Panel ******************************************/
.home-block-subtitle {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 30px;
	text-align: center;
}

.account-setting {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 50px;
	padding: 0px 15px;
}

.account-setting_block {
	width: calc(50% - 2px);
	height: 60px;
	display: flex;
	align-items: center;
	padding: 0px 25px;
}

.account-setting_block:nth-child(2) {
	background-color: #475d6e;
}
.account-setting_block:nth-child(1) {
	background-color: #475d6e;
}
.account-setting_block:nth-child(5) {
	background-color: #475d6e;
}
.account-setting_block:nth-child(6) {
	background-color: #475d6e;
}
.account-setting_block:nth-child(9) {
	background-color: #475d6e;
}
.account-setting_block:nth-child(10) {
	background-color: #475d6e;
}
.color-green {
	color: #b0d90e;
}
.account-icon {
	display: inline-block;
	width: 21px;
	height: 21px;
	background-image: url(../images/account-setting-icons.png);
	background-repeat: no-repeat;
	margin-right: 35px;
	flex-shrink: 0;
}

.account-icon-user {
	background-position: left top;
}

.account-icon-member {
	background-position: left top -286px;
}

.account-icon-email {
	background-position: left top -60px;
}

.account-icon-last-login {
	background-position: left top -346px;
}

.account-icon-rank {
	background-position: left top -119px;
	height: 18px;
}

.account-icon-ip {
	background-position: left top -407px;
}

.account-icon-server {
	background-position: left top -180px;
	height: 19px;
}

.account-icon-current-ip {
	background-position: left top -467px;
}

.account-icon-current-vip {
	background-position: left top -240px;
}

.account-icon-current-vip-exp {
	background-position: left top -529px;
}

.account-setting_f {
	display: block;
	overflow: hidden;
	width: 50%;
}

.charOptions-title {
	text-align: center;
	color: #ffffff;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 36px;
}

.charOptions-col {
	padding: 12px;
}

.charOptions-block {
	display: flex;
	align-items: center;
	justify-content: center;
	align-content: center;
	flex-wrap: wrap;
	width: 374px;
	height: 125px;
	background: url(../images/option-bg.jpg) center no-repeat;
	background-size: cover;
	color: #e5d9a5;
	font-style: italic;
	position: relative;
}
.charOptions-block:hover {
	filter: brightness(120%);
}
.charOptions-block p {
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-size: 32px;
	margin-bottom: 10px;
}

.panel-active {
	color: #ffffff;
	width: 255px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0px 30px;
	justify-content: center;
	position: relative;
	cursor: pointer;
	transition: 0.3s;
	height: 90px;
}

.panel-active:hover {
	background-color: #1b252e;
}
.panel-active.active {
	background-color: #1b252e;
}

.panel-active:before {
	content: '';
	position: absolute;
	right: 20px;
	top: 40px;
	border: 7px solid transparent;
	border-top: 7px solid #fff;
}

.panel-dropdown {
	position: absolute;
	top: 100%;
	width: 255px;
	background-color: #1b252e;
	padding: 0 20px;
	display: none;
}

.panel-dropdown_title {
	font-weight: bold;
	margin-bottom: 40px;
	text-align: center;
}

.panel-dropdown_my-block {
	display: flex;
	justify-content: space-between;
	color: #e5d9a5;
	font-weight: bold;
	margin-bottom: 20px;
}

.panel-dropdown_list {
	margin-bottom: 5px;
}
.panel-dropdown_list li {
	margin-bottom: 20px;
}
.panel-dropdown_list li a.color-green {
	color: #b0d90e;
}
.panel-dropdown_list li a {
	color: #e5d9a5;
}
.panel-dropdown_list li a:hover {
	color: #fff;
}

.panel-dropdown_button {
	text-align: center;
}

.panel .small-button {
	background: url('../images/small-button.png') no-repeat;
	background-position-x: center;
	width: 163px;
	height: 89px;
	padding-bottom: 38px;
	color: #193541;
	margin: 0 auto;
}

/*animations*/
.top-content {
	position: relative;
}

.bg-pages .sparks,
.bg-pages .sparks-rights  {
    top: 700px;
}

.sparks {
	position: absolute;
	width: 1200px;
	top: 0;
	z-index: 1;
	left:150px;
}

.sparks > div {
	position: absolute;
}
.sparks .spark_1 {
	background: url(../images/spark_1.png) no-repeat;
	width: 764px;
	height: 313px;
	left: 0;
	bottom: -320px;
	-webkit-transform: scale(0.6);
	transform: scale(0.6);
	-webkit-animation: spark-1 4s linear infinite;
	animation: spark-1 4s linear infinite;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
.sparks .spark_2 {
	background: url(../images/spark_2.png) no-repeat;
	width: 179px;
	height: 335px;
	left: 230px;
	bottom: -320px;
	-webkit-transform: scale(0.6);
	transform: scale(0.6);
	-webkit-animation: spark-1 4s linear infinite;
	animation: spark-1 4s linear infinite;
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}
.sparks .spark_3 {
	background: url(../images/spark_3.png) no-repeat;
	width: 128px;
	height: 165px;
	left: 280px;
	bottom: -140px;
	-webkit-transform: scale(0.6);
	transform: scale(0.6);
	-webkit-animation: spark-3 4s linear infinite;
	animation: spark-3 4s linear infinite;
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}
.sparks .spark-big {
	background: url(../images/spark_4.png) no-repeat;
	width: 794px;
	height: 176px;
	left: 0;
	bottom: -180px;
	-webkit-transform: scale(0.6);
	transform: scale(0.6);
	-webkit-animation: spark-5 4s linear infinite;
	animation: spark-5 4s linear infinite;
}
.sparks .spark_5 {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
	left: 40px;
}

.sparks_2 .spark_1 {
	background: url(../images/spark_1.png) no-repeat;
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}
.sparks_2 .spark_2 {
	background: url(../images/spark_2.png) no-repeat;
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}
.sparks_2 .spark_3 {
	background: url(../images/spark_3.png) no-repeat;
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}
.sparks_2 .spark-big {
	background: url(../images/spark_4.png) no-repeat;
}
.sparks_2 .spark_5 {
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}

@-webkit-keyframes spark-1 {
	0% {
		bottom: -320px;
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		opacity: 0;
	}
	25% {
		bottom: -240px;
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
		opacity: 1;
	}
	50% {
		bottom: -160px;
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
		opacity: 1;
	}
	75% {
		bottom: -80px;
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
		opacity: 0.5;
	}
	100% {
		bottom: 0px;
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
}

@keyframes spark-1 {
	0% {
		bottom: -320px;
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		opacity: 0;
	}
	25% {
		bottom: -240px;
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
		opacity: 1;
	}
	50% {
		bottom: -160px;
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
		opacity: 1;
	}
	75% {
		bottom: -80px;
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
		opacity: 0.5;
	}
	100% {
		bottom: 0px;
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
}
@-webkit-keyframes spark-3 {
	0% {
		bottom: -140px;
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		opacity: 0;
	}
	25% {
		bottom: -80px;
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
		opacity: 1;
	}
	50% {
		bottom: -20px;
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
		opacity: 1;
	}
	75% {
		bottom: 40px;
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
		opacity: 0.5;
	}
	100% {
		bottom: 100px;
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
}
@keyframes spark-3 {
	0% {
		bottom: -140px;
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		opacity: 0;
	}
	25% {
		bottom: -80px;
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
		opacity: 1;
	}
	50% {
		bottom: -20px;
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
		opacity: 1;
	}
	75% {
		bottom: 40px;
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
		opacity: 0.5;
	}
	100% {
		bottom: 100px;
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
}
@-webkit-keyframes spark-5 {
	0% {
		bottom: -180px;
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		opacity: 0;
	}
	25% {
		bottom: -120px;
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
		opacity: 1;
	}
	50% {
		bottom: -60px;
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
		opacity: 1;
	}
	75% {
		bottom: 0px;
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
		opacity: 0.5;
	}
	100% {
		bottom: 60px;
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
}
@keyframes spark-5 {
	0% {
		bottom: -180px;
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		opacity: 0;
	}
	25% {
		bottom: -120px;
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
		opacity: 1;
	}
	50% {
		bottom: -60px;
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
		opacity: 1;
	}
	75% {
		bottom: 0px;
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
		opacity: 0.5;
	}
	100% {
		bottom: 60px;
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}
}

.clouds {
	background-image: url(../images/clouds.png);
	background-repeat: repeat-x;
	background-position: top left 2509px;
	width: 2509px;
	height: 732px;
	display: block;
	position: absolute;
	left: 0px;
	top: 400px;
	opacity: 0.2;
	animation: 22s cloud linear infinite;
	pointer-events: none;
	z-index: 1;
}

@keyframes cloud {
        0% {
                background-position: top left -2509px;
        }
        100% {
                background-position: top left 2509px;
        }
}

/* Language Selector Styles */
.langBlock {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.langBlock-active {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
    user-select: none;
}

.langBlock-active:hover {
    background: rgba(255, 255, 255, 0.2);
}

.langBlock-active.active {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.lang-icon {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    pointer-events: none;
}

.langBlock-select {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 90px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.langBlock-select.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.langBlock-select ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.langBlock-select li {
    margin: 0;
}

.lang-button {
    background: none;
    border: none;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
}

.lang-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lang-button .lang-icon {
    width: 20px;
    height: 14px;
    flex-shrink: 0;
}


section {
    width: 100%;
}

/* Mobile styles for language selector */
@media (max-width: 768px) {
    .langBlock {
        margin-right: 10px;
    }
    
    .lang-icon {
        width: 20px;
        height: 14px;
    }
    
    .langBlock-select {
        right: -10px;
        min-width: 70px;
    }
    
    .header-wrapper_right {
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }
    
    /* Адаптивность для подсветки */
    .highlight-highlight {
        left: 200px;
        top: 300px;
    }
    
    .highlight {
        width: 80px;
        height: 80px;
        left: 300px;
        bottom: 80px;
    }
    
    .highlight .highlight-3,
    .highlight .highlight-4 {
        width: 80px;
        height: 80px;
    }
    
    /* Адаптивность для маскировки персонажей */
    .character-mask-1 {
        top: 30px;
        left: 50px;
        width: 200px;
        height: 250px;
    }
    
    .character-mask-2 {
        top: 10px;
        right: 50px;
        width: 150px;
        height: 200px;
    }
    
    .character-mask-3 {
        top: 50px;
        width: 250px;
        height: 150px;
    }
    
    .character-mask-4 {
        top: 20px;
        left: 20%;
        width: 120px;
        height: 180px;
    }
    
    /* Адаптивность для фоновых изображений */
    body {
        background-size: 800px auto;
        background-position: calc(50% - 30px) top;
    }
    
    body.bg-pages {
        background-size: 800px auto;
        background-position: calc(50% - 30px) top;
    }
    
    .header-wrapper_right .langBlock {
        order: 1;
    }
    
    .header-wrapper_right .login-button {
        order: 2;
    }
    
    /* Top100 Mobile Styles */
    .topThree {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .topThree-block {
        flex-wrap: wrap;
        height: auto;
        width: 100%;
        max-width: 400px;
    }
    
    .topThree-block_text {
        width: 100%;
        min-width: unset;
    }
    
    .topThree-block_class {
        width: calc(100% - 78px);
    }
    
}

/* Стили для кнопок авторизации */
.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.auth-buttons .login-button {
    background: url(../images/button.png) no-repeat;
    background-size: contain;
    height: 90px;
    width: 228px;
    color: #fff;
    position: relative;
    z-index: 1;
    text-align: center;
    text-transform: uppercase;
    font-family: 'GothamPro', sans-serif;
    font-size: 14px;
    font-weight: 700;
    transform: translateY(5px);
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.auth-buttons .login-button:hover {
    filter: brightness(140%);
}

.auth-buttons-mobile {
    display: none;
    gap: 10px;
    align-items: center;
    position: absolute;
    top: 0;
    right: 10px;
}

.register-link,
.register-link-mobile {
    color: #e5d9a5;
    text-decoration: none;
    font-family: 'GothamPro', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
    line-height: 1.2;
}

.register-link:hover,
.register-link-mobile:hover {
    color: #64b5f6;
    text-decoration: none;
    background-color: rgba(100, 181, 246, 0.1);
    transform: translateY(-1px);
}

/* Адаптивные стили для мобильных устройств */
@media (max-width: 768px) {
    .auth-buttons {
        display: none;
    }
    
    .auth-buttons-mobile {
        display: flex;
        flex-direction: column;
        gap: 5px;
        right: 5px;
    }
    
    .register-link,
    .register-link-mobile {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .login-button,
    .login-button-mobile {
        height: 35px;
    }
    
    .f-epvp-logo {
        margin: 10px 0;
    }
    
    .f-epvp-logo img {
        max-width: 80px;
        max-height: 40px;
    }
        width: 100px;
        font-size: 11px;
    }
}

/* Стили для модального окна регистрации - делаем его меньше */
#registration-modal .modal-dialog {
    max-width: 420px;
    padding: 30px;
    top: 100px;
}

#registration-modal .modal-body {
    padding: 15px 0;
}

#registration-modal .section-title {
    font-size: 18px;
    margin-bottom: 20px;
}

#registration-modal .form-group {
    padding: 10px 0;
}

#registration-modal .form-control {
    min-height: 45px;
    font-size: 13px;
}

#registration-modal .form-group::after {
    height: 30px;
    top: -3px;
}

#registration-modal .submit-btn {
    height: 46px;
    margin-top: 20px;
    font-size: 13px;
    background: url(../images/button.png) no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'GothamPro', sans-serif;
    text-align: center;
    padding: 0;
    padding-bottom: px;
}

#registration-modal .submit-btn:hover {
    filter: brightness(140%);
}

#registration-modal .accept-rules {
    margin-top: 15px;
    font-size: 12px;
}

#registration-modal .accept-rules label {
    font-size: 12px;
    line-height: 1.3;
}



/* Базовые метрики для ровности */
*, *::before, *::after {
	box-sizing: border-box;
}

/* Контейнер строки количества */
.purchase-quantity {
	display: flex;
	align-items: center; /* по вертикали центруем */
	gap: 12px;
	margin: 12px 0;
	font-size: 14px;
	line-height: 1.2; /* единый line-height исключает «прыжки» */
	color: #333;
}

/* Группа управления количеством */
.qty-control {
	display: inline-flex;
	align-items: center; /* выравнивание по центру */
	gap: 8px;
	padding: 4px;
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	background: #fff;
}

/* Кнопки + / - */
.qty-btn {
	inline-size: 36px; /* логические свойства лучше для RTL */
	block-size: 36px;
	border: 0;
	border-radius: 6px;
	background: #f5f6f8;
	color: #222;
	font: 700 16px/1 "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	user-select: none;
	transition: background .2s ease, transform .05s ease;
}

	.qty-btn:hover {
		background: #eceff3;
	}

	.qty-btn:active {
		transform: scale(0.97);
	}

	.qty-btn:disabled {
		background: #f5f6f8;
		color: #b6b8bd;
		cursor: not-allowed;
	}

/* Поле количества */
#modal-quantity {
	inline-size: 72px; /* фикс ширина для ровности */
	block-size: 36px;
	padding-inline: 8px;
	text-align: center;
	border: 1px solid #d9d9d9;
	border-radius: 6px;
	background: #fff;
	color: #222;
	font: 600 14px/1 "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

	/* Убираем спиннеры и приводим к одинаковой высоте */
	#modal-quantity::-webkit-outer-spin-button,
	#modal-quantity::-webkit-inner-spin-button {
		-webkit-appearance: none;
		margin: 0;
	}

	#modal-quantity[type="number"] {
		-moz-appearance: textfield;
	}

	#modal-quantity:focus {
		border-color: #007bff;
		box-shadow: 0 0 0 2px rgba(0,123,255,.2);
	}

/* Итоговая сумма */
.purchase-total {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
	font-weight: 600;
	font-size: 16px;
	color: #28a745;
}

	.purchase-total span:first-child {
		color: #333;
		font-weight: 500;
	}

/* Поддержка RTL */
[dir="rtl"] .purchase-quantity {
	flex-direction: row-reverse;
}

[dir="rtl"] .qty-control {
	flex-direction: row-reverse;
}

[dir="rtl"] .purchase-total {
	flex-direction: row-reverse;
}

/* Адаптивность */
@media (max-width: 480px) {
	.purchase-quantity {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.qty-control {
		align-self: stretch;
		justify-content: space-between;
	}

	.qty-btn {
		inline-size: 34px;
		block-size: 34px;
		font-size: 15px;
	}

	#modal-quantity {
		inline-size: 64px;
		block-size: 34px;
		font-size: 13px;
	}
}

/* Темная тема (если есть) */
.qty-control {
	background: #2f3338;
	border-color: #3a3f45;
}

.qty-btn {
	background: #3a3f45;
	color: #e9ecef;
}

.qty-btn:hover {
		background: #4a5057;
	}

#modal-quantity {
	background: #2f3338;
	border-color: #3a3f45;
	color: #e9ecef;
}

.purchase-total span:first-child {
	color: #e9ecef;
}

/* Центрируем весь блок выбора количества внутри модалки */
.purchase-quantity {
	width: 100%;
	justify-content: center; /* центр по горизонтали */
}

/* Центрируем сам контрол (между кнопками и инпутом) */
.qty-control {
	justify-content: center; /* контент внутри — по центру */
	margin-inline: auto; /* центрирование самого блока */
}

/* Не даём инпуту «сжиматься» и тянуться к краю */
#modal-quantity {
	flex: 0 0 auto; /* фиксированный размер, не сжимается */
}

/* На случай, если рядом есть лейбл слева/справа — выравниваем по центру */
.purchase-quantity label {
	margin: 0;
	text-align: center;
}

/* Разместить лейбл сверху, контрол под ним по центру */
.purchase-quantity {
	display: grid;
	grid-template-columns: 1fr;
	justify-items: center; /* всё по центру */
	row-gap: 10px;
}

/* Центрируем блок с итоговой суммой */
.purchase-total {
	width: 100%;
	justify-content: center; /* центр по горизонтали */
	text-align: center;
}

/* Центрируем всю секцию количества + итого внутри модалки */
.modal-content .purchase-section {
	display: flex;
	flex-direction: column;
	align-items: center; /* всё по центру */
	width: 100%;
}

.purchase-section .purchase-quantity,
.purchase-section .purchase-total {
	width: auto; /* контент сам определяет ширину */
}