* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Preloader */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 1;
	transition: opacity 0.8s ease;
}

.preloader.fade-in {
	animation: brightnessIn 1s ease-out forwards;
}

.preloader.fade-out {
	animation: brightnessOut 0.8s ease-out forwards;
}

@keyframes brightnessIn {
	0% { 
		filter: brightness(0);
	}
	100% { 
		filter: brightness(1);
	}
}

@keyframes brightnessOut {
	0% { 
		filter: brightness(1);
		opacity: 1;
	}
	100% { 
		filter: brightness(0);
		opacity: 0;
		visibility: hidden;
	}
}

.preloader.fade-out .circle,
.preloader.fade-out .loading-dots,
.preloader.fade-out .preloader-logo,
.preloader.fade-out .preloader-content {
	opacity: 0 !important;
	transition: opacity 0.3s ease;
}

.preloader-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(0, 100, 255, 0.1), transparent 70%);
	animation: overlayPulse 2s ease-in-out infinite;
}

@keyframes overlayPulse {
	0%, 100% { opacity: 0.3; transform: scale(1); }
	50% { opacity: 0.6; transform: scale(1.1); }
}

.preloader-content {
	text-align: center;
	position: relative;
	z-index: 2;
}

.preloader.fade-in .preloader-content {
	animation: contentFadeIn 1s ease-out forwards;
}

@keyframes contentFadeIn {
	0% { 
		opacity: 0;
		transform: scale(0.9);
	}
	100% { 
		opacity: 1;
		transform: scale(1);
	}
}

.logo-wrapper {
	position: relative;
	width: 250px;
	height: 250px;
	margin: 0 auto 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.preloader-logo {
	width: 150px;
	max-height: 150px;
	object-fit: contain;
	position: relative;
	z-index: 3;
	animation: logoGlow 2s ease-in-out;
	animation-iteration-count: 1;
}

@keyframes logoGlow {
	0%, 100% { 
		filter: drop-shadow(0 0 20px rgba(0, 100, 255, 0.6));
	}
	50% { 
		filter: drop-shadow(0 0 50px rgba(0, 255, 255, 1)) drop-shadow(0 0 80px rgba(0, 100, 255, 0.8));
	}
}

.logo-circles {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

.circle {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 160px;
	height: 160px;
	margin: -80px 0 0 -80px;
	border: 3px solid;
	border-radius: 50%;
	opacity: 0;
	animation: circleExpand 1.5s ease-out;
	animation-fill-mode: forwards;
}

.circle:nth-child(1) {
	border-color: rgba(0, 100, 255, 0.8);
	animation-delay: 0.2s;
}

.circle:nth-child(2) {
	border-color: rgba(0, 255, 255, 0.8);
	animation-delay: 0.6s;
}

.circle:nth-child(3) {
	border-color: rgba(255, 120, 0, 0.8);
	animation-delay: 1s;
}

@keyframes circleExpand {
	0% {
		transform: scale(0.5);
		opacity: 1;
	}
	80% {
		opacity: 0.5;
	}
	100% {
		transform: scale(4);
		opacity: 0;
	}
}

.loading-dots {
	display: flex;
	gap: 15px;
	justify-content: center;
	align-items: center;
	margin-top: 1rem;
}

.loading-dots span {
	width: 12px;
	height: 12px;
	background: linear-gradient(135deg, #0064ff, #00ffff);
	border-radius: 50%;
	animation: dotBounce 1.4s infinite ease-in-out;
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.loading-dots span:nth-child(1) {
	animation-delay: -0.32s;
	background: linear-gradient(135deg, #0064ff, #0080ff);
}

.loading-dots span:nth-child(2) {
	animation-delay: -0.16s;
	background: linear-gradient(135deg, #00ffff, #00d4ff);
}

.loading-dots span:nth-child(3) {
	animation-delay: 0s;
	background: linear-gradient(135deg, #ff7800, #ff9944);
}

@keyframes dotBounce {
	0%, 80%, 100% {
		transform: scale(0);
		opacity: 0.5;
	}
	40% {
		transform: scale(1.2);
		opacity: 1;
	}
}

@media (max-width: 768px) {
	.logo-wrapper {
		width: 150px;
		height: 150px;
	}

	.preloader-logo {
		width: 120px;
		max-height: 120px;
	}
	
	.hero-logo {
		width: 220px;
		max-height: 220px;
	}
}

html {
	overflow-x: hidden;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: #000000;
	color: #fff;
	overflow-x: hidden;
	width: 100%;
	position: relative;
}

body.menu-open {
	overflow: hidden;
	position: fixed;
	width: 100%;
}

body > *:not(.preloader) {
	opacity: 0;
	transition: opacity 0.5s ease;
}

body.loaded > *:not(.preloader) {
	opacity: 1;
}

/* Parallax background layers */
.bg-animation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background: 
		radial-gradient(ellipse at 50% 50%, rgba(0, 100, 255, 0.05) 0%, transparent 70%);
}

.parallax-layer {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.layer-1 {
	background: 
		radial-gradient(circle at 15% 20%, rgba(0, 100, 255, 0.08) 0%, transparent 25%),
		radial-gradient(circle at 85% 80%, rgba(255, 120, 0, 0.06) 0%, transparent 25%),
		radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 30%);
	animation: floatBubbles 20s ease-in-out infinite;
}

@keyframes floatBubbles {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-50px); }
}

.layer-2 {
	background: 
		linear-gradient(180deg, transparent 0%, rgba(0, 100, 255, 0.03) 50%, transparent 100%);
	animation: pulseLayer 8s ease-in-out infinite;
}

@keyframes pulseLayer {
	0%, 100% { opacity: 0.3; }
	50% { opacity: 0.6; }
}

.grid-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(rgba(0, 100, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 100, 255, 0.02) 1px, transparent 1px);
	background-size: 100px 100px;
	pointer-events: none;
	opacity: 0.3;
}

.particles {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.circuit-line {
	position: absolute;
	background: linear-gradient(90deg, transparent, rgba(0, 100, 255, 0.4), transparent);
	height: 1px;
	animation: flowLine 8s linear infinite;
}

.circuit-line.orange {
	background: linear-gradient(90deg, transparent, rgba(255, 120, 0, 0.4), transparent);
}

.circuit-line.cyan {
	background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
}

.circuit-line.vertical {
	width: 1px;
	height: 100%;
	background: linear-gradient(180deg, transparent, rgba(0, 100, 255, 0.4), transparent);
	animation: flowLineVertical 8s linear infinite;
}

.circuit-line.vertical.orange {
	background: linear-gradient(180deg, transparent, rgba(255, 120, 0, 0.4), transparent);
}

.circuit-line.vertical.cyan {
	background: linear-gradient(180deg, transparent, rgba(0, 255, 255, 0.3), transparent);
}

.circuit-node {
	position: absolute;
	width: 6px;
	height: 6px;
	background: #0064ff;
	border: 1px solid rgba(0, 100, 255, 0.5);
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0, 100, 255, 0.8), 0 0 20px rgba(0, 100, 255, 0.4);
	animation: pulse 3s ease-in-out infinite;
}

.circuit-node.large {
	width: 12px;
	height: 12px;
	animation: pulse 2s ease-in-out infinite;
}

.circuit-node.orange {
	background: #ff7800;
	border-color: rgba(255, 120, 0, 0.5);
	box-shadow: 0 0 10px rgba(255, 120, 0, 0.8), 0 0 20px rgba(255, 120, 0, 0.4);
}

.circuit-node.cyan {
	background: #00ffff;
	border-color: rgba(0, 255, 255, 0.5);
	box-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.4);
}

.tech-square {
	position: absolute;
	border: 1px solid rgba(0, 100, 255, 0.2);
	background: rgba(0, 100, 255, 0.02);
	animation: rotateSquare 20s linear infinite;
}

.tech-square.orange {
	border-color: rgba(255, 120, 0, 0.2);
	background: rgba(255, 120, 0, 0.02);
}

.tech-square.cyan {
	border-color: rgba(0, 255, 255, 0.2);
	background: rgba(0, 255, 255, 0.02);
}

@keyframes flowLine {
	0% { 
		transform: translateX(-100%);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% { 
		transform: translateX(200%);
		opacity: 0;
	}
}

@keyframes flowLineVertical {
	0% { 
		transform: translateY(-100%);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% { 
		transform: translateY(200%);
		opacity: 0;
	}
}

@keyframes rotateSquare {
	0% { 
		transform: rotate(0deg) scale(1);
		opacity: 0.3;
	}
	50% { 
		transform: rotate(180deg) scale(1.1);
		opacity: 0.6;
	}
	100% { 
		transform: rotate(360deg) scale(1);
		opacity: 0.3;
	}
}

/* Header */
header {
	position: relative;
	z-index: 10;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 100, 255, 0.3);
	padding: 1rem 2rem;
	position: sticky;
	top: 0;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.8);
}

header::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 100, 255, 0.8), transparent);
	animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

nav {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-small {
	height: 50px;
	filter: drop-shadow(0 0 10px rgba(0, 100, 255, 0.8));
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	z-index: 11;
}

.hamburger span {
	width: 30px;
	height: 3px;
	background: #0064ff;
	transition: all 0.3s;
	box-shadow: 0 0 10px rgba(0, 100, 255, 0.5);
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links {
	display: flex;
	gap: 3rem;
	list-style: none;
}

.nav-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 2px;
	transition: all 0.3s;
	position: relative;
	padding: 0.5rem 0;
}

.nav-links a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #0064ff;
	transition: width 0.3s;
}

.nav-links a:hover::before {
	width: 100%;
}

.nav-links a:hover {
	color: #0064ff;
	text-shadow: 0 0 10px rgba(0, 100, 255, 0.8);
}

/* Hero Section */
.hero {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
}

.hero::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(0, 100, 255, 0.1) 0%, transparent 70%);
	transform: translate(-50%, -50%);
	animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
	50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.hero-content {
	max-width: 900px;
	position: relative;
}

.hero-logo {
	width: 300px;
	max-width: 90%;
	max-height: 300px;
	object-fit: contain;
	margin-bottom: 2rem;
	animation: float 6s ease-in-out infinite;
	filter: 
		drop-shadow(0 0 20px rgba(0, 100, 255, 0.6))
		drop-shadow(0 0 40px rgba(0, 100, 255, 0.3));
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-30px); }
}

h1 {
	font-size: 5rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #0064ff, #00ffff, #ff7800);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% 200%;
	animation: gradientShift 4s ease infinite;
	text-transform: uppercase;
	letter-spacing: 10px;
	position: relative;
	font-weight: 900;
	filter: drop-shadow(0 0 20px rgba(0, 100, 255, 0.6)) drop-shadow(0 0 30px rgba(255, 120, 0, 0.4));
}

@keyframes gradientShift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.tagline {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 3rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	border-left: 3px solid #00ffff;
	border-right: 3px solid #ff7800;
	padding: 1rem 2rem;
	display: inline-block;
	font-weight: 300;
	box-shadow: 
		0 0 20px rgba(0, 255, 255, 0.2),
		0 0 20px rgba(255, 120, 0, 0.2);
}

.cta-buttons {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	padding: 1rem 3rem;
	border: none;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
	position: relative;
	overflow: hidden;
	clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-primary {
	background: linear-gradient(135deg, rgba(0, 100, 255, 0.2), rgba(255, 120, 0, 0.2));
	color: #fff;
	border: 2px solid #0064ff;
	box-shadow: 
		inset 0 0 20px rgba(0, 100, 255, 0.2),
		0 0 20px rgba(0, 100, 255, 0.4),
		0 0 30px rgba(255, 120, 0, 0.2);
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0, 100, 255, 0.3), rgba(255, 120, 0, 0.3));
	transition: left 0.3s;
	z-index: -1;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:hover {
	transform: translateY(-3px);
	border-color: #ff7800;
	box-shadow: 
		inset 0 0 30px rgba(255, 120, 0, 0.3),
		0 0 30px rgba(0, 100, 255, 0.6),
		0 0 40px rgba(255, 120, 0, 0.5);
	text-shadow: 0 0 10px rgba(255, 120, 0, 1);
}

.btn-secondary {
	background: transparent;
	border: 2px solid rgba(0, 255, 255, 0.5);
	color: #00ffff;
	box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.btn-secondary:hover {
	border-color: #00ffff;
	color: #00ffff;
	transform: translateY(-3px);
	box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
	text-shadow: 0 0 10px rgba(0, 255, 255, 1);
}

/* Stats Section */
.stats {
	position: relative;
	z-index: 1;
	padding: 4rem 2rem;
	background: rgba(0, 0, 0, 0.5);
	border-top: 1px solid rgba(0, 100, 255, 0.3);
	border-bottom: 1px solid rgba(0, 100, 255, 0.3);
}

.stats-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.stat-card {
	text-align: center;
	padding: 2rem;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 100, 255, 0.3);
	transition: all 0.3s;
	position: relative;
	clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.stat-card:nth-child(1) {
	border-color: rgba(0, 100, 255, 0.4);
}

.stat-card:nth-child(2) {
	border-color: rgba(255, 120, 0, 0.4);
}

.stat-card:nth-child(3) {
	border-color: rgba(0, 255, 255, 0.4);
}

.stat-card:nth-child(4) {
	border-color: rgba(0, 100, 255, 0.4);
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 1px;
	background: #0064ff;
}

.stat-card:nth-child(2)::before {
	background: #ff7800;
}

.stat-card:nth-child(3)::before {
	background: #00ffff;
}

.stat-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 20px;
	height: 1px;
	background: #0064ff;
}

.stat-card:nth-child(2)::after {
	background: #ff7800;
}

.stat-card:nth-child(3)::after {
	background: #00ffff;
}

.stat-card:hover {
	transform: translateY(-10px);
	background: rgba(0, 0, 0, 0.9);
}

.stat-card:nth-child(1):hover {
	border-color: #0064ff;
	box-shadow: 
		inset 0 0 30px rgba(0, 100, 255, 0.1),
		0 10px 40px rgba(0, 100, 255, 0.4);
}

.stat-card:nth-child(2):hover {
	border-color: #ff7800;
	box-shadow: 
		inset 0 0 30px rgba(255, 120, 0, 0.1),
		0 10px 40px rgba(255, 120, 0, 0.4);
}

.stat-card:nth-child(3):hover {
	border-color: #00ffff;
	box-shadow: 
		inset 0 0 30px rgba(0, 255, 255, 0.1),
		0 10px 40px rgba(0, 255, 255, 0.4);
}

.stat-card:nth-child(4):hover {
	border-color: #0064ff;
	box-shadow: 
		inset 0 0 30px rgba(0, 100, 255, 0.1),
		0 10px 40px rgba(0, 100, 255, 0.4);
}

.stat-number {
	font-size: 3.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, #0064ff, #ff7800);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
	filter: drop-shadow(0 0 20px rgba(0, 100, 255, 0.8)) drop-shadow(0 0 20px rgba(255, 120, 0, 0.4));
}

.stat-label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 600;
}

/* Servers Section */
.servers {
	position: relative;
	z-index: 1;
	padding: 6rem 2rem;
}

.section-title {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #0064ff, #00ffff, #ff7800);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% 200%;
	animation: gradientShift 4s ease infinite;
	text-transform: uppercase;
	letter-spacing: 8px;
	position: relative;
	font-weight: 900;
	filter: drop-shadow(0 0 15px rgba(0, 100, 255, 0.5));
}

.section-subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 4rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 300;
}

.servers-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 2.5rem;
}

.server-card {
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 100, 255, 0.3);
	padding: 2.5rem;
	transition: all 0.4s;
	position: relative;
	overflow: hidden;
	clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
}

.server-card:nth-child(odd) {
	border-color: rgba(0, 100, 255, 0.3);
}

.server-card:nth-child(even) {
	border-color: rgba(255, 120, 0, 0.3);
}

.server-card:nth-child(3n) {
	border-color: rgba(0, 255, 255, 0.3);
}

.server-card::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, transparent, rgba(0, 100, 255, 0.1), transparent);
	opacity: 0;
	transition: opacity 0.5s;
	z-index: -1;
}

.server-card:nth-child(even)::before {
	background: linear-gradient(45deg, transparent, rgba(255, 120, 0, 0.1), transparent);
}

.server-card:nth-child(3n)::before {
	background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
}

.server-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	border-top: 2px solid #0064ff;
	border-left: 2px solid #0064ff;
}

.server-card:nth-child(even)::after {
	border-color: #ff7800;
}

.server-card:nth-child(3n)::after {
	border-color: #00ffff;
}

.server-card:hover::before {
	opacity: 1;
}

.server-card:hover {
	transform: translateY(-10px);
}

.server-card:nth-child(odd):hover {
	border-color: #0064ff;
	box-shadow: 
		inset 0 0 30px rgba(0, 100, 255, 0.1),
		0 15px 50px rgba(0, 100, 255, 0.3);
}

.server-card:nth-child(even):hover {
	border-color: #ff7800;
	box-shadow: 
		inset 0 0 30px rgba(255, 120, 0, 0.1),
		0 15px 50px rgba(255, 120, 0, 0.3);
}

.server-card:nth-child(3n):hover {
	border-color: #00ffff;
	box-shadow: 
		inset 0 0 30px rgba(0, 255, 255, 0.1),
		0 15px 50px rgba(0, 255, 255, 0.3);
}

.server-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	filter: grayscale(30%) drop-shadow(0 0 10px rgba(0, 100, 255, 0.5));
}

.server-card:nth-child(even) .server-icon {
	filter: grayscale(30%) drop-shadow(0 0 10px rgba(255, 120, 0, 0.5));
}

.server-card:nth-child(3n) .server-icon {
	filter: grayscale(30%) drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.server-title {
	font-size: 1.6rem;
	margin-bottom: 0.8rem;
	color: #0064ff;
	background: linear-gradient(135deg, #0064ff, #00ffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	text-shadow: 0 0 15px rgba(0, 100, 255, 0.6);
}

.server-card:nth-child(even) .server-title {
	color: #ff7800;
	background: linear-gradient(135deg, #ff7800, #0064ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 15px rgba(255, 120, 0, 0.6);
}

.server-card:nth-child(3n) .server-title {
	color: #00ffff;
	background: linear-gradient(135deg, #00ffff, #0064ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.server-game {
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 1.5rem;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 300;
}

.server-info {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding: 1.2rem;
	background: rgba(0, 100, 255, 0.05);
	border: 1px solid rgba(0, 100, 255, 0.2);
	border-left: 3px solid #0064ff;
}

.info-item {
	text-align: center;
	min-width: 0;
}

.info-label {
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.info-value {
	font-size: 1.1rem;
	font-weight: 700;
	color: #0064ff;
}

.status-online {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	background: rgba(0, 255, 100, 0.15);
	border: 2px solid #00ff66;
	color: #00ff66;
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	animation: pulseOnline 2s infinite;
	clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
	box-shadow: 
		0 0 20px rgba(0, 255, 100, 0.4),
		inset 0 0 15px rgba(0, 255, 100, 0.1);
	position: relative;
}

.status-online::before {
	content: '● ';
	animation: blink 1.5s infinite;
}

@keyframes pulseOnline {
	0%, 100% { 
		border-color: #00ff66;
		box-shadow: 
			0 0 20px rgba(0, 255, 100, 0.4),
			inset 0 0 15px rgba(0, 255, 100, 0.1);
	}
	50% { 
		border-color: #00ff88;
		box-shadow: 
			0 0 30px rgba(0, 255, 100, 0.6),
			inset 0 0 20px rgba(0, 255, 100, 0.2);
	}
}

@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}

/* Community Section */
.community {
	position: relative;
	z-index: 1;
	padding: 6rem 2rem;
	background: rgba(0, 0, 0, 0.5);
}

/* News Section */
.news {
	position: relative;
	z-index: 1;
	padding: 6rem 2rem;
	background: rgba(0, 0, 0, 0.3);
}

.news-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.news-card {
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 100, 255, 0.3);
	padding: 2rem;
	transition: all 0.3s;
	position: relative;
	clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.news-card.featured {
	border-color: rgba(255, 120, 0, 0.5);
	background: rgba(255, 120, 0, 0.05);
}

.news-card::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	height: 20px;
	border-top: 2px solid #0064ff;
	border-right: 2px solid #0064ff;
}

.news-card.featured::before {
	border-color: #ff7800;
}

.news-card:hover {
	transform: translateY(-5px);
	border-color: #0064ff;
	box-shadow: 0 10px 40px rgba(0, 100, 255, 0.3);
}

.news-card.featured:hover {
	border-color: #ff7800;
	box-shadow: 0 10px 40px rgba(255, 120, 0, 0.4);
}

.news-badge {
	display: inline-block;
	padding: 0.3rem 0.8rem;
	background: linear-gradient(135deg, #ff7800, #ff9900);
	color: #000;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1rem;
	clip-path: polygon(3px 0, 100% 0, 100% calc(100% - 3px), calc(100% - 3px) 100%, 0 100%, 0 3px);
}

.news-date {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.85rem;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.news-title {
	font-size: 1.4rem;
	color: #fff;
	margin-bottom: 1rem;
	font-weight: 700;
}

.news-card.featured .news-title {
	background: linear-gradient(135deg, #ff7800, #00ffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.news-text {
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.news-link {
	color: #0064ff;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	display: inline-block;
}

.news-link:hover {
	color: #00ffff;
	transform: translateX(5px);
}

.news-card.featured .news-link {
	color: #ff7800;
}

.news-card.featured .news-link:hover {
	color: #ff9900;
}

.community-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
}

.community-card {
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 100, 255, 0.3);
	padding: 2.5rem;
	text-align: center;
	transition: all 0.3s;
	position: relative;
	clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
}

.community-card:nth-child(1) {
	border-color: rgba(0, 100, 255, 0.3);
}

.community-card:nth-child(2) {
	border-color: rgba(255, 120, 0, 0.3);
}

.community-card:nth-child(3) {
	border-color: rgba(0, 255, 255, 0.3);
}

.community-card::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 25px;
	height: 25px;
	border-bottom: 2px solid #0064ff;
	border-right: 2px solid #0064ff;
}

.community-card:nth-child(2)::before {
	border-color: #ff7800;
}

.community-card:nth-child(3)::before {
	border-color: #00ffff;
}

.community-card:hover {
	transform: translateY(-10px);
}

.community-card:nth-child(1):hover {
	border-color: #0064ff;
	box-shadow: 
		inset 0 0 30px rgba(0, 100, 255, 0.1),
		0 15px 50px rgba(0, 100, 255, 0.3);
}

.community-card:nth-child(2):hover {
	border-color: #ff7800;
	box-shadow: 
		inset 0 0 30px rgba(255, 120, 0, 0.1),
		0 15px 50px rgba(255, 120, 0, 0.3);
}

.community-card:nth-child(3):hover {
	border-color: #00ffff;
	box-shadow: 
		inset 0 0 30px rgba(0, 255, 255, 0.1),
		0 15px 50px rgba(0, 255, 255, 0.3);
}

.community-icon {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	filter: grayscale(20%) drop-shadow(0 0 15px rgba(0, 100, 255, 0.5));
}

.community-card:nth-child(2) .community-icon {
	filter: grayscale(20%) drop-shadow(0 0 15px rgba(255, 120, 0, 0.5));
}

.community-card:nth-child(3) .community-icon {
	filter: grayscale(20%) drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
}

.community-title {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: #0064ff;
	background: linear-gradient(135deg, #0064ff, #00ffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 700;
	text-shadow: 0 0 15px rgba(0, 100, 255, 0.6);
}

.community-card:nth-child(2) .community-title {
	color: #ff7800;
	background: linear-gradient(135deg, #ff7800, #0064ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 15px rgba(255, 120, 0, 0.6);
}

.community-card:nth-child(3) .community-title {
	color: #00ffff;
	background: linear-gradient(135deg, #00ffff, #0064ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.community-text {
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.8;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	font-weight: 300;
}

/* Ranking Section */
.ranking {
	position: relative;
	z-index: 1;
	padding: 6rem 2rem;
	background: rgba(0, 0, 0, 0.5);
}

.ranking-container {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.ranking-card {
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 100, 255, 0.3);
	padding: 1.5rem 2rem;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	gap: 2rem;
	clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.ranking-card:hover {
	transform: translateX(10px);
	border-color: #0064ff;
	box-shadow: 0 5px 30px rgba(0, 100, 255, 0.3);
}

.rank-position {
	display: flex;
	align-items: center;
	gap: 1rem;
	min-width: 100px;
}

.rank-number {
	font-size: 2rem;
	font-weight: 700;
	color: #0064ff;
	min-width: 50px;
	text-align: center;
}

.rank-medal {
	font-size: 2rem;
}

.rank-position.gold .rank-number {
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.rank-position.silver .rank-number {
	background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 20px rgba(192, 192, 192, 0.6);
}

.rank-position.bronze .rank-number {
	background: linear-gradient(135deg, #cd7f32, #e89a5c);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 20px rgba(205, 127, 50, 0.6);
}

.rank-player {
	flex: 1;
}

.player-name {
	font-size: 1.3rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.3rem;
}

.player-game {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.rank-stats {
	display: flex;
	gap: 2rem;
}

.rank-stats .stat-item {
	text-align: center;
}

.rank-stats .stat-label {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	letter-spacing: 1px;
	display: block;
	margin-bottom: 0.3rem;
}

.rank-stats .stat-value {
	font-size: 1.2rem;
	font-weight: 700;
	color: #0064ff;
}

/* Footer */
footer {
	position: relative;
	z-index: 1;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(20px);
	border-top: 1px solid rgba(0, 100, 255, 0.3);
	padding: 3rem 2rem 1rem;
}

/* Wallpapers Section */
.wallpapers {
	position: relative;
	z-index: 1;
	padding: 6rem 2rem;
	background: rgba(0, 0, 0, 0.3);
}

.wallpapers-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.wallpaper-card {
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 100, 255, 0.3);
	transition: all 0.3s;
	overflow: hidden;
	clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.wallpaper-card:hover {
	transform: translateY(-10px);
	border-color: #00ffff;
	box-shadow: 0 15px 50px rgba(0, 255, 255, 0.3);
}

.wallpaper-preview {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, rgba(0, 100, 255, 0.1), rgba(0, 255, 255, 0.1));
	position: relative;
	overflow: hidden;
}

.wallpaper-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.wallpaper-card:hover .wallpaper-img {
	transform: scale(1.1);
}

.wallpaper-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.wallpaper-icon {
	font-size: 4rem;
	opacity: 0.3;
}

.wallpaper-resolution {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 600;
	letter-spacing: 1px;
}

.wallpaper-info {
	padding: 1.5rem;
}

.wallpaper-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #00ffff;
	margin-bottom: 0.5rem;
}

.wallpaper-desc {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 1rem;
	line-height: 1.5;
}

/* Professional Footer */
.footer-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
}

.footer-column:first-child {
	align-items: center;
	text-align: center;
}

.footer-logo {
	width: 150px;
	height: auto;
	object-fit: contain;
	margin-bottom: 1rem;
	filter: drop-shadow(0 0 10px rgba(0, 100, 255, 0.5));
}

.footer-desc {
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.6;
	font-size: 0.9rem;
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-link {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.5);
	background: rgba(0, 100, 255, 0.1);
	border: 1px solid rgba(0, 100, 255, 0.3);
	border-radius: 50%;
	transition: all 0.3s;
	position: relative;
}

.social-link svg {
	width: 20px;
	height: 20px;
}

.social-link:hover {
	transform: translateY(-5px);
	color: #0064ff;
	background: rgba(0, 100, 255, 0.2);
	border-color: #0064ff;
	box-shadow: 0 5px 20px rgba(0, 100, 255, 0.4);
}

.footer-heading {
	color: #00ffff;
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 0.5rem;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: all 0.3s;
	font-size: 0.9rem;
}

.footer-links a:hover {
	color: #0064ff;
	padding-left: 5px;
}

.footer-newsletter-text {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
	line-height: 1.5;
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.newsletter-input {
	padding: 0.8rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(0, 100, 255, 0.3);
	color: #fff;
	font-size: 0.9rem;
	outline: none;
	transition: all 0.3s;
}

.newsletter-input:focus {
	border-color: #0064ff;
	background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
	padding: 0.8rem;
	background: linear-gradient(135deg, #0064ff, #00ffff);
	border: none;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.85rem;
}

.newsletter-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(0, 100, 255, 0.5);
}

.footer-bottom {
	max-width: 1400px;
	margin: 0 auto;
	padding-top: 2rem;
	border-top: 1px solid rgba(0, 100, 255, 0.2);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-bottom-left {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.created-by {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.85rem;
}

.created-by a {
	color: #00ffff;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s;
}

.created-by a:hover {
	color: #0064ff;
	text-shadow: 0 0 10px rgba(0, 100, 255, 0.8);
}

.footer-bottom-links {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.footer-bottom-links a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	font-size: 0.85rem;
	transition: color 0.3s;
}

.footer-bottom-links a:hover {
	color: #0064ff;
}

.footer-bottom-links span {
	color: rgba(255, 255, 255, 0.3);
}

.copyright {
	color: rgba(255, 255, 255, 0.3);
	font-size: 0.85rem;
	letter-spacing: 1px;
	font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
	h1 {
		font-size: 2.5rem;
		letter-spacing: 5px;
	}

	.tagline {
		font-size: 1rem;
	}

	.section-title {
		font-size: 2rem;
		letter-spacing: 4px;
	}

	.hero-logo {
		width: 220px;
		max-height: 220px;
	}

	.hamburger {
		display: flex;
	}

	.nav-links {
		position: fixed;
		top: 70px;
		right: -100%;
		width: 80%;
		max-width: 300px;
		height: calc(100vh - 70px);
		background: rgba(0, 0, 0, 0.98);
		backdrop-filter: blur(20px);
		flex-direction: column;
		padding: 2rem;
		gap: 0;
		border-left: 2px solid rgba(0, 100, 255, 0.5);
		box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
		transition: right 0.3s ease;
		z-index: 1000;
		overflow-y: auto;
	}

	.nav-links.active {
		right: 0;
	}

	.nav-links li {
		width: 100%;
		padding: 1rem 0;
		border-bottom: 1px solid rgba(0, 100, 255, 0.2);
	}

	.nav-links a {
		font-size: 1rem;
		display: block;
		width: 100%;
	}

	.servers-grid,
	.community-content,
	.news-grid,
	.wallpapers-grid {
		grid-template-columns: 1fr;
	}

	.server-info {
		gap: 0.5rem;
		padding: 1rem;
	}

	.info-label {
		font-size: 0.65rem;
	}

	.info-value {
		font-size: 1rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.footer-bottom-left {
		align-items: center;
		text-align: center;
	}

	.ranking-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.rank-stats {
		width: 100%;
		justify-content: space-around;
	}

	/* ===== MOBILE PRELOADER FIX ===== */
	.logo-wrapper {
		width: 180px;
		height: 180px;
		margin: 0 auto 2rem;
	}

	.preloader-logo {
		width: 110px;
		max-height: 110px;
	}

	.circle {
		width: 120px;
		height: 120px;
		margin: -60px 0 0 -60px;
		border-width: 2px;
	}

	@keyframes circleExpand {
		0% {
			transform: scale(0.5);
			opacity: 1;
		}
		80% {
			opacity: 0.5;
		}
		100% {
			transform: scale(3);
			opacity: 0;
		}
	}

	.loading-dots {
		gap: 12px;
		margin-top: 1rem;
	}

	.loading-dots span {
		width: 10px;
		height: 10px;
	}

	/* ===== MOBILE BACKGROUND OPTIMIZATION ===== */
	/* Disable heavy animations to improve FPS */
	.bg-animation,
	.parallax-layer,
	.grid-overlay {
		display: none !important;
	}

	/* Disable all animated particles */
	.circuit-line,
	.tech-square {
		display: none !important;
	}

	/* Keep only static nodes (will be created minimal in JS) */
	.circuit-node {
		animation: none !important;
	}

	/* Simplified static background */
	body::after {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: radial-gradient(circle at 50% 20%, rgba(0, 100, 255, 0.06) 0%, transparent 50%);
		z-index: 0;
		pointer-events: none;
	}

	/* Disable parallax animations */
	.hero::before {
		animation: none !important;
	}

	/* Simplify card animations */
	.server-card,
	.community-card,
	.stat-card,
	.news-card,
	.wallpaper-card {
		transition: transform 0.2s ease, box-shadow 0.2s ease !important;
	}

	.server-card:hover,
	.community-card:hover,
	.stat-card:hover,
	.news-card:hover,
	.wallpaper-card:hover {
		transform: translateY(-5px) !important;
	}

	/* Disable gradient animations */
	h1,
	.section-title {
		animation: none !important;
		background: linear-gradient(135deg, #0064ff, #00ffff);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}

	.hero-logo {
		animation: none !important;
	}
}