@charset "UTF-8";

/* =========================================
   1. Fonts & Basic Resets
   ========================================= */
@font-face {
	font-family: 'SweiCurveSansCJKtc-Regular';
	src: url(https://cdn.jsdelivr.net/gh/max32002/swei-curve-sans@2.129/WebFont/CJK%20TC/SweiCurveSansCJKtc-Regular.woff2) format("woff2"),
		url(https://cdn.jsdelivr.net/gh/max32002/swei-curve-sans@2.129/WebFont/CJK%20TC/SweiCurveSansCJKtc-Regular.woff) format("woff");
}

body {
	font-family: "Microsoft JhengHei", sans-serif;
	background-color: #6a3aff;
	background-image: url(../images/bg_space.webp);
	background-size: 100%;
	background-attachment: fixed;
	background-position: center;
	color: #333;
}

img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

/* RWD 圖片切換工具 */
.desktop {
	display: block;
}

.mobile {
	display: none;
}

/* =========================================
   2. Layout Containers
   ========================================= */
.top-without-brand {
	overflow-x: hidden;
}

header {
	position: relative;
	z-index: 10;
	background: transparent;
	margin-bottom: 0 !important;
}

header img {
	position: relative;
	z-index: 10;
}

.main-section {
	padding-bottom: 3rem;
	position: relative;
	z-index: 20;
}

.eventContainer {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 2;
}

.section-header-img {
	text-align: center;
	position: relative;
	z-index: 3;
}

.section-header-img img {
	width: 100%;
	margin: 0 auto;
}

/* 紫色立體裝置外框 */
.purple-device-box {
	background: #46149a;
	background-image: url(../images/section_bg.webp);
	background-size: contain;
	border-radius: 40px;
	padding: 80px;
	border: 20px solid #7d4bd8;
	box-shadow:
		0 0 0 50px #5c2ba5,
		inset 0 0 40px rgba(0, 0, 0, 0.5),
		0 20px 40px rgba(0, 0, 0, 0.4);
	margin-bottom: 40px;
	position: relative;
}

.clinic-top-visual {
	text-align: center;
	margin-bottom: 30px;
}

.clinic-top-visual img {
	width: 100%;
	margin: -60px auto -120px;
}

/* =========================================
   3. Grid & Cards
   ========================================= */
.grid-container {
	display: grid;
	gap: 15px;
	width: 100%;
}

.col-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gridBox {
	position: relative;
	transition: transform 0.2s ease;
}

.gridBox:hover {
	transform: translateY(-8px);
}

.card-neon img {
	width: 100%;
}

.card-product {
	background: #fff;
	border-radius: 2.5vw;
	overflow: hidden;
	text-align: center;
	padding-bottom: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-product img {
	width: 100%;
}

.prod-text {
	padding: 10px 10px 0;
}

.prod-text h3 {
	color: #000;
	font-weight: bold;
	font-size: 1.5rem;
	margin-bottom: 8px;
}

.prod-text p {
	color: #666;
	font-size: 0.95rem;
	font-family: Verdana, sans-serif;
}

/* =========================================
   4. Parallax Planets
   ========================================= */
.parallax-layer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: -1;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.8s ease;
}

.parallax-layer.visible {
	opacity: 1;
}

.planet-item {
	position: absolute;
	opacity: 0.9;
	display: none;
}

/* =========================================
   5. ToTop Button
   ========================================= */
.toTop-arrow {
	width: 50px;
	height: 50px;
	border: 0;
	border-radius: 50%;
	opacity: 0.8;
	background: #222;
	color: #fff;
	cursor: pointer;
	position: fixed;
	right: 10px;
	bottom: 10px;
	padding-top: 10px;
	z-index: 999;
	font-size: 12px;
	font-weight: bold;
}

.toTop-arrow::before,
.toTop-arrow::after {
	width: 8px;
	height: 2px;
	top: 15px;
	background: #fff;
	position: absolute;
	content: "";
}

.toTop-arrow::before {
	transform: rotate(-45deg);
	left: 18px;
}

.toTop-arrow::after {
	transform: rotate(45deg);
	right: 18px;
}

/* =========================================
   6. Magic Card Diagnosis Modal
   ========================================= */
.diagnosis-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(20px);
	z-index: 9999;
	display: none;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.diagnosis-modal.active {
	display: flex;
}

.diagnosis-container {
	width: 100%;
	max-width: 850px;
	perspective: 1000px;
	opacity: 0;
	transform: scale(0.9) translateY(20px);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.diagnosis-modal.active .diagnosis-container {
	opacity: 1;
	transform: scale(1) translateY(0);
}

.magic-card {
	position: relative;
	border: 4px double #4deeea;
	border-radius: 12px;
	padding: 40px 50px;
	color: #fff;
	box-shadow: 0 0 30px rgba(77, 238, 234, 0.15);
	background-color: rgba(0, 0, 0, 0.85);
	overflow: hidden;
}

.magic-card::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 6px;
	right: 6px;
	bottom: 6px;
	border: 1px solid rgba(77, 238, 234, 0.3);
	border-radius: 6px;
	pointer-events: none;
}

/* Decorations */
.deco-star {
	position: absolute;
	filter: drop-shadow(0 0 5px #4deeea);
	animation: starPulse 3s infinite alternate;
}

.deco-star.top-left {
	top: 15px;
	left: 15px;
}

.deco-star.bottom-right {
	bottom: 15px;
	right: 15px;
}

.magic-close-btn {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 2rem;
	color: #4deeea;
	cursor: pointer;
	line-height: 1;
	z-index: 10;
	transition: transform 0.3s;
}

.magic-close-btn:hover {
	transform: rotate(90deg) scale(1.1);
	color: #fff;
}

/* Header */
.magic-header {
	text-align: center;
	margin-bottom: 30px;
}

.magic-title-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.magic-title-wrapper h2 {
	font-family: "Microsoft JhengHei", serif;
	font-size: 2.5rem;
	color: #4deeea;
	letter-spacing: 2px;
	margin: 0;
	text-shadow: 0 0 10px rgba(77, 238, 234, 0.5);
}

.moon-icon {
	font-size: 1.5rem;
	color: #2a8a8a;
}

.magic-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 5px;
	color: #4deeea;
}

.magic-divider::before,
.magic-divider::after {
	content: "";
	display: block;
	width: 80px;
	height: 1px;
	background: linear-gradient(90deg, transparent, #4deeea);
}

.magic-divider::after {
	background: linear-gradient(90deg, #4deeea, transparent);
}

.diamond-dot {
	margin: 0 10px;
	font-size: 0.8rem;
}

/* Body Grid */
.body-scroll-mask {
	display: contents;
}

.magic-body {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
	align-items: center;
	margin-bottom: 30px;
}

.magic-label {
	color: #4deeea;
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 10px;
	font-family: "Microsoft JhengHei", serif;
}

.magic-label.inline {
	display: inline-block;
	margin-right: 15px;
}

.magic-tags {
	color: #fff;
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 10px;
}

.magic-text {
	color: #ccc;
	line-height: 1.6;
	font-size: 0.95rem;
}

/* Center Column */
.col-center {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 260px;
}

.magic-rabbit-img {
	width: 250px;
	position: relative;
	z-index: 2;
	animation: magicFloatGlow 4s ease-in-out infinite;
}

.magic-diamond-bg {
	position: absolute;
	width: 160px;
	height: 160px;
	border: 1px solid rgba(77, 238, 234, 0.4);
	transform: rotate(45deg);
	z-index: 1;
	box-shadow: 0 0 20px rgba(77, 238, 234, 0.1) inset;
}

.magic-rays {
	position: absolute;
	width: 240px;
	height: 240px;
	background: radial-gradient(circle, rgba(77, 238, 234, 0.1) 0%, transparent 70%);
	z-index: 0;
}

/* Right Column */
.magic-list {
	padding-left: 0;
	list-style: none;
	counter-reset: step-counter;
}

.magic-list li {
	color: #fff;
	margin-bottom: 12px;
	line-height: 1.5;
	font-size: 0.8rem;
	position: relative;
	padding-left: 70px;
}

.magic-list-steps li {
	counter-increment: step-counter;
}

.magic-list-steps li::before {
	content: "Step " counter(step-counter);
	color: #4deeea;
	position: absolute;
	left: 0;
	font-weight: bold;
	font-size: 0.85rem;
	background: rgba(77, 238, 234, 0.15);
	padding: 2px 8px;
	border-radius: 12px;
	border: 1px solid rgba(77, 238, 234, 0.3);
}

/* Footer */
.magic-footer {
	position: relative;
}

.footer-line {
	height: 1px;
	background: #333;
	border-bottom: 1px solid #444;
	margin-bottom: 20px;
}

.footer-flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
}

.footer-info {
	flex: 1;
}

.gift-block {
	display: inline-block;
	color: #ff4d4d;
	font-size: 1.1rem;
	font-weight: bold;
	margin-bottom: 5px;
}

.gift-text {
	color: #fff;
	margin-left: 5px;
}

.gift-icon {
	color: #ff4d4d;
}

.gift-desc {
	letter-spacing: 0.1px;
	color: #fff;
	font-size: 1rem;
	margin: 0;
	line-height: 1.5;
}

.gift-desc span {
	color: #aaa;
}

.btn-cyan-gradient {
	display: inline-block;
	background: #4deeea;
	color: #000;
	font-weight: 800;
	padding: 12px 35px;
	border-radius: 50px;
	text-transform: uppercase;
	font-size: 1rem;
	letter-spacing: 1px;
	transition: all 0.3s;
	white-space: nowrap;
}

.btn-cyan-gradient:hover {
	transform: translateY(-3px);
}

/* Simple States (Login & Claimed) */
.modal-view {
	display: block;
}

.state-simple {
	text-align: center;
	padding: 20px 0;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.simple-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.msg-large {
	font-size: 2.5rem;
	color: #fff;
	letter-spacing: 2px;
	margin-bottom: 10px;
	font-family: "SweiCurveSansCJKtc-Regular", sans-serif;
}

.msg-sub {
	font-size: 1.2rem;
	color: #bbb;
	line-height: 1.6;
	letter-spacing: 1px;
}

.action-area {
	margin-top: 30px;
}

.btn-large {
	padding: 15px 50px;
	font-size: 1.2rem;
}

.scroll-hint-mobile {
	display: none;
}

/* =========================================
   7. KV (Key Visual) - 2026 Version
   ========================================= */
.kv-wrapper {
	position: relative;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	aspect-ratio: 1920 / 900;
	overflow: hidden;
}

.kv-item {
	position: absolute;
	display: block;
	height: auto;
	pointer-events: none;
}

/* Title & Subtitle */
.title-text {
	top: 15%;
	left: 50%;
	width: 35%;
	z-index: 10;
	opacity: 1;
	animation: titleFadeIn 3s ease-out infinite;
}

.subtitle-text {
	top: 52%;
	left: 50%;
	width: 22%;
	z-index: 25;
	animation: subFadeIn 1s ease-out forwards;
}

.main-character {
	top: 12%;
	right: 16%;
	width: 33%;
	z-index: 30;
}

/* Scrolls */
.scroll-left {
	top: 8%;
	left: 10%;
	width: 5%;
	z-index: 25;
	animation: kvSwing 4s ease-in-out infinite;
}

.scroll-right {
	top: 8%;
	right: 10%;
	width: 5%;
	z-index: 30;
	animation: kvSwing 5s ease-in-out infinite reverse;
}

/* Background Clouds */
.cloud-left {
	top: -2%;
	left: 0;
	width: 12%;
	z-index: 1;
	animation: kvFloat 6s ease-in-out infinite;
}

.cloud-right {
	top: -2%;
	right: 0;
	width: 13%;
	z-index: 1;
	animation: kvFloat 7s ease-in-out infinite;
}

.cloud-center {
	top: -1%;
	left: 33%;
	width: 18%;
	z-index: 0;
	opacity: 1;
}

/* Front Clouds */
.cloud-front-left {
	bottom: 0;
	left: 0;
	width: 20%;
	z-index: 20;
	animation: kvFloat 8s ease-in-out infinite reverse;
}

.cloud-front-main {
	bottom: 4%;
	right: 0;
	width: 58%;
	z-index: 19;
	animation: kvFloat 9s ease-in-out infinite reverse;
}

.cloud-front-circle {
	bottom: 15%;
	left: 30%;
	width: 3%;
	z-index: 21;
	animation: kvFloat 3.6s ease-in-out infinite reverse;
}

/* Meteors & Planets */
.meteor-top {
	top: 0;
	left: 50%;
	width: 19%;
	z-index: 0;
}

.meteor-left {
	top: 48%;
	left: 8%;
	width: 16%;
	z-index: 2;
}

.planet-top-ring {
	top: -5%;
	left: 18%;
	width: 12%;
	z-index: 2;
	animation: kvFloat 5s ease-in-out infinite;
}

.planet-left-ring {
	top: 32%;
	left: 1.5%;
	width: 7.5%;
	z-index: 2;
	animation: kvFloat 4s ease-in-out infinite;
}

.planet-right-pink {
	bottom: 25%;
	right: 1%;
	width: 11.5%;
	z-index: 22;
	animation: kvFloat 6s ease-in-out infinite reverse;
}

.purple-planet-b {
	top: 30%;
	right: 36.5%;
	width: 6%;
	z-index: 4;
	animation: kvFloat 4s ease-in-out infinite;
}

.purple-planet-s {
	top: 17%;
	right: 3%;
	width: 2.5%;
	z-index: 4;
	animation: kvFloat 12s ease-in-out infinite;
}

.floating-note {
	top: 28%;
	right: 16%;
	width: 9%;
	z-index: 25;
	animation: kvSwing 3s ease-in-out infinite;
}

/* =========================================
   8. Animations
   ========================================= */
@keyframes starPulse {
	from {
		opacity: 0.7;
		transform: scale(0.9);
	}

	to {
		opacity: 1;
		transform: scale(1.1);
	}
}

@keyframes magicFloatGlow {

	0%,
	100% {
		transform: translateY(0);
		filter: drop-shadow(0 0 10px rgba(77, 238, 234, 0.6));
	}

	50% {
		transform: translateY(-15px);
		filter: drop-shadow(0 0 35px rgba(123, 246, 255, 0.9));
	}
}

@keyframes kvFloat {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}
}

@keyframes kvSwing {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-5px);
	}
}

@keyframes titleFadeIn {
	/* --- 動作階段 (0% ~ 50%) --- */

	/* 0% 開始 */
	0% {
		transform: translateX(-85%) scale(1, 1);
	}

	/* 原本的 30% -> 現在縮短一半變成 15% */
	15% {
		transform: translateX(-85%) scale(1.05, 0.95) translateY(5px);
	}

	/* 原本的 50% -> 現在縮短一半變成 25% */
	25% {
		transform: translateX(-85%) scale(0.95, 1.05) translateY(-10px);
	}

	/* 原本的 75% -> 現在縮短一半變成 37.5% */
	37.5% {
		transform: translateX(-85%) scale(1.02, 0.98) translateY(2px);
	}

	/* --- 暫停階段 (50% ~ 100%) --- */

	/* 50% 動作結束，回到原點 */
	50% {
		transform: translateX(-85%) scale(1, 1);
	}

	/* 100% 維持原點不動 (這裡是暫停時間) */
	100% {
		transform: translateX(-85%) scale(1, 1);
	}
}

@keyframes subFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px) translateX(-110%);
	}

	to {
		opacity: 1;
		transform: translateY(0) translateX(-110%);
	}
}

@keyframes bounceArrow {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}

/* =========================================
   9. Responsive Design
   ========================================= */

/* Desktop - Show Planets */
@media (min-width: 769px) {
	.planet-item {
		display: block;
	}

	.p1 {
		top: 35%;
		left: -2%;
		width: 180px;
		filter: drop-shadow(0 0 15px rgba(106, 58, 255, 0.4));
	}

	.p2 {
		top: 25%;
		right: 2%;
		width: 100px;
		opacity: 0.9;
	}

	.p3 {
		top: 65%;
		right: -8%;
		width: 280px;
		transform: rotate(-15deg);
		filter: brightness(1.1);
	}
}

/* Tablet */
@media (max-width: 1024px) {
	.purple-device-box {
		padding: 30px;
		border-radius: 30px;
	}

	.grid-container {
		gap: 1.5vw;
	}

	.col-4 {
		grid-template-columns: repeat(3, 1fr);
	}

	.clinic-top-visual img {
		width: 100%;
		margin: 0 auto -12vw;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.desktop {
		display: none;
	}

	.mobile {
		display: block;
	}

	.eventContainer {
		padding: 0 30px;
	}

	.main-section {
		padding: 0;
	}

	.section-header-img {
		margin-bottom: -15px;
	}

	.section-header-img img {
		width: 90%;
	}

	.purple-device-box {
		padding: 20px 15px;
		border-width: 5px;
		border-radius: 20px;
		box-shadow: 0 0 0 15px #5c2ba5, inset 0 0 20px rgba(0, 0, 0, 0.5), 0 10px 20px rgba(0, 0, 0, 0.4);
	}

	.prod-text h3 {
		font-size: 1rem;
	}

	.prod-text p {
		font-size: 0.8rem;
	}

	.planet-item {
		display: none;
	}

	.toTop-arrow {
		bottom: 20%;
	}

	.card-product {
		border-radius: 3vw;
	}

	/* Modal Adjustments */
	.diagnosis-modal {
		align-items: center;
		padding: 15px;
		overflow: hidden;
	}

	.magic-card {
		width: 100%;
		height: 88vh;
		max-height: 88vh;
		padding: 20px;
		border-width: 3px;
		border-radius: 16px;
		display: flex;
		flex-direction: column;
		overflow: hidden;
		box-sizing: border-box;
		transform: none;
	}

	.deco-star {
		display: none;
	}

	.magic-close-btn {
		top: 12px;
		right: 15px;
		font-size: 1.8rem;
		width: 35px;
		height: 35px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(77, 238, 234, 0.1);
		border-radius: 50%;
	}

	.modal-view {
		display: flex;
		flex-direction: column;
		flex: 1;
		min-height: 0;
		width: 100%;
		overflow: hidden;
	}

	.magic-header {
		flex-shrink: 0;
		margin-bottom: 0;
		padding-bottom: 15px;
		border-bottom: 1px solid rgba(77, 238, 234, 0.2);
	}

	.magic-title-wrapper h2 {
		font-size: 1.4rem;
		letter-spacing: 1px;
	}

	.moon-icon {
		font-size: 1.2rem;
	}

	.magic-divider {
		margin-top: 10px;
	}

	/* Scrollable Body with Gradient Masks */
	.body-scroll-mask {
		flex: 1;
		display: flex;
		flex-direction: column;
		min-height: 0;
		position: relative;
		width: 100%;
		margin-bottom: 5px;
		overflow: hidden;
	}

	.body-scroll-mask::before,
	.body-scroll-mask::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		z-index: 10;
		pointer-events: none;
	}

	.body-scroll-mask::before {
		top: 0;
		background: linear-gradient(to bottom,
				#1a1f25 0%,
				#1a1f25 10%,
				rgba(26, 31, 37, 0.9) 40%,
				transparent 100%);
		height: 20px;
	}

	.body-scroll-mask::after {
		bottom: 0;
		background: linear-gradient(to top,
				#1a1f25 0%,
				#1a1f25 10%,
				rgba(26, 31, 37, 0.9) 40%,
				transparent 100%);
		height: 70px;
	}

	.magic-body {
		height: 100%;
		width: 100%;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
		display: block !important;
		padding: 15px 10px;
		box-sizing: border-box;
		position: relative;
		z-index: 1;
	}

	/* Scroll Hint */
	.scroll-hint-mobile {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 70px;
		padding-bottom: 10px;
		z-index: 20;
		pointer-events: none;
		color: #4deeea;
		font-weight: bold;
		letter-spacing: 1px;
		background: linear-gradient(to top,
				rgba(26, 31, 37, 1) 0%,
				rgba(26, 31, 37, 0.95) 30%,
				rgba(26, 31, 37, 0) 100%);
	}

	.scroll-text {
		font-size: 0.85rem;
		opacity: 0.9;
	}

	.scroll-hint-mobile i {
		font-size: 1.3rem;
		margin-top: 3px;
		animation: bounceArrow 1.5s infinite;
		text-shadow: 0 0 10px #4deeea;
	}

	/* Card Layout Adjustments */
	.col-center {
		order: -1;
		height: 140px;
		margin: 0 auto 25px;
		width: 100%;
		max-width: 200px;
	}

	.magic-rabbit-img {
		width: 130px;
		max-width: 130px;
	}

	.magic-diamond-bg {
		width: 100px;
		height: 100px;
	}

	.magic-rays {
		width: 140px;
		height: 140px;
	}

	.col-left {
		background: rgba(77, 238, 234, 0.05);
		border: 1px solid rgba(77, 238, 234, 0.2);
		border-radius: 12px;
		padding: 20px 15px;
		margin-bottom: 20px;
		text-align: left;
	}

	.col-left .magic-label {
		font-size: 1.1rem;
		margin-bottom: 12px;
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.col-left .magic-label::before {
		content: "◆";
		color: #4deeea;
		font-size: 0.8rem;
	}

	.magic-tags {
		font-size: 0.95rem;
		margin-bottom: 12px;
		padding: 8px 12px;
		background: rgba(77, 238, 234, 0.1);
		border-radius: 20px;
		display: inline-block;
		color: #4deeea;
	}

	.magic-text {
		font-size: 0.95rem;
		line-height: 1.7;
		color: #e0e0e0;
	}

	.col-right {
		background: rgba(77, 238, 234, 0.05);
		border: 1px solid rgba(77, 238, 234, 0.2);
		border-radius: 12px;
		padding: 20px 15px;
		text-align: left;
	}

	.col-right .magic-label {
		font-size: 1.1rem;
		margin-bottom: 15px;
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.col-right .magic-label::before {
		content: "✦";
		color: #4deeea;
		font-size: 1rem;
	}

	.magic-list {
		padding-left: 0;
		margin: 0;
	}

	.magic-list li {
		font-size: 0.95rem;
		line-height: 1.7;
		margin-bottom: 14px;
		padding-left: 25px;
		color: #e0e0e0;
	}

	.magic-list li::before {
		content: counter(list-item) ".";
		color: #4deeea;
		font-weight: bold;
		font-size: 1rem;
		left: 0;
	}

	/* Footer Adjustments */
	.magic-footer {
		flex-shrink: 0;
		margin-top: 0;
		padding: 15px 0 0;
		border-top: 1px solid rgba(77, 238, 234, 0.2);
	}

	.footer-line {
		display: none;
	}

	.footer-flex {
		flex-direction: column;
		align-items: stretch;
		gap: 15px;
		text-align: left;
	}

	.gift-block {
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 1rem;
		margin-bottom: 8px;
	}

	.gift-icon {
		font-size: 1.2rem;
	}

	.gift-desc {
		font-size: 0.85rem;
		line-height: 1.5;
		color: #bbb;
	}

	.magic-label.inline {
		display: block;
		margin-bottom: 10px;
		font-size: 1rem;
	}

	.btn-cyan-gradient {
		font-size: 0.95rem;
		font-weight: bold;
		letter-spacing: 1px;
		width: 100%;
		text-align: center;
		padding: 14px 20px;
		margin-top: 5px;
	}

	/* Simple States Mobile */
	.state-simple {
		min-height: auto;
		flex-grow: 1;
	}

	.msg-large {
		font-size: 1.8rem;
	}

	.msg-sub {
		font-size: 1rem;
	}
}

/* Small Mobile */
@media (max-width: 500px) {
	.col-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}