.cards-container {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.tabs {
	padding: 0.25rem;
	display: flex;
	width: fit-content;
	align-items: center;
	gap: 0.25rem;
	flex-wrap: wrap;
	border-radius: 0.375rem;
	background: rgba(20, 20, 20, 1);
}

.tabs__item {
	display: inline-block;
	cursor: pointer;
	padding: 1rem 2rem;
	font-weight: 500;
	font-size: 1.25rem;
	text-align: center;
	border-radius: 0.375rem;
}

.tabs__item:hover {
	color: #fff !important;
}

.tabs__item.isActive {
	cursor: default;
	background: linear-gradient(142.07deg, #F44F5A 9.71%, #EE3D4A 40.45%, #E52030 79.11%);
}

.pricing-container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 1em;
	flex-wrap: wrap;
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px;
}

.pricing-card {
	padding: 25px;
	border-radius: 15px;
	color: #fff;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 320px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	position: relative;
}

.pricing-card.free {
	background-color: #1e1e1e;
}

.pricing-card.vip {
	background: linear-gradient(to bottom, #383838, #1e1e1e);
}

.pricing-card.pro {
	background: linear-gradient(to bottom, #6e2a65, #1e1e1e);
}

.pricing-card h2 {
	font-size: 1.8em;
	margin-bottom: 0.2em;
	color: #fff;
	text-align: center;
	font-weight: bold;
}

.pricing-card .price {
	font-size: 2.2em;
	font-weight: bold;
	margin-bottom: 0.8em;
	text-align: center;
	color: #fff;
}

.pricing-card.free .price { color: #fff; }
.pricing-card.vip .price { color: #ff8d60; }
.pricing-card.pro .price { color: #ff69b4; }

.pricing-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.pricing-card ul li {
	margin-bottom: 0.7em;
	display: flex;
	align-items: flex-start;
	font-size: 1.1em;
	line-height: 1.4;
}

.pricing-card ul li::before {
	content: '✓';
	margin-right: 0.5em;
	color: #00cc00;
	font-size: 1.2em;
	line-height: 1;
}

.pricing-card button {
	background: linear-gradient(73deg, #d850d4 0%, #d84e4e 50%, #ffd961 100%);
	color: white;
	padding: 15px 25px;
	border: none;
	border-radius: 15px;
	cursor: pointer;
	font-size: 1.1em;
	margin-top: auto;
	width: 100%;
	font-weight: bold;
	transition: opacity 0.3s ease;
}

.pricing-card.free button { display: none; }
.pricing-card button:hover { opacity: 0.8; }

.current-plan-text {
	text-align: center;
	font-size: 1.1em;
	color: #ccc;
	margin-bottom: 0.5em;
}

/* Gradient borders */
.pricing-card.vip::before,
.pricing-card.pro::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	border-radius: 15px;
	z-index: -1;
}

.pricing-card.vip::before {
	background: linear-gradient(to right, #ff8d60, #b52626);
}

.pricing-card.pro::before {
	background: linear-gradient(to right, #ff69b4, #ff1493);
}

.pricing-card.free::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	border-radius: 15px;
	z-index: -1;
	background: #808080;
}