* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Montserrat', sans-serif;
 	background: #0a0a0f;
 	color: #ffffff;
	overflow-x: hidden;
}

img {
	-webkit-user-drag: none;
    user-select: none;
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
	background: #ff4757;
	border-radius: 4px;
}

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}

.modal-overlay.active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	opacity: 1;
}

.modal {
	background: #1a1a25;
	border-radius: 20px;
	padding: 40px;
	max-width: 450px;
	width: 90%;
	position: relative;
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
	-webkit-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	border: 1px solid rgba(255, 71, 87, 0.3);
}

.modal-overlay.active .modal {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.modal-close {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 1.5rem;
 	color: #8b8b9a;
	cursor: pointer;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	background: none;
	border: none;
}

.modal-close:hover {
	color: #ff4757;
}

.modal-title {
	font-family: 'Russo One', sans-serif;
	font-size: 1.8rem;
	margin-bottom: 10px;
	text-align: center;
}

.modal-title span {
	background: linear-gradient(135deg, #ff4757, #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.modal-subtitle {
	color: #8b8b9a;
	text-align: center;
	margin-bottom: 30px;
	font-size: 0.95rem;
}

.modal-form .form-group {
	margin-bottom: 20px;
}

.modal-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #ffffff;
}

.modal-form input {
	width: 100%;
	padding: 15px 20px;
	background: #0a0a0f;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: #ffffff;
	font-size: 1rem;
	-webkit-transition: border-color 0.3s;
	transition: border-color 0.3s;
	outline: none;
}

.modal-form input:focus {
	border-color: #ff4757;
}

.modal-form input::-webkit-input-placeholder {
	color: #8b8b9a;
}

.modal-form input:-ms-input-placeholder {
	color: #8b8b9a;
}

.modal-form input::placeholder {
	color: #8b8b9a;
}

.btn-submit	{
	width: 100%;
	padding: 15px;
	background: linear-gradient(135deg, #ff4757, #8b5cf6);
	border: none;
	border-radius: 12px;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.modal-form .btn-submit:hover {
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
	-webkit-box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
	box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
}

.modal-form .btn-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.form-links {
	text-align: center;
	margin-top: 20px;
}

.form-links a {
	color: #ff4757;
	text-decoration: none;
	font-size: 0.9rem;
}

.form-links a:hover {
	text-decoration: underline;
}

.modal-icon {
	text-align: center;
	margin-bottom: 20px;
}

.modal-icon i {
	font-size: 4rem;
	background: linear-gradient(135deg, #ff4757, #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.modal-icon.warning i {
	color: #f39c12;
	-webkit-text-fill-color: #f39c12;
}

.alert {
	padding: 12px 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-size: 0.9rem;
	display: none;
}

.alert.success {
	background: rgba(0, 255, 136, 0.1);
	border: 1px solid rgba(0, 255, 136, 0.3);
	color: #00ff88;
}

.alert.error {
	background: rgba(255, 71, 87, 0.1);
	border: 1px solid rgba(255, 71, 87, 0.3);
	color: #ff4757;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 1000;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background: transparent;
}

header.scrolled {
	background: rgba(10, 10, 15, 0.95);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	padding: 15px 50px;
	-webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.logo {
	background-image: url(../img/logo.png);
    background-size: cover;
    width: 200px;
    height: 52px;
    position: relative;
	-webkit-transition: transform 0.3s;
	transition: transform 0.3s;
	-webkit-tap-highlight-color: transparent;
}

.logo:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.nav-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.nav-left a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	position: relative;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	cursor: pointer;
}

.nav-left a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(135deg, #ff4757, #8b5cf6);
	-webkit-transition: width 0.3s;
	transition: width 0.3s;
}

.nav-left a:hover {
	color: #ff4757;
}

.nav-left a:hover::after {
	width: 100%;
}

.nav-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}

.btn-login {
	padding: 12px 30px;
	background: transparent;
	border: 2px solid #ff4757;
	color: #ff4757;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-decoration: none;
	font-size: 0.9rem;
}

.btn-login:hover {
	background: #ff4757;
	color: #ffffff;
	-webkit-box-shadow: 0 0 30px rgba(255, 71, 87, 0.4);
	box-shadow: 0 0 30px rgba(255, 71, 87, 0.4);
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
}

.mobile-menu-btn {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	z-index: 1001;
	-webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
	width: 30px;
	height: 3px;
	background: #ffffff;
	border-radius: 3px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
	-webkit-transform: rotate(45deg) translate(6px, 6px);
	transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
	-webkit-transform: rotate(-45deg) translate(6px, -6px);
	transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100vh;
	background: #0a0a0f;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 30px;
	-webkit-transition: right 0.5s ease;
	transition: right 0.5s ease;
	z-index: 999;
	-webkit-tap-highlight-color: transparent;
}

.mobile-nav.active {
	right: 0;
}

.mobile-nav a {
	color: #ffffff;
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 600;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	cursor: pointer;
}

.mobile-nav a:hover {
	color: #ff4757;
}

.hero {
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 100px 50px;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left top, right bottom, from(#0a0a0f), to(#12121a));
	background: linear-gradient(135deg, #0a0a0f 0%, #12121a 100%);
	z-index: -2;
}

.hero-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: #ff4757;
	border-radius: 50%;
	opacity: 0.5;
	-webkit-animation: float 15s infinite;
	animation: float 15s infinite;
}

@-webkit-keyframes float {
	0%, 100% {
		-webkit-transform: translateY(100vh) rotate(0deg);
		transform: translateY(100vh) rotate(0deg);
		opacity: 0;
	}
	10% { opacity: 0.5; }
	90% { opacity: 0.5; }
	100% {
		-webkit-transform: translateY(-100vh) rotate(720deg);
		transform: translateY(-100vh) rotate(720deg);
		opacity: 0;
	}
}

@keyframes float {
	0%, 100% {
		-webkit-transform: translateY(100vh) rotate(0deg);
		transform: translateY(100vh) rotate(0deg);
		opacity: 0;
	}
	10% { opacity: 0.5; }
	90% { opacity: 0.5; }
	100% {
		-webkit-transform: translateY(-100vh) rotate(720deg);
		transform: translateY(-100vh) rotate(720deg);
		opacity: 0;
	}
}

.hero-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	-webkit-filter: blur(150px);
	filter: blur(150px);
	z-index: -1;
}

.hero-glow-1 {
	top: -200px;
	left: -200px;
	background: rgba(255, 71, 87, 0.3);
}

.hero-glow-2 {
	bottom: -200px;
	right: -200px;
	background: rgba(139, 92, 246, 0.3);
}

.hero-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	gap: 50px;
}

.hero-text {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	max-width: 600px;
}

.hero-badge {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: rgba(255, 71, 87, 0.1);
	border: 1px solid rgba(255, 71, 87, 0.3);
	border-radius: 50px;
	margin-bottom: 30px;
	-webkit-animation: fadeInUp 0.8s ease forwards;
	animation: fadeInUp 0.8s ease forwards;
}

.hero-badge i {
	color: #ff4757;
}

.hero-badge span {
	font-size: 0.9rem;
	color: #8b8b9a;
}

.hero-padding-top{
	padding-top: 20px;
}

.hero-title {
	font-family: 'Russo One', sans-serif;
	font-size: 5rem;
	line-height: 1.1;
	margin-bottom: 25px;
	-webkit-animation: fadeInUp 0.8s ease 0.2s forwards;
	animation: fadeInUp 0.8s ease 0.2s forwards;
	opacity: 0;
}

.hero-title span {
	display: block;
	background: linear-gradient(135deg, #ff4757, #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.3rem;
	color: #8b8b9a;
	margin-bottom: 40px;
	line-height: 1.6;
	-webkit-animation: fadeInUp 0.8s ease 0.4s forwards;
	animation: fadeInUp 0.8s ease 0.4s forwards;
	opacity: 0;
}

.countdown-section {
	margin-bottom: 40px;
	-webkit-animation: fadeInUp 0.8s ease 0.5s forwards;
	animation: fadeInUp 0.8s ease 0.5s forwards;
	opacity: 0;
}

.countdown-label {
	font-size: 1rem;
	color: #8b8b9a;
	margin-bottom: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.countdown-label i {
	color: #ff4757;
}

.countdown-timer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.countdown-item {
	background: #1a1a25;
	border: 1px solid rgba(255, 71, 87, 0.2);
	border-radius: 12px;
	padding: 15px 20px;
	text-align: center;
	min-width: 80px;
}

.countdown-number {
	font-family: 'Russo One', sans-serif;
	font-size: 2rem;
	background: linear-gradient(135deg, #ff4757, #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
}

.countdown-text {
	font-size: 0.75rem;
	color: #8b8b9a;
	text-transform: uppercase;
	margin-top: 5px;
}

.hero-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-animation: fadeInUp 0.8s ease 0.6s forwards;
	animation: fadeInUp 0.8s ease 0.6s forwards;
	opacity: 0;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.btn-primary {
	padding: 18px 45px;
	background: linear-gradient(135deg, #ff4757, #8b5cf6);
	border: none;
	border-radius: 50px;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-decoration: none;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
	-webkit-tap-highlight-color: transparent;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	-webkit-transition: left 0.5s;
	transition: left 0.5s;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:hover {
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
	-webkit-box-shadow: 0 20px 40px rgba(255, 71, 87, 0.4);
	box-shadow: 0 20px 40px rgba(255, 71, 87, 0.4);
}

.btn-secondary {
	padding: 18px 45px;
	background: transparent;
	border: 2px solid #8b8b9a;
	border-radius: 50px;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-decoration: none;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	-webkit-tap-highlight-color: transparent;
}

.btn-secondary:hover {
	border-color: #00d4ff;
	color: #00d4ff;
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
}

.download-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	margin-top: 30px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-animation: fadeInUp 0.8s ease 0.7s forwards;
	animation: fadeInUp 0.8s ease 0.7s forwards;
	opacity: 0;
}

.download-btn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	padding: 12px 25px;
	background: #1a1a25;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: #ffffff;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.download-btn:hover {
	border-color: #ff4757;
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
	-webkit-box-shadow: 0 10px 30px rgba(255, 71, 87, 0.2);
	box-shadow: 0 10px 30px rgba(255, 71, 87, 0.2);
}

.download-btn i {
	font-size: 1.8rem;
}

.download-btn.google-play i { color: #3DDC84; }
.download-btn.app-store i { color: #fff; }
.download-btn.apk i { color: #ff4757; }

.download-btn-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.download-btn-text small {
	font-size: 0.7rem;
	color: #8b8b9a;
}

.download-btn-text span {
	font-size: 0.95rem;
	font-weight: 600;
}

.hero-image {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	-webkit-animation: fadeInRight 1s ease 0.5s forwards;
	animation: fadeInRight 1s ease 0.5s forwards;
	opacity: 0;
	-webkit-user-drag: none;
    user-select: none;
}

.hero-character {
	max-width: 100%;
	height: auto;
	max-height: 700px;
	-webkit-filter: drop-shadow(0 0 50px rgba(255, 71, 87, 0.3));
	filter: drop-shadow(0 0 50px rgba(255, 71, 87, 0.3));
	-webkit-animation: characterFloat 6s ease-in-out infinite;
	animation: characterFloat 6s ease-in-out infinite;
}

.hero-bg-character{
	width: 250px;
    height: 700px;
    background: linear-gradient(135deg, #ff4757, #8b5cf6);
    position: absolute;
}

@-webkit-keyframes characterFloat {
	0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
	50% { -webkit-transform: translateY(-20px); transform: translateY(-20px); }
}

@keyframes characterFloat {
	0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
	50% { -webkit-transform: translateY(-20px); transform: translateY(-20px); }
}

.hero-stats {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	margin-top: 50px;
	-webkit-animation: fadeInUp 0.8s ease 0.8s forwards;
	animation: fadeInUp 0.8s ease 0.8s forwards;
	opacity: 0;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-family: 'Russo One', sans-serif;
	font-size: 2.5rem;
	background: linear-gradient(135deg, #ff4757, #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-label {
	color: #8b8b9a;
	font-size: 0.9rem;
	margin-top: 5px;
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translateX(50px);
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translateX(50px);
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

.subscribe-section {
	padding: 80px 50px;
	background: #12121a;
	position: relative;
	overflow: hidden;
}

.subscribe-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 71, 87, 0.05) 0%, transparent 50%);
	-webkit-animation: rotateBg 20s linear infinite;
	animation: rotateBg 20s linear infinite;
}

@-webkit-keyframes rotateBg {
	from { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
	to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes rotateBg {
	from { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
	to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

.subscribe-container {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

.subscribe-icon {
	font-size: 3rem;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #ff4757, #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.subscribe-title {
	font-family: 'Russo One', sans-serif;
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.subscribe-title span {
	background: linear-gradient(135deg, #ff4757, #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.subscribe-text {
	color: #8b8b9a;
	font-size: 1.1rem;
	margin-bottom: 30px;
	line-height: 1.6;
}

.subscribe-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	max-width: 500px;
	margin: 0 auto;
}

.subscribe-form input {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 18px 25px;
	background: #1a1a25;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	color: #ffffff;
	font-size: 1rem;
	outline: none;
	-webkit-transition: border-color 0.3s;
	transition: border-color 0.3s;
}

.subscribe-form input:focus {
	border-color: #ff4757;
}

.subscribe-form input::-webkit-input-placeholder {
	color: #8b8b9a;
}

.subscribe-form input:-ms-input-placeholder {
	color: #8b8b9a;
}

.subscribe-form input::placeholder {
	color: #8b8b9a;
}

.subscribe-form button {
	padding: 18px 35px;
	background: linear-gradient(135deg, #ff4757, #8b5cf6);
	border: none;
	border-radius: 50px;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	white-space: nowrap;
}

.subscribe-form button:hover {
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
	-webkit-box-shadow: 0 15px 35px rgba(255, 71, 87, 0.4);
	box-shadow: 0 15px 35px rgba(255, 71, 87, 0.4);
}

.subscribe-form button:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	-webkit-transform: none;
	transform: none;
}

.subscribe-message {
	margin-top: 20px;
	padding: 15px;
	border-radius: 10px;
	display: none;
}

.subscribe-message.success {
	background: rgba(0, 255, 136, 0.1);
	border: 1px solid rgba(0, 255, 136, 0.3);
	color: #00ff88;
}

.subscribe-message.error {
	background: rgba(255, 71, 87, 0.1);
	border: 1px solid rgba(255, 71, 87, 0.3);
	color: #ff4757;
}

.content {
	padding: 100px 50px;
	background: #0a0a0f;
	position: relative;
}

.content-next {
    padding: 100px 50px;
    background: #12121a;
	position: relative;
}

.servers {
	padding: 100px 50px;
	background: #0a0a0f;
	position: relative;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-family: 'Russo One', sans-serif;
	font-size: 3rem;
	margin-bottom: 20px;
}

.section-title span {
	background: linear-gradient(135deg, #ff4757, #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-subtitle {
	color: #8b8b9a;
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
}

.servers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 380px));
	justify-content: center;
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.server-card {
	background: #1a1a25;
	border-radius: 20px;
	padding: 35px;
	position: relative;
	overflow: hidden;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border: 1px solid transparent;
	cursor: pointer;
}

.server-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #ff4757, #8b5cf6);
	opacity: 0;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
	z-index: 0;
}

.server-card:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
	border-color: #ff4757;
	-webkit-box-shadow: 0 30px 60px rgba(255, 71, 87, 0.2);
	box-shadow: 0 30px 60px rgba(255, 71, 87, 0.2);
}

.server-card:hover::before {
	opacity: 0.05;
}

.server-number {
	font-family: 'Russo One', sans-serif;
	font-size: 4rem;
	background: linear-gradient(135deg, #ff4757, #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0.3;
	position: absolute;
	top: 10px;
	right: 20px;
	z-index: 1;
}

.server-content {
	position: relative;
	z-index: 2;
}

.server-status {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	padding: 8px 15px;
	background: rgba(0, 255, 136, 0.1);
	border-radius: 50px;
	margin-bottom: 20px;
}

.status-dot {
	width: 10px;
	height: 10px;
	background: #00ff88;
	border-radius: 50%;
	-webkit-animation: statusPulse 2s infinite;
	animation: statusPulse 2s infinite;
}

@-webkit-keyframes statusPulse {
	0%, 100% { opacity: 1; -webkit-box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
	50% { opacity: 0.8; -webkit-box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
}

@keyframes statusPulse {
	0%, 100% { opacity: 1; -webkit-box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
	50% { opacity: 0.8; -webkit-box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
}

.status-text {
	color: #00ff88;
	font-size: 0.85rem;
	font-weight: 600;
}

.server-name {
	font-family: 'Russo One', sans-serif;
	font-size: 1.8rem;
	margin-bottom: 15px;
}

.server-players {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 25px;
}

.players-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.players-info i {
	color: #ff4757;
	font-size: 1.2rem;
}

.players-count {
	font-weight: 700;
	font-size: 1.1rem;
}

.players-max {
	color: #8b8b9a;
}

.progress-bar {
	width: 100%;
	height: 8px;
	background: #0a0a0f;
	border-radius: 4px;
	margin-top: 15px;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(135deg, #ff4757, #8b5cf6);
	border-radius: 4px;
	-webkit-transition: width 1s ease;
	transition: width 1s ease;
}

.btn-connect {
	padding: 12px 25px;
	background: linear-gradient(135deg, #ff4757, #8b5cf6);
	border: none;
	border-radius: 50px;
	color: #ffffff;
	font-weight: 600;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	font-size: 0.9rem;
}

.btn-connect:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	-webkit-box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
	box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

.news {
	padding: 100px 50px;
	background: #12121a;
}

.news-carousel-wrapper {
	position: relative;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 60px;
}

.news-carousel {
	overflow: hidden;
	width: 100%;
}

.news-grid {
	display: flex;
	gap: 30px;
	transition: transform 0.5s ease;
	will-change: transform;
}

.news-card {
	flex: 0 0 380px;
	min-width: 380px;
}

.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #ff4757, #8b5cf6);
	border: none;
	border-radius: 50%;
	color: #ffffff;
	font-size: 1.2rem;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
}

.carousel-arrow.visible {
	display: flex;
	opacity: 1;
	pointer-events: all;
}

.carousel-arrow:hover {
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
}

.carousel-arrow-left {
	left: 0;
}

.carousel-arrow-right {
	right: 0;
}

.news-card {
	background: #1a1a25;
	border-radius: 20px;
	overflow: hidden;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	cursor: pointer;
}

.news-card:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
	-webkit-box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.news-card:hover .news-image img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.news-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: transform 0.5s;
	transition: transform 0.5s;
}

.news-category {
	position: absolute;
	top: 15px;
	left: 15px;
	padding: 8px 15px;
	background: linear-gradient(135deg, #ff4757, #8b5cf6);
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
}

.news-content {
	padding: 25px;
}

.news-date {
	color: #8b8b9a;
	font-size: 0.85rem;
	margin-bottom: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
}

.news-date i {
	color: #ff4757;
}

.news-title {
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 15px;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.news-card:hover .news-title {
	color: #ff4757;
}

.news-excerpt {
	color: #8b8b9a;
	font-size: 0.95rem;
	line-height: 1.6;
}

.streams {
	padding: 100px 50px;
	background: #0a0a0f;
}

.streams-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto 60px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px;
}

.streams-header .section-header {
	text-align: left;
	margin-bottom: 0;
}

.btn-partner {
	padding: 15px 35px;
	background: transparent;
	border: 2px solid #8b5cf6;
	color: #8b5cf6;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-decoration: none;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.btn-partner:hover {
	background: #8b5cf6;
	color: #ffffff;
	-webkit-box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
	box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.streams-carousel-wrapper {
	position: relative;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 60px;
}

.streams-carousel {
	overflow: hidden;
	width: 100%;
}

.streams-grid {
	display: flex;
	gap: 30px;
	transition: transform 0.5s ease;
	will-change: transform;
}

.stream-card {
	flex: 0 0 380px;
	min-width: 380px;
}

.stream-card {
	background: #1a1a25;
	border-radius: 20px;
	overflow: hidden;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	cursor: pointer;
}

.stream-card:hover {
	-webkit-transform: translateY(-10px) scale(1.02);
	transform: translateY(-10px) scale(1.02);
	-webkit-box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2);
	box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2);
}

.stream-thumbnail {
	width: 100%;
	height: 180px;
	position: relative;
	overflow: hidden;
}

.stream-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: transform 0.5s;
	transition: transform 0.5s;
}

.stream-card:hover .stream-thumbnail img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.stream-live {
	position: absolute;
	top: 15px;
	left: 15px;
	padding: 6px 12px;
	background: #ff0000;
	border-radius: 5px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
	-webkit-animation: livePulse 2s infinite;
	animation: livePulse 2s infinite;
}

@-webkit-keyframes livePulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}

@keyframes livePulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}

.stream-play {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.stream-play i {
	color: #0a0a0f;
	font-size: 1.5rem;
	margin-left: 5px;
}

.stream-card:hover .stream-play {
	opacity: 1;
}

.stream-info {
	padding: 20px;
}

.stream-author {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.stream-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #ff4757;
}

.stream-author-info h4 {
	font-size: 0.95rem;
	font-weight: 600;
}

.stream-author-info span {
	color: #8b8b9a;
	font-size: 0.8rem;
}

.stream-title {
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.4;
}

.social {
	padding: 100px 50px;
	background: #12121a;
}

.social-grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 25px;
	max-width: 900px;
	margin: 0 auto;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.social-card {
	width: 140px;
	height: 140px;
	background: #1a1a25;
	border-radius: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 12px;
	-webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	cursor: pointer;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	border: 2px solid transparent;
}

.social-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
	z-index: 0;
}

.social-card::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
	opacity: 0;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
	z-index: 1;
}

.social-card:hover::after {
	opacity: 1;
}

.social-card.discord { border-color: rgba(88, 101, 242, 0.3); }
.social-card.discord i { color: #5865f2; }
.social-card.discord .social-name { color: #5865f2; }
.social-card.discord::before { background: -webkit-gradient(linear, left top, right bottom, from(#5865f2), to(#4752c4)); background: linear-gradient(135deg, #5865f2, #4752c4); }
.social-card.discord:hover {
	border-color: #5865f2;
	-webkit-box-shadow: 0 0 40px rgba(88, 101, 242, 0.5), 0 20px 40px rgba(88, 101, 242, 0.3);
	box-shadow: 0 0 40px rgba(88, 101, 242, 0.5), 0 20px 40px rgba(88, 101, 242, 0.3);
	-webkit-transform: translateY(-10px) scale(1.05);
	transform: translateY(-10px) scale(1.05);
}
.social-card.discord:hover::before { opacity: 0.15; }
.social-card.discord:hover i,
.social-card.discord:hover .social-name { color: #fff; text-shadow: 0 0 20px #5865f2; }

.social-card.vk { border-color: rgba(0, 119, 255, 0.3); }
.social-card.vk i { color: #0077ff; }
.social-card.vk .social-name { color: #0077ff; }
.social-card.vk::before { background: -webkit-gradient(linear, left top, right bottom, from(#0077ff), to(#0055cc)); background: linear-gradient(135deg, #0077ff, #0055cc); }
.social-card.vk:hover {
	border-color: #0077ff;
	-webkit-box-shadow: 0 0 40px rgba(0, 119, 255, 0.5), 0 20px 40px rgba(0, 119, 255, 0.3);
	box-shadow: 0 0 40px rgba(0, 119, 255, 0.5), 0 20px 40px rgba(0, 119, 255, 0.3);
	-webkit-transform: translateY(-10px) scale(1.05);
	transform: translateY(-10px) scale(1.05);
}
.social-card.vk:hover::before { opacity: 0.15; }
.social-card.vk:hover i,
.social-card.vk:hover .social-name { color: #fff; text-shadow: 0 0 20px #0077ff; }

.social-card.youtube { border-color: rgba(255, 0, 0, 0.3); }
.social-card.youtube i { color: #ff0000; }
.social-card.youtube .social-name { color: #ff0000; }
.social-card.youtube::before { background: -webkit-gradient(linear, left top, right bottom, from(#ff0000), to(#cc0000)); background: linear-gradient(135deg, #ff0000, #cc0000); }
.social-card.youtube:hover {
	border-color: #ff0000;
	-webkit-box-shadow: 0 0 40px rgba(255, 0, 0, 0.5), 0 20px 40px rgba(255, 0, 0, 0.3);
	box-shadow: 0 0 40px rgba(255, 0, 0, 0.5), 0 20px 40px rgba(255, 0, 0, 0.3);
	-webkit-transform: translateY(-10px) scale(1.05);
	transform: translateY(-10px) scale(1.05);
}
.social-card.youtube:hover::before { opacity: 0.15; }
.social-card.youtube:hover i,
.social-card.youtube:hover .social-name { color: #fff; text-shadow: 0 0 20px #ff0000; }

.social-card.telegram { border-color: rgba(0, 136, 204, 0.3); }
.social-card.telegram i { color: #0088cc; }
.social-card.telegram .social-name { color: #0088cc; }
.social-card.telegram::before { background: -webkit-gradient(linear, left top, right bottom, from(#0088cc), to(#006699)); background: linear-gradient(135deg, #0088cc, #006699); }
.social-card.telegram:hover {
	border-color: #0088cc;
	-webkit-box-shadow: 0 0 40px rgba(0, 136, 204, 0.5), 0 20px 40px rgba(0, 136, 204, 0.3);
	box-shadow: 0 0 40px rgba(0, 136, 204, 0.5), 0 20px 40px rgba(0, 136, 204, 0.3);
	-webkit-transform: translateY(-10px) scale(1.05);
	transform: translateY(-10px) scale(1.05);
}
.social-card.telegram:hover::before { opacity: 0.15; }
.social-card.telegram:hover i,
.social-card.telegram:hover .social-name { color: #fff; text-shadow: 0 0 20px #0088cc; }

.social-card.tiktok { border-color: rgba(255, 0, 80, 0.3); }
.social-card.tiktok i {
	background: -webkit-gradient(linear, left top, right bottom, from(#00f2ea), to(#ff0050));
	background: linear-gradient(135deg, #00f2ea, #ff0050);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.social-card.tiktok .social-name {
	background: -webkit-gradient(linear, left top, right bottom, from(#00f2ea), to(#ff0050));
	background: linear-gradient(135deg, #00f2ea, #ff0050);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.social-card.tiktok::before { background: -webkit-gradient(linear, left top, right bottom, from(#00f2ea), to(#ff0050)); background: linear-gradient(135deg, #00f2ea, #ff0050); }
.social-card.tiktok:hover {
	border-color: #ff0050;
	-webkit-box-shadow: 0 0 40px rgba(255, 0, 80, 0.4), 0 0 40px rgba(0, 242, 234, 0.3), 0 20px 40px rgba(255, 0, 80, 0.2);
	box-shadow: 0 0 40px rgba(255, 0, 80, 0.4), 0 0 40px rgba(0, 242, 234, 0.3), 0 20px 40px rgba(255, 0, 80, 0.2);
	-webkit-transform: translateY(-10px) scale(1.05);
	transform: translateY(-10px) scale(1.05);
}
.social-card.tiktok:hover::before { opacity: 0.15; }
.social-card.tiktok:hover i { -webkit-filter: brightness(1.5); filter: brightness(1.5); }
.social-card.tiktok:hover .social-name { -webkit-filter: brightness(1.5); filter: brightness(1.5); }

.social-card i {
	font-size: 2.8rem;
	position: relative;
	z-index: 2;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.social-name {
	font-size: 0.85rem;
	font-weight: 600;
	position: relative;
	z-index: 2;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

footer {
	padding: 60px 50px 30px;
	background: #0a0a0f;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
	max-width: 1200px;
    margin: 0 auto;
    display: -ms-grid;
    display: flex;
    gap: 70px;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.footer-brand  {
	max-width: 250px;
	width: 250px;
}

.footer-brand .logo {
	font-size: 2rem;
	display: inline-block;
	margin-bottom: 20px;
}

.footer-brand p {
	color: #8b8b9a;
	line-height: 1.6;
}

.footer-links h4 {
	font-size: 1.1rem;
	margin-bottom: 25px;
	color: #ffffff;
}

.footer-links ul {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #8b8b9a;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.footer-links a:hover {
	color: #ff4757;
	-webkit-transform: translateX(5px);
	transform: translateX(5px);
}

.footer-bottom {
	max-width: 1200px;
	margin: 50px auto 0;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-bottom p {
	color: #8b8b9a;
	font-size: 0.9rem;
}

.footer-legal {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
}

.footer-legal a {
	color: #8b8b9a;
	text-decoration: none;
	font-size: 0.9rem;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.footer-legal a:hover {
	color: #ff4757;
}

.animate-on-scroll {
	opacity: 0;
	-webkit-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
}

.animate-on-scroll.animated {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

@media (max-width: 1024px) {
	.hero-title {
		font-size: 3.5rem;
	}

	.hero-content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
	}

	.hero-text {
		max-width: 100%;
	}

	.hero-buttons {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.hero-stats {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.hero-image {
		margin-top: 50px;
	}

	.hero-character {
		max-height: 500px;
	}

	.hero-bg-character{
		width: 200px;
		height: 520px;
	}

	.countdown-timer {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.download-buttons {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.social-card {
		width: 120px;
		height: 120px;
	}

	.social-card i {
		font-size: 2.2rem;
	}

	.social-name {
		font-size: 0.75rem;
	}
}

@media (max-width: 768px) {
	header {
		padding: 15px 25px;
	}

	.nav-left, .nav-right .btn-login {
		display: none;
	}

	.mobile-menu-btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.hero {
		padding: 120px 25px 80px;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.hero-buttons {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.hero-stats {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.countdown-item {
		min-width: 70px;
		padding: 12px 15px;
	}

	.countdown-number {
		font-size: 1.5rem;
	}

	.download-buttons {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.subscribe-section {
		padding: 60px 25px;
	}

	.subscribe-form {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.subscribe-title {
		font-size: 2rem;
	}

	.servers,
	.news,
	.streams,
	.social {
		padding: 60px 25px;
	}

	.section-title {
		font-size: 2rem;
	}

	.servers-grid,
	.news-grid,
	.streams-grid {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}

	.news-card,
	.stream-card {
		flex: 0 0 100%;
		min-width: 100%;
	}

	.news-carousel-wrapper,
	.streams-carousel-wrapper {
		padding: 0 50px;
	}

	.carousel-arrow {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.carousel-arrow-left {
		left: 5px;
	}

	.carousel-arrow-right {
		right: 5px;
	}

	.streams-header {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
	}

	.streams-header .section-header {
		text-align: center;
	}

	.social-card {
		width: 100px;
		height: 100px;
	}

	.social-card i {
		font-size: 1.8rem;
	}

	.social-name {
		font-size: 0.7rem;
	}

	footer {
		padding: 40px 25px 20px;
	}

	.footer-bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
	}

	.footer-legal {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.modal {
		padding: 30px 20px;
		margin: 20px;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

	.hero-character {
		max-height: 350px;
	}
	
	.hero-bg-character{
		width: 150px;
		height: 400px;
	}

	.stat-number {
		font-size: 1.8rem;
	}

	.btn-primary, .btn-secondary {
		padding: 15px 30px;
		font-size: 0.9rem;
	}

	.social-grid {
		gap: 15px;
	}

	.social-card {
		width: 85px;
		height: 85px;
		border-radius: 16px;
	}

	.social-card i {
		font-size: 1.5rem;
	}

	.social-name {
		font-size: 0.6rem;
	}
}

.server-status.offline {
	background: rgba(231, 76, 60, 0.06);
}

.status-dot.offline {
	width: 10px;
	height: 10px;
	background: #e74c3c;
	border-radius: 50%;
	-webkit-animation: statusPulseOffline 2s infinite;
	animation: statusPulseOffline 2s infinite;
	box-shadow: 0 0 8px rgba(231,76,60,0.6);
}

.status-text.offline {
	color: #e74c3c;
	font-size: 0.85rem;
	font-weight: 600;
}

@-webkit-keyframes statusPulseOffline {
	0%, 100% { opacity: 1; -webkit-box-shadow: 0 0 0 0 rgba(231,76,60,0.4); box-shadow: 0 0 0 0 rgba(231,76,60,0.4); }
	50% { opacity: 0.8; -webkit-box-shadow: 0 0 0 10px rgba(231,76,60,0); box-shadow: 0 0 0 10px rgba(231,76,60,0); }
}

@keyframes statusPulseOffline {
	0%, 100% { opacity: 1; -webkit-box-shadow: 0 0 0 0 rgba(231,76,60,0.4); box-shadow: 0 0 0 0 rgba(231,76,60,0.4); }
	50% { opacity: 0.8; -webkit-box-shadow: 0 0 0 10px rgba(231,76,60,0); box-shadow: 0 0 0 10px rgba(231,76,60,0); }
}

@keyframes ripple {
	to {
		transform: scale(4);
		opacity: 0;
	}
}
@-webkit-keyframes ripple {
	to {
		-webkit-transform: scale(4);
		transform: scale(4);
		opacity: 0;
	}
}