:root {
	--bg: #101010; /* Almost Black */
	--bg-elevated: #202020;
	--bg-elevated-soft: #1f1f1f;
	--accent: #f5c1e0;
	--accent-soft: #f0a6d0;
	--text-main: #ffffff;
	--text-muted: #c0c0c0;
	--danger: #ff5c7b;
	--radius-pill: 999px;
	--radius-card: 18px;
	--shadow-soft: 0 10px 30px rgba(0,0,0,0.35);
	--font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-display: "Georgia", "Times New Roman", serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--text-main);
	font-family: var(--font-main);
}

body {
	min-height: 100vh;
}

/* ───────────────────────────────────────────
	 Page layout
	 ─────────────────────────────────────────── */

.page {
	max-width: 1920px;
	margin: 0 auto;
	padding: 24px 16px 64px;
}

/* Base header & title, to be themed per-page */

.page-header {
	text-align: center;
	width: 100%;
	margin-bottom: 32px;
	z-index: 50;
}

.page-title {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 4vw, 3rem);
	margin: 8px 0 4px;
	text-align: center;
	white-space: normal;
}

.page-subtitle {
	color: var(--text-muted);
	font-size: 0.95rem;
}

/* Home page overrides */

.page-home .page-header {
	margin-top: -50px;
}

.page-home .page-title {
	font-size: clamp(1.5rem, 4vw, 4.1rem);
	white-space: nowrap;
}

.page-library .page-header {
	margin-top: 0px;
}

.page-library .page-title {
	text-align: center;
}

@media (max-width: 600px) {
	.page-home .page-title {
		margin-top: 50px;
		white-space: normal;
	}
}

.page-library .page-title {
	font-size: 3.4rem;
	text-align: center;
	white-space: normal;
}

/* ───────────────────────────────────────────
	 Banner image
	 ─────────────────────────────────────────── */

.avatar {
	display: block;
	width: 100%;
	max-width: 2400px;   /* never larger than the original banner width */
	height: auto;
	object-fit: cover;
	box-shadow: var(--shadow-soft);
	flex: 0 0 auto;      /* don’t stretch/shrink weirdly in flex */
}

/* ───────────────────────────────────────────
	 Linktree-style buttons
	 ─────────────────────────────────────────── */

.button-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 28px;
}

.btn-pill {
	position: relative;   /* create a stacking context */
	z-index: 0;           /* base level */
	background: var(--bg-elevated);
	border-radius: var(--radius-pill);
	padding: 14px 18px;
	border: 1px solid #222;
	text-align: center;
	text-decoration: none;
	color: var(--text-main);
	font-weight: 600;
	letter-spacing: 0.02em;
	box-shadow: var(--shadow-soft);
	transition:
		background 0.15s ease,
		transform 0.1s ease,
		box-shadow 0.15s ease,
		z-index 0s; /* no animation, just immediate */
}

.btn-pill:hover {
	background: #222;
	transform: translateY(-1px);
	box-shadow: 0 14px 32px rgba(0,0,0,0.5);
	z-index: 10;          /* bring it above neighbours */
}

.btn-pill span {
	opacity: 0.7;
	font-size: 0.8rem;
	font-weight: 400;
}

.support-note {
	text-align: center;
	color: var(--text-muted);
	font-size: 0.85rem;
	line-height: 1.4;
	white-space: pre-line;
	margin: 0 0 0;
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
}

/* ───────────────────────────────────────────
	 Section heading
	 ─────────────────────────────────────────── */

.section-label {
	margin-top: 28px;
	text-align: center;
	font-family: var(--font-display);
	font-size: 1.05rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
}

/* ───────────────────────────────────────────
	 Mode picker buttons
	 ─────────────────────────────────────────── */

.mode-picker {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 24px;
}

.mode-btn {
	background: var(--bg-elevated-soft);
	border-radius: var(--radius-pill);
	border: 1px solid #242424;
	padding: 12px 18px;
	width: 100%;
	text-align: left;
	color: var(--text-main);
	font-size: 0.95rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	box-shadow: var(--shadow-soft);
}

.mode-btn:hover {
	background: #222;
	transform: translateY(-1px);
	box-shadow: 0 14px 32px rgba(0,0,0,0.5);
	z-index: 10;
}

.mode-badge {
	padding: 4px 10px;
	border-radius: var(--radius-pill);
	font-size: 0.75rem;
}

.badge-sfw {
	background: rgba(160, 236, 199, 0.15);
	border: 1px solid rgba(160, 236, 199, 0.5);
}

.badge-nsfw {
	background: rgba(255, 92, 123, 0.12);
	border: 1px solid rgba(255, 92, 123, 0.7);
}

/* ───────────────────────────────────────────
	 Modal
	 ─────────────────────────────────────────── */

.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.78);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 40;
}

.modal {
	background: #111;
	border-radius: var(--radius-card);
	padding: 20px 18px 18px;
	max-width: 420px;
	width: calc(100% - 32px);
	box-shadow: var(--shadow-soft);
}

.modal h2 {
	margin-top: 0;
}

.modal p {
	font-size: 0.9rem;
	color: var(--text-muted);
}

.modal-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 16px;
}

.btn {
	border: none;
	padding: 9px 16px;
	border-radius: var(--radius-pill);
	cursor: pointer;
	font-size: 0.9rem;
}

.btn-ghost {
	background: transparent;
	color: var(--text-muted);
}

.btn-primary {
	background: var(--accent-soft);
	color: #170b12;
}

.hidden {
	display: none;
}

/* ───────────────────────────────────────────
	 Library page
	 ─────────────────────────────────────────── */

/* Library mode bar */
.library-mode-bar {
	margin-bottom: 16px;
}

/* Active mode button */
.mode-btn-active {
	border-color: var(--accent-soft);
	box-shadow: 0 0 0 1px var(--accent-soft), var(--shadow-soft);
}

/* Tag filters */
.library-filters {
	margin-bottom: 18px;
}

/* Button that opens the tag modal */
.tag-filters-inline {
	display: flex;
	justify-content: center;
	margin: 1rem 0;
}

.tag-filter-open {
	border-radius: 999px;
	padding: 0.4rem 1.1rem;
	background: #252525;
	color: #eee;
	border: 1px solid #555;
	cursor: pointer;
	font-size: 0.9rem;
	transition: background 0.15s, border-color 0.15s, transform 0.1s;
}

.tag-filter-open:hover {
	background: #333;
	border-color: #e35ab1;
	transform: translateY(-1px);
}

/* Tag modal tweaks */
.modal--tags {
	max-width: 40rem;
	max-height: 70vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.modal--tags .tag-filter-grid {
	margin-top: 0.75rem;
	padding-right: 0.25rem;
	overflow: auto;
}

/* Tag chips – tri-state */
.tag-chip {
	border-radius: 999px;
	padding: 0.25rem 0.8rem;
	border: 1px solid #666;
	background: #151515;
	color: #eee;
	font-size: 0.85rem;
	cursor: pointer;
	margin: 0.2rem;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.tag-chip--include {
	background: rgba(46, 204, 113, 0.18);
	border-color: #2ecc71;
	color: #b4ffd2;
}

.tag-chip--exclude {
	background: rgba(231, 76, 60, 0.18);
	border-color: #e74c3c;
	color: #ffc1ba;
}

/* Grid layout inside modal */
.tag-filter-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.tag-filter-column {
	min-width: 0;
}

.tag-filter-title {
	font-family: var(--font-display);
	font-size: 0.9rem;
	margin-bottom: 4px;
}

.tag-filter-group {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.tag-filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 8px;
	border-radius: var(--radius-pill);
	border: 1px solid #333;
	background: #181818;
}

.library-controls {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 18px;
}

@media (min-width: 640px) {
	.library-controls {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

.library-mode-bar {
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
}

/* On wide screens, keep controls in a 960px column, cards can be wider */
@media (min-width: 1200px) {
	.page-header,
	.library-controls,
	.library-filters,
	.tag-filter-summary {
		max-width: 960px;
		margin-left: auto;
		margin-right: auto;
	}
}

.mode-select-label {
	font-size: 0.8rem;
	color: var(--text-muted);
}

.mode-select {
	width: 65%;
	padding: 10px 14px;
	border-radius: var(--radius-pill);
	border: 1px solid #444;
	background: #181818;
	color: var(--text-main);
	font-size: 0.95rem;
	box-shadow: var(--shadow-soft);
	appearance: none;        /* hide default styling where supported */
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image:
		linear-gradient(45deg, #fff 50%, transparent 50%),
		linear-gradient(135deg, #fff 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 50%,
		calc(100% - 12px) 50%;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

/* Slight highlight on focus */
.mode-select:focus {
	outline: none;
	border-color: var(--accent-soft);
	box-shadow:
		0 0 0 1px var(--accent-soft),
		var(--shadow-soft);
}

.search-input {
	width: 100%;
	padding: 10px 12px;
	border-radius: var(--radius-pill);
	border: 1px solid #333;
	background: #0b0b0b;
	color: var(--text-main);
}

.mode-indicator {
	font-size: 0.85rem;
	color: var(--text-muted);
}

/* ───────────────────────────────────────────
	 Cards
	 ─────────────────────────────────────────── */

.card-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

/* 2 cards per row on small tablets */
@media (min-width: 768px) {
	.card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* 3 cards per row on medium screens (optional, keeps things from feeling too cramped) */
@media (min-width: 1100px) {
	.card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* 4 cards per row on desktop / wide screens */
@media (min-width: 1440px) {
	.card-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}


/*  AUDIO CARDS   */

.audio-card {
	background: #141414;
	border-radius: 16px;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	height: 100%;
	gap: 0.75rem;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* header layout */
.audio-card__header {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.audio-card__top-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.audio-card__badgeGroup {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.audio-card__bottom {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.access-badge {
	border-radius: 999px;
	padding: 0.15rem 0.65rem;
	font-size: 0.75rem;
	font-weight: 500;
	border: 1px solid transparent;
}

.rating-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.1rem 0.55rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.03em;
}

.rating-badge--sfw {
	background: rgba(70, 255, 100, 0.12);
	color: #46ff64;
}

.rating-badge--nsfw {
	background: rgba(255, 96, 160, 0.15);
	color: #ff73c2;
}

.access-badge--free {
	background: rgba(46, 204, 113, 0.12);
	color: #7cffb3;
	border-color: rgba(124, 255, 179, 0.7);
}

/* Premium – soft gold/pink */
.access-badge--premium {
	background: rgba(255, 215, 0, 0.08);
	color: #ffd76a;
	border-color: rgba(255, 215, 0, 0.7);
}

.audio-card__top-right {
	display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
    font-size: 0.85rem;
    opacity: 0.85;
}

.audio-card__title {
	font-size: 1.35rem;
	font-weight: 600;
	margin: 0;
	margin-top: 20px;
	margin-bottom: 20px;
}

/* description + collapse */
.audio-card__description-wrapper {
	position: relative;
}

.audio-card__description {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
	max-height: 4.5em;        /* ~3 lines */
	overflow: hidden;
	white-space: pre-line;
}

/* when expanded, let it grow */
.audio-card__description-wrapper.is-expanded .audio-card__description {
	max-height: none;
}

/* toggle button */
.audio-card__toggle {
	margin-top: 0.35rem;
	background: none;
	border: none;
	color: #a973c2;
	font-size: 0.85rem;
	cursor: pointer;
	padding: 0;
}

/* links row */
.audio-card__links {
	color: #ff73c2;
	margin-top: 0.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

/* tags line */
.ext-tags-line {
	margin-top: 0.75rem;
	font-size: 0.85rem;
	opacity: 0.75;
	margin-block-end: 0em;
	white-space: pre-line;
}

.audio-card__tags {
	margin-top: 0.75rem;
	font-size: 0.85rem;
	opacity: 0.75;
	margin-block-start: 0em;
}

.audio-card__listened {
	color: #ff73c2 !important;
	align-self: flex-end;
	margin-top: 0.5rem;
	background: none;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	padding: 0.1rem 0.7rem;
	font-size: 0.75rem;
	cursor: pointer;
	opacity: 0.9;
	white-space: nowrap;
}

.audio-card__listened:hover {
	border-color: rgba(255, 150, 220, 0.7);
}

/* visually dim cards you've already listened to */
.audio-card.is-listened {
	opacity: 0.6;
}

.filter-row--triple {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

/* Left + center groups */
.access-toggle,
.listen-toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* Reuse the pill styling */
.access-toggle__btn,
.listen-toggle__btn {
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	background: #222;
	color: #eee;
	border: 1px solid #555;
	font-size: 0.85rem;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.access-toggle__btn:hover,
.listen-toggle__btn:hover {
	background: #333;
}

.access-toggle__btn.is-active,
.listen-toggle__btn.is-active {
	background: #e35ab1;
	border-color: #e35ab1;
	color: #fff;
}

/* Filters button on the right */
.tag-filter-open {
	border-radius: 999px;
	padding: 0.4rem 1.1rem;
	background: #252525;
	color: #eee;
	border: 1px solid #555;
	cursor: pointer;
	font-size: 0.9rem;
	transition: background 0.15s, border-color 0.15s, transform 0.1s;
	white-space: nowrap;
}

.tag-filter-open:hover {
	background: #333;
	border-color: #e35ab1;
	transform: translateY(-1px);
}

.tag-filter-summary {
	margin-top: 0.35rem;
	text-align: center;
	font-size: 0.8rem;
	color: #aaa;
	font-style: italic;
}

.audio-card--highlight {
	box-shadow: 0 0 0 2px #ff73c2, 0 0 16px rgba(255, 115, 194, 0.5);
}

.audio-card__seriesBlock {
	margin-top: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

/* Row 1 – Centered Header */
.audio-card__series-titleRow {
	text-align: center;
	font-size: 0.9rem;
	font-weight: 500;
	opacity: 0.9;
}

/* Row 2 – Previous Left / Next Right */
.audio-card__series-navRow {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Align left/right parts cleanly */
.audio-card__series-left,
.audio-card__series-right {
	display: flex;
	align-items: center;
}

.audio-card__series-right {
	display: flex;
	justify-content: flex-end;
}

.audio-card__series-label {
	margin-right: 0.5rem;
	opacity: 0.9;
}

.audio-card__footerRow {
    display: flex;
    align-items: center;
	justify-content: space-between;
    margin-top: 0;
	padding-top: 1rem;
	margin-bottom: 0rem;
    gap: 0.5rem;
}

.audio-card__footer-left,
.audio-card__footer-right {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.audio-card__footer-left {
	justify-content: flex-start;
}

.audio-card__footer-right {
	margin-left: auto;
	justify-content: flex-end;
}

.audio-card__variants {
	margin-top: 0.75rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
	font-size: 0.85rem;
}

.audio-card__variants,
.audio-card__footer-left > .audio-card__variants {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.audio-card__variant-btn,
.audio-card__series-btn {
	background: none;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	padding: 0.15rem 0.75rem;
	font-size: 0.8rem;
	cursor: pointer;
	color: #ff73c2;
}

.audio-card__variant-btn:hover,
.audio-card__series-btn:hover {
	border-color: rgba(255, 115, 194, 0.8);
}

/*      */

.twitter-follow-chip {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-soft);
	color: #170b12;
	padding: 4px 10px;
	border-radius: var(--radius-pill);
	font-size: 0.78rem;
	font-weight: 600;
	z-index: 3;
	text-decoration: none;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.twitter-follow-chip:hover {
	background: var(--accent);
}

.audio-link-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;

	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);

	color: var(--accent-color, #d46aff);
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;

	transition: background 0.2s ease, border-color 0.2s ease;
	margin-right: 0.35rem;
	margin-bottom: 0.35rem;
}

.audio-link-pill:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--accent-color, #d46aff);
}

.pill-icon svg {
	fill: currentColor;
	opacity: 0.85;
}

.pill-text {
	line-height: 1;
}

/*   ───────────────────────────────────────────
	 Footer
	 ─────────────────────────────────────────── */

.page-footer {
	margin-top: 40px;
	font-size: 0.75rem;
	text-align: center;
	color: var(--text-muted);
}

/* ───────────────────────────────────────────────────
		Top header + Hamburger (universal)
─────────────────────────────────────────────────── */

.site-header {
	width: 100%;
	margin: 0 auto;
	padding: 0 0 4px;
	position: relative;
	overflow: hidden;

	display: flex;
	justify-content: center;   /* center the banner horizontally */
	align-items: flex-start;   /* keep it attached to the top */

	background: var(--bg);     /* so side gaps match the page colour */
}

/* Fade stays as you already have it */
.site-header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 160px; /* and your smaller mobile override */
	background: linear-gradient(
		to bottom,
		rgba(16, 16, 16, 0) 0%,
		var(--bg) 80%,
		var(--bg) 100%
	);
	pointer-events: none;
}

@media (max-width: 600px) {
	.site-header::after {
		height: 50px; /* or 60px depending on your taste */
		background: linear-gradient(
			to bottom,
			rgba(16, 16, 16, 0) 0%,
			var(--bg) 70%,
			var(--bg) 100%
		);
	}
}

.site-header-title {
	font-family: var(--font-display);
	font-size: 1rem;
	opacity: 0.75;
	align-items: center;
}

.nav-toggle {
	position: fixed;
	top: 16px;
	left: 16px;
	background: transparent;
	border: 0px solid #333;
	border-radius: 999px;
	width: 48px;
	height: 48px;
	color: var(--text-main);
	cursor: pointer;
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
}

/* ───────────────────────────────────────────
	 Slide-out side navigation
	 ─────────────────────────────────────────── */

.side-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 240px;
	max-width: 80%;
	height: 100vh;
	background: #202020;
	box-shadow: -8px 0 30px rgba(0, 0, 0, 0.7);
	transform: translateX(-100%);
	transition: transform 0.25s ease-out;
	z-index: 2001;
	padding: 16px 16px 24px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.side-nav.open {
	transform: translateX(0);
}

.side-nav-close {
	align-self: flex-end;
	background: transparent;
	border: none;
	color: var(--text-main);
	font-size: 2.5rem;
	cursor: pointer;
}

.side-nav-section {
	border-top: 1px solid #2a2a2a;
	padding-top: 12px;
	margin-top: 4px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.side-nav-link {
	color: var(--text-main);
	text-decoration: none;
	font-size: 1.2rem;
	padding: 6px 4px;
}

.side-nav-link:hover {
	color: var(--accent);
}

/* Dark overlay behind open menu */

.side-nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease-out;
	z-index: 900;
}

.side-nav-overlay.open {
	opacity: 1;
	pointer-events: auto;
}

/* Slightly hide the header title on tiny screens if needed */

@media (max-width: 480px) {
	.site-header-title {
		font-size: 0.9rem;
	}
}

/* ───────────────────────────────────────────
	 Text effects: gradient + glow utilities
	 ─────────────────────────────────────────── */

.text-gradient {
	background: linear-gradient(90deg, #ff74d4, #6aa6ff);
	background-size: 100% 100%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-glow-soft {
	text-shadow:
		0 0 6px rgba(245, 193, 224, 0.5),
		0 0 14px rgba(240, 166, 208, 0.4),
		0 0 24px rgba(240, 166, 208, 0.25);
}

.text-gradient-animated {
	background: linear-gradient(
		90deg,
		#ff4da6,
		#c28bff,
		#6fb7ff,
		#7effc5,
		#ff4da6
	);
	background-size: 300% 100%;
	animation: gradientFlow 6s ease-in-out infinite;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@keyframes gradientFlow {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
