/* ТОЛЬКО специфичные стили для страницы цен */

/* Make sure the .page container stands out on the background */
.page {
	background: transparent;
	max-width: 1100px;
	margin: 28px auto;
	padding: 20px;
	padding-top: 92px;
	/* offset for fixed header - объединили с нижним */
}

header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}

h1 {
	font-size: 20px;
	margin: 0 0 6px 0;
}

p.lead {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

/* switches */
.switches {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
	margin: 14px 0 22px;
}

.toggle {
	display: inline-flex;
	background: var(--glass);
	padding: 6px;
	border-radius: 999px;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.toggle button {
	appearance: none;
	border: 0;
	background: transparent;
	color: var(--muted);
	padding: 8px 14px;
	border-radius: 999px;
	cursor: pointer;
	font-weight: 600;
}

.toggle button.active {
	background: var(--accent);
	/* background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%); */
	color: var(--text);
}

.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 15vh;
}

.card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
	padding: 24px;
	border-radius: 16px;
	box-shadow: 0 6px 18px rgba(2, 6, 23, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.03);
	transition: all 0.3s ease;
}

.card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(2, 6, 23, 0.8);
}

.card.vip {
	outline: 2px solid rgba(255, 183, 3, 0.08);
}

.card h3 {
	margin: 0 0 12px 0;
	font-size: 20px;
}

.prices-list {
	list-style: none;
	padding: 0;
	margin: 6px 0 10px 0;
}

.prices-list li {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.02);
	color: var(--text);
}

.prices-list li span.small {
	color: var(--muted);
	font-size: 13px;
}

.note {
	font-size: 13px;
	color: var(--muted);
	margin-top: 8px;
	line-height: 1.3;
}

.pill {
	display: inline-block;
	background: var(--glass-2);
	padding: 6px 10px;
	border-radius: 999px;
	color: var(--muted);
	font-size: 13px;
	margin-left: 8px;
}

@media (max-width: 900px) {
	.cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.cards {
		grid-template-columns: 1fr;
	}

	.switches {
		flex-direction: column;
		align-items: flex-start;
	}
}

.card {
	background: var(--panel-bg);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	opacity: 0.7;
}

.card--vip::before {
	background: linear-gradient(90deg, #fd4f4f, #ff7300);
}

.card--std::before {
	background: linear-gradient(90deg, #00c851, #33b5e5);
}
.card--ps5::before {
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
}