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

:root {
	--font-size-h1: 28px;
	--font-size-h2: 20px;
	--font-size-h3: 16px;
	--line-height-heading: 1.2;
	--font-size-h1-mobile: 28px;
	--font-size-h2-mobile: 20px;
	--font-size-h3-mobile: 16px;
	--bg: #ffffff;
	--ink: #1b1d24;
	--muted: #5e6577;
	--line: #ebedf3;
	--accent: #dd1777;
	--dlx-brand: #dd1777;
	--dlx-text: #222;
	--dlx-muted: #666;
	--dlx-border: #e3e3e3;
	--dlx-soft: #f7f7f7;
	--dlx-bg: #fff;
	--dlx-radius: 12px;
	--dlx-good: #25a05c;
	--dlx-bad: #ff4444;
	--dlx-warn: #f5a524;
	--dll-brand-pink: #dd1777;
	--dll-bg-clean: #ffffff;
	--dll-bg-subtle: #fafbfe;
	--dll-border-light: #f0f2f5;
	--dll-text-dark: #1e293b;
	--dll-text-slate: #64748b;
	--dll-secure-green: #10b981;
}

[hidden] {
	display: none !important;
}

html,
body {
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
}

blockquote {
	margin: 10px 0 14px;
	padding: 10px 12px;
	border-left: 3px solid #d0d7ff;
	color: #444;
	font-style: italic;
}

blockquote code {
	font-style: normal;
	background: rgba(255, 255, 255, .7);
	padding: 1px 3px;
}

hr {
	border: 0;
	border-top: 1px solid var(--line);
	margin: 16px 0;
	width: 100%;
}

img,
picture,
video,
canvas {
	display: block;
	max-width: 100%;
	height: auto;
}

b,
strong {
	font-weight: bolder;
}

em,
i {
	font-style: italic;
}

body {
	-webkit-text-size-adjust: none;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: var(--muted);
	line-height: 1.55;
	position: relative;
	background-color: var(--bg);
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	color: var(--accent);
}

dt>h1:first-child,
dt>h2:first-child {
	margin-top: 0;
}

pre {
	background: #fbfbfe;
	border: 1px solid var(--line);
	padding: 12px;
	overflow: auto;
	font-size: 13px;
	margin: 10px 0;
	font-family: ui-monospace, SFMono-Regular, Consolas, Monaco, monospace;
}

code {
	background: #fbfbfe;
	padding: 2px 6px;
	border: 1px solid var(--line);
	font-family: ui-monospace, SFMono-Regular, Consolas, Monaco, monospace;
}

figure {
	margin: 12px 0 16px 15px;
}

figure>img {
	margin: 0;
}

figcaption {
	color: var(--muted);
	font-size: 12.5px;
	margin-top: 10px;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
	appearance: none;
	transition: background-color .2s ease, color .2s ease;
	border: 2px solid var(--accent);
	border-radius: 5px;
	cursor: pointer;
	display: inline-block;
	font-size: .8rem;
	font-weight: 900;
	height: 3rem;
	padding: 0 2rem;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	background: #fef8fb;
	color: #db006a !important;
	align-content: center;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover,
.button:hover {
	color: #990000 !important;
	background: #fbf0f0;
}

input[type="submit"].primary,
input[type="reset"].primary,
input[type="button"].primary,
button.primary,
.button.primary {
	background: var(--accent);
	color: #fff !important;
}

input[type="submit"].primary:hover,
input[type="reset"].primary:hover,
input[type="button"].primary:hover,
button.primary:hover,
.button.primary:hover {
	background: #a90052
}

.button i {
	margin-right: .5em
}

input[type="submit"].small,
input[type="reset"].small,
input[type="button"].small,
button.small,
.button.small {
	font-size: 14px;
	height: 2.5rem;
	padding: 0 1.5rem;
}

input[type="submit"].large,
input[type="reset"].large,
input[type="button"].large,
button.large,
.button.large {
	font-size: 15px;
	height: 3.5rem;
	padding: 0 2.75rem;
}

input[type="submit"].disabled,
input[type="submit"]:disabled,
input[type="reset"].disabled,
input[type="reset"]:disabled,
input[type="button"].disabled,
input[type="button"]:disabled,
button.disabled,
button:disabled,
.button.disabled,
.button:disabled {
	pointer-events: none;
	opacity: .25
}

button.linkstyle,
button.linkstyle:hover {
	all: unset;
	cursor: pointer;
}

form ::-moz-focus-inner {
	border: 0
}

form ::placeholder {
	color: #666 !important
}

form label {
	display: block;
	font-weight: 700;
	margin: 10px 0;
	color: #444
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form select,
form textarea {
	-webkit-appearance: none;
	display: block;
	width: 100%;
	background: #fff;
	border: 2px solid #eee;
	color: #000;
	cursor: auto;
	font-size: .9rem;
	height: 3rem;
	padding: 10px;
}

form .large,
form input.large,
form select.large {
	font-size: .9rem;
	height: 3.5rem;
	padding: 0 2.75rem;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form select:focus,
form textarea:focus {
	border-color: var(--accent);
}

form select {
	cursor: pointer;
	padding: 0 1rem
}

section ul {
	list-style: none;
	padding: 0;
	margin: 12px 0;
}

section li {
	line-height: 1.5;
	padding-left: 18px;
	margin: 0 0 12px 0;
	position: relative;
}

.ctheme {
	color: #c2185b;
}

.subtitle {
	font-size: 0.9rem;
	color: #666;
	letter-spacing: 0.5px;
	margin: 0;
}

.ad-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0px 8px 8px 8px;
	color: #5e6577;
}

.ad-area {
	display: block;
	min-height: 250px;
	margin: 0 auto;
	max-width: 310px;
}

.clamped-ad-banner {
	display: block;
	width: 100%;
	height: 90px;
}

.base-wrapper {
	display: grid;
	align-items: start;
	margin-left: auto;
	margin-right: auto;
	margin-top: 12px;
	margin-bottom: 24px;
	gap: 24px;
	text-align: left;
	max-width: 1400px;
	overflow: clip;
	width: 100%;
	grid-template-columns: 344px minmax(0, 1fr);
}

.base-content {
	align-self: start;
	width: 100%;
}

.base-content a {
	color: var(--accent);
	text-decoration-style: dotted;
	text-decoration-thickness: 1px;
}

.base-content a:hover {
	text-decoration-style: solid;
	background: #fff0f6;
}

.base-content a:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
	border-radius: 4px;
}

.base-box {
	background: linear-gradient(135deg, #ffffff 0%, #fff5f8 50%, #fbfbfe 100%);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 24px;
	margin-bottom: 12px;
	box-shadow: 0 4px 20px rgba(221, 23, 119, 0.02);
	width: 100%;
}

.base-h1 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	font-size: clamp(22px, 5vw, var(--font-size-h1));
	font-weight: 400;
	margin: 0 0 8px 0;
	color: #000;
	letter-spacing: -0.5px;
	line-height: var(--line-height-heading);
}

.base-h2 {
	font-size: var(--font-size-h2);
	margin: 0 0 6px 0;
	color: #000;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: bold;
}

.base-p {
	margin: 0px 0px 12px 0;
	font-size: 14px;
	color: var(--muted);
	line-height: 1.5;
	max-width: 800px;
	white-space: normal;
	letter-spacing: 0.5px;
}

.base-vflex {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.base-section {
	margin-bottom: 0;
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 24px;
	width: 100%;
}

.base-sidebar {
	width: 100%;
	align-self: start;
	position: relative;
}

.base-content.no-sidebar {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2em;
	padding: 0 16px;
}

.badge {
	color: var(--muted);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 6px 10px;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	background-color: #fafafa;
}

.badge.menu {
	display: inline-block;
	font-size: 14px;
	background: #fff0f7;
	border: none;
	padding: 5px 10px;
	border-radius: 2px;

	font-weight: 800; 
	color: #000; 
	margin-bottom: 12px; 
	word-break: break-all; 
	letter-spacing: -0.3px; 
}

.badge.new {
	background: #fffdf9;
	color: var(--accent);
	border: 1px solid #ffe0b2;
	border-radius: 5px;
	font-size: 12px;
	padding: 0 6px;
	line-height: 18px;
	font-weight: bold;
}

.badge.success {
	background: #e3fde4;
	color: #2e2e2e;
	border-color: #2af545;
	font-size: 13px;
	text-transform: uppercase;
}

.badge.error,
.badge.updated,
.badge.info {
	background: #e3f2fd;
	color: #0d47a1;
	border-color: #bbdefb;
}

.badge.duplicate {
	background: #fdefe3;
	color: #555;
	border-color: #ffd279;
	font-style: italic;
	font-size: 14px;
}

.badge.recently {
	color: #007d1d;
	border-color: #aee1b0;
}

.badge.safe,
.badge.validated {
	background: #e8f5e9;
	color: #1b5e20;
	border-color: #c8e6c9;
}

.badge.ai,
.badge.comment {
	background: linear-gradient(135deg, #f6f0ff 0%, #f7f8ff 45%, #f6f0ff 100%);
	border: 1px solid #dde2ff;
}

.badge.ai {
	color: #c2185b;
	border-color: #f8bbd0;
}

.badge.comment {
	color: #444;
	font-size: 13px;
	font-weight: bold;
	border-radius: 8px;
}

.badge.audio {
	background: #f1f8e9;
	color: #33691e;
	border-color: #dcedc8;
}

.badge.arch,
.badge.version {
	background: #fafafa;
	color: #333;
	border: 1px solid #e0e0e0;
}

.badge.arch-na {
	background: #f5f5f5;
	color: #999;
	border: 1px solid #e2e8f0;
}

.badge.subtle {
	background: #f8f8f8;
	color: #444;
	border-color: #e9e9e9;
}

.badge.legacy {
	background: #fff7e6;
	color: #8a5a00;
	border-color: #ffe3b0;
}

.badge.download {
	background: #eef7ff;
	color: #0b64b3;
	border-color: #cfe6ff;
}

.badge.requested {
	margin-top: 12px;
	background: #ebffec;
	color: #1b5e20;
	border: none;
	font-size: 14px;
	font-weight: bold;
}

.badge.empty {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	margin-top: 16px;
	background: #fdfaf2;
	color: #4a4a4a;
	border: 1px solid #f3e5ca;
	font-size: 14px;
	border-radius: 8px;
	padding: 16px 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
	margin-bottom: 12px;
}

.badge.empty strong {
	display: block;
	color: #434343;
	font-size: 16px;
}

.badge.empty ul {
	margin: 8px 0 12px 0;
	padding-left: 20px;
	color: #5c5c5c;
}

.badge.empty li {
	margin-bottom: 4px;
}

.badge.podcast {
	background: #f3e8ff;
	color: #5e35b1;
	border-color: #e0d0ff;
}

.badge.likes {
	background: #ffebee;
	color: #b71c1c;
	border-color: #ffcdd2;
}

.badge.verified,
.success-msg {
	background: #f4fff4;
	color: #0f7e17;
	border: 1px solid #a2e4a4;
	border-radius: 5px;
	font-size: 12px;
	line-height: 18px;
}

.success-msg {
	color: #118e1a;
	padding: 6px;
	margin: 12px;
}

.overflow-ellipsis,
.truncate {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.truncate {
	display: block !important;
	width: 100%;
	min-width: 0 !important;
}

.loader {
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid var(--accent);
	width: 100px;
	height: 100px;
	animation: spin 2s linear infinite;
	margin: auto;
	grid-column: 1 / -1;
}

.hide-el {
	display: none;
}

.submit-err,
.submit-err-fail {
	padding: 10px;
	font-size: 1em;
	font-weight: 600;
	margin: 1em;
}

.submit-err {
	background: #f5ffc0;
}

.submit-err-fail {
	background: #ffd3d3;
}

.dottedunder {
	color: #0a58ca;
	text-decoration: none;
	border-bottom: 1px dotted currentColor;
}

.dottedunder:hover {
	border-bottom-style: solid;
	background: #fce4ec33;
}

.dropzone {
	border: 2px dashed #e6aec7;
	border-radius: 8px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex: 1 1 auto;
	min-height: 250px;
	position: relative;
	overflow: hidden;
	background-image: radial-gradient(circle, rgba(230, 174, 199, 0.25) 15%, transparent 20%);
	background-size: 16px 16px, 100% 200%;
	background-repeat: repeat, no-repeat;
	background-position: 0% 0%, 0% 100%;
}

.dropzone::before,
.dropzone::after {
	content: "";
	display: block;
	position: absolute;
	width: 32px;
	height: 32px;
	z-index: 1;
	pointer-events: none;
	background-size: contain;
	background-repeat: no-repeat;
	bottom: -40px;
	opacity: 0;
	transition: opacity 0.3s ease, bottom 0.3s ease;
}

.dropzone::before {
	left: 15%;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://w3.org' viewBox='0 0 24 24' fill='none' stroke='%23e6aec7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z'/%3E%3Cpath d='M14 2v4a1 1 0 0 0 1 1h4'/%3E%3C/svg%3E");
}

.dropzone::after {
	right: 15%;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://w3.org' viewBox='0 0 24 24' fill='none' stroke='%23e6aec7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z'/%3E%3Cpath d='M14 2v4a1 1 0 0 0 1 1h4'/%3E%3Ccircle cx='12' cy='14' r='2'/%3E%3C/svg%3E");
}

.dropzone:hover {
	animation: bitStream 1.5s linear infinite, laserScan 3s ease-in-out infinite;
}

.dropzone:hover::before {
	opacity: 0.6;
	bottom: 30px;
	animation: floatUpLeft 4s ease-in-out infinite alternate;
}

.dropzone:hover::after {
	opacity: 0.6;
	bottom: 40px;
	animation: floatUpRight 4.5s ease-in-out infinite alternate;
}

@keyframes bitStream {
	0% {
		background-position-y: 0%, 100%;
	}

	100% {
		background-position-y: -32px, 100%;
	}
}

@keyframes laserScan {
	0% {
		background-position-y: inherit, 100%;
	}

	50% {
		background-position-y: inherit, 0%;
	}

	100% {
		background-position-y: inherit, 100%;
	}
}

@keyframes floatUpLeft {
	0% {
		transform: translateY(0) rotate(0deg);
	}

	100% {
		transform: translateY(-120px) translateX(15px) rotate(15deg);
	}
}

@keyframes floatUpRight {
	0% {
		transform: translateY(0) rotate(0deg);
	}

	100% {
		transform: translateY(-130px) translateX(-15px) rotate(-15deg);
	}
}

.dropzone strong {
	display: block;
	margin-bottom: 6px;
}

.dropzone .hint {
	color: var(--muted);
	font-size: 13px;
	margin: 6px 0;
}

.drop-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 8px;
}

.upload-card input[type="file"] {
	display: none;
}

.upload-card form label {
	margin: 0;
}

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

.files {
	color: #000;
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	text-align: center;
	align-items: center;
	font-size: 12px;
	font-weight: 600;
	border-radius: 999px;
	padding: 4px 10px;
}

.dlh-kv {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

.dlh-rowpair {
	display: grid;
	grid-template-columns: 180px 1fr;
	align-items: flex-start;
	grid-column: 1 / -1;
	padding: 5px 0;
}

.dlh-rowpair a {
	border-bottom: 1px dotted var(--accent);
}

.dlh-rowpair+.dlh-rowpair {
	border-top: 1px solid #f5f5f5;
}

.dlh-rowpair,
.dlh-v {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dlh-k {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #444;
	font-size: 14px;
}

.dlh-k i {
	color: #c2185b;
	font-size: 14px;
}

.dlh-v {
	font-size: 14px;
	color: #222;
	min-height: 24px;
	font-weight: bold;
}

.dlh-muted {
	color: #666;
	font-style: italic;
}

.md-content {
	color: #222;
}

.md-content h2 {
	margin: 2rem 0 .6rem;
}

.md-content h3 {
	margin: 1.5rem 0 .5rem;
}

.md-content ul,
.md-content ol {
	margin: 0 0 1rem 1.6rem;
	padding: 0;
	list-style-position: outside;
}

.md-content p+ul,
.md-content p+ol {
	margin-top: 0.4rem;
}

.md-content li {
	margin: 0.2rem 0;
}

.md-content ul ul,
.md-content ul ol,
.md-content ol ul,
.md-content ol ol {
	margin-top: 0.2rem;
	margin-bottom: 0.6rem;
	margin-left: 1.2rem;
}

.md-content ul {
	list-style-type: disc;
}

.md-content ul ul {
	list-style-type: circle;
}

.md-content ol {
	list-style-type: decimal;
}

.md-content p {
	margin: .65em 0;
}

.md-content a {
	color: #0a58ca;
	text-decoration: underline;
}

#search-filter {
	flex: 2 1 320px;
	min-width: 240px;
	background: #fff !important;
	color: var(--text);
	border: 1px solid #e2e8f0;
	padding: 10px 12px;
}

.box.content {
	margin-top: 12px;
	background: var(--soft2);
	border: 1px dashed #e2e8f0;
	padding: 12px;
}

.button.primary.fit {
	height: 50px;
	border-radius: 10px;
	font-weight: 800;
	width: 100%;
}

.faq-container {
	padding-top: 12px;
	margin: 0 auto;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.faq-item {
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	margin-bottom: 12px;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
	border-color: #cbd5e1;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 24px;
	font-weight: 600;
	color: #1e293b;
	cursor: pointer;
	list-style: none;
	user-select: none;
	font-size: 16px;
}

.faq-question:hover {
	color: var(--accent);
}

.faq-question::-webkit-details-marker {
	display: none;
}

.faq-question::after {
	content: "";
	width: 10px;
	height: 10px;
	border-right: 2px solid #64748b;
	border-bottom: 2px solid #64748b;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	margin-left: 16px;
}

details[open] .faq-question {
	color: var(--accent);
}

details[open] .faq-question::after {
	transform: rotate(-135deg);
	border-right-color: var(--accent);
	border-bottom-color: var(--accent);
}

.faq-item[open] .faq-question::after {
	transform: rotate(-135deg);
}

.faq-answer {
	padding: 0 24px 18px;
	color: #475569;
	font-size: 15px;
	line-height: 1.6;
}

.faq-answer p {
	margin: 0;
}

.empty-state {
	text-align: center;
	padding: 24px;
	color: #444;
}

.nav-tabs-bar {
	--tabs-bg: #ffffff;
	--tabs-text: #252525;
	--tabs-text-hover: #dd1777;
	--tabs-accent: #dd1777;
	--tabs-border: #e2e8f0;
	--tabs-input-bg: #f1f5f9;
	display: block;
	width: 100%;
	background-color: var(--tabs-bg);
	border-bottom: 1px solid var(--tabs-border);
	align-content: center;
	min-height: 56px;
}

.nav-tabs-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
}

.nav-tabs-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
	gap: 16px;
}

.nav-tabs-left {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-grow: 1;
}

.nav-tabs-right {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
}

.nav-tabs-left nav,
.nav-tabs-right nav {
	overflow: hidden;
}

.nav-tabs-brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	gap: 8px;
}

.nav-tabs-brand-box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding-left: 1px;
	background-color: var(--accent);
	color: #ffffff;
	font-family: Arial, -apple-system, sans-serif;
	font-size: 15px;
	font-weight: 900;
	-webkit-text-stroke: 0.5px #ffffff;
	text-transform: uppercase;
	border-radius: 6px;
	flex-shrink: 0;
	font-style: italic;
	margin-left: 5px;
}

.nav-tabs-name {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 20px;
	font-weight: 800;
	color: var(--tabs-text);
	letter-spacing: -0.5px;
}

.nav-tabs-name span {
	color: var(--tabs-text);
	transition: color 0.15s ease;
}

.nav-tabs-brand:hover .nav-tabs-name span {
	color: var(--tabs-accent);
}

.nav-tabs-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	fill: var(--tabs-accent);
	stroke: var(--tabs-accent);
}

.nav-tabs-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.nav-tabs-list::-webkit-scrollbar {
	display: none;
}

.nav-tabs-item {
	scroll-snap-align: start;
	flex: 0 0 auto;
}

.nav-tabs-link {
	align-items: center;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: var(--tabs-text);
	display: flex; 
	gap: 8px; 
	padding: 6px 12px; 
	border-radius: 4px; 
	transition: all 0.15s;
}

.nav-tabs-link.disabled {
	color: #666 !important;
}

.nav-tabs-link:hover,
.nav-tabs-link:focus {
	color: var(--tabs-text-hover);
	outline: none;
	background: #fff5f8;
}

.nav-tabs-link.is-active,
.nav-tabs-item.current .nav-tabs-link {
	color: var(--tabs-accent);
	border-bottom-color: transparent;
}

.nav-tabs-link.is-active .ui-badge {
	background-color: var(--tabs-accent);
	color: #ffffff;
}

.nav-tabs-icon[fill="none"] {
	fill: none;
}

.nav-tabs-search-box {
	display: flex;
	align-items: center;
	background-color: var(--tabs-input-bg);
	border-radius: 6px;
	padding-right: 4px;
	max-width: 360px;
	width: 100%;
	transition: box-shadow 0.15s ease;
}

.nav-tabs-search-box:focus-within {
	box-shadow: 0 0 0 2px var(--tabs-accent);
}

.nav-tabs-search-box input {
	width: 100%;
	border: none;
	background: none;
	padding: 8px 12px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 14px;
	color: inherit;
	outline: none;
}

.nav-tabs-search-btn {
	border: none;
	background: none;
	padding: 6px;
	color: var(--tabs-text);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-tabs-search-btn:hover {
	color: var(--tabs-accent);
}

.nav-tabs-search-btn svg {
	width: 18px;
	height: 18px;
}

.ui-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 18px;
	margin-left: 6px;
	font-weight: 700;
	line-height: 1;
	transition: background-color 0.15s ease, color 0.15s ease;
	background: #f1f5f9; 
	border: 1px solid var(--line, #ebedf3); 
	padding: 1px 5px; 
	border-radius: 4px; 
	font-size: 10px; 
	color: #475569; 
	font-variant-numeric: tabular-nums;"
}

.nav-tabs-v-group {
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 12px;
	margin-bottom: 12px;
	width: 100%;
}

.nav-tabs-v-group .nav-tabs-bar {
	border-bottom: none;
	margin: 0;
}

.nav-tabs-v-group .nav-tabs-list {
	flex-direction: column;
	padding: 0;
	white-space: normal;
	overflow: visible;
	line-height: 2em;
}

.vip-btn-inline {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #ffffff !important;
	background-color: #1a202c;
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.vip-btn-inline:hover {
	background-color: var(--accent);
	transform: translateY(-1px);
}

.vip-btn-inline:active {
	transform: translateY(0);
}

.vip-btn-inline svg {
	width: 14px;
	height: 14px;
	fill: #ffffff;
}

footer {
	background: #111;
	color: #aaa;
	padding: 40px calc((100% - 1200px) / 2 + 24px);
	font-family: system-ui, -apple-system, sans-serif;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-top: auto;
}

footer img {
	display: block;
	max-width: 140px;
	height: auto;
	border-radius: 5px;
}

footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	font-weight: 500;
}

footer li {
	color: #888;
}

footer a {
	text-decoration: none;
	color: #eee;
	transition: color 0.15s ease;
}

footer a:hover {
	color: #c2185b;
}

.adv-toggle-btn,
.meta-box-toggle {
	margin: 0;
	background: #fff5f8;
	border: 1px solid rgba(221, 23, 119, 0.15);
	font-size: 13px;
	font-weight: bold;
	color: var(--accent);
	padding: 0 16px;
	height: 2.25rem;
	border-radius: 6px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	transition: background 0.15s ease, color 0.15s ease;
}

.adv-toggle-btn:hover,
.meta-box-toggle:hover {
	background: var(--accent) !important;
	color: #ffffff !important;
}

.inst-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	width: 100%;
	margin-top: 20px;
}

.inst-card {
	flex: 1;
	min-width: 260px;
	background: #fafbfe;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.inst-card:hover {
	background-color: #ffffff;
	border-color: rgba(221, 23, 119, 0.2);
	box-shadow: 0 4px 15px rgba(221, 23, 119, 0.03);
}

.inst-card-header {
	display: flex;
	align-items: center;
	gap: 10px;
}

.inst-card-num {
	width: 24px;
	height: 24px;
	min-width: 24px;
	background: #fff5f8;
	border: 1px solid rgba(221, 23, 119, 0.15);
	color: var(--accent);
	font-size: 12px;
	font-weight: 800;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.inst-card h3 {
	margin: 0;
	font-size: 15px;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.3;
	letter-spacing: -0.1px;
}

.inst-card p {
	margin: 0;
	font-size: 13.5px;
	color: var(--muted);
	line-height: 1.5;
}

.inst-path-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 4px;
	width: 100%;
	border-left: 2px solid rgba(221, 23, 119, 0.15);
	padding-left: 10px;
}

.inst-path {
	font-family: monospace;
	font-size: 12px;
	color: #1e293b;
	background: #f8fafc;
	border: 1px solid var(--line);
	padding: 5px 8px;
	border-radius: 4px;
	width: 100%;
}

.inst-path strong {
	font-family: system-ui, -apple-system, sans-serif;
	color: #64748b;
	font-size: 11px;
	display: inline-block;
	width: 45px;
}

.donut-slice {
	--slice-stroke: 16px;
	--slice-opacity: 1;
	stroke-width: var(--slice-stroke);
	opacity: var(--slice-opacity);
	transition: stroke-width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	cursor: pointer;
}

.donut-slice.is-active {
	--slice-stroke: 24px !important;
	--slice-opacity: 1 !important;
}

.dll-security-topbar {
	background-color: var(--dll-bg-clean);
	border-bottom: 1px solid var(--dll-border-light);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.01);
	height: 75px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	position: relative;
	z-index: 999;
	overflow: hidden;
}

.dll-security-wrapper {
	max-width: 1400px;
	height: 100%;
	margin: 0 auto;
	padding: 0 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.dll-sec-core {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 200px;
}

.dll-sec-shield-box {
	color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.dll-sec-shield-icon {
	width: 24px;
	height: 24px;
}

.dll-sec-core-meta {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.dll-sec-core-status {
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	color: var(--dll-text-slate);
	display: flex;
	align-items: center;
	gap: 6px;
}

.dll-sec-pulse-dot {
	width: 6px;
	height: 6px;
	background-color: var(--dll-secure-green);
	border-radius: 50%;
	display: inline-block;
	animation: dllSecPulse 2s infinite ease-in-out;
}

.dll-sec-core-title {
	font-size: 13px;
	color: #3d4654;
	font-weight: 600;
}

.dll-sec-logs-grid {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-grow: 1;
	justify-content: flex-end;
}

.dll-sec-log-card {
	background: #fafbfe;
	border: 1px solid var(--dll-border-light);
	border-radius: 8px;
	padding: 12px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 250px;
	height: 54px;
}

.dll-card-icon-box {
	color: var(--dll-text-slate);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.dll-card-svg {
	width: 22px;
	height: 22px;
}

.dll-card-text-stack {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 3px;
}

.dll-sec-log-label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--dll-brand-pink);
	line-height: 1.2;
}

.dll-sec-log-val {
	font-size: 15px;
	font-weight: 700;
	color: var(--dll-text-dark);
	font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
	line-height: 1.2;
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.file-status-container {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.file-status-card {
	border-radius: 6px;
	padding: 14px 16px;
	width: 100%;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 4px;
	border: 1px solid transparent;
	margin-top: 12px;
}

.file-status-header {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: -0.1px;
}

.file-status-header .status-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.file-status-desc {
	margin: 0;
	padding: 0 0 0 24px;
	font-size: 12.5px;
	line-height: 1.4;
	font-weight: 500;
}

.file-status-card.status-critical,
.file-status-card.status-warning {
	background: #fffbeb;
	border-color: rgba(245, 158, 11, 0.15);
	color: #92400e;
}

.file-status-card.status-critical .status-icon,
.file-status-card.status-warning .status-icon {
	color: #d97706;
}

.file-status-card.status-critical .file-status-desc,
.file-status-card.status-warning .file-status-desc {
	color: #b45309;
}

.file-status-card.status-info {
	background: #fff7ed;
	border-color: rgba(249, 115, 22, 0.15);
	color: #7c2d12;
}

.file-status-card.status-info .status-icon {
	color: #ea580c;
}

.file-status-card.status-info .file-status-desc {
	color: #c2410c;
}

.file-status-card.status-neutral {
	background: #f8fafc;
	border-color: rgba(148, 163, 184, 0.15);
	color: #334155;
}

.file-status-card.status-neutral .status-icon {
	color: #64748b;
}

.file-status-card.status-neutral .file-status-desc {
	color: #475569;
}

.marquee-container {
	width: 100%;
	height: 44px;
	overflow: hidden;
	display: flex;
	align-items: center;
	border-top: 1px solid #ebedf3;
	border-bottom: 1px solid #ebedf3;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	margin: 12px 0;
	padding: 0 12px;
	text-transform: uppercase;
}

.marquee-viewport {
	width: 100%;
	overflow: hidden;
}

.marquee-track {
	display: flex;
	align-items: center;
	white-space: nowrap;
	gap: 90px;
	animation: marquee-scroll 10s linear infinite;
	width: max-content;
}

.marquee-container:hover .marquee-track {
	animation-play-state: paused;
}

.marquee-item {
	display: flex;
	align-items: center;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-decoration: none;
}

.marquee-item:hover .marquee-text {
	text-decoration: underline;
}

.marquee-user {
	color: var(--accent);
	margin-right: 8px;
}

.marquee-user.guest {
	color: var(--accent);
	font-weight: normal;
}

.marquee-text {
	color: #444;
}

.marquee-text.guest {
	font-weight: normal;
}

@keyframes marquee-scroll {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(-30%, 0, 0);
	}
}

@media (min-width: 500px) {
	.clamped-ad-banner {
		height: 100px;
	}
}

@media (min-width: 800px) {
	.clamped-ad-banner {
		height: 250px;
	}
}

@media (max-width: 1300px) {
	.base-wrapper {
		grid-template-columns: 336px minmax(0, 1fr);
	}

	.base-sidebar {
		max-width: 336px;
	}
}

@media (max-width: 1120px) {
	.base-wrapper {
		grid-template-columns: 300px minmax(0, 1fr);
	}

	.base-sidebar {
		max-width: 300px;
	}
}

@media (max-width: 980px) {
	.base-wrapper {
		grid-template-columns: 1fr;
	}

	.base-sidebar {
		display: none !important;
	}

	.hide980 {
		display: none !important;
	}
}

@media (max-width: 780px) {
	.hide780 {
		display: none !important;
	}

	.dll-security-topbar {
		height: auto;
		padding: 12px 0;
	}

	.dll-security-wrapper {
		flex-direction: column;
		gap: 12px;
		padding: 0 15px;
	}

	.dll-sec-core {
		justify-content: center;
		min-width: unset;
		width: 100%;
	}

	.dll-sec-logs-grid {
		width: 100%;
		justify-content: center;
		gap: 12px;
		flex-wrap: wrap;
	}

	.dll-sec-log-card {
		flex-grow: 1;
		min-width: calc(50% - 6px);
		justify-content: flex-start;
		padding-left: 24px;
	}

	.dll-sec-log-card:last-child {
		display: flex;
		min-width: 100%;
	}
}

@media (max-width: 1160px) {
	.dll-sec-log-card {
		min-width: 220px;
		gap: 12px;
		padding: 12px 14px;
	}
}

@media (max-width: 990px) {
	.dll-sec-log-card:last-child {
		display: none;
	}
}

@media (max-width: 768px) {
	.nav-tabs-row {
		flex-direction: column;
		height: auto;
		gap: 12px;
	}

	.nav-tabs-left,
	.nav-tabs-right {
		width: 100%;
		justify-content: space-between;
		gap: 12px;
	}

	.nav-tabs-left nav {
		width: 100%;
	}

	.nav-tabs-search-box {
		max-width: none;
		flex-grow: 1;
		margin-right: 5px;
		margin-top: 5px;
	}

	footer {
		flex-direction: column;
		text-align: center;
		gap: 24px;
		padding: 40px 24px;
	}

	footer ul {
		flex-direction: column;
		gap: 16px;
	}
}

@media (max-width: 480px) {
	.vip-btn-inline span {
		display: none;
	}

	.vip-btn-inline {
		padding: 8px;
	}
}