/* style.css */
/* 通用重置 */
* {
	-webkit-tap-highlight-color: transparent;
	/* 移动端 */
	-webkit-user-select: none;
	/* 禁止长按选中文本 */
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

html {
	overflow-x: hidden;
	/* 禁止横向滚动 */
}

body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	background: #f5f4f4;
	font-family: Arial, sans-serif;
}

.bg-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	pointer-events: none;
	z-index: 5;
	transition: opacity 0.5s ease;
}

.music-btn {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	border: none;
	background: transparent;
	cursor: pointer;
	z-index: 10000;
	border-radius: 50%;
	overflow: hidden;
	/* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); */
	padding: 0;
}

.music-btn img {
	width: 100%;
	height: 100%;
	display: block;
	pointer-events: none;
	/* 避免阻止拖动 */
}



/* 对话隐藏状态：仅影响对话热点 */
.dialog-hidden {
	opacity: 0 !important;
	pointer-events: none !important;
	transform: translateY(10px);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

/* 对话气泡基础样式 */
.bubble {
	background: rgba(255, 255, 255, 0.0);
	border: 0px solid #333;
	border-radius: 12px;
	padding: 8px 0px;
	font-size: 14px;
	line-height: 1.4;
	max-width: 100%;
	/* box-shadow: 0 4px 12px rgba(0,0,0,0.15); */
	animation: fadeInBubble 0.8s ease-out;
	position: relative;
	/* 新增：确保伪元素能相对气泡定位 */
}

/* 气泡倒三角效果（保持现有样式，补充边框颜色匹配） */
/* .bubble::after { */
.bubbleafter {
	content: "";
	position: absolute;
	left: 10px;
	/* 水平位置（左对齐10px） */
	bottom: -12px;
	/* 负值让三角完全显示在气泡外部（抵消边框宽度2px） */
	border-width: 10px;
	border-style: solid;
	/* 边框颜色与气泡背景+边框匹配（白色背景+深灰边框） */
	border-color: #fff #333 transparent transparent;
	transform: rotate(-45deg);
	/* 旋转45度形成倒三角 */
	box-shadow: -2px 2px 2px rgba(0, 0, 0, 0.1);
	/* 增加阴影增强立体感 */
}

/* 对话热点初始状态（JS控制显示） */
.hotspot.bubble {
	opacity: 0;
	pointer-events: none;
}

/* 高亮热点确保在蒙版之上 */
.hotspot.highlight,
.hotspot.hotspot-glow {
	z-index: 100;
	/* 高于蒙版（z-index=5） */
}

.page-container {
	position: relative;
	width: 100%;
	display: none;
}

.bg-section {
	width: 100%;
	position: relative;
	overflow-x: hidden;
}

.bg-section img {
	display: block;
	width: 100%;
	height: auto;
}

/* 热点基础样式 */
.hotspot {
	position: absolute;
	cursor: pointer;
	z-index: 10;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
	transition: all 0.25s ease;
	overflow: hidden;
}

.hotspot:hover {
	transform: translate(-50%, -50%);
	/* 移除冗余的scale(1)（默认值） */
	opacity: 1;
}

.hotspot span {
	font-size: 1.2rem;
	font-weight: 600;
}

.hotspot img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hotspot-button {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

/* 热点显隐状态（合并重复过渡属性） */
.hotspot.hidden {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease, visibility 0.5s;
}

.hotspot.visible {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transition: opacity 1s ease, visibility 1s;
}

/* 高亮样式 */
.highlight {
	z-index: 20;
	animation: glowPulse var(--glow-speed, 2s) infinite ease-in-out;
	border-radius: 200px;
}

.highlight img {
	opacity: 0.8;
}

/* 动态效果基础类 */
.effect-pulse {
	animation: pulse var(--speed, 2s) infinite ease-in-out;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}

	50% {
		transform: scale(1.1);
		opacity: 1;
	}

	100% {
		transform: scale(1);
		opacity: 0.8;
	}
}

.effect-flicker {
	animation: flicker var(--speed, 1.5s) infinite ease-in-out;
}

@keyframes flicker {

	0%,
	100% {
		opacity: 0.9;
	}

	30% {
		opacity: 0.6;
	}

	60% {
		opacity: 1;
	}

	80% {
		opacity: 0.7;
	}
}

.effect-expand {
	animation: expand var(--speed, 2s) infinite ease-in-out;
}

@keyframes expand {
	0% {
		transform: scale(1);
		box-shadow: 0 0 5px var(--glow-color, cyan);
	}

	50% {
		transform: scale(1.2);
		box-shadow: 0 0 30px var(--glow-color, cyan);
	}

	100% {
		transform: scale(1);
		box-shadow: 0 0 5px var(--glow-color, cyan);
	}
}

/* Zzz 睡觉动画 */
@keyframes zzzGrow {
	0% {
		opacity: 0;
		transform: rotate(-20deg) scale(0.3) translateY(10px);
	}

	50% {
		opacity: 0.8;
		transform: rotate(-20deg) scale(1.3) translateY(0);
	}

	60% {
		opacity: 1;
		transform: rotate(-20deg) scale(1.3) translateY(0px);
	}

	100% {
		opacity: 0;
		transform: rotate(-20deg) scale(0.3) translateY(-20px);
	}
}

.effect-zzzGrow {
	animation: zzzGrow 3s ease-in-out infinite;
	display: inline-block;
	color: #000;
	font-weight: 400;
}

/* 热点图片由小变大 */
@keyframes growIn {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.3);
	}

	60% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.1);
	}

	100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.0);
	}
}

.effect-growIn {
	animation: growIn 3s ease-out forwards;
	/* 等待2秒后开始动画 */
}

/* 热点图片由小变大 */
@keyframes clickGrowIn {
	0% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}

	100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

.effect-clickGrowIn {
	animation: clickGrowIn 0 ease-out forwards;
	/* 等待2秒后开始动画 */
}

/* 热点图片由小变大 */
@keyframes imgwallGrowIn {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.3);
		display: block;
	}

	60% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.1);
		display: block;
	}

	100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.0);
		display: block;
	}
}

.effect-imgwallGrowIn {
	animation: imgwallGrowIn 3s ease-out forwards;
	animation-delay: 2s;
	opacity: 0;
	/* 初始完全透明 */
	visibility: hidden;
	/* 初始隐藏（不占据空间） */
	animation-fill-mode: forwards;
	/* 动画结束后保持最后一帧状态 */
}

/* 热点图片由大变小 */
@keyframes growOut {
	0% {
		opacity: 1;
		visibility: visible;
	}

	100% {
		opacity: 0;
		visibility: hidden;
	}
}

.effect-growOut {
	animation-name: growOut;
	animation-duration: 3s;
	animation-timing-function: ease-in;
	animation-delay: 2s;
	animation-fill-mode: forwards;
	/* 关键：停在最后一帧 */
}

/* 无语飘动动画 @#..&*#! */
@keyframes confusedFloat {
	0% {
		opacity: 0;
		transform: translateX(50%) scale(0.9);
	}

	25% {
		opacity: 1;
		transform: translateX(25%) rotate(-5deg) scale(1);
	}

	50% {
		transform: translateX(0%) rotate(5deg) scale(1.1);
	}

	75% {
		opacity: 1;
		transform: translateX(-25%) rotate(-3deg) scale(1);
	}

	100% {
		opacity: 0;
		transform: translateX(-50%) scale(0.9);
	}
}

.effect-confusedFloat {
	animation: confusedFloat 1.5s linear infinite;
	display: inline-block;
	font-weight: bold;
	color: #000;
	font-size: 36px;
	white-space: nowrap;
}

/* 太空漂浮（上下轻微浮动，可通过变量控制幅度） */
@keyframes spaceFloat {
	0% {
		transform: translate(-50%, -50%) translateY(0);
	}

	50% {
		transform: translate(-50%, -50%) translateY(var(--float-amp, -5px));
	}

	100% {
		transform: translate(-50%, -50%) translateY(0);
	}
}

.effect-spaceFloat {
	animation: spaceFloat 6s ease-in-out infinite;
	display: inline-block;
}

/* 太空漂浮（上下轻微浮动，可通过变量控制幅度） */
@keyframes peopleSpaceFloat {
	0% {
		transform: translate(-50%, -50%) translateY(0);
	}

	50% {
		transform: translate(-50%, -50%) translateY(var(--float-amp, -20px));
	}

	100% {
		transform: translate(-50%, -50%) translateY(0);
	}
}

.effect-peopleSpaceFloat {
	animation: peopleSpaceFloat 4s ease-in-out infinite;
	display: inline-block;
}

/* 星星闪烁（大小和透明度变化） */
@keyframes starTwinkle {

	0%,
	100% {
		opacity: 0.3;
		transform: scale(0.8);
	}

	50% {
		opacity: 1;
		transform: scale(1.2);
	}
}

.effect-starTwinkle {
	animation: starTwinkle 1.5s ease-in-out infinite;
	display: inline-block;
	color: gold;
	/* 星星效果 */
	font-size: 20px;
}

/* 卫星从左向右飘动 */
@keyframes satelliteFly {
	0% {
		transform: translate(-130%, 0);
		opacity: 1;
	}

	100% {
		transform: translateX(-120%, 0);
		opacity: 1;
	}
}

.effect-satelliteFly {
	/* forwards停留到最后一帧, infinite循环播放 */
	animation: satelliteFly 6s ease-out forwards;
	display: inline-block;
}

/* 闪烁放大 */
@keyframes flashScale {
	0% {
		opacity: 1;
		transform: skew(-10deg, -5deg) scale(1);
	}

	25% {
		opacity: 0.6;
		transform: skew(-10deg, -5deg) scale(1.2);
	}

	50% {
		opacity: 1;
		transform: skew(-10deg, -5deg) scale(1);
	}

	75% {
		opacity: 0.6;
		transform: skew(-10deg, -5deg) scale(1.2);
	}

	100% {
		opacity: 1;
		transform: skew(-10deg, -5deg) scale(1);
	}
}

.effect-flashScale {
	text-align: justify;
	text-align-last: justify;
	/*兼容ie*/
	text-justify: distribute-all-lines;
	animation: flashScale 1.2s ease-in-out infinite;
	display: inline-block;
	font-size: 36px;
}

/* 闪光扩散（水波效果） */
@keyframes rippleFlash {
	0% {
		opacity: 0.3;
		transform: skew(-10deg, -5deg) scale(0.5);
		box-shadow: 0 0 5px rgba(182, 223, 230, 0.8);
		background-color: rgba(182, 223, 230, 0.3);
	}

	50% {
		opacity: 0.8;
		transform: skew(-10deg, -5deg) scale(1.2);
		box-shadow: 0 0 20px rgba(182, 223, 230, 0.5);
		background-color: rgba(182, 223, 230, 0.1);
	}

	100% {
		opacity: 1;
		transform: skew(-10deg, -5deg) scale(1.5);
		box-shadow: 0 0 40px rgba(182, 223, 230, 1);
		background-color: rgba(182, 223, 230, 0.5);
	}
}

.effect-rippleFlash {
	animation: rippleFlash 1.5s ease-in-out infinite;
	display: inline-block;
	border-radius: 50%;
	font-size: 30px;
	text-align: justify;
	text-align-last: justify;
	/*兼容ie*/
	text-justify: distribute-all-lines;
	padding-left: 30px;
	padding-right: 30px;
}

/* 屏幕发光效果 */
@keyframes screenGlow {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.screen-glow {
	position: fixed;
	inset: 0;
	pointer-events: none;
	/* 不影响交互 */
	z-index: 9999;
	animation: screenGlow 1.5s ease-in-out infinite;
}

/* 火箭向上飞 */
@keyframes rocketLaunch {
	from {
		transform: translateY(0);
		opacity: 1;
	}

	to {
		transform: translateY(-800px);
		opacity: 0;
	}
}

.effect-rocketLaunch {
	animation: rocketLaunch 3s linear forwards;
}

/* 云向左右散开 */
@keyframes cloudLeft {
	from {
		transform: translate(-50%, -50%) translateX(0);
		opacity: 1;
	}

	to {
		transform: translate(-50%, -50%) translateX(-300px);
		opacity: 0;
	}
}

.effect-cloudLeft {
	animation: cloudLeft 1.5s ease-out forwards;
}

@keyframes cloudRight {
	from {
		transform: translate(-50%, -50%) translateX(0);
		opacity: 1;
	}

	to {
		transform: translate(-50%, -50%) translateX(200px);
		opacity: 0;
	}
}

.effect-cloudRight {
	animation: cloudRight 1.5s ease-out forwards;
}

/* 苹果掉落 */
@keyframes fallDown {
	0% {
		transform: translateY(0) scale(1);
		opacity: 1;
	}

	60% {
		transform: translateY(550px) scale(1.05);
		opacity: 1;
	}

	80% {
		transform: translateY(560px) scale(0.95);
		opacity: 1;
	}

	100% {
		transform: translateY(550px) scale(1);
		opacity: 1;
	}
}

.effect-fallDown {
	animation: fallDown 2s ease-in infinite;
}

/* 云朵左右轻轻飘动 */
@keyframes cloudFloat {
	0% {
		transform: translate(-50%, -50%) translateY(0);
		opacity: 1;
	}

	50% {
		transform: translate(-50%, -50%) translateY(var(--float-amp, -10px));
		opacity: 1;
	}

	100% {
		transform: translate(-50%, -50%) translateY(0);
		opacity: 1;
	}
}

.effect-cloudFloat {
	animation-name: cloudFloat;
	animation-duration: 6s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}

/* 打印机光标风格 */
.typing-cursor {
	display: inline-block;
	width: 2px;
	height: 1em;
	font-size: 2rem;
	font-weight: 500;
	background: black;
	margin-left: 2px;
	animation: typing 1s step-end infinite;
	vertical-align: bottom;
	text-align: left;
}

.effect-typing span {
	width: 100%;
	text-align: left;
	align-content: flex-start;
	justify-content: left;
	justify-self: left;
}

@keyframes typing {

	from,
	to {
		opacity: 0;
		font-weight: 500;
		font-size: 2rem;
	}

	50% {
		opacity: 1;
		font-weight: 500;
		font-size: 2rem;
	}
}

/* 呼吸效果 */
@keyframes glowPulse {
	0% {
		box-shadow: 0 0px 5px var(--glow-color, rgba(245, 202, 136, 0.7));
		/* background: rgba(245, 202, 136, 0.45); */
	}

	50% {
		box-shadow: 0 0 var(--glow-size, 20px) var(--glow-color, rgba(245, 202, 136, 1));
		/* background: rgba(245, 202, 136, 0.371); */
	}

	100% {
		box-shadow: 0 0 5px var(--glow-color, rgba(245, 202, 136, 0.7));
		/* background: rgba(245, 202, 136, 0.45); */
	}
}

/* 灯光摇曳（不规则 flicker） */
@keyframes glowFlicker {
	0% {
		box-shadow: 0 0 8px var(--glow-color);
	}

	20% {
		box-shadow: 0 0 14px var(--glow-color);
	}

	40% {
		box-shadow: 0 0 10px var(--glow-color);
	}

	60% {
		box-shadow: 0 0 18px var(--glow-color);
	}

	80% {
		box-shadow: 0 0 12px var(--glow-color);
	}

	100% {
		box-shadow: 0 0 15px var(--glow-color);
	}
}

/* 扩散-收缩（更像脉冲心跳） */
@keyframes glowExpandContract {
	0% {
		box-shadow: 0 0 5px var(--glow-color);
		transform: scale(1);
	}

	40% {
		box-shadow: 0 0 var(--glow-size, 30px) var(--glow-color);
		transform: scale(1.1);
	}

	70% {
		box-shadow: 0 0 10px var(--glow-color);
		transform: scale(0.95);
	}

	100% {
		box-shadow: 0 0 5px var(--glow-color);
		transform: scale(1);
	}
}

/* 点击后效果 */
@keyframes explode {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(2);
		opacity: 0.8;
	}

	100% {
		transform: scale(0);
		opacity: 0;
	}
}

.effect-explode {
	animation: explode 0.6s forwards;
}

/* 抖动效果 */
@keyframes shake {

	0%,
	100% {
		transform: rotate(35deg) translate(0px, 0px);
	}

	20%,
	60% {
		transform: rotate(35deg) translate(3px, 3px);
	}

	40%,
	80% {
		transform: rotate(35deg) translate(-3px, -3px);
	}
}

.effect-shake {
	animation: shake 0.5s infinite;
	font-size: 40px;
	font-weight: 500;
}

@keyframes zoomIn {
	from {
		transform: scale(0.5);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

.effect-zoomIn {
	animation: zoomIn 0.8s ease-out;
}

@keyframes growShrink {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.3);
	}
}

.effect-growShrink {
	animation: growShrink 0.6s;
}

@keyframes slideSubtitle {
	from {
		transform: translateX(100%);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 1;
	}
}

.effect-slideSubtitle {
	animation: slideSubtitle 1s ease-out;
}

/* 气泡渐入动画 */
@keyframes fadeInBubble {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hotspot.transparent {
	background: rgba(252, 196, 37, 0.2);
	border: 0px dashed #fff;
}

.hotspot-glow {
	position: relative;
	z-index: 10;
}

.hotspot-glow::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 200%;
	height: 200%;
	border-radius: 50%;
	background: radial-gradient(circle, var(--glow-color, rgba(255, 255, 255, 0.6)) 0%, transparent 70%);
	opacity: 0.8;
	pointer-events: none;
	transition: all 0.4s ease-in-out;
}

/* 视频/音频层 */
.media-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999;
}

.media-overlay video,
.media-overlay audio {
	max-width: 90%;
	max-height: 80%;
}

.media-overlay .close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 28px;
	color: #fff;
	cursor: pointer;
}

/* 开屏界面 */
.intro-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	text-align: center;
	background-image: url(../img/intro_image_800.jpg);
	background-size: cover;
	/* 等比缩放，最短边刚好撑满，多余裁掉 */
	background-position: center center;
	background-repeat: no-repeat;
	/* background-attachment: fixed; */
	/* 视口滚动时背景不动（可选） */
}

.intro-screen h1 {
	margin-bottom: 20px;
}

.intro-screen button {
	border: none;
	padding: 12px 24px;
	font-size: 18px;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s ease;
}

@keyframes fadeInFromTop {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.intro-img-reveal {
	animation: fadeInFromTop 2s cubic-bezier(0.75, 0.76, 0.98, 1.22) forwards;
}

/* 光效动画模式 */
.glow-pulse {
	animation: glowPulse var(--glow-speed, 2s) infinite ease-in-out;
}

.glow-flicker {
	animation: blink 100ms infinite;
	filter: blur(1.5em);
	/* animation: glowFlicker var(--glow-speed, 1.5s) infinite ease-in-out; */
}

/* 为光晕增加闪烁效果 */
@keyframes blink {
	to {
		filter: blur(16em) opacity(1);
	}
}

.glow-expand-contract {
	animation: glowExpandContract var(--glow-speed, 2s) infinite ease-in-out;
}

/* 对话框容器 */
.dialog-container {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#fullscreenImage {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 10000;
}

#fullscreenImage img {
	max-width: 90%;
	max-height: 90%;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
	border-radius: 12px;
}

#fullscreenOverlay {
	position: absolute;
	top: 9.7%;
	left: 55%;
	width: 100%;
	transform: translateX(-50%);
	z-index: 10001;

	display: none;
	animation: fadeInOut 1.5s ease infinite;
}

#fullscreenOverlay img {
	max-width: "100%";
	/* 可调整 */
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInOut {
	0% {
		opacity: 0.5;
	}

	10% {
		opacity: 0.8;
	}

	60% {
		opacity: 0.9;
	}

	100% {
		opacity: 0.5;
	}
}


/* 光芒四射效果 */
@keyframes radiateGlow {
	0% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
		box-shadow: 0 0 10px rgba(255, 223, 100, 1),
			0 0 10px rgba(255, 200, 80, 0.6),
			0 0 20px rgba(255, 180, 60, 0.4);
	}

	50% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
		box-shadow: 0 0 30px rgba(255, 223, 100, 1),
			0 0 30px rgba(255, 200, 80, 0.8),
			0 0 40px rgba(255, 180, 60, 0.6);
	}

	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
		box-shadow: 0 0 10px rgba(255, 223, 100, 1),
			0 0 10px rgba(255, 200, 80, 0.7),
			0 0 20px rgba(255, 180, 60, 0.4);
	}
}

.effect-radiateGlow {
	animation: radiateGlow 1.5s ease-in-out infinite;
	/* border-radius: 50%; */
}

/* 黎明效果：由夜到昼的渐变 */
@keyframes dawnTransition {
	0% {
		background: radial-gradient(circle at 50% 70%, #0a0a2a 0%, #000015 80%);
		filter: brightness(0.6);
		opacity: 0.9;
	}

	30% {
		background: radial-gradient(circle at 50% 70%, #2b1a55 0%, #0a0a2a 80%);
		filter: brightness(0.8);
	}

	60% {
		background: radial-gradient(circle at 50% 70%, #cff4ff 0%, #2b1a55 80%);
		filter: brightness(1);
	}

	100% {
		background: radial-gradient(circle at 50% 70%, #ffffff 0%, #cff4ff 80%);
		filter: brightness(1.2);
		opacity: 0;
	}
}

.effect-dawn {
	animation: dawnTransition 6s ease-in-out forwards;
	opacity: 0;
}