@import url("master.css");

main {
	margin: 40px 0;
}
main h1 {
	font-size: 48px;
	text-align: center;
}

.pricing {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2rem;
	padding: 4rem 2rem;
	position: relative;
	color: white;
}



.plan {
	flex: 1;
	min-width: 300px;
	max-width: 350px;
	padding: 2.5rem;
	border-radius: 15px;
	background: linear-gradient(145deg, #151515 0%, #222222 100%);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	text-align: left;
	border: 1px solid #333;
	position: relative;
	overflow: hidden;
}

.price {
	font-size: 3rem;
	font-weight: bold;
	margin: 1.5rem 0;
	color: #ecc91a;
}
.price p {
	font-size: 20px;
	position: relative;
	display: block;
	width: fit-content;
	color: #bbb;
}

.price p::after {
	content: "";
	position: absolute;
	left: -4px;
	top: 40%;
	width: 120%;
	height: 3px;
	background: rgba(255, 0, 0, 0.7);
	transform: rotate(-4deg);
	pointer-events: none;
}

.price span {
	font-size: 1rem;
	opacity: 0.8;
}

.plan ul {
	list-style: none;
	padding: 0;
	margin: 2rem 0 0 0;
}

.plan li {
	padding: 10px 0;
	color: #e0e0e0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.plan li i {
	color: #ecc91a;
	font-size: 0.9rem;
}

.plan h2 {
	color: white;
	font-size: 1.8rem;
	margin-bottom: 1rem;
	position: relative;
	padding-bottom: 0.5rem;
}

.plan h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background: #ecc91a;
}

main a {
	display: block;
	width: fit-content;
	background: #262626;
	padding: 12px 24px;
	font-size: 15px;
	border-radius: 30px;
	cursor: pointer;
	text-decoration: none;
	margin: 0 auto 0;
}