﻿/* M4Y Emoticons - Discord URL-Katalog */

.nr-emo {
	--nr-emo-ink: #f3f1ec;
	--nr-emo-muted: #b7b3aa;
	--nr-emo-hot: #e24f00;
	--nr-emo-hot-soft: #ff6412;
	--nr-emo-panel: rgba(12, 10, 10, 0.72);
	--nr-emo-line: rgba(255, 255, 255, 0.12);
	color: var(--nr-emo-ink);
	max-width: 920px;
	margin: 0 auto;
	padding: 8px 4px 40px;
	font-family: "Segoe UI", "Trebuchet MS", sans-serif;
}

.nr-emo__intro {
	margin: 0 0 18px;
	padding: 16px 18px;
	background: linear-gradient(
		90deg,
		rgba(18, 10, 10, 0.92) 0%,
		rgba(78, 8, 8, 0.45) 55%,
		rgba(40, 28, 8, 0.35) 100%
	);
	border: 1px solid var(--nr-emo-line);
	border-left: 3px solid var(--nr-emo-hot);
}

.nr-emo__lead {
	margin: 0 0 6px;
	font-size: 1.05rem;
	line-height: 1.45;
}

.nr-emo__lead strong {
	color: #fff;
}

.nr-emo__meta {
	margin: 0;
	font-size: 0.85rem;
	color: var(--nr-emo-muted);
}

.nr-emo__toolbar {
	position: sticky;
	top: 0;
	z-index: 5;
	padding: 10px 0 12px;
	margin-bottom: 8px;
	background: linear-gradient(#050505 70%, rgba(5, 5, 5, 0));
}

.nr-emo__search-wrap {
	display: block;
	margin-bottom: 10px;
}

.nr-emo__search {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	border: 1px solid var(--nr-emo-line);
	border-radius: 0;
	background: var(--nr-emo-panel);
	color: var(--nr-emo-ink);
	font-size: 1rem;
}

.nr-emo__search:focus {
	outline: none;
	border-color: var(--nr-emo-hot);
	box-shadow: 0 0 0 1px rgba(226, 79, 0, 0.35);
}

.nr-emo__cats {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.nr-emo__cat {
	appearance: none;
	border: 1px solid var(--nr-emo-line);
	background: rgba(255, 255, 255, 0.04);
	color: var(--nr-emo-muted);
	padding: 7px 11px;
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.nr-emo__cat:hover,
.nr-emo__cat:focus {
	color: #fff;
	border-color: rgba(226, 79, 0, 0.55);
	outline: none;
}

.nr-emo__cat.is-active {
	color: #fff;
	background: rgba(226, 79, 0, 0.22);
	border-color: var(--nr-emo-hot);
}

.nr-emo__section {
	margin: 0 0 28px;
}

.nr-emo__section.is-hidden {
	display: none;
}

.nr-emo__heading {
	margin: 0 0 12px;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	border-bottom: 1px solid var(--nr-emo-line);
	padding-bottom: 8px;
}

.nr-emo__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
}

/* M4Y Emoticons - Discord URL-Katalog */
.nr-emo__grid > br,
.nr-emo__grid > p {
	display: none !important;
}

.nr-emo__item {
	appearance: none;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	min-height: 96px;
	padding: 10px 6px 8px;
	border: 1px solid var(--nr-emo-line);
	background: var(--nr-emo-panel);
	color: var(--nr-emo-muted);
	cursor: pointer;
	transition:
		transform 0.18s ease,
		border-color 0.18s ease,
		background-color 0.18s ease,
		box-shadow 0.18s ease;
}

.nr-emo__fav {
	appearance: none;
	position: absolute;
	top: 4px;
	right: 4px;
	z-index: 2;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: rgba(0, 0, 0, 0.45);
	color: rgba(255, 255, 255, 0.35);
	font-size: 0.95rem;
	line-height: 1;
	cursor: pointer;
}

.nr-emo__fav:hover,
.nr-emo__fav:focus {
	color: #fff;
	outline: none;
}

.nr-emo__fav.is-on {
	color: var(--nr-emo-hot-soft);
}

.nr-emo__cat--fav {
	border-color: rgba(226, 79, 0, 0.45);
}

.nr-emo__fav-hint {
	margin: 0 0 12px;
	font-size: 0.8rem;
	color: var(--nr-emo-muted);
}

.nr-emo__item:hover,
.nr-emo__item:focus {
	transform: translateY(-2px);
	border-color: rgba(226, 79, 0, 0.65);
	background: rgba(226, 79, 0, 0.12);
	outline: none;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.nr-emo__item.is-copied {
	border-color: var(--nr-emo-hot-soft);
	box-shadow: 0 0 0 1px rgba(255, 100, 18, 0.45);
}

.nr-emo__item.is-filtered-out {
	display: none;
}

.nr-emo__status {
	margin: 0 0 12px;
	font-size: 0.85rem;
	color: var(--nr-emo-muted);
}

.nr-emo__mount:empty::before {
	content: "LÃ¤dtâ€¦";
	display: block;
	padding: 12px 0;
	color: var(--nr-emo-muted);
	font-size: 0.9rem;
}

.nr-emo__item img {
	width: 56px;
	height: 56px;
	object-fit: contain;
	image-rendering: auto;
	background: rgba(255, 255, 255, 0.04);
}

.nr-emo__item img:not([src]) {
	/* Platzhalter bis Hydration â€“ kein Netzwerk-Request */
	content: "";
}

.nr-emo__name {
	font-size: 0.68rem;
	line-height: 1.2;
	text-align: center;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nr-emo__toast {
	position: fixed;
	left: 50%;
	bottom: 28px;
	transform: translateX(-50%) translateY(12px);
	z-index: 100050;
	padding: 10px 18px;
	background: #1a0f0a;
	border: 1px solid var(--nr-emo-hot);
	color: #fff;
	font-size: 0.9rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.nr-emo__toast.is-on {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.nr-emo__empty {
	padding: 20px;
	border: 1px solid var(--nr-emo-line);
	color: var(--nr-emo-muted);
}

.nr-emo .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

@media (max-width: 600px) {
	.nr-emo__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 6px;
	}

	.nr-emo__item {
		min-height: 88px;
		padding: 8px 4px 6px;
	}

	.nr-emo__item img {
		width: 48px;
		height: 48px;
	}
}

