:root {
	--bg: #0f1220;
	--card: #191d31;
	--card-soft: #202744;
	--text: #eff3ff;
	--muted: #aeb8d9;
	--accent: #8d7bff;
	--accent-2: #ff7ecb;
	--success: #28c48f;
	--danger: #ff6b6b;
	--border: rgba(255, 255, 255, 0.09);
	--shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
	--radius: 18px;
}

/* ---------------------------------
   Reset / basis
--------------------------------- */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
	color: var(--text);
	background: radial-gradient(circle at top left, #1a1f38 0, var(--bg) 50%), var(--bg);
}

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

input,
select,
textarea,
button {
	font: inherit;
}

.wrap {
	width: min(1160px, calc(100% - 24px));
	margin: 0 auto;
}

.trust-links {
	margin-top: 10px;
	font-size: 0.9rem;
	opacity: 0.8;
}

.trust-links a {
	color: #cfd6ff;
	text-decoration: none;
	border-bottom: 1px dotted rgba(255,255,255,0.25);
	transition: all 0.2s ease;
}

.trust-links a:hover {
	color: #fff;
	border-bottom-color: rgba(255,255,255,0.5);
	text-shadow: 0 0 8px rgba(141, 123, 255, 0.35);
}

/* ---------------------------------
   Header
--------------------------------- */
.site-header {
	position: relative;
	z-index: 20;
	backdrop-filter: blur(12px);
	background: rgba(10, 12, 22, 0.78);
	border-bottom: 1px solid var(--border);
}

.header-grid,
.footer-inner,
.admin-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.brand {
	display: inline-block;
	padding: 16px 0 4px;
	font-size: 1.35rem;
	font-weight: 800;
	color: #fff;
}

.tagline {
	margin: 0 0 14px;
	color: var(--muted);
	font-size: 0.95rem;
}

.remember-check {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.remember-check input[type="checkbox"] {
	width: auto;
	margin: 0;
}

.admin-login-divider {
	margin: 20px -26px 0;
	height: 1px;
	background: linear-gradient(
		to right,
		transparent,
		rgba(255,255,255,0.08),
		transparent
	);
}

/* Container krijgt eigen zachte achtergrond */
.admin-login-info-inline {
	display: flex;
	align-items: flex-start;
	gap: 12px;

	margin: 0 -26px -26px;
	padding: 16px 26px 18px;

	background: linear-gradient(
		180deg,
		rgba(255,255,255,0.02),
		rgba(255,255,255,0.01)
	);

	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.breadcrumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	color: #aeb8d9;
}

.breadcrumbs a {
	color: #dfe5ff;
	font-weight: 600;
	transition: all 0.2s ease;
}

.breadcrumbs a:hover {
	color: #fff;
	text-shadow: 0 0 8px rgba(141,123,255,0.4);
}

.breadcrumbs span {
	opacity: 0.5;
}

/* Icoon */
.admin-login-info-inline .admin-login-info-icon {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 11px;

	background: rgba(141, 123, 255, 0.12);
	border: 1px solid rgba(141, 123, 255, 0.22);

	font-size: 0.9rem;
	flex-shrink: 0;
}

/* Titel */
.admin-login-info-inline .admin-login-info-title {
	font-size: 0.92rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 3px;
}

/* Tekst */
.admin-login-info-inline p {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.45;
	color: #cdd5f1;
}

.admin-login-info-inline p + p {
	margin-top: 5px;
}

.admin-login-info-inline strong {
	color: #fff;
}

.stats-grid {
	position: relative;
	z-index: 1;
}

.stat-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 10px;
	padding: 14px 16px;
	min-height: 82px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
}

.stat-box-admin {
	position: relative;
}

.stat-card-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	color: inherit;
	width: 100%;
	min-height: 82px;
	position: relative;
	z-index: 5;
	cursor: pointer;
	pointer-events: auto;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.stat-card-link:hover {
	transform: translateY(-1px);
	box-shadow:
		0 14px 30px rgba(0, 0, 0, 0.30),
		0 0 20px rgba(141, 123, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.16);
}

.stat-card-link strong {
	transition: transform 0.2s ease;
}

.stat-card-link:hover strong {
	transform: scale(1.08);
}

.stat-lock {
	position: absolute;
	top: 6px;
	right: 8px;
	font-size: 0.75rem;
	opacity: 0.6;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.stat-card-link:hover .stat-lock {
	opacity: 1;
	transform: scale(1.1);
}

.status-page-wrap {
	max-width: 860px;
	margin: 0 auto;
}

.status-form-card,
.status-result-card {
	margin-bottom: 22px;
}

.status-hero {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 18px;
}

.status-hero-icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: rgba(141, 123, 255, 0.12);
	border: 1px solid rgba(141, 123, 255, 0.22);
	font-size: 1.35rem;
	flex-shrink: 0;
	box-shadow:
		0 0 18px rgba(141, 123, 255, 0.12),
		inset 0 0 8px rgba(141, 123, 255, 0.05);
}

.status-hero-text h1 {
	margin: 0 0 6px;
	font-size: clamp(1.45rem, 2vw, 1.9rem);
	line-height: 1.15;
	color: #fff;
}

.status-hero-text p {
	margin: 0;
	color: #c7d0ef;
	max-width: 56ch;
	line-height: 1.6;
}

.status-form {
	margin-top: 0;
}

.status-form-actions {
	display: flex;
	justify-content: flex-start;
	margin-top: 4px;
}

.status-result-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
}

.status-result-header h2 {
	margin: 0;
}

.status-token-block {
	padding: 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	margin-bottom: 16px;
}

.status-token-block code {
	display: block;
	margin-top: 8px;
	padding: 12px 14px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 1px;
	word-break: break-all;
}

.status-meta-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 18px;
}

.status-meta-item {
	padding: 14px 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(255, 255, 255, 0.07);
}

.status-label {
	display: block;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #9ea9cf;
	margin-bottom: 6px;
}

.status-meta-item strong {
	color: #fff;
	font-size: 0.96rem;
	line-height: 1.4;
}

.status-message-box {
	padding: 16px;
	border-radius: 16px;
	background:
		radial-gradient(circle at top right, rgba(141, 123, 255, 0.08), transparent 35%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-message-box p {
	margin: 0;
}

.status-actions {
	margin-top: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.status-pill-pending {
	background: rgba(255, 187, 87, 0.15);
	border-color: rgba(255, 187, 87, 0.28);
	color: #ffd89b;
}

.status-pill-approved {
	background: rgba(40, 196, 143, 0.16);
	border-color: rgba(40, 196, 143, 0.30);
	color: #9ff0cf;
}

.status-pill-rejected {
	background: rgba(255, 107, 107, 0.16);
	border-color: rgba(255, 107, 107, 0.30);
	color: #ffb3b3;
}

.status-pill-deleted {
	background: rgba(160, 170, 190, 0.14);
	border-color: rgba(160, 170, 190, 0.26);
	color: #d8deef;
}

.status-token-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
}

.token-copy-btn {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	cursor: pointer;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.token-copy-btn:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.token-copy-btn:active {
	transform: scale(0.95);
}

body.modal-open {
	overflow: hidden;
}

.confirm-modal[hidden] {
	display: none !important;
}

.confirm-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.22s ease, visibility 0.22s ease;
}

.confirm-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.confirm-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(5, 8, 20, 0.78);
	backdrop-filter: blur(8px);
}

.confirm-modal-content {
	position: relative;
	z-index: 1;
	width: min(100%, 460px);
	padding: 28px 24px 22px;
	border-radius: 22px;
	background:
		radial-gradient(circle at top right, rgba(141, 123, 255, 0.16), transparent 34%),
		radial-gradient(circle at bottom left, rgba(255, 126, 203, 0.10), transparent 32%),
		linear-gradient(180deg, #18203a 0%, #0e1328 100%);
	border: 1px solid rgba(255, 255, 255, 0.10);
	box-shadow:
		0 24px 80px rgba(0, 0, 0, 0.45),
		0 0 34px rgba(141, 123, 255, 0.12);
	text-align: center;
	transform: translateY(14px) scale(0.985);
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.confirm-modal.is-open .confirm-modal-content {
	transform: translateY(0) scale(1);
}

.confirm-modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.18s ease, transform 0.18s ease;
}

.confirm-modal-close:hover {
	background: rgba(255, 255, 255, 0.14);
	transform: scale(1.04);
}

.confirm-modal-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	margin: 0 auto 16px;
	border-radius: 50%;
	font-size: 30px;
	background: rgba(255, 107, 107, 0.12);
	border: 1px solid rgba(255, 107, 107, 0.22);
	box-shadow:
		0 0 20px rgba(255, 107, 107, 0.12),
		inset 0 0 12px rgba(255, 107, 107, 0.06);
}

.confirm-modal-content h3 {
	margin: 0 0 10px;
	font-size: 1.35rem;
	line-height: 1.2;
	color: #fff;
}

.confirm-modal-content p {
	margin: 0;
	color: #c7d0ef;
	line-height: 1.65;
}

.confirm-modal-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 22px;
	flex-wrap: wrap;
}

.confirm-modal-actions .button {
	min-width: 150px;
}

.share-box {
	margin-top: 20px;
	padding-top: 10px;
	border-top: 1px solid rgba(255,255,255,0.05);
}

.share-title {
	font-size: 0.9rem;
	color: #aab3d1;
	margin-bottom: 10px;
}

.share-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 0.85rem;
	text-decoration: none;
	border: 1px solid rgba(255,255,255,0.08);
	background: rgba(255,255,255,0.03);
	color: #dbe2ff;
	cursor: pointer;
	transition: all 0.15s ease;
}

.share-btn:hover {
	background: rgba(141, 123, 255, 0.15);
	border-color: rgba(141, 123, 255, 0.4);
	transform: translateY(-1px);
}

.share-btn.copy {
	background: rgba(255,255,255,0.06);
}

@media (max-width: 640px) {
	.confirm-modal {
		padding: 14px;
	}

	.confirm-modal-content {
		width: 100%;
		padding: 24px 16px 18px;
		border-radius: 18px;
	}

	.confirm-modal-content h3 {
		font-size: 1.15rem;
		padding-right: 30px;
	}

	.confirm-modal-actions {
		flex-direction: column;
	}

	.confirm-modal-actions .button {
		width: 100%;
		min-width: 0;
	}
}

/* ---------------------------------
   Navigatie
--------------------------------- */
.nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

@media (min-width: 1200px) {
	.nav-install-btn {
		margin-left: 4px;
	}
}

.nav-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 10px 18px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.10);
	color: var(--text);
	font-weight: 700;
	letter-spacing: 0.01em;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
	transition: all 0.18s ease;
}

.nav-links a:hover {
	transform: translateY(-1px);
	background: linear-gradient(135deg, rgba(141, 123, 255, 0.22), rgba(255, 126, 203, 0.22));
	border-color: rgba(255, 255, 255, 0.18);
	color: #fff;
}

.nav-links a.active {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	border-color: transparent;
	color: #fff;
	box-shadow: 0 10px 24px rgba(141, 123, 255, 0.30);
}

/* ---------------------------------
   Main layout
--------------------------------- */
.main-content {
	padding: 24px 0 40px;
}

.hero-grid,
.content-grid,
.grid-two,
.stats-grid {
	display: grid;
}

.hero-grid {
	grid-template-columns: 1fr;
	gap: 24px;
	margin-bottom: 24px;
}

.content-grid {
	grid-template-columns: 1.8fr 0.95fr;
	align-items: start;
	gap: 32px;
}

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

.stats-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

/* ---------------------------------
   Cards
--------------------------------- */
.card {
	padding: 20px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

/* Alleen verticale layouts */
.card + .card {
	margin-top: 32px;
}

/* Maar NIET in grids */
.account-grid .card + .card,
.content-grid .card + .card,
.grid-two .card + .card {
	margin-top: 32px;
}

.filter-card {
	margin-bottom: 22px;
}

.secret-single-card {
	margin-bottom: 28px;
}

/* ---------------------------------
   Hero / stats
--------------------------------- */
.hero-card {
	padding: 18px 18px 16px;
}

.hero-card h1 {
	margin: 0 0 10px;
	font-size: clamp(1.5rem, 2vw, 1.9rem);
	line-height: 1.12;
	color: #9a88ff;
	text-shadow: 0 2px 10px rgba(141, 123, 255, 0.16);
}

.hero-card p {
	margin: 0 0 14px;
	max-width: 52ch;
	font-size: 0.98rem;
	line-height: 1.55;
	color: #d7def7;
}

.stat-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 10px;
	padding: 14px 16px;
	min-height: 82px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
}

.stat-box strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 34px;
	padding: 0 14px;
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1;
	color: #fff;
	border-radius: 999px;
	background: rgba(141, 123, 255, 0.12);
	border: 1px solid rgba(141, 123, 255, 0.24);
	box-shadow:
		0 0 14px rgba(141, 123, 255, 0.18),
		inset 0 0 8px rgba(141, 123, 255, 0.10);
}

.stat-box span {
	font-size: 0.88rem;
	line-height: 1.3;
	color: #aeb8d9;
}

/* ---------------------------------
   Secret page
--------------------------------- */
.secret-single-card h1 {
	color: #8d7bff;
	margin-top: 5px;
	margin-bottom: 4px;
	font-size: clamp(1.2rem, 2vw, 1.3rem);
	line-height: 1.2;
	text-shadow:
		0 2px 6px rgba(0, 0, 0, 0.4),
		0 0 8px rgba(141, 123, 255, 0.25);
}

.secret-meta {
	margin-top: 8px;
	font-size: 13px;
	color: #8f9bd1;
	opacity: 0.85;
}

.secret-preview,
.secret-body {
	font-size: 1.05rem;
	margin-bottom: 26px;
	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
	min-width: 0;
}

/* ---------------------------------
   Spotlight
--------------------------------- */
.spotlight-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 28px;
	min-height: 0;
	gap: 16px;
}

.spotlight-card h2 {
	margin: 0 0 6px;
	font-size: clamp(1.55rem, 2vw, 2.1rem);
	line-height: 1.15;
}

.spotlight-card .pill {
	margin: 0;
}

.spotlight-text {
	font-size: 1rem;
	line-height: 1.75;
	color: #dfe5ff;
	max-width: 32ch;
}

.spotlight-text p {
	margin: 0;
}

.spotlight-button {
	min-width: 160px;
	margin-top: 4px;
	align-self: flex-start;
}

.spotlight-card-wide {
	margin-bottom: 22px;
}

.spotlight-card-wide .spotlight-text {
	max-width: 70ch;
	font-size: 1.05rem;
	line-height: 1.8;
}

.spotlight-card h2,
.sidebar-card h2,
.form-card h2,
.card h2 {
	margin-top: 0;
}

/* ---------------------------------
   Form card
--------------------------------- */
.form-card {
	margin-bottom: 16px;
	padding: 24px 24px 22px;
	background:
		radial-gradient(circle at top right, rgba(141, 123, 255, 0.10), transparent 35%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.form-card h2 {
	margin-bottom: 10px;
}

.form-card p {
	margin: 0 0 18px;
	color: #c4cceb;
	max-width: 60ch;
}

.form-card .button {
	min-width: 190px;
}

.privacy-list {
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
	font-size: 0.9rem;
	line-height: 1.7;
	color: #c4cceb;
}

.privacy-list li {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* ---------------------------------
   Forms
--------------------------------- */
.secret-form,
.filters,
.comment-form,
.moderation-actions {
	display: grid;
	gap: 14px;
}

.secret-form {
	margin-top: 16px;
	position: relative;
}

.secret-form .grid-two {
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.filters {
	grid-template-columns: 220px 1fr auto;
	align-items: center;
}

input,
select,
textarea {
	width: 100%;
	padding: 10px 12px;
	background: #0f1428;
	color: var(--text);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
}

textarea {
	resize: vertical;
	min-height: 120px;
}

.textarea-wrapper {
	position: relative;
}

.secret-label {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.secret-label small,
.comment-label small {
	color: #9aa4d4;
	font-size: 0.72rem;
	font-weight: 500;
	line-height: 1.2;
	opacity: 0.6;
	margin-bottom: 6px;
}

.secret-textarea-wrapper textarea {
	padding-top: 38px;
}

.comment-textarea-wrapper textarea {
	padding-top: 34px;
}

.char-counter {
	position: absolute;
	right: 14px;
	font-size: 0.82rem;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 12px;
	letter-spacing: 0.3px;
	background: rgba(12, 18, 38, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(8px);
	transition: all 0.2s ease;
}

.secret-textarea-wrapper .char-counter {
	top: 58px;
}

.comment-textarea-wrapper .char-counter {
	top: 34px;
}

.char-counter.safe {
	color: #8ff7c2;
	box-shadow:
		0 0 10px rgba(80, 220, 160, 0.16),
		inset 0 0 4px rgba(80, 220, 160, 0.08);
}

.char-counter.warning {
	color: #ffd089;
	box-shadow:
		0 0 10px rgba(255, 176, 80, 0.16),
		inset 0 0 4px rgba(255, 176, 80, 0.08);
}

.char-counter.danger {
	color: #ff8f8f;
	box-shadow:
		0 0 10px rgba(255, 100, 100, 0.18),
		inset 0 0 4px rgba(255, 100, 100, 0.08);
}

/* ---------------------------------
   Buttons
--------------------------------- */
.button,
.action-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	border: 0;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.16s ease, opacity 0.16s ease;
}

.button:hover,
.action-button:hover {
	transform: translateY(-1px);
	opacity: 0.96;
}

.button-secondary {
	background: #2b3357;
}

.button-danger {
	background: var(--danger);
}

.button-small {
	padding: 8px 12px;
	font-size: 0.9rem;
}

/* ---------------------------------
   Secret cards / meta
--------------------------------- */
.secret-card,
.moderation-item,
.comment-item {
	margin-bottom: 16px;
}

.secret-top,
.meta-row,
.moderation-top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	justify-content: space-between;
}

.reaction-row {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	justify-content: flex-start;
}

.reaction-row form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin: 0;
}

.reaction-row .meta-chip {
	margin-left: 0;
	flex: 0 0 auto;
}

.reaction-row button,
.reaction-row .button,
.js-reaction-form button {
	width: auto;
	min-width: 210px;
	justify-content: center;
	white-space: nowrap;
	flex: 0 0 auto;
	transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.reaction-row button:active,
.js-reaction-form button:active {
	transform: scale(0.95);
}

.reaction-row button.clicked,
.js-reaction-form button.clicked {
	transform: scale(1.05);
	box-shadow: 0 0 16px rgba(141, 123, 255, 0.35);
}

.js-reaction-form button:disabled {
	cursor: not-allowed;
	transform: none !important;
}

.pill,
.meta-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 11px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border);
	border-radius: 999px;
	font-size: 0.9rem;
	min-height: 34px;
	font-weight: 700;
	backdrop-filter: blur(6px);
}

.meta-row {
	justify-content: flex-start;
	color: var(--muted);
}

/* ---------------------------------
   Whisper feed
--------------------------------- */
.whisper-feed {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	gap: 28px;
	margin-top: 20px;
}

.whisper-card {
	position: relative;
	min-height: 340px;
	padding: 0;
	overflow: hidden;
	background:
		radial-gradient(circle at top left, rgba(141, 123, 255, 0.18), transparent 35%),
		radial-gradient(circle at bottom right, rgba(255, 126, 203, 0.14), transparent 35%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
	border: 1px solid var(--border);
	border-radius: 22px;
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.whisper-card:hover {
	transform: translateY(-4px);
	box-shadow:
		0 24px 60px rgba(0, 0, 0, 0.35),
		0 0 40px rgba(141, 123, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.16);
}

.whisper-card-link {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 340px;
	padding: 24px;
	color: var(--text);
	text-decoration: none;
}

.whisper-top,
.whisper-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.whisper-bottom {
	align-items: flex-end;
}

.whisper-body {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 4px;
	text-align: center;
}

.whisper-body-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: 100%;
}

.whisper-name {
	font-size: 1.05rem;
	font-weight: 800;
	color: #8d7bff;
	text-shadow:
		0 2px 6px rgba(0, 0, 0, 0.4),
		0 0 8px rgba(141, 123, 255, 0.25);
	text-align: center;
}

.whisper-meta {
	font-size: 0.84rem;
	color: #aab3d6;
	opacity: 0.9;
	text-align: center;
	letter-spacing: 0.2px;
}

.whisper-text {
	margin: auto;
	margin-top: 8px;
	max-width: 280px;
	font-size: 1.5rem;
	line-height: 1.45;
	font-weight: 700;
	color: #fff;

	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
}

.whisper-author {
	font-size: 0.95rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.92);
}

.whisper-category {
	display: inline-flex;
	align-items: center;
	margin-top: 4px;
	margin-left: 4px;	
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	border: 2px solid rgba(255, 255, 255, 0.10);
	color: var(--text);
	font-size: 0.84rem;
	font-weight: 700;
}

.whisper-date {
	font-size: 0.85rem;
	padding: 7px 12px;
	color: var(--muted);
}

.whisper-stats {
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 10px;
}

.whisper-stats span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--muted);
	font-size: 0.82rem;
}

/* ---------------------------------
   Category bar
--------------------------------- */
.category-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 22px;
	padding: 16px;
}

.category-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 9px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.10);
	color: var(--text);
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1;
	transition: all 0.18s ease;
	white-space: nowrap;
}

.category-chip:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.16);
}

.category-chip.active {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	border-color: transparent;
	color: #fff;
	box-shadow: 0 10px 22px rgba(141, 123, 255, 0.22);
}

/* ---------------------------------
   Sidebar
--------------------------------- */
.sidebar {
	position: sticky;
	top: 92px;
	align-self: start;
	display: grid;
	gap: 22px;
	max-height: calc(100vh - 100px);
	overflow-y: auto;
	padding-right: 6px;
}

.sidebar::-webkit-scrollbar {
	width: 8px;
}

.sidebar::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.03);
	border-radius: 999px;
}

.sidebar::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.14);
	border-radius: 999px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.22);
}

.list-link {
	display: block;
	padding: 10px 0;
	color: var(--muted);
	border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

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

/* ---------------------------------
   Pagination
--------------------------------- */
.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    padding: 0 16px;
    font-weight: 700;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    white-space: nowrap;
}

.page-link.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
}

.page-link.prev,
.page-link.next {
    min-width: auto;
    padding: 0 18px;
}

.page-dots {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 46px;
	opacity: 0.7;
	font-weight: 700;
}

.load-more-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	margin-top: 28px;
}

#load-more-btn {
	min-width: 220px;
}

#load-more-btn.loading {
	opacity: 0.7;
	pointer-events: none;
	transform: scale(0.98);
}

#load-more-btn.loading::after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-left: 10px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: load-spin 0.7s linear infinite;
	vertical-align: middle;
}

@keyframes load-spin {
	to {
		transform: rotate(360deg);
	}
}

/* ---------------------------------
   Meldingen
--------------------------------- */
.flash {
	margin-bottom: 18px;
	padding: 14px 16px;
	border-radius: 14px;
}

.flash-success {
	background: rgba(40, 196, 143, 0.15);
	border: 1px solid rgba(40, 196, 143, 0.28);
}

.flash-error {
	background: rgba(255, 107, 107, 0.15);
	border: 1px solid rgba(255, 107, 107, 0.28);
}

.status-helper-box {
	margin-bottom: 18px;
	padding: 18px 20px;
	border-radius: 18px;
	background:
		radial-gradient(circle at top right, rgba(141, 123, 255, 0.10), transparent 35%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow:
		0 12px 28px rgba(0, 0, 0, 0.22),
		0 0 18px rgba(141, 123, 255, 0.06);
	transition: all 0.25s ease;
}

.status-helper-box:hover {
	transform: translateY(-2px);
	box-shadow:
		0 18px 40px rgba(0, 0, 0, 0.35),
		0 0 28px rgba(141, 123, 255, 0.12);
	border-color: rgba(141, 123, 255, 0.25);
}

.status-helper-content {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 16px;
}

.status-helper-icon-wrap {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: rgba(141, 123, 255, 0.12);
	border: 1px solid rgba(141, 123, 255, 0.22);
	box-shadow:
		0 0 18px rgba(141, 123, 255, 0.10),
		inset 0 0 8px rgba(141, 123, 255, 0.05);
	flex-shrink: 0;
}

.site-toast {
	position: fixed;
	left: 50%;
	bottom: 30px;
	transform: translateX(-50%) translateY(15px);

	padding: 12px 18px;
	border-radius: 999px;

	background: rgba(20, 25, 50, 0.92);
	border: 1px solid rgba(255,255,255,0.08);

	color: #fff;
	font-size: 0.9rem;

	backdrop-filter: blur(10px);

	opacity: 0;
	pointer-events: none;

	transition: all 0.25s ease;
	z-index: 9999;

	box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.site-toast.show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.status-icon {
	font-size: 1.25rem;
	opacity: 0.95;
}

.status-text {
	min-width: 0;
}

.status-text strong {
	display: block;
	font-size: 1rem;
	color: #fff;
	margin-bottom: 4px;
}

.status-text p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.55;
	color: #b8c2e3;
}

.status-helper-action {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.status-helper-button {
	min-width: 190px;
	white-space: nowrap;
}

.status-text a {
	color: #dfe5ff;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px dotted rgba(255,255,255,0.2);
}

.status-text a:hover {
	color: #fff;
	border-bottom-color: rgba(255,255,255,0.4);
}

.status-helper-label {
	display: inline-block;
	margin-bottom: 4px;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #9ea9cf;
}

.secret-token-box {
	margin-bottom: 22px;
	border: 1px solid rgba(40, 196, 143, 0.20);
	background:
		radial-gradient(circle at top right, rgba(40, 196, 143, 0.08), transparent 35%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.secret-token-box h2 {
	margin-top: 0;
	margin-bottom: 10px;
}

.secret-token-code-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 14px 0;
}

.secret-token-code-wrap code {
	display: inline-block;
	padding: 10px 14px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.10);
	color: #fff;
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 1px;
	word-break: break-all;
}

/* ---------------------------------
   Comments / admin
--------------------------------- */
.comments-list {
	display: grid;
	gap: 14px;
	margin-top: 18px;
}

.comment-item {
	padding: 14px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border);
	border-radius: 14px;
}

.comment-admin-actions {
	margin-top: 12px;
}

.comment-delete-link {
	display: inline-block;
	background: #c62828;
	color: #fff;
	padding: 8px 12px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 700;
}

.comment-delete-link:hover {
	opacity: 0.92;
}

.admin-login-card {
	max-width: 540px;
	margin: 24px auto;
}

.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.admin-tab {
	min-height: 34px;
	padding: 6px 12px;
	font-size: 0.85rem;
	border-radius: 10px;
}

.admin-tab span {
	display: inline-flex;
	align-items: center;
}

.admin-tabs {
	gap: 10px;
}

.admin-tab:hover {
	transform: translateY(-1px);
}

.stat-box-admin {
	position: relative;
}

.stat-card-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	color: inherit;
	min-height: 82px;
	width: 100%;
	height: 100%;
	position: relative;
	cursor: pointer;
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease,
		border-color 0.18s ease;
}

.stat-card-link:hover {
	transform: translateY(-1px);
	box-shadow:
		0 14px 30px rgba(0, 0, 0, 0.30),
		0 0 20px rgba(141, 123, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.16);
}

.stat-card-link strong {
	transition: transform 0.2s ease;
}

.stat-card-link:hover strong {
	transform: scale(1.08);
}

.stat-lock {
	position: absolute;
	top: 6px;
	right: 8px;
	font-size: 0.75rem;
	opacity: 0.6;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.stat-card-link:hover .stat-lock {
	opacity: 1;
	transform: scale(1.1);
}

.stat-box strong {
	transition: transform 0.2s ease;
}

/* ---------------------------------
   Actielog badges
--------------------------------- */

/* APPROVE */
.action-pill-approve {
	background: rgba(40, 196, 143, 0.18);
	border: 1px solid rgba(40, 196, 143, 0.35);
	color: #9ff0cf;

	box-shadow:
		0 0 12px rgba(40, 196, 143, 0.18),
		inset 0 0 6px rgba(40, 196, 143, 0.08);
}

/* DELETE */
.action-pill-delete {
	background: rgba(255, 107, 107, 0.18);
	border: 1px solid rgba(255, 107, 107, 0.35);
	color: #ffb3b3;

	box-shadow:
		0 0 12px rgba(255, 107, 107, 0.18),
		inset 0 0 6px rgba(255, 107, 107, 0.08);
}

/* UPDATE ADMIN */
.action-pill-update {
	background: rgba(120, 170, 255, 0.18);
	border: 1px solid rgba(120, 170, 255, 0.35);
	color: #cfe0ff;

	box-shadow:
		0 0 12px rgba(120, 170, 255, 0.18),
		inset 0 0 6px rgba(120, 170, 255, 0.08);
}

/* CHANGE PASSWORD */
.action-pill-password {
	animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
	0% { box-shadow: 0 0 8px rgba(255,200,120,0.2); }
	50% { box-shadow: 0 0 16px rgba(255,200,120,0.35); }
	100% { box-shadow: 0 0 8px rgba(255,200,120,0.2); }
}

/* actieve knop iets subtieler */
.admin-tab.active {
	box-shadow:
		0 6px 16px rgba(141, 123, 255, 0.22),
		0 0 10px rgba(255, 126, 203, 0.08);
}

.admin-stats {
	margin-bottom: 24px;
}

.tabs.admin-tabs {
	margin-top: 4px;
}

.admin-search-form {
	display: flex;
	gap: 14px;
	align-items: center;
}

.admin-search-form input {
	flex: 1;
	max-width: 500px;
}

.admin-search-form button {
	flex: 0;
	padding: 12px 26px;
	white-space: nowrap;
}

.moderation-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

.moderation-actions .button,
.moderation-actions a.button {
	width: auto;
	min-width: 140px;
}

.moderation-item {
	padding: 18px;
	background:
		radial-gradient(circle at top right, rgba(141, 123, 255, 0.08), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
	min-width: 0;
	overflow-wrap: anywhere;
	word-break: break-word;	
}

.moderation-item:hover {
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow:
		0 16px 34px rgba(0, 0, 0, 0.22),
		0 0 18px rgba(141, 123, 255, 0.08);
}

.moderation-item.deleted {
	opacity: 0.72;
	filter: saturate(0.9);
}

.moderation-item .moderation-item {
	margin-top: 8px;
	margin-bottom: 14px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow: none;
}

.admin-form {
	display: grid;
	gap: 16px;
}

.form-group {
	display: grid;
	gap: 8px;
}

.form-group label {
	font-weight: 700;
	color: #fff;
}

.cleanup-note {
	margin-top: 10px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(141, 123, 255, 0.10);
	border: 1px solid rgba(141, 123, 255, 0.22);
	color: #e3e7ff;
	font-size: 0.84rem;
	line-height: 1.35;
	box-shadow:
		0 6px 16px rgba(0, 0, 0, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(6px);
}

.cleanup-note-warning {
	background: rgba(255, 179, 71, 0.14);
	border-color: rgba(255, 179, 71, 0.35);
	color: #ffe0a8;
	box-shadow:
		0 6px 16px rgba(0, 0, 0, 0.18),
		0 0 12px rgba(255, 179, 71, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.action-pill-success {
	background: rgba(40, 196, 143, 0.16);
	border-color: rgba(40, 196, 143, 0.30);
	color: #9ff0cf;
}

.action-pill-danger {
	background: rgba(255, 107, 107, 0.16);
	border-color: rgba(255, 107, 107, 0.30);
	color: #ffb3b3;
}

.action-pill-info {
	background: rgba(141, 123, 255, 0.16);
	border-color: rgba(141, 123, 255, 0.30);
	color: #d7cfff;
}

.link-secret {
	color: #8d7bff;
	text-decoration: none;
	font-weight: 600;
}

.link-secret:hover {
	text-decoration: underline;
	color: #b5a8ff;
}

/* ---------------------------------
   Admins beheren
--------------------------------- */
.admins-page-card,
.admins-create-card {
	padding: 20px;
}

.admins-create-header {
	margin-bottom: 10px;
}

.admins-create-header h2 {
	margin-bottom: 2px;
}

.admins-create-header .muted {
	margin: 0;
	font-size: 0.95rem;
	color: #ff7979;
}

.admins-create-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 4px;
}

.admins-create-card .form-group {
	gap: 6px;
	margin-bottom: 0;
}

.admins-create-card label {
	margin-bottom: 2px;
}

.admins-create-card input {
	min-height: 46px;
}

.admins-create-card .password-wrapper {
	margin-top: 0;
}

.admins-create-card .admin-password-note {
	margin-top: 6px;
	font-size: 0.8rem;
	line-height: 1.35;
}

.admins-create-actions {
	margin-top: 10px;
	display: flex;
	justify-content: flex-end;
}

.admins-create-actions .button {
	width: auto;
	min-width: 260px;
}

.admins-list {
	display: grid;
	gap: 18px;
	margin-top: 12px;
}

.admin-user-card {
	padding: 20px;
	border-radius: 20px;
	background:
		radial-gradient(circle at top right, rgba(141, 123, 255, 0.08), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.admin-user-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.admin-user-title {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.admin-user-title strong {
	font-size: 1.15rem;
	color: #fff;
}

.admin-user-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	color: var(--muted);
	font-size: 0.92rem;
}

.admin-section-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.9fr;
	gap: 18px;
	margin-top: 14px;
	align-items: start;
}

.admin-section-stack {
	display: grid;
	gap: 18px;
}

.admin-mini-card {
	padding: 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
}

.admin-mini-card h3 {
	margin: 0 0 12px;
	font-size: 1rem;
	color: #fff;
}

.admin-inline-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.admin-inline-actions .button {
	width: auto;
	min-width: 150px;
}

.admin-password-note {
	margin-top: 8px;
	font-size: 0.82rem;
	line-height: 1.45;
	color: #9ea9cf;
}

.password-wrapper {
	position: relative;
}

.password-wrapper input:focus {
	border-color: rgba(141, 123, 255, 0.6);
	box-shadow:
		0 0 0 1px rgba(141, 123, 255, 0.4),
		0 0 12px rgba(141, 123, 255, 0.25);
}

.password-wrapper input {
	padding-right: 54px;
}

.toggle-password {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 10px;
	padding: 0;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
	color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
	transition: background 0.18s ease, transform 0.18s ease;
}

.toggle-password:hover {
	background: rgba(255, 255, 255, 0.14);
	transform: translateY(-50%) scale(1.04);
}

/* ---------------------------------
   Secret modal
--------------------------------- */
.secret-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.22s ease, visibility 0.22s ease;
}

.secret-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.secret-modal::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(5, 8, 20, 0.76);
	backdrop-filter: blur(8px);
}

.secret-modal-content {
	position: relative;
	z-index: 1;
	width: min(100%, 720px);
	max-height: min(88vh, 860px);
	overflow-y: auto;
	padding: 28px 24px 22px;
	border-radius: 24px;
	background:
		radial-gradient(circle at top right, rgba(141, 123, 255, 0.16), transparent 34%),
		radial-gradient(circle at bottom left, rgba(255, 126, 203, 0.10), transparent 32%),
		linear-gradient(180deg, #18203a 0%, #0e1328 100%);
	border: 1px solid rgba(255, 255, 255, 0.10);
	box-shadow:
		0 24px 80px rgba(0, 0, 0, 0.45),
		0 0 34px rgba(141, 123, 255, 0.12);
	transform: translateY(14px) scale(0.985);
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.secret-modal.is-open .secret-modal-content {
	transform: translateY(0) scale(1);
}

.secret-modal-head {
	margin-bottom: 18px;
	padding-right: 52px;
}

.secret-modal-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.10);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.secret-modal-head h2 {
	margin: 0 0 8px;
	font-size: 1.8rem;
	line-height: 1.15;
	color: #fff;
}

.secret-modal-subtitle {
	margin: 0;
	color: #c7d0ef;
	line-height: 1.6;
	max-width: 48ch;
}

.modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.18s ease, transform 0.18s ease;
}

.modal-close:hover {
	background: rgba(255, 255, 255, 0.14);
	transform: scale(1.04);
}

.secret-form {
	display: grid;
	gap: 18px;
}

.grid-two {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 16px;
}

.secret-form label,
.secret-label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.secret-form label small,
.secret-label small {
	color: #aeb8dc;
	font-weight: 500;
}

.secret-form input,
.secret-form select,
.secret-form textarea {
	width: 100%;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	font: inherit;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.secret-form input,
.secret-form select {
	min-height: 50px;
	padding: 0 14px;
}

.secret-form textarea {
	min-height: 190px;
	padding: 16px 18px;
	resize: vertical;
	line-height: 1.6;
}

.secret-form input::placeholder,
.secret-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.38);
}

.secret-form input:focus,
.secret-form select:focus,
.secret-form textarea:focus {
	outline: none;
	border-color: rgba(141, 123, 255, 0.55);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 4px rgba(141, 123, 255, 0.12);
}

.secret-textarea-wrapper {
	position: relative;
}

.char-counter {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 13px;
	font-weight: 700;
	color: #d9e1ff;
}

.char-counter.warning {
	color: #ffd36d;
}

.char-counter.danger {
	color: #ff8e9e;
}

.form-note.muted {
	margin: -2px 0 0;
	color: #c7d0ef;
	line-height: 1.55;
	font-size: 14px;
}

.secret-form-actions {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.secret-form-actions .button {
	min-width: 160px;
}

.secret-form-actions .button.button-ghost {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.10);
	color: #fff;
}

.secret-form-actions .button.button-ghost:hover {
	background: rgba(255, 255, 255, 0.12);
}

.trust-mini {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: #c7d0ef;
	font-size: 13px;
	line-height: 1.5;
}

.secret-form select {
	background-color: #18203a !important;
	color: #fff !important;
	color-scheme: dark;
}

.secret-form select option {
	background-color: #18203a !important;
	color: #fff !important;
}

.secret-form select optgroup {
	background-color: #18203a !important;
	color: #fff !important;
}

.secret-form select:focus {
	outline: none;
	border-color: rgba(141, 123, 255, 0.6);
	box-shadow:
		0 0 0 2px rgba(141, 123, 255, 0.25),
		0 0 14px rgba(141, 123, 255, 0.18);
}

/* Dropdown opties dark maken */
select option {
	background: #1a2240;
	color: #fff;
}

/* geselecteerde optie */
select option:checked {
	background: linear-gradient(135deg, #8d7bff, #ff7ecb);
	color: #fff;
}

/* hover (werkt niet overal, maar goed om te hebben) */
select option:hover {
	background: rgba(141, 123, 255, 0.25);
}

@media (max-width: 720px) {
	.secret-modal {
		padding: 12px;
		align-items: flex-end;
	}

	.secret-modal-content {
		width: 100%;
		max-height: 90vh;
		padding: 22px 16px 18px;
		border-radius: 22px 22px 18px 18px;
	}

	.grid-two {
		grid-template-columns: 1fr;
	}

	.secret-form-actions {
		flex-direction: column-reverse;
		align-items: stretch;
	}

	.secret-form-actions .button {
		width: 100%;
	}
}

/* ---------------------------------
   Utility
--------------------------------- */
.honeypot {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0 !important;
}

/* ---------------------------------
   Trust section
--------------------------------- */
.trust-section {
	margin: 64px 0 0;
	text-align: center;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.trust-card {
	display: grid;
	grid-template-rows: 46px 62px 1fr;
	align-items: start;
	justify-items: center;
	min-height: 270px;
	height: 100%;
	padding: 30px 26px 28px;
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background:
		radial-gradient(circle at top left, rgba(141, 123, 255, 0.14), transparent 42%),
		radial-gradient(circle at bottom right, rgba(255, 126, 203, 0.07), transparent 35%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.30);
	backdrop-filter: blur(6px);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.trust-card:hover {
	transform: translateY(-3px);
	border-color: rgba(255, 255, 255, 0.16);
	box-shadow:
		0 18px 44px rgba(0, 0, 0, 0.38),
		0 0 34px rgba(141, 123, 255, 0.10);
}

.trust-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-size: 30px;
	line-height: 1;
	margin-bottom: 16px;
}

.trust-card h3 {
	margin: 0 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1.25;
	color: #fff;
}

.trust-card p {
	margin: 0;
	margin-top: auto;
	width: 100%;
	max-width: 25ch;
	text-align: center;
	font-size: 0.95rem;
	line-height: 1.65;
	color: #c4cceb;
}

.trust-intro-line {
	display: block;
	margin: 26px 0 0;
	padding: 0 12px;
	text-align: center;
	font-size: 0.98rem;
	letter-spacing: 0.02em;
	line-height: 1.7;
	color: #bfc7e6;
	text-shadow: 0 0 14px rgba(141, 123, 255, 0.45);
	font-style: italic;
	opacity: 0.9;
	transition: opacity 0.8s ease, transform 0.8s ease;
	transform: translateY(0);
}

.trust-intro-line.is-fading {
	opacity: 0;
	transform: translateY(8px);
}

/* ---------------------------------
   Footer
--------------------------------- */
.site-footer {
	position: relative;
	margin-top: 24px;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	background:
		radial-gradient(circle at 50% -20px, rgba(141, 123, 255, 0.14), transparent 60%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
	backdrop-filter: blur(10px);
	color: #bfc7e6;
	overflow: hidden;
}

.site-footer::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(141, 123, 255, 0.45),
		rgba(255, 126, 203, 0.45),
		transparent
	);
	opacity: 0.65;
}

.footer-left {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.footer-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	max-width: 100%;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow:
		0 8px 20px rgba(0, 0, 0, 0.14),
		inset 0 1px 0 rgba(255, 255, 255, 0.03);
	font-size: 0.92rem;
	line-height: 1.4;
	color: #d7def7;
}

.footer-badge span:first-child {
	flex: 0 0 auto;
	font-size: 1rem;
}

.footer-credit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.88rem;
	color: #b9c3e8;
	box-shadow:
		0 6px 14px rgba(0, 0, 0, 0.14),
		inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.footer-credit span:first-child {
	font-size: 1rem;
}

.footer-credit a {
	color: #e1e6ff;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px dotted rgba(255, 255, 255, 0.22);
	padding-bottom: 1px;
	transition: all 0.15s ease;
}

.footer-credit a:hover {
	color: #ffffff;
	border-bottom-color: rgba(255, 255, 255, 0.5);
	text-shadow: 0 0 6px rgba(141, 123, 255, 0.35);
}

.footer-right {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 13px;
	border-radius: 999px;
	background: linear-gradient(
		135deg,
		rgba(141, 123, 255, 0.10),
		rgba(255, 126, 203, 0.08)
	);
	border: 1px solid rgba(255, 255, 255, 0.10);
	font-size: 0.85rem;
	letter-spacing: 0.35px;
	opacity: 0.92;
	color: #c6cff3;
	box-shadow:
		0 6px 14px rgba(0, 0, 0, 0.18),
		0 0 10px rgba(141, 123, 255, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(6px);
	white-space: nowrap;
	transition: all 0.18s ease;
}

/* ---------------------------------
   Categorie kleuren
--------------------------------- */
.cat-liefde {
	background: rgba(255, 126, 203, 0.20);
	border-color: rgba(255, 126, 203, 0.35);
	color: #ffc6e8;
}

.cat-werk {
	background: rgba(120, 170, 255, 0.20);
	border-color: rgba(120, 170, 255, 0.35);
	color: #cfe0ff;
}

.cat-school {
	background: rgba(141, 123, 255, 0.22);
	border-color: rgba(141, 123, 255, 0.35);
	color: #dcd6ff;
}

.cat-guilty {
	background: rgba(255, 170, 90, 0.20);
	border-color: rgba(255, 170, 90, 0.35);
	color: #ffd8a6;
}

.cat-familie {
	background: rgba(120, 200, 160, 0.20);
	border-color: rgba(120, 200, 160, 0.35);
	color: #c9ffe8;
}

.cat-relaties {
	background: rgba(255, 120, 120, 0.20);
	border-color: rgba(255, 120, 120, 0.35);
	color: #ffd1d1;
}

.cat-seks {
	background: rgba(255, 90, 140, 0.20);
	border-color: rgba(255, 90, 140, 0.35);
	color: #ffc6da;
}

.cat-vrienden {
	background: rgba(120, 170, 255, 0.20);
	border-color: rgba(120, 170, 255, 0.35);
	color: #cfe0ff;
}

.cat-geld {
	background: rgba(255, 200, 120, 0.20);
	border-color: rgba(255, 200, 120, 0.35);
	color: #ffe5b8;
}

.cat-internet {
	background: rgba(160, 140, 255, 0.20);
	border-color: rgba(160, 140, 255, 0.35);
	color: #ded6ff;
}

.cat-cringe {
	background: rgba(255, 180, 120, 0.20);
	border-color: rgba(255, 180, 120, 0.35);
	color: #ffd9b3;
}

.cat-random {
	background: rgba(170, 170, 255, 0.20);
	border-color: rgba(170, 170, 255, 0.35);
	color: #dcdcff;
}

.cat-schaamte {
	background: rgba(255, 110, 160, 0.20);
	border-color: rgba(255, 110, 160, 0.35);
	color: #ffc7da;
}

@keyframes buttonBounceIn {
	0% {
		opacity: 0;
		transform: translateY(14px) scale(0.985);
	}
	60% {
		opacity: 1;
		transform: translateY(-3px) scale(1.01);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* =================================
   COMPACTERE "Nieuwe admin toevoegen"
   helemaal onderaan CSS zetten
================================= */
.admins-create-card {
	padding: 16px !important;
}

.admins-create-header {
	margin-bottom: 8px !important;
}

.admins-create-header h2 {
	margin: 0 0 2px !important;
	font-size: 1.15rem !important;
	line-height: 1.2 !important;
}

.admins-create-header .muted {
	margin: 0 !important;
	font-size: 0.9rem !important;
	color: #ff7979 !important;
	line-height: 1.4 !important;
}

.admins-create-card .admin-form {
	gap: 10px !important;
}

.admins-create-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px !important;
	margin-bottom: 0 !important;
}

.admins-create-card .form-group {
	gap: 4px !important;
	margin: 0 !important;
}

.admins-create-card .form-group label {
	margin: 0 !important;
	font-size: 0.92rem !important;
	line-height: 1.2 !important;
}

.admins-create-card input {
	min-height: 42px !important;
	height: 42px !important;
	padding: 8px 12px !important;
	font-size: 0.95rem !important;
}

.admins-create-card .password-wrapper {
	margin: 0 !important;
}

.admins-create-card .password-wrapper input {
	padding-right: 84px !important;
}

.admins-create-card .toggle-password {
	width: 30px !important;
	height: 30px !important;
	right: 8px !important;
	border-radius: 9px !important;
	font-size: 15px !important;
}

.admins-create-card .admin-password-note {
	margin: 4px 0 0 !important;
	font-size: 0.78rem !important;
	line-height: 1.3 !important;
	color: #9ea9cf !important;
}

.admins-create-actions {
	margin-top: 6px !important;
	display: flex;
	justify-content: flex-end;
}

.admins-create-actions .button {
	width: auto !important;
	min-width: 220px !important;
	padding: 10px 18px !important;
	min-height: 42px !important;
}

#installPWA.hero-install-btn {
	margin-top: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 22px;

	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.08);

	background: rgba(255,255,255,0.05);
	color: rgba(255,255,255,0.92);

	font: inherit;
	font-weight: 600;
	font-size: 14px;
	line-height: 1;

	cursor: pointer;
	transition: all 0.2s ease;

	backdrop-filter: blur(6px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.25);

	appearance: none;
	-webkit-appearance: none;
	text-decoration: none;
	white-space: nowrap;
}

#installPWA.hero-install-btn:hover {
	background: linear-gradient(135deg, rgba(141,123,255,0.35), rgba(255,126,203,0.35));
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(141,123,255,0.35);
}

.ios-install-hint {
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	max-width: 560px;
	padding: 14px 16px;
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.10);
	background: rgba(255,255,255,0.05);
	color: rgba(255,255,255,0.92);
	backdrop-filter: blur(8px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.ios-install-hint__text {
	display: flex;
	align-items: center;
	gap: 10px;
	line-height: 1.45;
	font-size: 14px;
}

.ios-install-hint__emoji {
	font-size: 18px;
	flex: 0 0 auto;
}

.ios-install-hint__close {
	flex: 0 0 auto;
	border: 0;
	background: transparent;
	color: rgba(255,255,255,0.75);
	font: inherit;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	padding: 0 4px;
}

.ios-install-hint__close:hover {
	color: #fff;
}

.ios-install-hint[hidden] {
	display: none !important;
}

#installPWA.hero-install-btn:active {
	transform: translateY(0);
}

#installPWA.hero-install-btn[hidden] {
	display: none !important;
}

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

.discord-cta {
    margin-top: 1rem;
    text-align: center;
    padding: 18px 20px;
}

.discord-cta p {
    margin: 0 0 0.65rem;
}

.discord-cta .button {
    display: inline-flex;
    text-decoration: none;
    min-width: 220px;
    justify-content: center;
}

.discord-box {
    text-align: center;
    border: 1px solid rgba(88, 101, 242, 0.35);
    background: radial-gradient(circle at top, rgba(88,101,242,0.12), transparent 60%);
    box-shadow: 0 0 25px rgba(88,101,242,0.15);
}

.discord-box small {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
}

.discord-box h2 {
    margin-bottom: 0.5rem;
}

.discord-button {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 10px 16px;
    background: #5865F2;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
    box-shadow: 0 0 12px rgba(88, 101, 242, 0.2);
}

.discord-button:hover {
    background: #4752C4;
    box-shadow: 0 0 18px rgba(88, 101, 242, 0.4);
    transform: translateY(-1px);
}

/* ---------------------------------
   Mijn account
--------------------------------- */
.account-summary-card {
	padding: 20px;
	margin-bottom: 20px;
}

.account-summary-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.account-summary-header h2 {
	margin: 0 0 4px;
	font-size: 1.35rem;
}

.account-summary-header .muted {
	margin: 0;
}

.account-summary-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.account-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: start;
}

.account-card {
	padding: 20px;
	align-self: start;
}

.account-card h2 {
	margin-bottom: 14px;
}

.account-card:hover {
	transform: translateY(-2px);
	box-shadow:
		0 18px 40px rgba(0, 0, 0, 0.35),
		0 0 20px rgba(141, 123, 255, 0.08);
}

.account-card .form-group {
	gap: 6px;
}

.account-card .form-group input[disabled] {
	opacity: 0.72;
	cursor: not-allowed;
}

.account-card .admin-password-note {
	margin-top: 6px;
	font-size: 0.8rem;
	line-height: 1.35;
	color: #9ea9cf;
}

.account-grid > .card,
.account-grid > .account-card {
	margin-top: 0 !important;
}

.account-grid > .card + .card,
.account-grid > .account-card + .account-card {
	margin-top: 0 !important;
}

@media (max-width: 900px) {
	.account-grid {
		grid-template-columns: 1fr;
	}
}

/* ---------------------------------
   Responsive
--------------------------------- */
@media (max-width: 900px) {
	.hero-grid,
	.content-grid,
	.stats-grid,
	.grid-two,
	.filters,
	.secret-form .grid-two {
		grid-template-columns: 1fr;
	}

	.sidebar {
		position: static;
	}

	.header-grid,
	.footer-inner,
	.admin-bar {
		flex-direction: column;
		align-items: flex-start;
	}

	.nav-links {
		width: 100%;
		padding-bottom: 14px;
	}

	.nav-links a {
		flex: 1 1 auto;
		text-align: center;
	}

	.whisper-feed {
		grid-template-columns: 1fr;
	}

	.whisper-card,
	.whisper-card-link {
		min-height: 260px;
	}

	.whisper-text {
		max-width: 100%;
		font-size: 1.2rem;
	}

	.trust-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.trust-card {
		grid-template-rows: auto auto auto;
		min-height: auto;
		padding: 26px 22px;
	}

	.trust-card p {
		max-width: none;
	}

	.trust-intro-line {
		margin-top: 18px;
		padding: 0 10px;
		min-height: 3.6em;
	}

	.footer-inner {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		gap: 14px;
	}

	.footer-left {
		width: 100%;
		align-items: flex-start;
		text-align: left;
	}

	.footer-right {
		white-space: normal;
		text-align: left;
	}

	.admin-section-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {

	/* ======================
	   ADMIN / LOGIN
	====================== */
	.admin-login-divider {
		margin: 16px 0 12px;
	}

	.admin-login-info-inline {
		gap: 10px;
		padding: 10px 0 4px;
	}

	.admin-login-info-inline .admin-login-info-icon {
		width: 32px;
		height: 32px;
		border-radius: 10px;
		font-size: 0.86rem;
	}

	.admin-login-info-inline .admin-login-info-title {
		font-size: 0.9rem;
	}

	.admin-login-info-inline p {
		font-size: 0.85rem;
		line-height: 1.42;
	}

	/* ======================
	   STATUS / ADMIN
	====================== */
	.status-hero {
		align-items: flex-start;
	}

	.status-meta-grid {
		grid-template-columns: 1fr;
	}

	.status-form-actions .button,
	.status-actions .button {
		width: 100%;
	}

	.status-helper-content {
		grid-template-columns: 1fr;
		align-items: flex-start;
		gap: 14px;
	}

	.status-helper-icon-wrap {
		width: 46px;
		height: 46px;
		border-radius: 14px;
	}

	.status-helper-action,
	.status-helper-button {
		width: 100%;
		min-width: 0;
	}

	/* ======================
	   ADMINS CREATE
	====================== */
	.admins-create-grid {
		grid-template-columns: 1fr !important;
		gap: 8px !important;
	}

	.admins-create-actions .button {
		width: 100% !important;
		min-width: 0 !important;
	}

	/* ======================
	   SECRET MODAL (FIXED 🔥)
	====================== */
@media (max-width: 700px) {
	.secret-modal {
		padding: 10px;
		align-items: flex-start;
		justify-content: center;
		overflow-y: auto;
	}

	.secret-modal-content {
		position: relative;
		width: 100%;
		max-width: 100%;
		max-height: none;
		min-height: auto;
		margin: 0 auto;
		padding: 18px 14px 18px;
		padding-top: 22px;
		padding-bottom: calc(18px + env(safe-area-inset-bottom));
		border-radius: 20px 20px 16px 16px;
		overflow-y: visible;
	}

	.secret-modal-head {
		margin-bottom: 14px;
		padding-right: 62px;
	}
	
	.secret-modal-badge {
		margin-bottom: 10px;
		padding: 7px 10px;
		font-size: 12px;
	}

	.secret-modal-head h2 {
		font-size: 1.2rem;
		line-height: 1.15;
		margin: 0 0 6px;
	}

	.secret-modal-subtitle {
		font-size: 0.9rem;
		line-height: 1.45;
	}	

	.modal-close {
		position: absolute;
		top: 12px;
		right: 12px;
		z-index: 9999;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(15, 20, 40, 0.78);
		border: 1px solid rgba(255, 255, 255, 0.14);
		border-radius: 12px;
		color: #fff;
		font-size: 22px;
		line-height: 1;
		box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
	}

	.secret-textarea-wrapper .char-counter {
		position: static;
		display: inline-flex;
		margin-top: 10px;
		margin-left: auto;
		padding: 8px 12px;
		font-size: 0.72rem;
		border-radius: 999px;
	}
}

	/* ======================
	   FORM
	====================== */
	.secret-form {
		gap: 14px;
	}

	.secret-form .grid-two {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.secret-form input,
	.secret-form select {
		min-height: 46px;
		padding: 0 12px;
		font-size: 0.95rem;
		border-radius: 12px;
	}

	.secret-form textarea {
		min-height: 150px;
		padding: 14px;
		font-size: 0.96rem;
		border-radius: 14px;
	}

	.secret-label,
	.secret-form label {
		margin-bottom: 6px;
		font-size: 13px;
	}

	.secret-label small,
	.secret-form label small,
	.comment-label small {
		display: block;
		margin-top: 4px;
		font-size: 0.72rem;
		line-height: 1.35;
	}

	/* ======================
	   COUNTER FIX 🧠
	====================== */
	.secret-textarea-wrapper {
		position: relative;
	}

	.secret-textarea-wrapper .char-counter {
		position: static;
		display: inline-flex;
		margin-top: 10px;
		margin-left: auto;
		padding: 8px 12px;
		font-size: 0.72rem;
		border-radius: 999px;
	}

	.form-note.muted {
		font-size: 0.82rem;
		line-height: 1.45;
	}

	.secret-form-actions {
		flex-direction: column-reverse;
		align-items: stretch;
		gap: 10px;
	}

	.secret-form-actions .button {
		width: 100%;
		min-width: 0;
		min-height: 48px;
	}

	/* ======================
	   CARDS / UI
	====================== */
	.whisper-card,
	.secret-card,
	.card.secret-card,
	.card.whisper-card {
		position: relative;
		overflow: hidden;
		background: linear-gradient(180deg, #121933 0%, #0b1125 100%);
		border: 1px solid rgba(255, 255, 255, 0.09);
		box-shadow:
			0 12px 28px rgba(0, 0, 0, 0.30),
			inset 0 1px 0 rgba(255, 255, 255, 0.03);
	}

	.whisper-card::before,
	.secret-card::before,
	.card.secret-card::before,
	.card.whisper-card::before {
		content: "";
		position: absolute;
		inset: 0;
		border-radius: inherit;
		pointer-events: none;
		background:
			radial-gradient(circle at 12% 10%, rgba(141, 123, 255, 0.11), transparent 28%),
			radial-gradient(circle at 88% 82%, rgba(255, 126, 203, 0.04), transparent 20%);
		z-index: 0;
	}

	.whisper-card-link,
	.secret-card > *,
	.card.secret-card > *,
	.card.whisper-card > * {
		position: relative;
		z-index: 1;
	}

	.whisper-card:hover,
	.secret-card:hover,
	.card.secret-card:hover,
	.card.whisper-card:hover {
		transform: none;
		box-shadow:
			0 12px 28px rgba(0, 0, 0, 0.30),
			inset 0 1px 0 rgba(255, 255, 255, 0.03);
	}

	.whisper-category,
	.category-chip,
	.meta-chip {
		background: rgba(255, 255, 255, 0.06);
		border-color: rgba(255, 255, 255, 0.12);
		backdrop-filter: blur(6px);
	}

	.whisper-text {
		font-size: 1.18rem;
		line-height: 1.5;
	}

	.whisper-stats span {
		background: rgba(255, 255, 255, 0.05);
		border-color: rgba(255, 255, 255, 0.10);
	}

	.trust-mini {
		margin-top: 14px;
		padding-top: 12px;
		font-size: 0.78rem;
		line-height: 1.45;
	}
}

@media (max-width: 640px) {
	.wrap {
		width: min(100% - 16px, 1160px);
	}

	.card {
		padding: 16px;
	}

	.button,
	.action-button {
		width: 100%;
	}

	.nav-links a {
		width: 100%;
	}

	.whisper-card-link {
		padding: 18px;
	}

	.moderation-actions .button,
	.moderation-actions a.button {
		width: 100%;
		min-width: 0;
	}

	.char-counter {
		font-size: 0.72rem;
		padding: 8px 12px;
	}

	.comment-textarea-wrapper .char-counter {
		top: 30px;
	}

	.comment-textarea-wrapper textarea {
		padding-top: 30px;
	}

	.site-footer {
		margin-top: 20px;
		padding: 18px 0;
	}

	.footer-inner {
		gap: 12px;
	}

	.footer-left {
		width: 100%;
		gap: 10px;
	}

	.footer-badge {
		width: 100%;
		border-radius: 16px;
		padding: 12px 14px;
		align-items: flex-start;
		font-size: 0.88rem;
		line-height: 1.5;
	}

	.footer-credit {
		font-size: 0.88rem;
		line-height: 1.5;
	}

	.footer-right {
		width: 100%;
		padding-top: 4px;
		font-size: 0.84rem;
		color: #9ea9cf;
	}

	.admin-user-card {
		padding: 16px;
	}

	.admin-user-header {
		align-items: flex-start;
	}

	.admin-inline-actions .button {
		width: 100%;
		min-width: 0;
	}

	.confirm-modal {
		padding: 14px;
	}

	.confirm-modal-content {
		width: 100%;
		padding: 24px 16px 18px;
		border-radius: 18px;
	}

	.confirm-modal-content h3 {
		font-size: 1.15rem;
		padding-right: 30px;
	}

	.confirm-modal-actions {
		flex-direction: column;
	}

	.confirm-modal-actions .button {
		width: 100%;
		min-width: 0;
	}

	.reaction-row {
		flex-direction: column;
		align-items: stretch;
	}

	.reaction-row form {
		width: 100%;
	}

	.reaction-row button,
	.reaction-row .button,
	.js-reaction-form button,
	.reaction-row .meta-chip {
		width: 100%;
		min-width: 0;
	}
}

@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
	.secret-modal {
		padding: 8px 10px;
		align-items: flex-start;
		overflow-y: auto;
	}

	.secret-modal-content {
		width: min(100%, 920px);
		max-height: calc(100vh - 16px);
		margin: 8px auto;
		padding: 14px 16px 18px;
		border-radius: 16px;
	}

	.secret-modal-head {
		margin-bottom: 12px;
		padding-right: 42px;
	}

	.secret-modal-head h2 {
		font-size: 1.05rem;
		line-height: 1.15;
		margin: 0 0 4px;
	}

	.secret-modal-subtitle {
		font-size: 0.82rem;
		line-height: 1.35;
	}

	.modal-close {
		top: 8px;
		right: 8px;
		width: 36px;
		height: 36px;
		font-size: 20px;
	}

	.secret-form {
		gap: 10px;
		margin-top: 10px;
	}

	.secret-form .grid-two {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.secret-label,
	.secret-form label {
		margin-bottom: 5px;
		font-size: 12px;
	}

	.secret-label small,
	.secret-form label small,
	.comment-label small {
		display: block;
		margin-top: 3px;
		font-size: 0.66rem;
		line-height: 1.3;
	}

	.secret-form input,
	.secret-form select {
		min-height: 40px;
		padding: 0 10px;
		font-size: 0.92rem;
		border-radius: 10px;
	}

	.secret-form textarea {
		min-height: 88px;
		padding: 10px 12px;
		font-size: 0.92rem;
		border-radius: 10px;
	}

	.char-counter {
		margin-top: 8px;
		padding: 6px 10px;
		font-size: 0.68rem;
	}

	.secret-form-actions .button {
		min-height: 44px;
		padding: 10px 14px;
		font-size: 0.95rem;
	}
}