/* --- БАЗОВЫЕ НАСТРОЙКИ --- */
:root {
	--bg-color: #0d0f12;
	--surface-color: #1a1e24;
	--primary-color: #ff3366; /* Ярко-красный/розовый (отсылка к Гетсуге и милоте) */
	--primary-hover: #ff1a53;
	--text-main: #f0f0f0;
	--text-muted: #a0a5b0;
	--reiatsu-glow: rgba(255, 51, 102, 0.5);
	--espada-glow: rgba(0, 255, 204, 0.5);

	--font-text: 'Nunito', sans-serif;
	--font-heading: 'Oswald', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: var(--bg-color);
	color: var(--text-main);
	font-family: var(--font-text);
	line-height: 1.6;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

/* --- НАВИГАЦИЯ --- */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(13, 15, 18, 0.8);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	transition: background 0.3s ease;
}

.navbar.scrolled {
	background: rgba(13, 15, 18, 0.95);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 1px;
}

.logo-highlight {
	color: var(--primary-color);
}

.nav-links a {
	color: var(--text-main);
	text-decoration: none;
	margin: 0 15px;
	font-weight: 700;
	transition: color 0.3s ease;
}

.nav-links a:hover {
	color: var(--primary-color);
}

/* --- КНОПКИ --- */
.btn {
	display: inline-block;
	padding: 10px 24px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	font-family: var(--font-text);
}

.btn-small {
	padding: 8px 20px;
	background: #5865f2; /* Цвет Discord */
	color: white;
}

.btn-small:hover {
	background: #4752c4;
	transform: translateY(-2px);
}

/* --- ГЛАВНЫЙ ЭКРАН (HERO) --- */
.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	padding-top: 80px;
	/* Здесь можно вставить фоновую картинку крутого майнкрафт-спавна */
	background-color: radial-gradient(
		circle at center,
		rgba(26, 30, 36, 0.8) 0%,
		rgba(13, 15, 18, 1) 100%
	);
	background-image: url('./bleach.webp');
}

.hero-content {
	z-index: 2;
	max-width: 800px;
}

.badge {
	display: inline-block;
	background: rgba(255, 51, 102, 0.1);
	color: var(--primary-color);
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 20px;
	border: 1px solid rgba(255, 51, 102, 0.3);
}

.hero-title {
	font-family: var(--font-heading);
	font-size: 72px;
	text-transform: uppercase;
	margin-bottom: 20px;
	line-height: 1.1;
}

.text-glow {
	color: var(--primary-color);
	text-shadow: 0 0 20px var(--reiatsu-glow);
}

.hero-subtitle {
	font-size: 18px;
	color: var(--text-muted);
	margin-bottom: 40px;
	padding: 0 20px;
}

.server-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.ip-box {
	background: var(--surface-color);
	border: 2px dashed rgba(255, 255, 255, 0.2);
	padding: 15px 40px;
	border-radius: 15px;
	font-size: 24px;
	font-weight: 900;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	gap: 15px;
}

.ip-box:hover {
	border-color: var(--primary-color);
	box-shadow: 0 0 20px var(--reiatsu-glow);
	transform: scale(1.05);
}

.online-status {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 700;
}

.pulse-dot {
	width: 12px;
	height: 12px;
	background: #00ff66;
	border-radius: 50%;
	box-shadow: 0 0 10px #00ff66;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(0, 255, 102, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(0, 255, 102, 0);
	}
}

/* --- ОСОБЕННОСТИ (ФИЧИ) --- */
.features {
	padding: 100px 0;
	background: var(--bg-color);
}

.section-title {
	font-family: var(--font-heading);
	font-size: 48px;
	text-align: center;
	margin-bottom: 50px;
	text-transform: uppercase;
}

.text-highlight {
	color: var(--primary-color);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.feature-card {
	background: var(--surface-color);
	padding: 40px 30px;
	border-radius: 24px; /* Милые скругления */
	text-align: center;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	border-color: rgba(255, 255, 255, 0.1);
}

.cute-card:hover {
	border-color: var(--primary-color);
	box-shadow: 0 10px 30px var(--reiatsu-glow);
}

.feature-icon {
	font-size: 50px;
	margin-bottom: 20px;
}

.feature-card h3 {
	font-size: 24px;
	margin-bottom: 15px;
	font-family: var(--font-heading);
	letter-spacing: 1px;
}

.feature-card p {
	color: var(--text-muted);
}

/* --- МАГАЗИН ДОНАТА --- */
.store {
	padding: 100px 0;
	background: linear-gradient(
		180deg,
		var(--bg-color) 0%,
		var(--surface-color) 100%
	);
}

.section-desc {
	text-align: center;
	color: var(--text-muted);
	margin-bottom: 60px;
	margin-top: -30px;
}

.store-grid {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.store-card {
	background: var(--bg-color);
	width: 320px;
	padding: 40px;
	border-radius: 24px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.05);
	position: relative;
	display: flex;
	flex-direction: column;
}

.store-card.popular {
	transform: scale(1.05);
	border-color: var(--primary-color);
	box-shadow: 0 0 30px rgba(255, 51, 102, 0.15);
}

.popular-badge {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary-color);
	color: white;
	padding: 5px 20px;
	border-radius: 20px;
	font-weight: bold;
	font-size: 14px;
	box-shadow: 0 5px 15px var(--reiatsu-glow);
}

.store-card.espada {
	border-color: #00ffcc;
}

.rank-name {
	font-family: var(--font-heading);
	font-size: 32px;
	margin-bottom: 10px;
}

.store-card.espada .rank-name {
	color: #00ffcc;
}

.rank-price {
	font-size: 36px;
	font-weight: 900;
	margin-bottom: 30px;
}

.rank-perks {
	list-style: none;
	margin-bottom: 40px;
	text-align: left;
	flex-grow: 1;
}

.rank-perks li {
	margin-bottom: 15px;
	color: var(--text-muted);
	position: relative;
	padding-left: 25px;
}

.rank-perks li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #00ff66;
	font-weight: bold;
}

.btn-buy {
	width: 100%;
	padding: 15px;
	background: var(--surface-color);
	color: var(--text-main);
	font-size: 16px;
}

.btn-buy:hover {
	background: #2a3039;
}

.btn-primary {
	background: var(--primary-color);
	color: white;
}

.btn-primary:hover {
	background: var(--primary-hover);
	box-shadow: 0 5px 15px var(--reiatsu-glow);
}

.btn-espada {
	background: #00ffcc;
	color: #000;
}

.btn-espada:hover {
	background: #00e6b8;
	box-shadow: 0 5px 15px var(--espada-glow);
}

/* --- ПОДВАЛ --- */
.footer {
	background: #090a0c;
	padding: 60px 0 20px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
}

.footer-info h3 {
	font-family: var(--font-heading);
	font-size: 24px;
	margin-bottom: 10px;
}

.footer-info p {
	color: var(--text-muted);
	max-width: 400px;
	font-size: 14px;
}

.footer-links {
	display: flex;
	gap: 20px;
}

.footer-links a {
	color: var(--text-muted);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: var(--primary-color);
}

.footer-bottom {
	text-align: center;
	color: rgba(255, 255, 255, 0.2);
	font-size: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 20px;
}

/* Адаптивность */
@media (max-width: 768px) {
	.hero-title {
		font-size: 48px;
	}
	.nav-links {
		display: none;
	} /* В идеале тут нужно добавить бургер-меню в JS */
	.store-card.popular {
		transform: scale(1);
	}
	.footer-content {
		flex-direction: column;
		text-align: center;
	}
}
