.cancel-page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: #050505;
	color: #fff;
	overflow-x: hidden;
	overflow-y: auto;
}

.cancel-page a {
	cursor: pointer;
}

.cancel-topbar {
	width: 100%;
	padding: 20px 16px;
}

.cancel-topbar-inner {
	margin: 0 auto;
	display: flex;
	max-width: 1200px;
	align-items: center;
	justify-content: space-between;
}

.cancel-logo {
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	text-decoration: none;
	z-index: 2;
}

.cancel-back {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.cancel-back:hover {
	background: rgba(255, 255, 255, 0.1);
}

.cancel-main {
	flex: 1;
	padding: 16px 16px 64px;
}

.cancel-content {
	margin: 0 auto;
	display: flex;
	width: 100%;
	max-width: 560px;
	flex-direction: column;
	align-items: center;
}

.cancel-title {
	margin: 0;
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.5px;
}

.cancel-platforms {
	margin-top: 32px;
	display: grid;
	width: 100%;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.cancel-platform {
	position: relative;
	display: flex;
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: transparent;
	padding: 20px 8px;
	color: #9da1ac;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.cancel-platform:hover {
	border-color: rgba(255, 255, 255, 0.25);
}

.cancel-platform.is-active {
	border-color: #fff;
	background: #fff;
	color: #141416;
}

.cancel-check {
	position: absolute;
	top: 10px;
	right: 10px;
	display: none;
	height: 20px;
	width: 20px;
	place-items: center;
}

.cancel-platform.is-active .cancel-check {
	display: grid;
}

.cancel-platform-label {
	font-size: 14px;
	font-weight: 600;
	color: #9da1ac;
}

.cancel-platform.is-active .cancel-platform-label {
	color: #141416;
}

.cancel-icon {
	height: 24px;
	width: 24px;
}

.cancel-icon-idle {
	display: block;
}

.cancel-icon-active {
	display: none;
}

.cancel-platform.is-active .cancel-icon-idle {
	display: none;
}

.cancel-platform.is-active .cancel-icon-active {
	display: block;
}

.cancel-tab {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	animation: cancel-tab-enter 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cancel-panel {
	display: none;
	width: 100%;
	flex-direction: column;
	align-items: center;
}

.cancel-panel.is-active {
	display: flex;
}

.cancel-heading {
	margin: 40px 0 0;
	width: 100%;
	text-align: start;
	font-size: 18px;
	font-weight: 600;
	line-height: 28px;
}

.cancel-steps {
	margin: 24px 0 0;
	padding: 0;
	display: flex;
	width: 100%;
	flex-direction: column;
	gap: 16px;
	list-style: none;
}

.cancel-step {
	display: flex;
	align-items: center;
	gap: 16px;
}

.cancel-step-number {
	display: grid;
	height: 32px;
	width: 32px;
	flex-shrink: 0;
	place-items: center;
	border-radius: 999px;
	background: #fff;
	font-size: 14px;
	font-weight: 700;
	color: #141416;
}

.cancel-step-text {
	font-size: 15px;
	line-height: 24px;
	color: #f5f5f5;
}

.cancel-step-highlight {
	font-weight: 600;
	color: #ff0d48;
}

.cancel-warning {
	position: relative;
	margin-top: 24px;
	display: flex;
	width: 100%;
	align-items: flex-start;
	gap: 12px;
	overflow: hidden;
	border-radius: 0 18px 18px 0;
	background: #2c2410;
	padding: 16px;
}

.cancel-warning-bar {
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: #e7c317;
}

.cancel-warning-icon {
	height: 20px;
	width: 20px;
	flex-shrink: 0;
}

.cancel-warning-title {
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	color: #e7c317;
}

.cancel-warning-text {
	display: block;
	margin-top: 8px;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
}

.cancel-contact {
	margin-top: 32px;
	display: grid;
	width: 100%;
	grid-template-columns: 20px 1fr 20px;
	align-items: center;
	border-radius: 16px;
	background: #2a1218;
	padding: 20px;
}

.cancel-contact-copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-align: center;
}

.cancel-contact-label {
	font-size: 14px;
	line-height: 20px;
	color: #fff;
}

.cancel-contact-email {
	font-size: 16px;
	font-weight: 600;
	color: #ff0d48;
}

.cancel-copy-btn {
	justify-self: end;
	border: none;
	background: none;
	cursor: pointer;
	color: #ff0d48;
	padding: 0;
	transition: opacity 0.2s ease;
}

.cancel-copy-btn:hover {
	opacity: 0.8;
}

.cancel-copy-icon {
	height: 20px;
	width: 20px;
	display: block;
}

.cancel-email-btn {
	margin-top: 24px;
	display: none;
	width: 100%;
	max-width: 280px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #ff0d48;
	padding: 16px 24px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.cancel-email-btn.is-visible {
	display: flex;
}

.cancel-email-btn:hover {
	transform: scale(1.02);
}

.cancel-email-btn:active {
	transform: scale(0.96);
}

.cancel-help-link {
	margin-top: 24px;
	display: none;
	font-size: 14px;
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 4px;
	transition: color 0.2s ease;
}

.cancel-help-link.is-visible {
	display: inline;
}

.cancel-help-link:hover {
	color: #cfcfcf;
}

.cancel-page .footer {
	display: flex;
	padding: 24px 16px 32px;
}

.cancel-page .footer-nav {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

@keyframes cancel-tab-enter {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (min-width: 768px) {
	.cancel-topbar {
		padding: 32px 120px;
	}

	.cancel-logo {
		font-size: 28px;
	}

	.cancel-back {
		padding: 12px 20px;
	}

	.cancel-main {
		padding: 16px 24px 96px;
	}

	.cancel-title {
		font-size: 40px;
	}

	.cancel-platforms {
		gap: 16px;
	}

	.cancel-heading {
		font-size: 20px;
	}

	.cancel-step-text,
	.cancel-warning-title,
	.cancel-warning-text,
	.cancel-contact-label {
		font-size: 16px;
	}

	.cancel-warning-text {
		line-height: 24px;
	}

	.cancel-contact-email {
		font-size: 18px;
	}
}

@media (max-width: 800px) {
	.cancel-page {
		padding-bottom: 0;
	}

	.cancel-page .footer {
		display: flex;
		padding: 16px;
	}

	.cancel-page .footer-nav {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		width: 100%;
	}

	.cancel-page .footer-nav-list {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		gap: 12px;
		padding: 0;
	}

	.cancel-page .footer-nav-item a {
		font-size: 16px;
		color: #fafafa;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cancel-tab {
		animation: none;
	}

	.cancel-email-btn:hover,
	.cancel-email-btn:active {
		transform: none;
	}
}
