.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 4px 16px 64px;
}

section {
	margin-bottom: 60px;
	scroll-margin-top: 100px;
}

article {
	scroll-margin-top: 100px;
}

header {
	position: relative;
	overflow: hidden;
	max-width: 1100px;
	padding: 72px 16px 64px;
	text-align: center;
}

.header-inner {
	margin: 0 auto;
	position: relative;
	text-align: center;
}

.header-divider {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	margin: 18px 0 24px;
}

.header-divider::before,
.header-divider::after {
	content: "";
	width: 64px;
	height: 1px;
	background: rgba(255, 255, 255, 0.15);
}

.header-divider span {
	color: rgba(219, 234, 254, 0.7);
	font-size: 0.85rem;
	text-shadow:
		0 0 8px rgba(147, 197, 253, 0.2);
}

header h1 {
	position: relative;
	max-width: 798px;
	margin: 0 auto 18px;
	font-size: clamp(2rem, 5vw, 2.6rem);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.02em;
	background: linear-gradient(to bottom,
			#ffffff 0%,
			#dbeafe 45%,
			#93c5fd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow:
		0 0 10px rgba(147, 197, 253, 0.10),
		0 2px 12px rgba(96, 165, 250, 0.08);
	opacity: 0;
	transform: translateY(10px);
	animation: headerTextReveal 1.4s ease forwards;
	animation-delay: 0.25s;
}

header p {
	position: relative;
	max-width: 760px;
	margin: 0 auto 18px;
	color: #b4bcc6;
	font-size: 15px;
	line-height: 1.8;
	opacity: 0;
	transform: translateY(8px);
	animation: headerTextReveal 1.4s ease forwards;
	animation-delay: 0.45s;
}


h2 {
	font-size: 22px;
	color: #ffffff;
}

.section-title {
	display: flex;
	align-items: center;
	gap: 16px;
	
	
}

.section-title h2 {
	margin: 0;
	text-transform: uppercase;
	font-size: clamp(1.4rem, 5vw, 2.8rem);
	font-weight: 700;
	line-height: 1.1;
	
	background:
		linear-gradient(180deg,
			#ffffff,
			#d7e6ff);
	
	-webkit-background-clip: text;
	background-clip: text;
	
	-webkit-text-fill-color: transparent;
	
	text-shadow:
		0 0 18px rgba(180, 220, 255, .08);
}

.title-line {
	position: relative;
	
	flex: 1;
	height: 2px;
	
	background:
		linear-gradient(90deg,
			rgba(180, 220, 255, .35),
			rgba(180, 220, 255, .12),
			transparent);
}

.title-line::before {
	content: "";
	
	position: absolute;
	left: 0;
	top: 50%;
	
	width: 8px;
	height: 8px;
	
	transform: translateY(-50%);
	
	border-radius: 50%;
	
	background: rgba(220, 240, 255, .9);
	
	box-shadow:
		0 0 10px rgba(220, 240, 255, .8),
		0 0 24px rgba(180, 220, 255, .35);
}

h3 {
	margin: 22px 0 6px;
	
	font-size: 17px;
	color: #c7d2fe;
}

p,
ul {
	font-size: clamp(0.95rem, 2.5vw, 1rem);
	line-height: 1.8;
	color: #d1d5db;
	
	opacity: .95;
}

ul {
	padding-left: 20px;
}

ul li,
.toc li {
	margin-bottom: 8px;
}

/* =========================================================
   BOXES
========================================================= */

.box {
	margin: 16px 0;
	padding: 16px;
	
	background: rgba(255, 255, 255, 0.05);
	
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
}

.box.hero {
	display: inline-block;
	vertical-align: top;
	
	width: auto;
	max-width: calc(100% - 442px);
}

/* =========================================================
   TEXT STATES
========================================================= */

.tip {
	color: #93c5fd;
}

.warn {
	color: #fbbf24;
}

/* =========================================================
   LINKS
========================================================= */

.text-link {
	color: #93c5fd;
	text-decoration: none;
	
	border-bottom: 1px dashed rgba(147, 197, 253, 0.5);
	
	transition: all 0.2s ease;
}

.text-link:hover {
	color: #60a5fa;
	border-bottom: 1px solid #60a5fa;
}

.text-link:active {
	opacity: 0.7;
}

/* =========================================================
   IMAGE WRAPPER
========================================================= */

.img-wrapper {
	position: relative;
	overflow: hidden;
	
	float: left;
	
	width: min(420px, 48%);
	margin: 8px 22px 16px 0;
	
	aspect-ratio: 16 / 9;
	
	background: rgba(255, 255, 255, 0.04);
	
	border-radius: 16px;
}

.section-img {
	display: block;
	
	width: 100%;
	height: 100%;
	
	object-fit: cover;
	
	opacity: 0;
	transform: scale(0.98);
	
	transition:
		opacity 0.4s ease,
		transform 0.4s ease;
}

/* =========================================================
   IMAGE LOADING
========================================================= */

.img-skeleton {
	position: absolute;
	inset: 0;
	z-index: 1;
	
	background: linear-gradient(110deg,
			#1f2937 25%,
			#374151 37%,
			#1f2937 63%);
	
	background-size: 200% 100%;
	
	animation: shimmer 1.4s infinite;
}

.img-wrapper.loaded .img-skeleton {
	display: none;
}

.img-wrapper.loaded .section-img {
	opacity: 1;
	transform: scale(1);
}

/* =========================================================
   CLEAR FIX
========================================================= */

.intro::after,
section::after {
	content: "";
	display: block;
	clear: both;
}

/* =========================================================
   TABLE OF CONTENTS
========================================================= */

.toc {
	margin: 24px 0 40px;
	padding: 16px;
	
	background: rgba(255, 255, 255, 0.04);
	
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
}

.toc h3 {
	margin: 0 0 10px;
	
	font-size: 15px;
	color: #93c5fd;
}

.toc ul {
	margin: 0;
	padding: 0;
	
	list-style: none;
}

.toc a {
	color: #cbd5f5;
	font-size: 13.5px;
	text-decoration: none;
	transition: 0.2s ease;
}

.toc a:hover {
	color: #60a5fa;
	transform: translateX(4px);
}

/* =========================================================
   META
========================================================= */

.date {
	display: block;
	
	margin-bottom: 14px;
	
	color: #94a3b8;
	font-size: 13px;
	
	opacity: 0.9;
}

/* =========================================================
   RELATED SECTION
========================================================= */

.related {
	margin-top: 60px;
}

.related h2 {
	margin-bottom: 16px;
	font-size: 20px;
}

.related-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.related-card {
	display: flex;
	gap: 14px;
	
	padding: 12px;
	
	background: rgba(255, 255, 255, 0.04);
	
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	
	transition: 0.25s ease;
}

.related-card:hover {
	transform: translateY(-4px);
	
	border-color: rgba(96, 165, 250, 0.5);
	
	box-shadow: 0 10px 25px rgba(96, 165, 250, 0.15);
}

.related-card img {
	width: 110px;
	height: 70px;
	
	object-fit: cover;
	
	border-radius: 10px;
}

.related-content h3 {
	margin-bottom: 4px;
	
	font-size: 14px;
	color: #e5e7eb;
}

.related-content p {
	font-size: 12px;
	color: #9ca3af;
}



/* =========================================================
   IMAGE SOURCE
========================================================= */

.image-source {
	margin: 8px 0 22px;
	
	color: #b0b0b0;
	font-size: 12px;
	line-height: 1.5;
	
	text-align: left;
}

.image-source a {
	color: #d6b36a;
	text-decoration: none;
	
	transition: 0.3s ease;
}

.image-source a:hover {
	color: #ffe29a;
	text-decoration: underline;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes headerGlowReveal {
	0% {
		opacity: 0;
		transform: scale(0.72);
		filter: blur(60px);
	}
	
	45% {
		opacity: 1;
		transform: scale(1.06);
		filter: blur(26px);
	}
	
	100% {
		opacity: 1;
		transform: scale(1);
		filter: blur(18px);
	}
}

@keyframes headerTextReveal {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes shimmer {
	0% {
		background-position: 200% 0;
	}
	
	100% {
		background-position: -200% 0;
	}
}

@media (max-width: 768px) {
	.img-wrapper {
		float: none;
		
		width: 100%;
		margin: 18px 0;
	}
	
	.box.hero {
		display: block;
		max-width: 100%;
	}
}

@media (min-width: 768px) {
	.related-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.related-card {
		flex-direction: column;
	}
	
	.related-card img {
		width: 100%;
		height: 120px;
	}
}


.season-gallery {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
}

.season-gallery::-webkit-scrollbar {
	display: none;
}

.slide {
	position: relative;
	flex: 0 0 100%;
	scroll-snap-align: center;
	scroll-snap-stop: always;
	aspect-ratio: 16 / 9;
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(.92);
	opacity: .62;
	border-radius: 16px;
	transition:
		transform .4s ease,
		opacity .4s ease;
}

.slide.active img {
	transform: scale(1);
	opacity: 1;
}

.slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg,
			rgba(255, 255, 255, .04),
			rgba(255, 255, 255, .08),
			rgba(255, 255, 255, .04));
	background-size: 200% 100%;
	animation: shimmer 2s infinite;
}

.slide:has(img[src])::before {
	display: none;
}

@keyframes shimmer {
	0% {
		background-position: 200% 0;
	}
	
	100% {
		background-position: -200% 0;
	}
}

.gallery-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
}

.dot {
	width: 8px;
	height: 8px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, .25);
	cursor: pointer;
	transition:
		width .3s ease,
		background .3s ease,
		transform .3s ease;
}

.dot.active {
	width: 28px;
	background: rgba(255, 255, 255, .95);
}

.dot:hover {
	transform: scale(1.1);
}

.slide-label {
	position: absolute;
	left: 16px;
	bottom: 16px;
	z-index: 2;
	padding: 10px 16px;
	border-radius: 999px;
	background:
		rgba(0, 0, 0, .45);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(8px);
	font-size: .9rem;
	font-weight: 600;
	line-height: 1;
	color: #fff;
	pointer-events: none;
}








.spirit-list {
	margin: 0;
	
}

.spirit-header {
	text-align: center;
}

.spirit-header {
	padding: 0 0 40px;
	
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.spirit-name {
	margin: 0;
	
	font-size: clamp(1.8rem, 5vw, 2.5rem);
	line-height: 1.1;
	
	text-transform: uppercase;
	letter-spacing: 0.08em;
	
	color: #dce4ff;
	
	text-shadow:
		0 0 10px rgba(183, 200, 255, 0.15),
		0 0 20px rgba(183, 200, 255, 0.08);
}

.spirit-season {
	padding: 0;
	margin: 0 auto;
	
	font-size: clamp(0.875rem, 2vw, 1rem);
	font-weight: 500;
	
	letter-spacing: 0.12em;
	text-transform: uppercase;
	
	color: rgba(220, 228, 255, 0.72);
}

section p,
.spirit-description {
	padding-top: 20px;
	margin: 0;
	
	max-width: 40ch;
	
	font-size: clamp(0.95rem, 2.5vw, 1rem);
	line-height: 1.8;
	color: #d1d5db;
	
	opacity: .95;
}

.inline-icon {
	width: 24px;
	height: auto;
	vertical-align: -6px;
	opacity: 0.98;
}

.inline-icon.candle {
	width:16px;
}

.spirit-content {
	display: flex;
	
	align-items: flex-start;
	
	gap: 16px;
}

.spirit-preview {
	flex: 1;
	
	margin: 0;
}

.spirit-image {
	width: 100%;
	
	max-width: 280px;
	
	aspect-ratio: 3 / 4;
	
	object-fit: cover;
	
	border-radius: 20px;
	
	display: block;
}

.spirit-cosmetics {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(5, auto);
	gap: 0px;
	flex-shrink: 0;
}

.cosmetic-item {
	width: 72px;
	min-height: 72px;
	margin: 0;
	padding: 0px;
	
	display: flex;

	flex-direction: column;
	
	align-items: center;
	
	justify-content: center;
	
	border-radius: 16px;
}

.cosmetic-item img {
	border: solid 1px;
	width: 64px;
	
	border-radius: 8px;
	height: 64px;
	
	object-fit: contain;
}

.spirit-tree {
	margin: 32px 0;
	padding: 10px 0 0;
	
	border-radius: 20px;
	
	background:
		rgba(255, 255, 255, .04);
	
	border:
		1px solid rgba(255, 255, 255, .08);
	
	text-align: center;
}

.spirit-tree img {
	display: block;
	
	width: 100%;
	max-width: 900px;
	
	margin: 0 auto;
	
	border-radius: 20px;
}

.spirit-tree figcaption {
	margin-bottom: 12px;
	
	font-size: .9rem;
	color: rgba(255, 255, 255, .7);
	
	letter-spacing: .02em;
}



.spirit-divider {
	display: flex;
	
	align-items: center;
	
	justify-content: center;
	
	gap: 16px;
	
	margin: 48px 0;
}

.spirit-divider::before,
.spirit-divider::after {
	content: "";
	
	width: 80px;
	height: 1px;
	
	background: rgba(255, 255, 255, .15);
}

.spirit-divider span {
	font-size: 1rem;
	
	color: rgba(255, 255, 255, .6);
}



.spirits-intro {
	margin: 48px 0 36px;
	
	text-align: center;
}

.spirits-intro span {
	display: block;
	
	margin-bottom: 8px;
	
	font-size: 1.25rem;
	
	font-weight: 600;
}

.spirits-intro p {
	margin: 0;
	padding: 0;
	opacity: .8;
}





.season-date-card {
	margin: 24px 0;
	padding: 28px 24px;
	
	position: relative;
	overflow: hidden;
	
	border-radius: 24px;
	
}

.season-date-card::before {
	content: "";
	
	position: absolute;
	inset: 0;
	
	background:
		radial-gradient(circle at top center,
			rgba(130, 180, 255, .12),
			transparent 55%);
	
	pointer-events: none;
}

.date-header,
.countdown,
.date-meta {
	position: relative;
	z-index: 1;
}

.date-badge {
	display: inline-block;
	
	padding: 6px 14px;
	
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	
	border-radius: 999px;
	
	background: rgba(255, 255, 255, .04);
	
	color: rgba(255, 255, 255, .75);
}

.date-header h3 {
	margin: 16px 0 0;
	
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	line-height: 1.15;
}

.countdown {
	position: relative;
	overflow: hidden;
	
	display: inline-flex;
	align-items: center;
	gap: 10px;
	
	margin-top: 24px;
	padding: 12px 22px;
	
	border-radius: 999px;
	
	background: rgba(255, 255, 255, .04);
	
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .08);
}

.countdown::after {
	content: "";
	
	position: absolute;
	top: 0;
	bottom: 0;
	left: -150%;
	
	width: 40%;
	
	background:
		linear-gradient(90deg,
			transparent,
			rgba(255, 255, 255, .12),
			transparent);
	
	transform: skewX(-20deg);
	
	animation: shimmerSweep 5s linear infinite;
	
	pointer-events: none;
}

@keyframes shimmerSweep {
	
	0% {
		left: -150%;
	}
	
	10% {
		left: 150%;
	}
	
	100% {
		left: 150%;
	}
	
}

.countdown strong {
	font-size: 1rem;
	font-weight: 700;
}

.date-meta {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	
	margin-top: 32px;
	padding-top: 24px;
	
	border-top:
		1px solid rgba(255, 255, 255, .06);
	
	gap: 20px;
}

.date-meta span {
	display: block;
	
	font-size: .75rem;
	letter-spacing: .05em;
	text-transform: uppercase;
	
	color: rgba(255, 255, 255, .55);
	
	margin-bottom: 8px;
}

.date-meta strong {
	font-size: 1.05rem;
	font-weight: 600;
}



.gif-popup-overlay {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, .88);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity .25s ease,
		visibility .25s ease;
	z-index: 2;
}

.gif-popup-overlay.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.gif-popup-box {
	position: relative;
	width: min(92vw, 560px);
	padding: 18px;
	border-radius: 24px;
	background:
	linear-gradient(
		180deg,
		rgba(16, 24, 48, .98) 0%,
		rgba(10, 16, 34, .98) 100%
	);
	border: 1px solid rgba(255, 255, 255, .08);
	box-shadow:
		0 25px 70px rgba(0, 0, 0, .6);
	transform: scale(.96);
	transition: transform .25s ease;
}

.gif-popup-overlay.active .gif-popup-box {
	transform: scale(1);
}

.gif-popup-header {
	margin-bottom: 14px;
	padding-right: 56px;
}

.gif-popup-label {
	display: inline-block;
	margin-bottom: 6px;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	background: rgba(255,255,255,.06);
	color: rgba(255,255,255,.65);
}

.gif-popup-header h3 {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
}

.gif-popup-box img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 75vh;
	object-fit: contain;
	border-radius: 16px;
	background: rgba(255,255,255,.03);
}

.gif-popup-close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	color: #fff;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	transition:
		background .2s ease,
		transform .2s ease;
}

.gif-popup-close:hover {
	background: rgba(255,255,255,.18);
	transform: scale(1.05);
}

.gif-popup-close:active {
	transform: scale(.95);
}

#gifGallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.gif-level {
	overflow: hidden;
	border-radius: 14px;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .06);
}

.gif-level img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.gif-level span {
	display: block;
	padding: 10px;
	text-align: center;
	font-size: .85rem;
	font-weight: 600;
	color: rgba(255,255, 255, .85);
}

.single-preview {
	grid-column: 1 / -1;
}

.single-preview img {
	width: 100%;
	max-height: 75vh;
	aspect-ratio: auto;
	object-fit: contain;
}

@media (max-width: 600px) {
	
	.gif-popup-box {
		width: 100%;
		padding: 16px;
	}
	
	#gifGallery {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.gif-popup-header h3 {
		font-size: 1.05rem;
	}
	
}

.gif-level video {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.single-preview video {
	width: 100%;
	max-height: 75vh;
	aspect-ratio: auto;
	object-fit: contain;
}