/**
 * Cookie consent bar — aligned with Webstart UI (dark, pink CTA, glass).
 */
.wstart-cookie-consent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100050;
	display: none;
	align-items: flex-end;
	justify-content: center;
	padding: 16px;
	pointer-events: none;
}

.wstart-cookie-consent.is-visible {
	display: flex;
	pointer-events: auto;
}

.wstart-cookie-consent__backdrop {
	position: fixed;
	inset: 0;
	z-index: -1;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	pointer-events: auto;
}

.wstart-cookie-consent__panel {
	position: relative;
	width: min(960px, 100%);
	max-width: calc(100vw - 32px);
	border-radius: 24px;
	border: 1px solid rgba(255, 41, 208, 0.45);
	background: linear-gradient(145deg, rgba(26, 26, 26, 0.97) 0%, rgba(0, 0, 0, 0.98) 100%);
	box-shadow:
		0 24px 48px rgba(0, 0, 0, 0.55),
		0 0 0 1px rgba(255, 255, 255, 0.06) inset;
	padding: 22px 26px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 28px;
	color: var(--white, #ffffff);
	font-size: 14px;
	line-height: 1.45;
}

.wstart-cookie-consent__icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 25%, rgba(255, 41, 208, 0.2), transparent 55%),
		rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.wstart-cookie-consent__icon svg {
	display: block;
	width: 36px;
	height: 36px;
}

.wstart-cookie-consent__body {
	flex: 1 1 240px;
	min-width: 0;
}

.wstart-cookie-consent__title {
	font-family: inherit;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0 0 8px;
	color: var(--white, #fff);
}

.wstart-cookie-consent__lead {
	margin: 0;
	color: var(--gray, #848385);
	font-family: inherit;
	font-weight: 400;
}

.wstart-cookie-consent__lead a {
	color: var(--pink, #ff29d0) !important;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.wstart-cookie-consent__lead a:hover {
	color: #fff !important;
}

.wstart-cookie-consent__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.wstart-cookie-consent .wstart-cookie-accept.pink_button {
	margin: 0;
	border: none;
	text-transform: uppercase;
	font-size: 13px;
	padding: 14px 18px;
}

.wstart-cookie-reject {
	margin: 0;
	padding: 14px 18px;
	border-radius: 20px;
	font-size: 13px;
	cursor: pointer;
	text-transform: uppercase;
	font-family: inherit;
	font-weight: 600;
	color: var(--white, #fff);
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.35);
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.wstart-cookie-reject:hover,
.wstart-cookie-reject:focus-visible {
	border-color: var(--pink, #ff29d0);
	color: var(--pink, #ff29d0);
	outline: none;
}

.wstart-cookie-reopen {
	position: fixed;
	left: 24px;
	bottom: 24px;
	z-index: 100040;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: 1px solid rgba(255, 41, 208, 0.5);
	background: rgba(0, 0, 0, 0.85);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
	color: var(--pink, #ff29d0);
	padding: 0;
	transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.wstart-cookie-reopen.is-visible {
	display: flex;
}

.wstart-cookie-reopen:hover,
.wstart-cookie-reopen:focus-visible {
	transform: scale(1.05);
	border-color: var(--pink, #ff29d0);
	background: rgba(30, 30, 30, 0.95);
	outline: none;
}

.wstart-cookie-reopen svg {
	width: 28px;
	height: 28px;
	display: block;
}

@media (max-width: 600px) {
	.wstart-cookie-consent__panel {
		flex-direction: column;
		align-items: stretch;
		padding: 20px;
	}

	.wstart-cookie-consent__actions {
		flex-direction: column;
		width: 100%;
	}

	.wstart-cookie-consent .wstart-cookie-accept.pink_button,
	.wstart-cookie-reject {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.wstart-cookie-reopen {
		left: 16px;
		bottom: 90px;
	}
}
