/* ============================================================
   Youtarot landing — built from the app's real identity:
   cosmic teal sky (Planeta y el cielo), the eye-in-triangle
   logo, and the gold-framed Rider-Waite deck.
   ============================================================ */

:root {
	--bg: #0b1118;
	--bg-soft: #111a24;
	--teal: #4fd0d6;
	--teal-deep: #1f6f78;
	--gold: #e3b873;
	--gold-deep: #c79a52;
	--text: #eef3f5;
	--text-dim: #9fb1bd;
	--line: rgba(227, 184, 115, 0.18);

	--maxw: 1140px;
	--radius: 16px;
	--card-ratio: 0.588; /* real deck proportions */
	--ease: cubic-bezier(0.4, 0, 0.2, 1);

	--font-brand: 'Audiowide', 'Cinzel', sans-serif; /* the app's own wordmark font */
	--font-display: 'Cinzel', Georgia, serif; /* engraved, esoteric headings */
	--font-serif: 'Cormorant Garamond', Georgia, serif;
	--font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	position: relative;
	font-family: var(--font-body);
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
	overflow-x: hidden;
	min-height: 100vh;
}

/* Animated nebula backdrop — drifting clouds of light in the brand colors.
   No photo: two blurred radial-gradient layers that slowly breathe and drift,
   masked so they fade into the page instead of cutting at a block edge. */
.aurora {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1320px;
	z-index: -2;
	overflow: hidden;
	background: var(--bg);
	-webkit-mask: linear-gradient(to bottom, #000 55%, transparent 96%);
	mask: linear-gradient(to bottom, #000 55%, transparent 96%);
	pointer-events: none;
}

.aurora::before,
.aurora::after {
	content: '';
	position: absolute;
	inset: -35%;
	background-repeat: no-repeat;
	filter: blur(55px);
	will-change: transform;
}

.aurora::before {
	background:
		radial-gradient(38% 38% at 30% 32%, rgba(79, 208, 214, 0.32), transparent 62%),
		radial-gradient(44% 44% at 72% 26%, rgba(46, 96, 168, 0.34), transparent 62%),
		radial-gradient(34% 34% at 56% 60%, rgba(120, 92, 198, 0.20), transparent 64%);
	animation: drift-a 40s ease-in-out infinite alternate;
}

.aurora::after {
	background:
		radial-gradient(36% 36% at 66% 46%, rgba(227, 184, 115, 0.16), transparent 62%),
		radial-gradient(40% 40% at 24% 58%, rgba(79, 208, 214, 0.22), transparent 62%);
	mix-blend-mode: screen;
	animation: drift-b 54s ease-in-out infinite alternate;
}

@keyframes drift-a {
	from {
		transform: translate3d(-4%, -2%, 0) scale(1.05);
	}
	to {
		transform: translate3d(5%, 3%, 0) scale(1.16);
	}
}

@keyframes drift-b {
	from {
		transform: translate3d(3%, 2%, 0) scale(1.1) rotate(2deg);
	}
	to {
		transform: translate3d(-5%, -3%, 0) scale(1.2) rotate(-2deg);
	}
}

#stars {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.6rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.98rem;
	letter-spacing: 0.01em;
	transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
		background 0.2s var(--ease), border-color 0.2s var(--ease);
	border: 1px solid transparent;
	cursor: pointer;
	white-space: nowrap;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn--gold {
	background: linear-gradient(135deg, var(--gold), var(--gold-deep));
	color: #2a1f0e;
	box-shadow: 0 8px 26px rgba(227, 184, 115, 0.26);
}

.btn--gold:hover {
	box-shadow: 0 12px 34px rgba(227, 184, 115, 0.4);
}

.btn--ghost {
	border-color: var(--line);
	color: var(--text);
	background: rgba(79, 208, 214, 0.05);
}

.btn--ghost:hover {
	border-color: var(--teal);
	background: rgba(79, 208, 214, 0.12);
}

.btn--lg {
	padding: 1.05rem 2.3rem;
	font-size: 1.05rem;
}

.btn--play {
	background: #ffffff;
	color: #1f1d1a;
	border-color: rgba(0, 0, 0, 0.08);
	box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}

.btn--play:hover {
	border-color: rgba(0, 0, 0, 0.16);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.btn__play-icon {
	width: 1.4em;
	height: 1.4em;
	flex-shrink: 0;
	display: inline-block;
}

.cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	align-items: center;
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 1rem 1.5rem;
	backdrop-filter: blur(8px);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.brand__name {
	font-family: var(--font-brand);
	font-weight: 400;
	font-size: 1.2rem;
	letter-spacing: 0.01em;
}

.brand__logo {
	width: 36px;
	height: 36px;
	object-fit: contain;
	filter: drop-shadow(0 0 10px rgba(79, 208, 214, 0.45));
}

.site-nav {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1.6rem;
}

.site-nav__links {
	display: flex;
	align-items: center;
	gap: 1.6rem;
}

.site-nav__links a {
	color: var(--text-dim);
	font-size: 0.95rem;
	white-space: nowrap;
	transition: color 0.2s var(--ease);
}

.site-nav__links a:hover {
	color: var(--text);
}

/* Hamburger — hidden while the inline nav fits; shown only when the header
   runs out of room (the .is-compact class is toggled by script.js, which
   measures whether the links still fit, so it adapts to every language). */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: rgba(79, 208, 214, 0.05);
	cursor: pointer;
	transition: border-color 0.2s var(--ease);
}

.nav-toggle:hover {
	border-color: var(--teal);
}

.nav-toggle__bar {
	display: block;
	width: 20px;
	height: 2px;
	margin: 0 auto;
	background: var(--text);
	border-radius: 2px;
	transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

/* Compact mode: collapse the inline links, reveal the hamburger */
.site-header.is-compact .nav-toggle {
	display: inline-flex;
}

.site-header.is-compact .site-nav__links {
	position: absolute;
	top: calc(100% + 0.7rem);
	right: 0;
	display: none;
	flex-direction: column;
	align-items: stretch;
	gap: 0.15rem;
	min-width: 210px;
	padding: 0.6rem;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: rgba(11, 17, 24, 0.94);
	backdrop-filter: blur(12px);
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55);
}

.site-header.is-compact.is-open .site-nav__links {
	display: flex;
}

.site-header.is-compact .site-nav__links a {
	padding: 0.65rem 0.7rem;
	border-radius: 9px;
	font-size: 1rem;
}

.site-header.is-compact .site-nav__links a:hover {
	background: rgba(79, 208, 214, 0.08);
}

/* Open state morphs the three bars into an X */
.site-header.is-open .nav-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.site-header.is-open .nav-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Language selector — a styled native <select> with a globe glyph */
.lang {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.lang__globe {
	position: absolute;
	left: 0;
	color: var(--text-dim);
	pointer-events: none;
	transition: color 0.2s var(--ease);
}

.lang:hover .lang__globe {
	color: var(--teal);
}

/* No pill: reads like the rest of the nav links — globe + language + caret */
.lang__select {
	appearance: none;
	-webkit-appearance: none;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--text-dim);
	background-color: transparent;
	border: 0;
	border-radius: 0;
	padding: 0 1.05rem 0 1.55rem;
	cursor: pointer;
	transition: color 0.2s var(--ease);
	/* caret */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%239fb1bd' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0 center;
}

.lang__select:hover {
	color: var(--text);
}

/* Native option list lives outside the page — match the dark theme where supported */
.lang__select option {
	background: var(--bg-soft);
	color: var(--text);
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 2rem;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 4.5rem 1.5rem 5rem;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.28em;
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--teal);
	margin-bottom: 1.2rem;
}

.hero__title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(2.3rem, 5vw, 3.8rem);
	line-height: 1.12;
	letter-spacing: 0.01em;
	color: #fff;
	text-shadow: 0 2px 30px rgba(79, 208, 214, 0.25);
}

.hero__lead {
	margin: 1.4rem 0 2rem;
	max-width: 30rem;
	color: var(--text-dim);
	font-size: 1.1rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
}

.hero__note {
	margin-top: 1.6rem;
	font-size: 0.85rem;
	color: var(--teal-deep);
	letter-spacing: 0.02em;
}

/* Hero spread: a real fan of cards from the deck */
.hero__spread {
	position: relative;
	height: 460px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.spread__card {
	position: absolute;
	width: 168px;
	aspect-ratio: var(--card-ratio);
	border-radius: 10px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
	transform-origin: bottom center;
	transition: transform 0.4s var(--ease);
	outline: 1px solid rgba(227, 184, 115, 0.35);
}

.spread__card--1 {
	transform: rotate(-26deg) translate(-188px, 16px);
	z-index: 1;
}
.spread__card--2 {
	transform: rotate(-13deg) translate(-98px, -8px);
	z-index: 2;
}
.spread__card--3 {
	transform: translateY(-26px) scale(1.08);
	z-index: 5;
	box-shadow: 0 26px 64px rgba(0, 0, 0, 0.6),
		0 0 40px rgba(79, 208, 214, 0.28);
	animation: float 6s ease-in-out infinite;
}
.spread__card--4 {
	transform: rotate(13deg) translate(98px, -8px);
	z-index: 2;
}
.spread__card--5 {
	transform: rotate(26deg) translate(188px, 16px);
	z-index: 1;
}

/* Gentle fan-open on hover */
.hero__spread:hover .spread__card--1 {
	transform: rotate(-30deg) translate(-214px, 10px);
}
.hero__spread:hover .spread__card--5 {
	transform: rotate(30deg) translate(214px, 10px);
}

@keyframes float {
	0%,
	100% {
		transform: translateY(-26px) scale(1.08);
	}
	50% {
		transform: translateY(-40px) scale(1.08);
	}
}

/* ---------- Sections ---------- */
.section {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 4.5rem 1.5rem;
}

.section__title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(1.7rem, 3.6vw, 2.6rem);
	text-align: center;
	letter-spacing: 0.02em;
	margin-bottom: 2.8rem;
}

.section__lead {
	max-width: 38rem;
	margin: -1.4rem auto 2.8rem;
	text-align: center;
	color: var(--text-dim);
	font-size: 1.05rem;
}

.section__lead strong {
	color: var(--text);
	font-weight: 600;
}

/* Descripción — official store text as centered prose */
.section--prose {
	padding-bottom: 1rem;
}

.prose {
	max-width: 48rem;
	margin: 0 auto 1.2rem;
	text-align: center;
	color: var(--text-dim);
	font-size: 1.12rem;
	line-height: 1.7;
}

.prose:last-child {
	margin-bottom: 0;
}

/* Closing line — a highlighted, gold tagline set apart from the prose */
.prose-tagline {
	max-width: 48rem;
	margin: 2.2rem auto 0;
	text-align: center;
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 600;
	font-size: clamp(1.45rem, 2.6vw, 1.95rem);
	line-height: 1.4;
	color: var(--gold);
}

/* Deck showcase */
.deck {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1rem;
}

.deck__item {
	border-radius: 10px;
	overflow: hidden;
	outline: 1px solid var(--line);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
	aspect-ratio: var(--card-ratio);
}

.deck__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.deck__item:hover {
	transform: translateY(-8px) rotate(-1.5deg);
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55),
		0 0 26px rgba(79, 208, 214, 0.25);
}

/* Features grid */
.features {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.2rem;
}

.feature {
	padding: 1.8rem 1.4rem;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: linear-gradient(180deg, rgba(79, 208, 214, 0.06), rgba(79, 208, 214, 0.015));
	transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.feature:hover {
	transform: translateY(-6px);
	border-color: rgba(227, 184, 115, 0.5);
}

.feature__icon {
	width: 72px;
	height: 72px;
	object-fit: contain;
	margin-bottom: 0.9rem;
	filter: drop-shadow(0 4px 12px rgba(227, 184, 115, 0.3));
}

.feature h3 {
	font-family: var(--font-serif);
	font-size: 1.55rem;
	font-weight: 600;
	margin-bottom: 0.45rem;
}

.feature p {
	color: var(--text-dim);
	font-size: 0.96rem;
}

/* Steps — delimited top and bottom by hairlines that fade at the ends */
.section--steps {
	position: relative;
}

.section--steps::before,
.section--steps::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: min(640px, 78%);
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(227, 184, 115, 0.45), transparent);
}

.section--steps::before {
	top: 0;
}

.section--steps::after {
	bottom: 0;
}

.steps {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.6rem;
}

.step {
	text-align: center;
	padding: 1rem;
}

.step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1rem;
	border-radius: 50%;
	border: 1px solid rgba(227, 184, 115, 0.5);
	font-family: var(--font-display);
	font-size: 1.3rem;
	color: var(--gold);
}

.step h3 {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.4rem;
}

.step p {
	color: var(--text-dim);
	font-size: 0.96rem;
}

/* Final CTA */
.cta {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 5rem 1.5rem 6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
}

.cta__card {
	width: 220px;
	aspect-ratio: var(--card-ratio);
	flex-shrink: 0;
	border-radius: 12px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6),
		0 0 50px rgba(227, 184, 115, 0.2);
	transform: rotate(-4deg);
}

.cta__text {
	max-width: 30rem;
}

.cta__title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.9rem, 4vw, 2.9rem);
	letter-spacing: 0.02em;
}

.cta__lead {
	margin: 1rem 0 2rem;
	color: var(--text-dim);
	font-size: 1.1rem;
}

/* ---------- Footer ---------- */
.site-footer {
	position: relative;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 1.4rem 1.5rem 1.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem 1.2rem;
}

/* Full-width divider across the (compact) footer */
.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 1.5rem;
	right: 1.5rem;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(227, 184, 115, 0.4) 7%, rgba(227, 184, 115, 0.4) 93%, transparent);
}

.site-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-brand);
	font-size: 0.95rem;
	letter-spacing: 0.01em;
}

.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 1.4rem;
}

.site-footer__links a {
	color: var(--text-dim);
	font-size: 0.92rem;
	transition: color 0.2s var(--ease);
}

.site-footer__links a:hover {
	color: var(--text);
}

.site-footer__legal {
	width: 100%;
	color: var(--teal-deep);
	font-size: 0.82rem;
}

/* ---------- Síguenos / redes ---------- */
.section--social {
	text-align: center;
}

/* YouTube — framed 16:9, gold outline like the deck cards */
.yt {
	position: relative;
	max-width: 760px;
	margin: 0 auto 2.6rem;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius);
	overflow: hidden;
	outline: 1px solid var(--line);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(79, 208, 214, 0.12);
	background: var(--bg-soft);
}

.yt__frame,
.yt__facade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Lightweight poster shown until the iframe is injected */
.yt__facade {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	cursor: pointer;
	color: var(--text);
	background: radial-gradient(60% 70% at 50% 40%, rgba(79, 208, 214, 0.18), transparent 70%),
		linear-gradient(180deg, var(--bg-soft), #0a1016);
	transition: background 0.3s var(--ease);
}

.yt__facade:hover {
	background: radial-gradient(60% 70% at 50% 40%, rgba(79, 208, 214, 0.3), transparent 70%),
		linear-gradient(180deg, var(--bg-soft), #0a1016);
}

.yt__play svg {
	filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.5));
	transition: transform 0.25s var(--ease);
}

.yt__play-bg {
	fill: #f00;
	opacity: 0.92;
}

.yt__facade:hover .yt__play svg {
	transform: scale(1.08);
}

.yt__label {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0.01em;
}

/* Social icon row */
.socials {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	border: 1px solid var(--line);
	color: var(--text-dim);
	background: rgba(79, 208, 214, 0.05);
	transition: transform 0.2s var(--ease), color 0.2s var(--ease),
		border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.social:hover {
	transform: translateY(-3px);
	color: var(--gold);
	border-color: rgba(227, 184, 115, 0.5);
	background: rgba(227, 184, 115, 0.1);
}

/* Footer social icons — smaller siblings of the row above */
.site-footer__socials {
	display: inline-flex;
	gap: 0.7rem;
}

.site-footer__socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 50%;
	color: var(--text-dim);
	border: 1px solid var(--line);
	transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.site-footer__socials a:hover {
	color: var(--gold);
	border-color: rgba(227, 184, 115, 0.5);
}

/* ---------- a11y ---------- */
:focus-visible {
	outline: 2px solid var(--teal);
	outline-offset: 3px;
	border-radius: 6px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
	.hero {
		grid-template-columns: 1fr;
		text-align: center;
		padding-top: 2.5rem;
	}

	.hero__content {
		order: 2;
	}

	.hero__lead {
		margin-left: auto;
		margin-right: auto;
	}

	.hero__actions {
		justify-content: center;
	}

	.hero__spread {
		order: 1;
		height: 360px;
		transform: scale(0.82);
	}

	.deck {
		grid-template-columns: repeat(3, 1fr);
	}

	.features {
		grid-template-columns: repeat(2, 1fr);
	}

	.cta {
		flex-direction: column;
		text-align: center;
		gap: 2rem;
	}
}

@media (max-width: 620px) {
	/* Tighten the header so logo + language + CTA + menu fit one row */
	.site-header {
		padding: 0.9rem 1rem;
	}

	.site-nav {
		gap: 0.7rem;
	}

	.brand__name {
		display: none;
	}

	.lang__select {
		padding: 0 0.95rem 0 1.5rem;
	}

	.hero__spread {
		transform: scale(0.66);
		height: 320px;
	}

	.deck {
		grid-template-columns: repeat(2, 1fr);
	}

	.features,
	.steps {
		grid-template-columns: 1fr;
	}

	/* Footer: stacked and centered on phones */
	.site-footer {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 1rem;
	}

	.site-footer__links {
		justify-content: center;
	}

	.site-footer__legal {
		width: auto;
	}
}

/* Respect reduced-motion users */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.spread__card--3,
	.aurora::before,
	.aurora::after {
		animation: none;
	}
}
