.current-status-server[bexarx1] {
    color: orange !important;
}
.status-server-icon[bexarx1] {
    filter: hue-rotate(285deg);
}

html, body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

body {
	background-color: #000029;
	background-image: url(img/bg.png);
	margin: 0;
	padding: 0;
	background-size: cover; /* Фон растягивается, чтобы покрыть весь экран */
	background-position: center; /* Фон будет выровнен по центру */
	background-attachment: fixed; /* Фон остается статичным при прокрутке страницы */
	background-repeat: no-repeat; /* Фон не повторяется */
	height: 100vh; /* Высота на всю видимую область экрана */
}
.main-all {
    display: flex;
    flex-direction: column;
    align-items: center;
	justify-content: space-between;
    height: 100vh;
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    position: relative;
	max-width: 1440px;
    width: 100%;
	padding: 20px 0;
}

.main-header-left > div > a {
    text-decoration: none;
    color: #e1e1e1;
    text-transform: uppercase;
    border-radius: 25px;
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-left: 3px solid #4a90e2;
    border-right: 3px solid #9b59b6;
    padding: 12px 20px;
    transition: all 0.4s ease;
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(26, 46, 81, 0.4) 0%, rgba(74, 144, 226, 0.1) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.2);
}

.main-header-left > div > a::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.5s ease;
}

.main-header-left > div > a:hover::before {
    left: 100%;
}

.main-header-left > div > a:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.3) 0%, rgba(155, 89, 182, 0.3) 100%);
    border-left-color: #5a9fff;
    border-right-color: #b366d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.5), 0 0 30px rgba(155, 89, 182, 0.3);
}

.main-header-left > div > a:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
}

.main-header-left > div > a i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.main-header-left > div > a:hover i {
    transform: scale(1.2);
}
.main-header-left {
    display: flex;
    flex-direction: row;
    gap: 160px;
    align-items: center;
}

.main-header-left-menu {
    display: flex;
    flex-direction: row;
    gap: 30px;
}
a.link-menu-panel {
    text-decoration: none;
    text-transform: uppercase;
    color: #e1e1e1;
    background-image: url(img/bg_button.png);
    padding: 15px 35px;
    border-radius: 5px;
    background-size: 100%;
    background-position-y: 100px;
    transition: 0.4s;
    font-size: 15px;
}
a.link-menu-panel:hover {
    background-image: url(img/bg_button_hover.png);
    background-size: 128%;
    background-position-y: 126px;
    background-position-x: -23px;
}
.main-header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}
.main-header-status-server {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-size: 12px;
    color: #e1e1e1;
    background: #2aabee3d;
    border-radius: 5px;
    padding: 5px 10px;
    border-left: 2px solid #2aaaec;
    border-right: 2px solid #2aaaec;
    justify-content: center;
}
.status-server-icon {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #11df23;
    border: 5px solid #005507;
    animation: status_open 2s ease infinite;
}
@keyframes status_open {
    0% {
        border: 5px solid #005507;
    }
    50% {
        border: 5px solid #001702;
    }
    100% {
        border: 5px solid #005507;
    }
}
.main-header-left-social {
    display: flex;
    gap: 8px;
}

.main-header-left-social > a {
    color: rgb(225, 225, 225);
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    border-radius: 20px;
    border-left: 2px solid rgb(29, 46, 105);
    border-right: 2px solid rgb(29, 46, 105);
    padding: 10px 15px;
    transition: 0.4s;
}

.main-header-left-social > a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.main-header-left-social > a:hover::before {
    width: 100px;
    height: 100px;
}

.main-header-left-social > a[href*="mmotop"] {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.6) 0%, rgba(255, 140, 0, 0.6) 100%);
    border-color: #ffa500;
    box-shadow: 0 6px 25px rgba(255, 165, 0, 0.3);
}
.main-header-left-social > a[href*="discord"] {
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.6) 0%, rgba(88, 101, 242, 0.6) 100%);
    border-color: #7289da;
    box-shadow: 0 6px 25px rgba(114, 137, 218, 0.3);
}
.main-header-left-social > a[href*="t.me"] {
    background: linear-gradient(135deg, rgba(42, 171, 238, 0.6) 0%, rgba(0, 136, 204, 0.6) 100%);
    border-color: #2aabee;
    box-shadow: 0 6px 25px rgba(42, 171, 238, 0.3);
}
.main-header-left-social > a[href*="discord"] {
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.6) 0%, rgba(88, 101, 242, 0.6) 100%);
    border-color: #7289da;
    box-shadow: 0 6px 25px rgba(114, 137, 218, 0.3);
}
.main-header-left-social > a[href*="vk.com"] {
    background: linear-gradient(135deg, rgba(76, 117, 163, 0.6) 0%, rgba(95, 154, 207, 0.6) 100%);
    border-color: #4c75a3;
    box-shadow: 0 6px 25px rgba(76, 117, 163, 0.3);
}



.main-header-left-social > a:active {
    transform: translateY(-1px) scale(1.05);
}


.main-header-left-social > a i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.main-header-left-social > a:hover {
    transform: rotate(5deg) scale(1.15);
}

nav.main-header-left-menu > a {
    background: linear-gradient(135deg, #2a81ee99 0%, #2a81ee99 100%);
    box-shadow: 0 6px 25px rgba(42, 171, 238, 0.3);
	display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #e1e1e1;
    text-transform: uppercase;
    border-radius: 20px;
    border-left: 2px solid rgb(42, 171, 238);
    border-right: 2px solid rgb(42, 171, 238);
    padding: 10px 15px;
    transition: 0.2s;
    font-size: 14px;
	font-weight: bold;
}
nav.main-header-left-menu > a:hover {
	transform: scale(1.05);
	background: linear-gradient(135deg, rgb(42 129 238 / 55%) 0%, rgb(42 129 238 / 55%) 100%);
}
.main-img-right {
    width: 90%;
	pointer-events: none;
    transform: translateY(135px);
    margin-top: -90px;
}
.snow-bg {
    background: url(img/bg_snow.png);
    width: 100%;
    height: 70px;
    position: fixed;
    bottom: 0;
	pointer-events: none;
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}
.main-body {
    display: flex;
}
.main-body-left-desc {
    color: #e1e1e1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-body-left-desc > h1 {
	position: relative;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.5), 0 0 20px rgba(155, 89, 182, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
	text-align: center;
}
.main-body-left-desc > p {
	max-width: 500px;
	text-align:center;
}
.news-alert {
    padding: 25px 10px;
    background: linear-gradient(135deg, rgba(0, 2, 82, 0.4) 0%, rgba(0, 78, 204, 0.4) 50%, rgba(139, 0, 139, 0.3) 100%);
    border-radius: 10px;
    margin-top: 20px;
    max-width: 500px;
    box-sizing: border-box;
    color: #e8f4ff;
    border-left: 3px solid #4a90e2;
    border-right: 3px solid #9b59b6;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3), inset 0 0 20px rgba(155, 89, 182, 0.2);
    animation: shimmer 3s 
ease-in-out infinite;
	width: 100%;
	text-align: center;
}
.news-alert::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 4s infinite;
}
.news-alert-title {
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
    font-size: 1.2em;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.news-alert-text {
    margin: 0;
    font-size: 1em;
    color: #e8f4ff;
}
a.go-play-game {
    text-decoration: none;
    text-transform: uppercase;
    color: #e1e1e1;
    background-image: url(img/go-play.png);
    padding: 15px 0;
    border-radius: 5px;
    transition: 0.4s;
    font-size: 15px;
    margin-top: 30px;
    max-width: 500px;
    z-index: 2;
	width: 100%;
	text-align: center;
	background-position: bottom;
}
a.go-play-game:hover {
	background-image: url(img/go-play_hover.png);
	background-position: top;
}
.main-body-left-desc {
    margin-top: -100px;
}
.main-body-left {
    margin-left: 50px;
}
footer.main-footer {
	display: flex;
    justify-content: space-between;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
	margin-top: 50px;
}
.right-footer > a > img {
	width: 200px;
}
.left-footer > p {
    color: #394f70;
}
img.logotype-main {
    width: 100%;
	position: relative;
	z-index: 1;
}
.custom-logo-url:after {content: "";
    width: 580px;
    height: 440px;
    background: url(https://rf.playgames.su/forum_image/logotype.png);
    position: absolute;
    margin-left: -750px;
    background-size: contain;
    background-position: center;
    transform: scale(1.5);
    background-repeat: no-repeat;
    animation: logopulse 1s infinite;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}
@keyframes logopulse {
    0% {
        transform: scale(1.5);
        opacity: 0;
    }

    50% {
        transform: scale(1.7);
        opacity: 0.2;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}
@media (max-width: 1475px) {
	body {
		padding: 0 2%;
	}
	.main-img-right {
		transform: translateY(175px);
	}
}
@media (max-width: 1285px) {
	.main-header-status-server {
		padding: 2px;
	}
}
@media (max-width: 1235px) {
	.list-status-server {
		gap: 5px;
		flex-direction: column;
	}
	.main-header {
		align-items: flex-start;
	}
}
@media (max-width: 1260px) {
	.main-header-right {
		flex-direction: column-reverse;
		gap: 5px;
	}
	.main-img-right {
		transform: translateY(225px);
	}
}
@media (max-width: 1025px) {
	.main-header-left {
		flex-direction: column;
		gap: 15px;
		align-items: flex-start;
	}
	.main-img-right {
		transform: translateY(280px);
	}
}
@media (max-width: 950px) {
	.main-body-right {
		display: none;
	}
	body {
		backdrop-filter: blur(6px);
	}
	footer.main-footer {
		margin: 0 !important;
	}
	.snow-bg { 
		width: 98%;
	}
	footer.main-footer {
		flex-direction: column;
		width: auto;
		align-items: center;
	}
	body {
		padding-bottom: 100px ;
	}
	.main-body-left {
		margin-left: 0px;
	}
}

@media (max-width: 595px) {
	.main-header-left-menu {
		flex-direction: column;
		gap: 15px;
	}
	.main-body-left-desc {
		margin-top: -50px;
	}
}
@media (max-width: 480px) {
	.main-header-right {
		display: none;
	}
	.main-header-left-menu {
        flex-direction: row;
        gap: 15px;
    }
	.main-header-left {
        align-items: center;
    }
	.main-header {
		justify-content: center;
	}
}
@media (max-height: 674px) {
	body {
        padding-bottom: 200px;
    }
}
@media (max-height: 580px) {
	body {
        padding-bottom: 300px;
    }
}

@media (max-height: 498px) {
	body {
        padding-bottom: 400px;
    }
}
.list-status-server {
    display: flex;
    gap: 20px;
}
.server-status-name {
    display: flex;
    gap: 5px;
    align-items: center;
	font-weight: bold;
}
.current-status-server[asteriosx5] {
    color: #00ff00 !important;
}