:root {
	--sale-bg-start: #0f172a;
	--sale-bg-end: #1e293b;
	--sale-card-bg: #ffffff;
	--sale-text-main: #0f172a;
	--sale-text-soft: #334155;
	--sale-accent: #f97316;
	--sale-border: #e2e8f0;
	--sale-highlight-bg: #fff7ed;
	--sale-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background: linear-gradient(135deg, var(--sale-bg-start), var(--sale-bg-end));
	color: var(--sale-text-main);
}

.sale-page {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 2rem 1rem;
}

.sale-card {
	width: min(760px, 100%);
	background: var(--sale-card-bg);
	border-radius: 18px;
	box-shadow: var(--sale-shadow);
	padding: clamp(1.5rem, 2.6vw, 2.5rem);
	border: 1px solid var(--sale-border);
}

.sale-badge {
	display: inline-block;
	margin: 0 0 0.9rem;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	background: #ffedd5;
	color: #9a3412;
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.sale-title {
	margin: 0;
	font-size: clamp(1.6rem, 3vw, 2.25rem);
	line-height: 1.2;
}

.sale-lead {
	margin: 1rem 0 0;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--sale-text-soft);
}

.sale-section {
	margin-top: 1.6rem;
	padding-top: 1.1rem;
	border-top: 1px solid var(--sale-border);
}

.sale-section h2 {
	margin: 0;
	font-size: 1.12rem;
}

.sale-section p {
	margin: 0.7rem 0 0;
	line-height: 1.6;
	color: var(--sale-text-soft);
}

.sale-section a {
	color: var(--sale-accent);
	font-weight: 700;
	text-decoration: none;
}

.sale-section a:hover {
	text-decoration: underline;
}

.sale-section--highlight {
	background: var(--sale-highlight-bg);
	padding: 1rem;
	border-radius: 12px;
	border: 1px solid #fed7aa;
}

.sale-section--highlight ul {
	margin: 0.75rem 0 0;
	padding-left: 1.15rem;
	line-height: 1.65;
	color: var(--sale-text-soft);
}

.sale-footer {
	margin: 1.4rem 0 0;
	font-weight: 700;
}
