/* ===================== RESET / BASE ===================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	min-height: 100%;
	background: #04130a;
	overflow-x: hidden;
}

img {
	display: block;
	max-width: none;
}

button {
	font: inherit;
	border: none;
	background: none;
	cursor: pointer;
	padding: 0;
}

body {
	font-family: 'Archivo Black', Arial, sans-serif;
}

/* ===================== STAGE / CANVAS SCALING ===================== */
.stage {
	position: relative;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
	background: #04130a;
}

.canvas {
	position: absolute;
	top: 0;
	left: 0;
	transform-origin: top left;
	overflow: hidden;
	will-change: transform;
}

.canvas--desktop {
	width: 1920px;
	height: 1080px;
}

.canvas--mobile {
	width: 720px;
	height: 1320px;
}

@media (min-width: 881px) {
	.stage--mobile {
		display: none;
	}
}

@media (max-width: 880px) {
	.stage--desktop {
		display: none;
	}
}

/* ===================== SHARED HELPERS ===================== */
.bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.bg img {
	position: absolute;
}

.deco,
.chip,
.flare,
.particles,
.confetti {
	position: absolute;
	pointer-events: none;
}

.deco,
.chip {
	object-fit: cover;
}

.gold-text {
	background: linear-gradient(180deg, #e9d480 0%, #9b5c14 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* ===================== INFO CARD ===================== */
.info-card {
	position: absolute;
	z-index: 5;
}

.info-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(8, 29, 26, 0.68);
	filter: blur(10px);
	border-radius: 24px;
}

.info-card img,
.info-card .introduces,
.info-card .official-text,
.info-card .divider {
	position: absolute;
}

.logo-riverrock,
.logo-7reels,
.trustpilot {
	object-fit: contain;
}

.introduces {
	width: 100%;
	text-align: center;
	font-family: 'Cinzel', serif;
	font-weight: 700;
	background: linear-gradient(90deg, #9f6119 44.8%, #e7d17e 84.67%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	letter-spacing: 0.15em;
}

.diamond {
	display: inline-block;
	width: 0.6em;
	height: 0.6em;
	margin: 0 0.5em;
	transform: rotate(45deg) translateY(0.05em);
	background: linear-gradient(135deg, #a0631b 0%, #e9d480 110%);
	vertical-align: middle;
}

.official-text {
	width: 100%;
	text-align: center;
	font-family: 'Cinzel', serif;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	line-height: 1.25;
}

.gold-text--alt {
	background-image: linear-gradient(180deg, #e8d380 58.17%, #9d5e16 100%);
}

.divider {
	width: 298px;
	height: 6px;
	object-fit: contain;
}

/* ===================== WHEEL ===================== */
.wheel {
	position: absolute;
	inset: 0;
	z-index: 6;
}

.wheel-base,
.wheel-ring,
.wheel-pointer,
.wheel-face-wrap,
.wheel-hub {
	position: absolute;
}

.wheel-base {
	object-fit: cover;
	pointer-events: none;
}

.wheel-ring {
	object-fit: cover;
	pointer-events: none;
}

.wheel-pointer {
	object-fit: contain;
	pointer-events: none;
	z-index: 4;
}

.wheel-face-wrap {
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.5) inset;
	will-change: transform;
}

.wheel-face {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.wheel-hub {
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

.wheel-hub .wheel-ring--inner {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.wheel-hub .wheel-ring--ellipse {
	position: absolute;
	inset: 0;
	width: 90%;
	height: 90%;
	object-fit: cover;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.hub-label {
	position: relative;
	z-index: 1;
	font-family: 'Sofia Sans Semi Condensed', Arial, sans-serif;
	font-weight: 900;
	color: #0a370c;
	text-transform: uppercase;
}

/* ===================== SPIN NOW BUTTON ===================== */
.btn-spin-now {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 7;
}

.btn-spin-now img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.btn-spin-now span {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.3em;
	font-family: 'Sofia Sans Semi Condensed', Arial, sans-serif;
	font-weight: 900;
	color: #0a370c;
	text-transform: uppercase;
}

.btn-spin-now .arrow {
	width: 0.4em;
	height: 0.7em;
}

.btn-spin-now:active {
	transform: translateY(1px) scale(0.99);
}

.btn-spin-now.is-disabled {
	pointer-events: none;
	opacity: 0.6;
}

/* ===================== POPUPS (shared) ===================== */
.popup {
	position: absolute;
	inset: 0;
	z-index: 50;
}

.popup[hidden] {
	display: none;
}

.popup-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.62);
}

.popup-card {
	position: absolute;
}

.popup-card-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.popup-card .chip {
	position: absolute;
}

.popup-title,
.popup-amount,
.popup-sub,
.popup-oops {
	position: absolute;
	width: 100%;
	left: 0;
	text-align: center;
	text-transform: uppercase;
	font-family: 'Archivo Black', Arial, sans-serif;
}

.popup-title,
.popup-sub {
	color: #fff;
}

.popup-amount {
	background: linear-gradient(
		180deg,
		#ffba00 13.28%,
		#fff66a 52.54%,
		#ff8a00 91.8%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	font-weight: 900;
}

.popup-oops {
	color: #fff;
	line-height: 1.2;
}

.popup-oops span {
	display: block;
}

.btn-gold-text {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-gold-text img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.btn-gold-text span {
	position: relative;
	font-family: 'Sofia Sans Semi Condensed', Arial, sans-serif;
	font-weight: 900;
	color: #0a370c;
	text-transform: uppercase;
}

.btn-gold-text:active {
	transform: translateY(1px) scale(0.99);
}

/* ===================== WIN2 (final) POPUP ===================== */
.win2-card {
	position: absolute;
	inset: 0;
}

.win2-banner {
	position: absolute;
	object-fit: contain;
	pointer-events: none;
	z-index: 1;
}

.win2-frame {
	position: absolute;
	border: 5px solid #fff;
	border-radius: 74px;
	background: linear-gradient(180deg, #136908 0%, #052d08 100%);
}

.win2-congrats,
.win2-line1,
.win2-line2,
.win2-line3,
.win2-line4,
.win2-rewards {
	position: absolute;
	width: 100%;
	left: 0;
	text-align: center;
	text-transform: uppercase;
	font-family: 'Archivo Black', Arial, sans-serif;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	z-index: 2;
}

.win2-congrats {
	color: #f7e9b0;
	font-family: 'Cinzel', serif;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.win2-line1,
.win2-line2,
.win2-line3,
.win2-line4 {
	font-family: 'Sofia Sans Semi Condensed', Arial, sans-serif;
	font-weight: 900;
	white-space: nowrap;
}

.win2-line1,
.win2-line2 {
	background-image: linear-gradient(180deg, #f3dd68 10.1%, #f1bc1f 75.5%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.win2-line3,
.win2-line4 {
	background-image: linear-gradient(180deg, #f4f4ea 10.1%, #e8dab9 75.5%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.win2-rewards {
	color: #fff;
	font-family: 'Cinzel', serif;
	font-weight: 600;
	line-height: 1.25;
}

.win2-coin {
	position: absolute;
	object-fit: contain;
	pointer-events: none;
	z-index: 2;
}

.bonus-row {
	position: absolute;
	object-fit: contain;
	pointer-events: none;
}

.btn-claim {
	z-index: 2;
}

/* =====================================================================
   DESKTOP LAYOUT (canvas 1920x1080)
   ===================================================================== */
.canvas--desktop .bg-gradient {
	left: -220px;
	top: -151px;
	width: 2587px;
	height: 1294px;
	object-fit: cover;
}

.canvas--desktop .bg-models--desktop {
	left: 390px;
	top: -450px;
	width: 1616px;
	height: 1229px;
	object-fit: cover;
}

.canvas--desktop .flare--d1 {
	left: 302px;
	top: 454px;
	width: 669px;
	height: 779px;
	transform: rotate(77.93deg);
	opacity: 0.8;
}

.canvas--desktop .flare--d2 {
	left: 1373px;
	top: 274px;
	width: 669px;
	height: 779px;
	transform: rotate(77.93deg);
	opacity: 0.8;
}

.canvas--desktop .particles--d1 {
	left: 881px;
	top: -658px;
	width: 1104px;
	height: 1962px;
	transform: rotate(-90deg);
	mix-blend-mode: screen;
	object-fit: cover;
}

.canvas--desktop .particles--d2 {
	left: -49px;
	top: -37px;
	width: 954px;
	height: 1696px;
	transform: rotate(-90deg) scaleY(-1);
	mix-blend-mode: screen;
	object-fit: cover;
}

.canvas--desktop .confetti--desktop {
	left: 0;
	top: 3px;
	width: 1920px;
	height: 1080px;
	z-index: 4;
	opacity: 0.9;
}

.canvas--desktop .info-card--desktop {
	left: -29px;
	top: -9px;
	width: 555px;
	height: 1159px;
}

.canvas--desktop .logo-riverrock {
	left: 66px;
	top: 52px;
	width: 372px;
	height: 212px;
}

.canvas--desktop .logo-7reels {
	left: 37px;
	top: 315px;
	width: 425px;
	height: 112px;
}

.canvas--desktop .introduces {
	left: 0;
	top: 264px;
	font-size: 32px;
}

.canvas--desktop .official-text {
	left: 0;
	top: 457px;
	font-size: 42px;
}

.canvas--desktop .divider--1 {
	left: 129px;
	top: 439px;
}

.canvas--desktop .divider--2 {
	left: 129px;
	top: 645px;
}

.canvas--desktop .trustpilot {
	left: 80px;
	top: 702px;
	width: 345px;
	height: 288px;
}

.canvas--desktop .deco--left-d {
	left: 393px;
	top: 256px;
	width: 488px;
	height: 1045px;
}

.canvas--desktop .deco--right-d {
	left: 1492px;
	top: 114px;
	width: 451px;
	height: 1036px;
	transform: scaleX(-1);
}

.canvas--desktop .chip--d1 {
	left: 745px;
	top: 29px;
	width: 197px;
	height: 197px;
	transform: rotate(-22.3deg);
	filter: blur(1px);
	z-index: 4;
}

.canvas--desktop .chip--d2 {
	left: 1390px;
	top: 15px;
	width: 214px;
	height: 213px;
	transform: rotate(-67.23deg);
	filter: blur(2px);
	z-index: 4;
}

.canvas--desktop .chip--d3 {
	left: 822px;
	top: 723px;
	width: 106px;
	height: 112px;
	transform: rotate(-82.03deg);
	z-index: 4;
}

.canvas--desktop .chip--d4 {
	left: 1373px;
	top: 697px;
	width: 205px;
	height: 199px;
	transform: rotate(-26.14deg);
	z-index: 4;
}

.canvas--desktop .wheel-base {
	left: 497px;
	top: -222px;
	width: 1342px;
	height: 1342px;
}

.canvas--desktop .wheel-ring--outer {
	left: 712px;
	top: -3px;
	width: 911px;
	height: 953px;
}

.canvas--desktop .wheel-face-wrap {
	left: 770px;
	top: 61px;
	width: 797px;
	height: 825px;
}

.canvas--desktop .wheel-hub {
	left: 1015px;
	top: 314px;
	width: 305px;
	height: 319px;
}

.canvas--desktop .hub-label {
	font-size: 72px;
}

.canvas--desktop .wheel-pointer {
	left: 1081px;
	top: -6px;
	width: 174px;
	height: 174px;
}

.canvas--desktop .btn-spin-now--desktop {
	left: 857px;
	top: 915px;
	width: 646px;
	height: 169px;
}

.canvas--desktop .btn-spin-now--desktop span {
	font-size: 70px;
}

.canvas--desktop .popup--desktop .popup-card {
	left: 390px;
	top: 256px;
	width: 1203px;
	height: 480px;
	border-radius: 60px;
}

.canvas--desktop .popup--desktop .chip--popup1 {
	left: -53px;
	top: -174px;
	width: 275px;
	height: 270px;
	transform: rotate(22.58deg);
}

.canvas--desktop .popup--desktop .chip--popup2 {
	left: 915px;
	top: 397px;
	width: 214px;
	height: 211px;
	transform: rotate(-11.54deg);
}

.canvas--desktop .popup--win .popup-title {
	top: 84px;
	font-size: 70px;
}

.canvas--desktop .popup--win .popup-amount {
	top: 151px;
	font-size: 110px;
}

.canvas--desktop .popup--win .popup-sub {
	top: 314px;
	font-size: 60px;
}

.canvas--desktop .popup--desktop .popup-oops {
	top: 82px;
	font-size: 56px;
}

.canvas--desktop .popup--desktop .popup-oops :first-child {
	font-size: 72px;
}

.canvas--desktop .popup--desktop .btn-gold-text {
	left: 260px;
	top: 511px;
	width: 660px;
	height: 163px;
}

.canvas--desktop .popup--desktop .btn-gold-text span {
	font-size: 64px;
}

.canvas--desktop .popup--win2 .win2-banner {
	left: -49px;
	top: 86px;
	width: 1020px;
	height: 356px;
}

.canvas--desktop .popup--win2 .win2-frame {
	left: 125px;
	top: 262px;
	width: 661px;
	height: 459px;
}

.canvas--desktop .popup--win2 .win2-congrats,
.canvas--desktop .popup--win2 .win2-line1,
.canvas--desktop .popup--win2 .win2-line2,
.canvas--desktop .popup--win2 .win2-line3,
.canvas--desktop .popup--win2 .win2-line4,
.canvas--desktop .popup--win2 .win2-rewards {
	left: 126px;
	width: 660px;
}

.canvas--desktop .popup--win2 .win2-congrats {
	top: 130px;
	font-size: 46px;
}

.canvas--desktop .popup--win2 .win2-line1 {
	top: 348px;
	font-size: 76px;
}

.canvas--desktop .popup--win2 .win2-line2 {
	top: 437px;
	font-size: 76px;
}

.canvas--desktop .popup--win2 .win2-line3 {
	top: 290px;
	font-size: 55px;
}

.canvas--desktop .popup--win2 .win2-line4 {
	top: 526px;
	font-size: 70px;
}

.canvas--desktop .popup--win2 .win2-coin--l {
	left: 158px;
	top: 501px;
	width: 129px;
	height: 129px;
}

.canvas--desktop .popup--win2 .win2-coin--r {
	left: 624px;
	top: 501px;
	width: 129px;
	height: 129px;
}

.canvas--desktop .popup--win2 .win2-rewards {
	top: 620px;
	font-size: 30px;
}

.canvas--desktop .popup--win2 .bonus-row--1 {
	left: 940px;
	top: 86px;
	width: 919px;
	height: 378px;
}

.canvas--desktop .popup--win2 .bonus-row--2 {
	left: 940px;
	top: 378px;
	width: 919px;
	height: 402px;
}

.canvas--desktop .popup--win2 .bonus-row--3 {
	left: 940px;
	top: 706px;
	width: 919px;
	height: 393px;
}

.canvas--desktop .popup--win2 .btn-claim {
	left: 90px;
	top: 767px;
	width: 712px;
	height: 170px;
}

.canvas--desktop .popup--win2 .btn-claim span {
	font-size: 70px;
}

/* =====================================================================
   MOBILE LAYOUT (canvas 720x1560)
   ===================================================================== */
.canvas--mobile .bg-gradient {
	left: 0;
	top: 0;
	width: 720px;
	height: 1560px;
	object-fit: cover;
	opacity: 0.9;
}

.canvas--mobile .bg-models--mobile {
	left: -640px;
	top: -444px;
	width: 1900px;
	height: 1060px;
	object-fit: cover;
}

.canvas--mobile .flare--m1 {
	left: 549px;
	top: 1333px;
	width: 333px;
	height: 333px;
	opacity: 0.8;
}

.canvas--mobile .flare--m2 {
	left: -126px;
	top: 1333px;
	width: 333px;
	height: 333px;
	opacity: 0.8;
}

.canvas--mobile .flare--m3 {
	left: -96px;
	top: 268px;
	width: 333px;
	height: 333px;
	opacity: 0.8;
}

.canvas--mobile .flare--m4 {
	left: 469px;
	top: 329px;
	width: 333px;
	height: 333px;
	opacity: 0.8;
}

.canvas--mobile .particles--m1 {
	left: -149px;
	top: -224px;
	width: 1030px;
	height: 1830px;
	transform: rotate(-90deg);
	mix-blend-mode: screen;
	object-fit: cover;
}

.canvas--mobile .confetti--mobile {
	left: 0;
	top: 0;
	width: 720px;
	height: 1560px;
	opacity: 0.9;
}

.canvas--mobile .info-card--mobile {
	left: 153px;
	top: -25px;
	width: 414px;
	height: 864px;
}

.canvas--mobile .logo-riverrock {
	left: 45px;
	top: 29px;
	width: 330px;
	height: 189px;
}

.canvas--mobile .logo-7reels {
	left: 19px;
	top: 235px;
	width: 376px;
	height: 104px;
}

.canvas--mobile .introduces {
	top: 218px;
	font-size: 28px;
}

.canvas--mobile .official-text {
	top: 345px;
	font-size: 37px;
}

.canvas--mobile .divider--1 {
	left: 78px;
	top: 330px;
	width: 264px;
}

.canvas--mobile .divider--2 {
	left: 78px;
	top: 490px;
	width: 264px;
}

.canvas--mobile .deco--left-m {
	left: -100px;
	top: 133px;
	width: 371px;
	height: 675px;
	transform: scaleY(-1) rotate(174deg);
}

.canvas--mobile .deco--right-m {
	left: 488px;
	top: 199px;
	width: 311px;
	height: 632px;
	transform: rotate(3.84deg);
}

.canvas--mobile .chip--m1 {
	left: 16px;
	top: 488px;
	width: 124px;
	height: 123px;
	transform: rotate(-22.3deg);
	z-index: 4;
}

.canvas--mobile .chip--m2 {
	left: -20px;
	top: 1017px;
	width: 219px;
	height: 227px;
	transform: rotate(-81.07deg);
	filter: blur(1px);
	z-index: 4;
}

.canvas--mobile .chip--m3 {
	left: 606px;
	top: 564px;
	width: 109px;
	height: 113px;
	transform: rotate(-82.03deg);
	z-index: 4;
}

.canvas--mobile .chip--m4 {
	left: 578px;
	top: 1061px;
	width: 212px;
	height: 210px;
	transform: rotate(-26.14deg);
	z-index: 4;
}

.canvas--mobile .wheel-base {
	left: -180px;
	top: 305px;
	width: 1080px;
	height: 1080px;
}

.canvas--mobile .wheel-ring--outer {
	left: -7px;
	top: 481px;
	width: 733px;
	height: 767px;
}

.canvas--mobile .wheel-face-wrap {
	left: 40px;
	top: 533px;
	width: 641px;
	height: 660px;
}

.canvas--mobile .wheel-hub {
	left: 237px;
	top: 737px;
	width: 246px;
	height: 256px;
}

.canvas--mobile .hub-label {
	font-size: 60px;
}

.canvas--mobile .wheel-pointer {
	left: 307px;
	top: 501px;
	width: 105px;
	height: 105px;
}

.canvas--mobile .btn-spin-now--mobile {
	left: 71px;
	top: 1160px;
	width: 600px;
	height: 142px;
}

.canvas--mobile .btn-spin-now--mobile span {
	font-size: 60px;
}

.canvas--mobile .popup--mobile .popup-card {
	left: -46px;
	top: 377px;
	width: 810px;
	height: 809px;
	border-radius: 50px;
}

.canvas--mobile .popup--mobile .chip--popup1 {
	left: 14px;
	top: 75px;
	width: 244px;
	height: 244px;
	transform: rotate(22.58deg);
}

.canvas--mobile .popup--mobile .chip--popup2 {
	left: 576px;
	top: 465px;
	width: 205px;
	height: 205px;
	transform: rotate(-11.54deg);
}

.canvas--mobile .popup--win .popup-title {
	top: 286px;
	font-size: 56px;
}

.canvas--mobile .popup--win .popup-amount {
	top: 340px;
	font-size: 86px;
}

.canvas--mobile .popup--win .popup-sub {
	top: 467px;
	font-size: 42px;
}

.canvas--mobile .popup--mobile .popup-oops {
	top: 278px;
	font-size: 36px;
	line-height: 1.5;
}

.canvas--mobile .popup--mobile .popup-oops :first-child {
	font-size: 48px;
}

.canvas--mobile .popup--mobile .btn-gold-text {
	left: 121px;
	top: 486px;
	width: 566px;
	height: 230px;
}

.canvas--mobile .popup--mobile .btn-gold-text span {
	font-size: 50px;
}

.canvas--mobile .popup--win2 .win2-banner {
	left: 0;
	top: -20px;
	width: 715px;
	height: 319px;
}

.canvas--mobile .popup--win2 .win2-frame {
	left: 56px;
	top: 129px;
	width: 606px;
	height: 414px;
}

.canvas--mobile .popup--win2 .win2-congrats {
	top: 100px;
	font-size: 38px;
}

.canvas--mobile .popup--win2 .win2-line1 {
	top: 215px;
	font-size: 64px;
}

.canvas--mobile .popup--win2 .win2-line2 {
	top: 291px;
	font-size: 64px;
}

.canvas--mobile .popup--win2 .win2-line3 {
	top: 166px;
	font-size: 46px;
}

.canvas--mobile .popup--win2 .win2-line4 {
	top: 367px;
	font-size: 56px;
}

.canvas--mobile .popup--win2 .win2-coin--l {
	left: 109px;
	top: 364px;
	width: 74px;
	height: 81px;
}

.canvas--mobile .popup--win2 .win2-coin--r {
	left: 541px;
	top: 364px;
	width: 74px;
	height: 81px;
}

.canvas--mobile .popup--win2 .win2-rewards {
	top: 449px;
	font-size: 28px;
}

.canvas--mobile .popup--win2 .bonus-row--1 {
	left: 0;
	top: 450px;
	width: 100%;
	height: auto;
}

.canvas--mobile .popup--win2 .bonus-row--2 {
	left: 0;
	top: 650px;
	width: 100%;
	height: auto;
}

.canvas--mobile .popup--win2 .bonus-row--3 {
	left: 11px;
	top: 850px;
	width: 100%;
	height: auto;
}

.canvas--mobile .popup--win2 .btn-claim {
	left: 45px;
	top: 1160px;
	width: 617px;
	height: 162px;
}

.canvas--mobile .popup--win2 .btn-claim span {
	font-size: 50px;
}

/* ===================== ANIMATIONS ===================== */
@keyframes popupIn {
	from {
		opacity: 0;
		transform: scale(0.85);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.popup:not([hidden]) .popup-card,
.popup:not([hidden]) .win2-card {
	animation: popupIn 0.35s ease-out;
}

.popup:not([hidden]) .popup-overlay {
	animation: fadeIn 0.35s ease-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}
