:root {
	--scratch-primary: #0b57d0;
	--scratch-accent: #ff7b11;
}

body.has-scratch-popup-open {
    overflow: hidden;
    position: fixed;
    inset: 0;
    width: 100%;
}

.scratch-popup-lite[hidden] {
	display: none !important;
}

.scratch-popup-lite [hidden] {
	display: none !important;
}

.scratch-popup-lite {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	font-family: 'Roboto', sans-serif;
}

.scratch-popup-lite__glow {
    z-index: 100000;
}

.scratch-popup-lite__overlay {
    z-index: 100001;
}

.scratch-popup-lite__modal {
    z-index: 100002 !important;
}

.scratch-popup-lite__overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 100000;
	pointer-events: none;
}

.scratch-popup-lite__overlay.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.scratch-popup-lite__glow {
	position: absolute;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: radial-gradient( circle at 50% 50%, rgba( 255, 122, 17, 0.55 ), rgba( 0, 0, 0, 0 ) 70% );
	filter: blur( 24px );
	opacity: 0;
	transition: opacity 0.45s ease;
	pointer-events: none;
	z-index: 0;
}

.scratch-popup-lite__modal {
	position: relative;
	width: min( 92vw, 420px );
	background: #0f1124;
	border-radius: 32px;
	box-shadow: 0 40px 70px rgba( 8, 10, 36, 0.5 );
	border: 1px solid rgba( 255, 255, 255, 0.07 );
	overflow: hidden;
	transform: translateY( 26px ) scale( 0.96 );
	opacity: 0;
	pointer-events: auto;
	transition: opacity 0.45s cubic-bezier( 0.22, 1, 0.36, 1 ), transform 0.45s cubic-bezier( 0.22, 1, 0.36, 1 );
	z-index: 2;
}

.scratch-popup-lite__modal.is-visible {
	opacity: 1;
	transform: translateY( 0 ) scale( 1 );
}

.scratch-popup-lite__glow.is-visible,
.scratch-popup-lite__overlay.is-visible {
	opacity: 1;
}

.scratch-popup-lite__close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: rgba( 12, 15, 36, 0.65 );
	color: rgba( 255, 255, 255, 0.92 );
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
	backdrop-filter: blur( 2px );
}

.scratch-popup-lite__content {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.scratch-popup-lite__header {
	position: relative;
	width: 100%;
	margin: 0;
	min-height: 180px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	border-radius: 0;
	box-shadow: inset 0 0 0 1px rgba( 255, 255, 255, 0.08 );
	overflow: hidden;
	padding: 32px 24px;
	box-sizing: border-box;
	color: #fff !important;
}

.scratch-popup-lite__header::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var( --scratch-header-image, none );
	background-size: cover;
	background-position: center;
	opacity: 0.55;
	mix-blend-mode: lighten;
}

.scratch-popup-lite__header h2,
.scratch-popup-lite__header p,
.scratch-popup-lite__tag {
	position: relative;
	z-index: 1;
}

.scratch-popup-lite__tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 16px;
	border-radius: 999px;
	background: rgba( 0, 0, 0, 0.38 );
	backdrop-filter: blur( 6px );
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 11px;
	font-weight: 600;
	margin-bottom: 18px;
	color: #fff !important;
	mix-blend-mode: normal;
}

.scratch-popup-lite__title {
	display: block;
	margin: 0 0 10px;
	font-size: 26px;
	letter-spacing: 0.01em;
	text-shadow: 0 6px 16px rgba( 0, 0, 0, 0.35 );
	color: #fff !important;
	mix-blend-mode: normal;
}

.scratch-popup-lite__subtitle {
	display: block;
	margin: 0;
	font-size: 15px;
	opacity: 1;
	letter-spacing: 0.02em;
	color: #fff !important;
	mix-blend-mode: normal;
}

.scratch-popup-lite__card {
	margin: 10px auto;
	width: 200px;
	height: 200px;
	border-radius: 36px;
	background: linear-gradient( 145deg, #ff7b11, #ff3a56 );
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 30px 50px rgba( 0, 0, 0, 0.45 );
	border: 2px solid rgba( 255, 255, 255, 0.08 );
	position: relative;
	overflow: hidden;
}

.scratch-popup-lite__card-shadow {
	position: absolute;
	inset: 16px;
	border-radius: 28px;
	box-shadow: inset 0 0 45px rgba( 0, 0, 0, 0.4 );
	opacity: 0.45;
	pointer-events: none;
}

.scratch-popup-lite__card-image {
	max-width: 100%;
	height: auto;
	border-radius: 28px;
	position: relative;
	z-index: 1;
}

.scratch-popup-lite__card-placeholder {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	position: relative;
	z-index: 1;
}

.scratch-popup-lite__card-icon {
	font-size: 40px;
}

.scratch-popup-lite__card-foil {
	position: absolute;
	inset: 0;
	background: radial-gradient( circle at 30% 30%, rgba( 255, 255, 255, 0.6 ), rgba( 0, 0, 0, 0.85 ) );
	mix-blend-mode: screen;
	opacity: 0.85;
	z-index: 2;
}

.scratch-popup-lite__form {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch !important;
    gap: 14px;
}

.scratch-popup-lite__field {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
}


.scratch-popup-lite__field input {
	all: unset;
	width: 100% ;
	padding: 16px 18px; 
	border-radius: 18px;
	border: 1px solid rgba( 255, 255, 255, 0.16 );
	background: rgba( 12, 15, 36, 0.78 );
	color: #fff;
	font-size: 15px;
	box-shadow: inset 0 0 0 1px rgba( 255, 255, 255, 0.04 );
}

.scratch-popup-lite__field input::placeholder {
	color: rgba( 255, 255, 255, 0.55 );
}

.scratch-popup-lite__field,
.scratch-popup-lite__field input {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box;
}

.scratch-popup-lite__checkbox {
	width: 100%;
	max-width: 260px;
	margin: 0 auto;
	font-size: 13px;
	color: rgba( 255, 255, 255, 0.75 );
}

.scratch-popup-lite__checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	max-width: 260px;
	margin: 0 auto;
	font-size: 13px;
	color: rgba( 255, 255, 255, 0.75 );
	text-align: left;
}

.scratch-popup-lite__checkbox input {
	margin: 0;
	align-self: center;
}

.scratch-popup-lite__button {
	border: none;
	border-radius: 18px;
	background: linear-gradient( 135deg, #0b57d0, #04133e );
	color: #fff;
	padding: 16px 18px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 22px 32px rgba( 11, 87, 208, 0.35 );
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.scratch-popup-lite__button:hover {
	transform: translateY( -2px );
	box-shadow: 0 26px 40px rgba( 11, 87, 208, 0.42 );
}

.scratch-popup-lite__message {
	min-height: 18px;
	font-size: 13px;
	color: #ff9b9b;
	margin: 0;
	text-align: center;
}

.scratch-popup-lite__message--mini {
	font-size: 12px;
	color: rgba( 255, 255, 255, 0.7 );
	margin-top: -8px;
}

.scratch-popup-lite__panel--result {
	text-align: center;
	width: 100%;
}

.scratch-popup-lite__panel--result .scratch-popup-lite__header {
	width: 100%;
	min-height: 180px;
	padding: 32px 24px;
}

.scratch-popup-lite__result-card {
	position: relative;
	width: 200px;
	height: 200px;
	margin: 20px auto;
	border-radius: 36px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #130d0d;
	background-image:
		radial-gradient(circle at 30% 20%, rgba(255, 140, 0, 0.18), transparent 65%),
		radial-gradient(circle at 75% 80%, rgba(255, 80, 0, 0.15), transparent 70%),
		linear-gradient(135deg, #0f0a0a, #251111);
	border: 2px solid rgba(255, 255, 255, 0.08);
	box-shadow:
		0 30px 60px rgba(0, 0, 0, 0.55),
		0 0 18px rgba(255, 120, 0, 0.25);
}

.scratch-popup-lite__result-card .scratch-popup-lite__card-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
	z-index: 1;
}



.scratch-popup-lite__result-card .scratch-popup-lite__card-placeholder {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 12px;
	padding: 20px;
	text-align: center;
	z-index: 1;
}

.scratch-popup-lite__result-foil {
    will-change: opacity, transform;
    background: #000;
}

.scratch-popup-lite__result-body {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	padding: 40px 20px;
}

.scratch-popup-lite__result-card .scratch-popup-lite__result-body {
	position: relative;
	z-index: 3;
}

.scratch-popup-lite__result-label {
	margin: 0;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-shadow: 0 0 12px rgba(255, 120, 0, 0.65);
	opacity: 0;
	transform: translateY( 24px );
}



body.has-scratch-popup-open .scratch-popup-lite input[type="text"],
body.has-scratch-popup-open .scratch-popup-lite input[type="email"],
body.has-scratch-popup-open .scratch-popup-lite input[type="tel"],
body.has-scratch-popup-open .scratch-popup-lite input[type="search"],
body.has-scratch-popup-open .scratch-popup-lite input[type="password"],
body.has-scratch-popup-open .scratch-popup-lite input[type="url"],
body.has-scratch-popup-open .scratch-popup-lite textarea,
body.has-scratch-popup-open .scratch-popup-lite select {
	all: unset;
	display: block;
	width: 100%;
	max-width: 260px;
	margin: 0 auto;
	padding: 16px 18px;
	border-radius: 18px;
	border: 1px solid rgba( 255, 255, 255, 0.16 );
	background: rgba( 12, 15, 36, 0.78 );
	color: #fff;
	font-size: 15px;
	box-shadow: inset 0 0 0 1px rgba( 255, 255, 255, 0.04 );
	box-sizing: border-box;
}

body.has-scratch-popup-open .scratch-popup-lite input[type="text"]::placeholder,
body.has-scratch-popup-open .scratch-popup-lite input[type="email"]::placeholder,
body.has-scratch-popup-open .scratch-popup-lite input[type="tel"]::placeholder,
body.has-scratch-popup-open .scratch-popup-lite input[type="search"]::placeholder,
body.has-scratch-popup-open .scratch-popup-lite input[type="password"]::placeholder,
body.has-scratch-popup-open .scratch-popup-lite input[type="url"]::placeholder,
body.has-scratch-popup-open .scratch-popup-lite textarea::placeholder {
	color: rgba( 255, 255, 255, 0.55 );
}


@media (max-width: 600px) {
	.scratch-popup-lite__modal {
		width: min( 94vw, 360px );
		border-radius: 26px;
	}

	.scratch-popup-lite__content {
		min-height: 440px;
		gap: 26px;
	}
}
