@font-face {
	font-family: "IBM Plex Sans";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("fonts/ibm-plex-sans-v23-latin-regular.woff2") format("woff2");
}

@font-face {
	font-family: "IBM Plex Sans";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("fonts/ibm-plex-sans-v23-latin-500.woff2") format("woff2");
}

@font-face {
	font-family: "Font Awesome 7 Sharp";
	font-style: normal;
	font-weight: 900;
	font-display: block;
	src: url("fontawesome/fa-sharp-solid-900.woff2") format("woff2");
}

@font-face {
	font-family: "Font Awesome 7 Sharp";
	font-style: normal;
	font-weight: 300;
	font-display: block;
	src: url("fontawesome/fa-sharp-light-300.woff2") format("woff2");
}

:root {
	--font-xs: .65rem;
	--font-sm: .7rem;
	--font-md: .8rem;
	--font-lg: .9rem;
	--font-xxl: 1.1rem;
	--swipe-red: #f15525;
	--swipe-green: #5acc77;
	color-scheme: dark;
	font-family: "IBM Plex Sans", sans-serif;
	font-synthesis: none;
	background: #000;
}

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

html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
	background: #000;
	color: #ededed;
}

button,
a {
	font: inherit;
}

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

.fa-sharp {
	display: inline-block;
	width: auto;
	font-family: "Font Awesome 7 Sharp";
	font-style: normal;
	font-synthesis: none;
	font-variant: normal;
	line-height: 1;
	text-align: center;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

.fa-solid {
	font-weight: 900;
}

.fa-xmark::before {
	content: "\f00d";
}

.fa-heart::before {
	content: "\f004";
}

header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9998;
	width: 100%;
	height: 61px;
	background: #000;
	border-bottom: 1px solid #303030;
	-webkit-backface-visibility: hidden;
}

.top {
	width: 100%;
	height: 60px;
	padding: 10px 10px 10px 20px;
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	z-index: 9998;
}

.logo {
	grid-row: 1;
	grid-column: 1;
	display: flex;
	align-items: center;
	justify-self: start;
	height: 40px;
	color: #fff;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
	z-index: 9998;
}

.logo i {
	display: block;
	width: 36px;
	height: 36px;
	background-color: currentColor;
	-webkit-mask: url("ordinal.svg") center / contain no-repeat;
	mask: url("ordinal.svg") center / contain no-repeat;
}

.hamburger {
	position: relative;
	grid-row: 1;
	grid-column: 1;
	display: flex;
	align-items: center;
	justify-self: end;
	height: 40px;
	padding: 0 10px;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	z-index: 9998;
	overflow: visible;
	gap: 0;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.hamburger-box {
	position: relative;
	display: inline-block;
	width: 24px;
	height: 9px;
}

.hamburger-inner::before,
.hamburger-inner::after {
	position: absolute;
	left: 0;
	display: block;
	width: 24px;
	height: 1px;
	content: "";
	background: #f57325;
	transition: transform 160ms ease, top 160ms ease, bottom 160ms ease;
}

.hamburger-inner::before {
	top: 0;
}

.hamburger-inner::after {
	bottom: 0;
}

.hamburger.is-active .hamburger-inner::before {
	top: 4px;
	transform: rotate(45deg);
}

.hamburger.is-active .hamburger-inner::after {
	bottom: 4px;
	transform: rotate(-45deg);
}

.nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9996;
	width: 400px;
	height: 100vh;
	height: 100dvh;
	padding: 91px 20px 20px 40px;
	overflow-x: hidden !important;
	overflow-y: auto !important;
	overscroll-behavior: contain;
	background-color: #000;
	transform: translateX(100%);
	visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.nav.open {
	transform: none;
	visibility: visible;
}

.footer {
	float: left;
	display: flex;
	width: 100%;
	margin: 80px 0 0;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.links,
.social {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.links a,
.links a:active,
.links a:visited,
.social a,
.social a:active,
.social a:visited {
	display: flex;
	height: 32px;
	padding: 0 10px;
	align-items: center;
	justify-content: center;
	font-size: var(--font-md);
	line-height: 30px;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: #999;
	cursor: pointer;
	transition: color .2s;
}

.links a:hover,
.social a:hover {
	color: #fff;
}

.social svg {
	display: block;
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.swipe-page {
	--swipe-header-height: 61px;
	--swipe-side-size: clamp(34px, 8vw, 64px);
	--swipe-side-gap: clamp(16px, 3vw, 40px);
	--swipe-card-size: min(
		460px,
		calc(100vw - (var(--swipe-side-size) * 2) - (var(--swipe-side-gap) * 2) - 20px),
		calc(100vh - var(--swipe-header-height) - 205px)
	);
	position: fixed;
	inset: var(--swipe-header-height) 0 0;
	isolation: isolate;
	overflow: hidden;
	background: #000;
}

@supports (height: 100dvh) {
	.swipe-page {
		--swipe-card-size: min(
			460px,
			calc(100vw - (var(--swipe-side-size) * 2) - (var(--swipe-side-gap) * 2) - 20px),
			calc(100dvh - var(--swipe-header-height) - 205px)
		);
	}
}

.swipe-stars {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.swipe-review-stage {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: var(--swipe-side-size) var(--swipe-card-size) var(--swipe-side-size);
	grid-template-rows: auto var(--swipe-card-size) auto;
	column-gap: var(--swipe-side-gap);
	width: max-content;
	height: 100%;
	margin: 0 auto;
	align-content: center;
	align-items: center;
	justify-content: center;
	border: 0;
}

.swipe-review-intro {
	grid-column: 2;
	grid-row: 1;
	width: var(--swipe-card-size);
	margin: 0 0 40px;
	text-align: center;
}

.swipe-review-intro h1 {
	margin: 0;
	font-size: var(--font-xxl);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0;
	color: #ededed;
}

.swipe-review-intro p {
	margin: 5px 0 0;
	font-size: var(--font-md);
	font-weight: 400;
	line-height: 1.4;
	color: #aaa;
}

.swipe-deck {
	position: relative;
	grid-column: 2;
	grid-row: 2;
	z-index: 1;
	width: var(--swipe-card-size);
	height: var(--swipe-card-size);
	border: 0;
	outline: none;
	touch-action: none;
	-webkit-tap-highlight-color: transparent;
}

.swipe-review-card {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #000;
	border: 1px solid #303030;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
	transform-origin: 50% 80%;
	transition: transform 320ms cubic-bezier(.2, .8, .2, 1), opacity 180ms ease;
	contain: strict;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swipe-review-card.is-dragging,
.swipe-review-card.is-returning,
.swipe-review-card.is-entering,
.swipe-review-card.is-exiting {
	will-change: transform, opacity;
}

.swipe-review-card.is-pending-entry {
	opacity: 0;
	pointer-events: none;
}

.swipe-review-card.is-entering {
	pointer-events: none;
	animation: swipe-card-enter 320ms ease both;
}

@keyframes swipe-card-enter {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.swipe-review-card.is-dragging {
	cursor: grabbing;
	transition: none;
}

.swipe-review-card.is-returning {
	transition: transform 320ms cubic-bezier(.2, .8, .2, 1);
}

.swipe-review-card.is-exiting {
	opacity: 0;
}

.swipe-review-card.is-exiting {
	pointer-events: none;
}

.swipe-card-media {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border: 0;
	background: #000;
}

.swipe-review-card-skeleton .swipe-card-media {
	background: #080808;
}

.swipe-card-media::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	content: "";
	background: linear-gradient(
		120deg,
		#080808 30%,
		#141414 38%,
		#202020 40%,
		#141414 42%,
		#080808 70%
	);
	background-size: 200% 100%;
	animation: swipe-shimmer 1.8s ease-in-out infinite;
	pointer-events: none;
	transition: opacity .3s ease;
}

.swipe-card-media::after {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	display: block;
	content: "\f03e";
	transform: translate(-50%, -50%);
	font-family: "Font Awesome 7 Sharp";
	font-size: 4rem;
	font-weight: 300;
	line-height: 1;
	color: transparent;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(
		120deg,
		#181818 30%,
		#383838 38%,
		#606060 40%,
		#383838 42%,
		#181818 70%
	);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	animation: swipe-shimmer 1.8s ease-in-out infinite;
	pointer-events: none;
	transition: opacity .3s ease;
}

.swipe-card-media.loaded::after {
	opacity: 0;
	pointer-events: none;
	transition: none;
}

.swipe-card-media.loaded::before {
	opacity: 0;
	pointer-events: none;
	transition: none;
}

.swipe-card-content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: #000;
	opacity: 0;
	pointer-events: none;
	user-select: none;
	-webkit-user-select: none;
	transition: opacity 200ms ease;
}

img.swipe-card-content {
	object-fit: contain;
	object-position: center;
}

img.swipe-card-content.pixel-art {
	image-rendering: pixelated;
	image-rendering: crisp-edges;
}

.swipe-card-media.loaded .swipe-card-content {
	opacity: 1;
}

.swipe-card-gesture-layer {
	position: absolute;
	inset: 0;
	z-index: 4;
	background: transparent;
	touch-action: none;
	user-select: none;
	-webkit-user-select: none;
	-webkit-user-drag: none;
}

.swipe-choice {
	position: relative;
	z-index: 5;
	display: flex;
	width: var(--swipe-side-size);
	height: 64px;
	align-items: center;
	justify-content: center;
	font-size: clamp(19px, 2.6vw, 32px);
	line-height: 1;
	opacity: .55;
	transition: opacity 160ms ease, transform 160ms ease, filter 160ms ease, text-shadow 160ms ease;
}

.swipe-choice-no {
	grid-column: 1;
	grid-row: 2;
	color: var(--swipe-red);
}

.swipe-choice-yes {
	grid-column: 3;
	grid-row: 2;
	color: var(--swipe-green);
}

.swipe-choice.is-intent {
	opacity: 1;
	filter: brightness(1.3);
	text-shadow: 0 0 14px currentColor;
	transform: scale(1.15);
}

.swipe-decision-actions {
	grid-column: 2;
	grid-row: 3;
	z-index: 5;
	display: flex;
	gap: 10px;
	width: var(--swipe-card-size);
	margin: 40px 0 0;
}

.action {
	display: flex;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	padding: 10px 15px;
	border: 0;
	border-radius: 20px;
	background: #ededed;
	color: #000;
	cursor: pointer;
}

.swipe-decision-button {
	flex: 1 1 0;
	min-width: 0;
	font-size: var(--font-lg);
	font-weight: 500;
	text-transform: uppercase;
}

.swipe-decision-button .fa-solid {
	font-weight: 900;
}

.swipe-decision-no,
.swipe-decision-no:active {
	background: var(--swipe-red);
	color: #000;
}

.swipe-decision-yes,
.swipe-decision-yes:active {
	background: var(--swipe-green);
	color: #000;
}

.swipe-decision-button:hover {
	filter: brightness(1.12);
}

.swipe-decision-button:disabled,
.swipe-decision-button:disabled:hover {
	opacity: .35;
	filter: none;
	cursor: default;
}

.swipe-decision-button:focus-visible,
.swipe-deck:focus-visible {
	outline: 1px solid #ededed;
	outline-offset: 4px;
}

.swipe-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* -------------------------------------------------------------- Top collections */

.top-body {
	height: auto;
	min-height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

html.top-root {
	height: auto;
	min-height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.top-page {
	position: relative;
	isolation: isolate;
	width: 100%;
	min-width: 0;
	min-height: 100vh;
	padding: 101px 0 60px;
	overflow: visible;
	background: #000;
}

@supports (min-height: 100dvh) {
	.top-page {
		min-height: 100dvh;
	}
}

.top-stars {
	position: fixed;
	inset: 61px 0 0;
	z-index: 0;
	pointer-events: none;
}

.top-holder {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1000px;
	min-width: 0;
	margin: 0 auto;
	padding: 0 20px;
}

.top-heading {
	display: flex;
	width: 100%;
	min-width: 0;
	margin: 0 0 30px;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
}

.top-heading > div {
	min-width: 0;
}

.top-heading h1 {
	margin: 0;
	font-size: var(--font-xxl);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0;
	color: #ededed;
}

.top-heading p {
	margin: 5px 0 0;
	font-size: var(--font-md);
	font-weight: 400;
	line-height: 1.4;
	color: #999;
}

.top-swipe-link {
	flex: 0 0 auto;
	min-width: 100px;
	min-height: 36px;
}

.top-board,
.top-list {
	width: 100%;
	min-width: 0;
}

.top-board {
	background: #000;
}

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

.top-board-header,
.top-row > a,
.top-row-skeleton {
	display: grid;
	grid-template-columns: 50px minmax(0, 1fr) 180px 110px;
	column-gap: 10px;
	align-items: center;
	width: 100%;
	min-width: 0;
}

.top-board-header {
	height: 36px;
	padding: 0 10px;
	border-bottom: 1px solid #202020;
	font-size: var(--font-sm);
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #777;
}

.top-board-header span:first-child {
	text-align: center;
}

.top-board-header span:nth-child(3),
.top-board-header span:nth-child(4) {
	text-align: right;
}

.top-row {
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #202020;
}

.top-row > a {
	min-height: 64px;
	padding: 10px;
	outline: none;
	transition: background-color 160ms ease;
}

.top-row > a:hover {
	background: #0c0c0c;
}

.top-row > a:focus-visible {
	outline: 1px solid #ededed;
	outline-offset: -2px;
	background: #0c0c0c;
}

.top-rank {
	min-width: 0;
	font-size: var(--font-md);
	font-variant-numeric: tabular-nums;
	text-align: center;
	color: #999;
	overflow: hidden;
	text-overflow: ellipsis;
}

.top-collection {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 10px;
}

.top-collection-image {
	position: relative;
	display: flex;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 50%;
	background: #101010;
}

.top-collection-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.top-collection-image img.pixel-art {
	image-rendering: pixelated;
	image-rendering: crisp-edges;
}

.top-collection-placeholder {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	color: #303030;
}

.top-collection-placeholder::before {
	content: "\f03e";
	font-family: "Font Awesome 7 Sharp";
	font-size: var(--font-lg);
	font-weight: 300;
	line-height: 1;
}

.top-collection-copy {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
}

.top-collection-name {
	min-width: 0;
	overflow: hidden;
	font-size: var(--font-lg);
	font-weight: 500;
	line-height: 1.25;
	color: #ededed;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.top-mobile-votes {
	display: none;
	margin-top: 2px;
	font-size: var(--font-sm);
	line-height: 1.2;
	color: #777;
	white-space: nowrap;
}

.top-approval {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
}

.top-approval-value,
.top-votes {
	font-size: var(--font-md);
	font-variant-numeric: tabular-nums;
	line-height: 1.2;
	color: #ededed;
	white-space: nowrap;
}

.top-approval-value i {
	font-size: var(--font-sm);
	color: var(--swipe-green);
}

.top-approval-meter {
	display: block;
	width: 120px;
	max-width: 100%;
	height: 3px;
	overflow: hidden;
	background: var(--swipe-red);
}

.top-approval-meter > span {
	display: block;
	height: 100%;
	max-width: 100%;
	background: var(--swipe-green);
}

.top-votes {
	min-width: 0;
	overflow: hidden;
	text-align: right;
	text-overflow: ellipsis;
}

.top-row-skeleton {
	height: 64px;
	padding: 10px;
}

.top-row-skeleton > span {
	display: block;
	height: 14px;
	border-radius: 2px;
	background: linear-gradient(90deg, #151515 25%, #303030 50%, #151515 75%);
	background-size: 200% 100%;
	animation: swipe-shimmer 1.5s linear infinite;
}

.top-row-skeleton > span:first-child {
	width: 22px;
	justify-self: center;
}

.top-row-skeleton > span:nth-child(2) {
	width: min(240px, 75%);
	height: 40px;
}

.top-row-skeleton > span:nth-child(3) {
	width: 120px;
	max-width: 100%;
	justify-self: end;
}

.top-row-skeleton > span:nth-child(4) {
	width: 70px;
	max-width: 100%;
	justify-self: end;
}

.top-list-state {
	display: flex;
	width: 100%;
	min-height: 120px;
	align-items: center;
	justify-content: center;
	padding: 20px;
	border-bottom: 1px solid #202020;
	font-size: var(--font-md);
	line-height: 1.4;
	text-align: center;
	color: #999;
}

.top-list-actions {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 20px 0 0;
}

.top-load-more {
	min-width: 140px;
}

.top-load-more:focus-visible,
.top-swipe-link:focus-visible {
	outline: 1px solid #ededed;
	outline-offset: 4px;
}

.top-load-more:disabled {
	opacity: .35;
	cursor: default;
}

@keyframes swipe-shimmer {
	from { background-position: 200% 0; }
	to { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
	.swipe-card-media::before,
	.top-row-skeleton > span {
		animation: none;
		background: #111;
	}
}

@media (max-width: 800px) {
	:root {
		--font-xs: .6rem;
		--font-sm: .68rem;
		--font-md: .75rem;
		--font-xxl: 1.05rem;
	}

	header {
		height: 41px;
	}

	.top {
		height: 40px;
		padding: 0 0 0 10px;
		grid-template-columns: auto 1fr auto;
	}

	.logo {
		grid-row: auto;
		grid-column: auto;
		height: 32px;
	}

	.logo i {
		width: 28px;
		height: 28px;
	}

	.hamburger {
		grid-row: auto;
		grid-column: 3;
	}

	.nav {
		width: 100vw;
		padding: 71px 20px 20px;
	}

	.swipe-page {
		--swipe-header-height: 41px;
		--swipe-card-size: min(
			460px,
			calc(100vw - (var(--swipe-side-size) * 2) - (var(--swipe-side-gap) * 2) - 20px),
			calc(100vh - var(--swipe-header-height) - 190px)
		);
	}

	@supports (height: 100dvh) {
		.swipe-page {
			--swipe-card-size: min(
				460px,
				calc(100vw - (var(--swipe-side-size) * 2) - (var(--swipe-side-gap) * 2) - 20px),
				calc(100dvh - var(--swipe-header-height) - 190px)
			);
		}
	}

	.swipe-choice {
		height: 48px;
		font-size: clamp(17px, 5vw, 23px);
	}

	.top-page {
		min-height: 100vh;
		padding: 81px 0 40px;
	}

	@supports (min-height: 100dvh) {
		.top-page {
			min-height: 100dvh;
		}
	}

	.top-stars {
		inset: 41px 0 0;
	}

	.top-holder {
		padding: 0 10px;
	}

	.top-heading {
		margin-bottom: 20px;
		gap: 10px;
	}

	.top-swipe-link {
		min-width: 80px;
		min-height: 36px;
		padding-right: 12px;
		padding-left: 12px;
	}

	.top-board-header,
	.top-row > a,
	.top-row-skeleton {
		grid-template-columns: 40px minmax(0, 1fr) minmax(76px, 96px);
		column-gap: 8px;
	}

	.top-board-header {
		padding-right: 5px;
		padding-left: 5px;
		font-size: var(--font-xs);
	}

	.top-board-header span:nth-child(4),
	.top-votes,
	.top-row-skeleton > span:nth-child(4) {
		display: none;
	}

	.top-row > a,
	.top-row-skeleton {
		min-height: 60px;
		padding: 10px 5px;
	}

	.top-row-skeleton {
		height: 60px;
	}

	.top-collection {
		gap: 8px;
	}

	.top-collection-image {
		flex-basis: 36px;
		width: 36px;
		height: 36px;
	}

	.top-mobile-votes {
		display: block;
	}

	.top-approval {
		gap: 5px;
	}

	.top-approval-meter {
		width: 100%;
	}

	.top-row-skeleton > span:nth-child(2) {
		height: 36px;
	}

	.top-load-more {
		width: min(100%, 240px);
	}
}

@media (max-width: 380px) {
	.top-board-header,
	.top-row > a,
	.top-row-skeleton {
		grid-template-columns: 30px minmax(0, 1fr) minmax(70px, 82px);
		column-gap: 5px;
	}

	.top-collection-image {
		flex-basis: 32px;
		width: 32px;
		height: 32px;
	}

	.top-collection {
		gap: 6px;
	}

	.top-approval-value {
		font-size: var(--font-sm);
	}

	.top-row-skeleton > span:nth-child(2) {
		height: 32px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}
