
/* ============================================================
   FurryCraft Network — MyBB 1.8 Theme
   Matches FurryCraft.net website design
   Palette: #05131d bg · Cyan #7EE0FF/#2EB2FF · Green #45D64A/#8DF58F
   Fonts: Baloo 2 (headings) · Space Grotesk (body) · Silkscreen (pixel accents)
   ============================================================ */

@import url(https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&family=Silkscreen:wght@400;700&display=swap);

:root {
	--fc-bg: #05131d;
	--fc-bg-deep: #040d15;
	--fc-panel-1: rgba(13,38,55,.92);
	--fc-panel-2: rgba(8,25,37,.92);
	--fc-row-1: rgba(10,30,45,.72);
	--fc-row-2: rgba(13,38,55,.55);
	--fc-border: rgba(126,224,255,.16);
	--fc-border-strong: rgba(126,224,255,.32);
	--fc-cyan: #7EE0FF;
	--fc-cyan-deep: #2EB2FF;
	--fc-green: #45D64A;
	--fc-green-light: #8DF58F;
	--fc-text: #e9f7ff;
	--fc-text-soft: #bfe7f5;
	--fc-text-muted: #a9d2e2;
	--fc-text-dim: #6fb7cf;
	--fc-dark: #04121b;
	--fc-radius: 16px;
	--fc-radius-sm: 10px;
	--fc-font-head: 'Baloo 2', sans-serif;
	--fc-font-body: 'Space Grotesk', sans-serif;
	--fc-font-pixel: 'Silkscreen', monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	background:
		radial-gradient(120% 90% at 78% 0%, rgba(69,214,74,.14), transparent 55%),
		radial-gradient(110% 90% at 8% 12%, rgba(46,178,255,.18), transparent 55%),
		linear-gradient(180deg, #061a27 0%, #05131d 45%, #040d15 100%);
	background-attachment: fixed;
	background-color: var(--fc-bg);
	color: var(--fc-text);
	font-family: var(--fc-font-body);
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
	padding: 0;
}

/* Minecraft wallpaper layer — same treatment as the website
   (opacity .12, luminosity blend, slight blur). If the image
   should live on the forum instead, upload it and change the URL. */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	background: url(https://furrycraft.net/assets/wallpaper.png) center / cover no-repeat;
	opacity: .12;
	filter: saturate(1.1) blur(1px);
	mix-blend-mode: luminosity;
	pointer-events: none;
}

::selection { background: #45D64A; color: #04121b; }

/* Page title (used on forumdisplay via small template edit) */
.fc-pagetitle {
	font-family: var(--fc-font-head);
	font-weight: 800;
	font-size: clamp(26px, 3.5vw, 40px);
	color: #ffffff;
	letter-spacing: -.5px;
	margin: 6px 0 2px;
}

.fc-pagetitle-kicker {
	font-family: var(--fc-font-pixel);
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--fc-green-light);
	margin-bottom: 12px;
}

a:link, a:visited {
	color: var(--fc-cyan);
	text-decoration: none;
	transition: color .18s ease;
}

a:hover, a:active {
	color: #b7f0ff;
	text-decoration: none;
}

#container {
	color: var(--fc-text);
	text-align: left;
	line-height: 1.55;
	margin: 0 auto;
	max-width: 1240px;
	padding: 0 20px 40px;
}

#content {
	width: auto;
	padding: 0;
	overflow: visible;
}

.wrapper {
	max-width: 1240px;
	min-width: 780px;
	margin: auto;
}

/* ============ HEADER / LOGO ============ */

#header {
	background: transparent;
	padding: 0;
}

#logo {
	background: linear-gradient(180deg, rgba(5,19,29,.82), rgba(5,19,29,.35));
	border: 1px solid var(--fc-border);
	border-radius: 0 0 var(--fc-radius) var(--fc-radius);
	backdrop-filter: blur(14px);
	padding: 18px 28px;
	margin-bottom: 16px;
}

#logo img {
	max-height: 64px;
	filter: drop-shadow(0 6px 18px rgba(46,178,255,.5));
}

/* ============ PANEL (Welcome / Login bar) ============ */

#panel {
	background: linear-gradient(180deg, var(--fc-panel-1), var(--fc-panel-2));
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius-sm);
	color: var(--fc-text-muted);
	font-size: 12px;
	padding: 10px 18px;
	margin-bottom: 14px;
	box-shadow: 0 14px 34px rgba(3,12,20,.45);
}

#panel .upper {
	background: transparent;
	border: none;
	padding: 4px 0;
	color: var(--fc-text-muted);
}

#panel .lower {
	background: transparent;
	border: none;
	color: var(--fc-text-dim);
	padding: 4px 0;
	font-size: 11px;
}

#panel .lower a:link, #panel .lower a:visited {
	color: var(--fc-cyan);
}

#panel .upper a:link, #panel .upper a:visited {
	color: var(--fc-text);
	font-weight: 600;
}

#panel .upper a:hover { color: var(--fc-green-light); }

#quick_login .remember_me { color: var(--fc-text-dim); }

/* ============ MENU ============ */

.menu ul {
	color: var(--fc-text-muted);
	font-weight: 600;
	font-size: 13px;
	padding: 0;
	margin: 0 0 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
}

.menu li {
	display: inline-flex;
	padding: 0;
}

.menu li a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 16px;
	border-radius: 12px;
	background: rgba(126,224,255,.06);
	border: 1px solid var(--fc-border);
	color: #dff6ff !important;
	font-family: var(--fc-font-head);
	font-weight: 700;
	transition: all .18s ease;
}

.menu li a:hover {
	background: rgba(126,224,255,.14);
	border-color: rgba(69,214,74,.45);
	color: #ffffff !important;
	transform: translateY(-2px);
}

.menu img { vertical-align: middle; }

/* ============ NAVIGATION (Breadcrumb) ============ */

.navigation {
	color: var(--fc-text-dim);
	font-size: 12px;
	font-family: var(--fc-font-pixel);
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 10px 4px;
	margin-bottom: 6px;
}

.navigation a:link, .navigation a:visited {
	color: var(--fc-cyan);
	font-weight: 400;
}

.navigation a:hover { color: var(--fc-green-light); }

.navigation .active {
	color: var(--fc-green-light);
	font-size: 12px;
	font-weight: 700;
}

/* ============ TABLES / PANELS ============ */

table { color: var(--fc-text); font-size: 14px; }

.tborder {
	background: linear-gradient(180deg, var(--fc-panel-1), var(--fc-panel-2));
	width: 100%;
	margin: 0 auto 18px;
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius);
	box-shadow: 0 24px 50px rgba(3,12,20,.5);
	overflow: hidden;
	border-collapse: separate;
	border-spacing: 0;
}

.tfixed {
	table-layout: fixed;
	word-wrap: break-word;
}

.thead {
	background: linear-gradient(120deg, rgba(46,178,255,.22), rgba(69,214,74,.18)), linear-gradient(180deg, rgba(13,38,55,.98), rgba(8,25,37,.98));
	color: #ffffff;
	border-bottom: 1px solid var(--fc-border-strong);
	padding: 14px 18px;
	font-family: var(--fc-font-head);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: .3px;
}

.thead a:link, .thead a:visited {
	color: #ffffff;
	text-decoration: none;
}

.thead a:hover, .thead a:active {
	color: var(--fc-green-light);
}

.thead .smalltext {
	font-family: var(--fc-font-body);
	font-weight: 400;
	color: var(--fc-text-muted);
}

.tcat {
	background: rgba(4,16,24,.65);
	color: var(--fc-text-dim);
	border-bottom: 1px solid var(--fc-border);
	font-size: 11px;
	font-family: var(--fc-font-pixel);
	letter-spacing: .14em;
	text-transform: uppercase;
	padding: 8px 12px;
}

.tcat a:link, .tcat a:visited { color: var(--fc-text-muted); }
.tcat a:hover, .tcat a:active { color: var(--fc-cyan); }

.trow1 {
	background: var(--fc-row-1);
	border-bottom: 1px solid rgba(126,224,255,.07);
	padding: 12px;
	transition: background .15s ease;
}

.trow2 {
	background: var(--fc-row-2);
	border-bottom: 1px solid rgba(126,224,255,.07);
	padding: 12px;
	transition: background .15s ease;
}

tr:hover > .trow1, tr:hover > .trow2 {
	background: rgba(46,178,255,.09);
}

.trow_shaded {
	background: rgba(255,170,80,.10);
	color: #ffc98a;
	border-bottom: 1px solid rgba(255,170,80,.25);
}

.no_bottom_border { border-bottom: 0; }

.post.unapproved_post { background: rgba(255,170,80,.10); }
.post.unapproved_post .post_author { border-bottom-color: rgba(255,170,80,.25); }
.post.classic.unapproved_post .post_author { border-color: rgba(255,170,80,.25); }
.post.deleted_post { background: rgba(233,0,15,.10); }

.trow_deleted, .post.deleted_post {
	background: rgba(233,0,15,.08);
}

.trow_selected, tr.trow_selected td {
	background: rgba(69,214,74,.12);
	color: var(--fc-text);
}

.trow_selected a:link, .trow_selected a:visited {
	color: var(--fc-green-light);
}

.trow_sep {
	background: rgba(4,16,24,.8);
	color: var(--fc-cyan);
	font-size: 12px;
	padding: 8px 12px;
	font-family: var(--fc-font-head);
	font-weight: 700;
	letter-spacing: .04em;
}

.tfoot {
	background: rgba(4,16,24,.65);
	border-top: 1px solid var(--fc-border);
	color: var(--fc-text-muted);
	padding: 10px 14px;
}

.tfoot a:link, .tfoot a:visited { color: var(--fc-cyan); }
.tfoot a:hover, .tfoot a:active { color: var(--fc-green-light); }

.thead input.textbox, .thead select {
	font-size: 12px;
}

.bottommenu {
	background: linear-gradient(180deg, var(--fc-panel-1), var(--fc-panel-2));
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius-sm);
	color: var(--fc-text-muted);
	padding: 12px 16px;
	margin-bottom: 14px;
}

.tborder tbody:last-child > tr:last-child > td { border-bottom: 0; }

/* ============ FORUM LIST BITS ============ */

.forum_status {
	height: 30px;
	width: 30px;
	display: inline-block;
}

.forum_on {
	background: url(../../../images/forum_icon_sprite.png) no-repeat 0 0;
}

.forum_off {
	background: url(../../../images/forum_icon_sprite.png) no-repeat 0 -30px;
}

.forum_offlock {
	background: url(../../../images/forum_icon_sprite.png) no-repeat 0 -60px;
}

.forum_offlink {
	background: url(../../../images/forum_icon_sprite.png) no-repeat 0 -90px;
}

.subforumicon {
	height: 10px;
	width: 10px;
	display: inline-block;
	margin: 0 5px;
}

.subforum_minion {
	background: url(../../../images/mini_status_sprite.png) no-repeat 0 0;
}

.subforum_minioff {
	background: url(../../../images/mini_status_sprite.png) no-repeat 0 -10px;
}

.subforum_miniofflock {
	background: url(../../../images/mini_status_sprite.png) no-repeat 0 -20px;
}

.subforum_miniofflink {
	background: url(../../../images/mini_status_sprite.png) no-repeat 0 -30px;
}

/* ============ TEXT HELPERS ============ */

.smalltext {
	font-size: 12px;
	color: var(--fc-text-muted);
}

.largetext {
	font-size: 17px;
	font-family: var(--fc-font-head);
	font-weight: 700;
	color: #ffffff;
}

.highlight { background: rgba(69,214,74,.35); color: #ffffff; padding-top: 3px; padding-bottom: 3px; }

.invisible { color: #ffaa50; }

.selectall { background: rgba(46,178,255,.12); color: var(--fc-cyan); text-align: center; }

.author_avatar img {
	border-radius: 12px;
	border: 1px solid var(--fc-border);
	background: rgba(4,16,24,.6);
	padding: 3px;
}

/* ============ FORMS ============ */

input.textbox, textarea, select, .search_default, .search_focused {
	background: rgba(4,16,24,.75);
	color: var(--fc-text);
	border: 1px solid var(--fc-border-strong);
	border-radius: var(--fc-radius-sm);
	padding: 8px 12px;
	font-family: var(--fc-font-body);
	font-size: 13px;
	outline: none;
	transition: border-color .18s ease, box-shadow .18s ease;
}

input.textbox:focus, textarea:focus, select:focus {
	border-color: var(--fc-green);
	box-shadow: 0 0 0 3px rgba(69,214,74,.18);
}

textarea {
	line-height: 1.5;
}

select { appearance: auto; }

select option { background: #0a1e2d; color: var(--fc-text); }

form { margin: 0; padding: 0; }

fieldset {
	padding: 14px;
	margin: 0;
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius-sm);
	background: rgba(4,16,24,.35);
}

fieldset.trow1, fieldset.trow2 {
	background: rgba(4,16,24,.35);
}

legend {
	color: var(--fc-green-light);
	font-family: var(--fc-font-head);
	font-weight: 700;
	padding: 0 8px;
}

/* ============ BUTTONS ============ */

.button, input.button, button.button {
	cursor: pointer;
	border: none;
	padding: 9px 18px;
	border-radius: 12px;
	font-family: var(--fc-font-head);
	font-weight: 700;
	font-size: 13px;
	color: var(--fc-dark) !important;
	background: linear-gradient(135deg, #7EE0FF, #45D64A);
	box-shadow: 0 8px 20px rgba(46,178,255,.30);
	transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
	text-shadow: none;
}

.button:hover, input.button:hover, button.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(69,214,74,.38);
	filter: brightness(1.05);
}

.button:active, input.button:active { transform: translateY(0); }

.bitbutton, a.bitbutton:link, a.bitbutton:visited {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 10px;
	background: rgba(126,224,255,.08);
	border: 1px solid var(--fc-border);
	color: #dff6ff !important;
	font-size: 12px;
	font-weight: 600;
	transition: all .15s ease;
}

.bitbutton:hover { background: rgba(126,224,255,.16); border-color: rgba(69,214,74,.4); }

/* ============ PAGINATION ============ */

.pagination {
	font-size: 12px;
	padding-top: 10px;
	margin-bottom: 8px;
	color: var(--fc-text-muted);
}

.pagination .pages {
	font-weight: 700;
	color: var(--fc-text-dim);
	font-family: var(--fc-font-pixel);
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.pagination .pagination_current, .pagination a {
	padding: 5px 11px;
	margin-bottom: 3px;
	display: inline-block;
	border-radius: 10px;
}

.pagination a {
	background: rgba(126,224,255,.07);
	border: 1px solid var(--fc-border);
	color: var(--fc-cyan);
	transition: all .15s ease;
}

.pagination .pagination_current {
	background: linear-gradient(135deg, #7EE0FF, #45D64A);
	color: var(--fc-dark);
	border: 1px solid transparent;
	font-weight: 800;
}

.pagination a:hover {
	background: rgba(126,224,255,.16);
	border-color: rgba(69,214,74,.45);
	color: #ffffff;
	text-decoration: none;
}

.pagination_breadcrumb {
	background: linear-gradient(180deg, var(--fc-panel-1), var(--fc-panel-2));
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius-sm);
	outline: none;
	font-weight: 600;
}

.pagination_breadcrumb_link {
	vertical-align: middle;
	cursor: pointer;
}

/* ============ THREAD / POST BIT ============ */

.thread_legend, .thread_legend dd {
	margin: 0;
	padding: 0;
}

.thread_legend dd {
	padding-bottom: 4px;
	margin-right: 15px;
}

.thread_legend img {
	margin-right: 4px;
	vertical-align: bottom;
}

.forum_legend, .forum_legend dt, .forum_legend dd {
	margin: 0;
	padding: 0;
}

.forum_legend dd {
	float: left;
	margin-right: 10px;
	margin-top: 7px;
}

.forum_legend dt {
	margin-right: 10px;
	float: left;
}

.success_message {
	color: var(--fc-green-light);
	font-weight: 700;
	font-size: 12px;
	margin-bottom: 10px;
}

.error_message {
	color: #ff8f9a;
	font-weight: 700;
	font-size: 12px;
	margin-bottom: 10px;
}

#posts_container { padding: 0; }

.post {
	overflow: hidden;
	border-bottom: 1px solid var(--fc-border);
}

.post:last-child { border-bottom: 0; }

.post.classic {
	padding-top: 15px;
}

.post .post_author {
	border-bottom: 1px solid rgba(126,224,255,.10);
	background: rgba(4,16,24,.45);
	padding: 8px 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.post.classic .post_author {
	background: linear-gradient(180deg, var(--fc-panel-1), var(--fc-panel-2));
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius-sm);
	float: left;
	width: 15%;
	margin: 0 1% 15px 0;
	padding: 12px 1%;
	display: block;
}

.post .post_author .buddy_status {
	vertical-align: middle;
	margin-top: -4px;
}

.post .post_author div.author_avatar {
	float: left;
	margin-right: 3px;
}

.post.classic .post_author div.author_avatar {
	float: none;
	text-align: center;
	margin-bottom: 8px;
}

.post .post_author div.author_avatar img {
	padding: 3px;
}

.post .post_author div.author_information {
	float: left;
	padding: 6px 8px;
}

.post.classic .post_author div.author_information {
	float: none;
	padding: 6px;
	text-align: center;
}

.post .post_author div.author_statistics {
	float: right;
	font-size: 11px;
	padding: 6px 10px 3px;
	color: var(--fc-text-dim);
	line-height: 1.4;
}

.post.classic .post_author div.author_statistics {
	border-top: 1px dotted rgba(126,224,255,.2);
	margin: 6px 0 0;
	padding: 6px 6px 3px;
	float: none;
}

.post .post_author .largetext {
	font-size: 16px;
}

.post .post_head {
	font-size: 11px;
	padding: 8px 14px 4px;
	margin-bottom: 4px;
	border-bottom: 1px dotted rgba(126,224,255,.14);
	color: var(--fc-text-dim);
}

.post .post_head span.post_date {
	color: var(--fc-text-dim);
	font-family: var(--fc-font-pixel);
	font-size: 10px;
	letter-spacing: .06em;
}

.post .post_head span.edited_post {
	font-size: 10px;
	color: var(--fc-text-dim);
}

.post .post_head span.edited_post a {
	color: var(--fc-cyan);
}

.post_body {
	font-size: 14px;
	padding: 14px 16px;
	line-height: 1.65;
	color: var(--fc-text-soft);
}

.post.classic .post_content {
	float: left;
	width: 79%;
	padding: 6px 1%;
}

.post_content {
	padding: 9px 10px;
}

.post_content .signature {
	margin-top: 5px;
	border-top: 1px dotted rgba(126,224,255,.2);
	padding: 10px 6px 4px;
	color: var(--fc-text-dim);
	font-size: 12px;
}

.post .post_meta {
	margin: 4px 0;
	font-size: 11px;
	color: var(--fc-text-dim);
}

.post .post_meta a:link, .post .post_meta a:visited {
	color: var(--fc-text-dim);
}

.post .post_meta a:hover, .post .post_meta a:active {
	color: var(--fc-cyan);
}

.post_controls {
	clear: both;
	background: rgba(4,16,24,.5);
	border-top: 1px solid rgba(126,224,255,.08);
	padding: 10px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
	overflow: visible;
}

.post_controls .float_left,
.post_controls .float_right {
	float: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
}

.post_controls .float_left { margin-right: auto; }

.postbit_buttons > a:link, .postbit_buttons > a:hover, .postbit_buttons > a:visited, .postbit_buttons > a:active {
	display: inline-flex;
	align-items: center;
	padding: 5px 12px;
	margin: 2px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	border-radius: 9px;
	background: rgba(126,224,255,.07);
	border: 1px solid var(--fc-border);
	color: #dff6ff;
	transition: all .15s ease;
	vertical-align: middle;
}

.postbit_buttons > a:hover {
	background: rgba(126,224,255,.15);
	border-color: rgba(69,214,74,.45);
}

/* The button text sits INSIDE the sprite span in MyBB —
   so the span gets left padding for the icon, not a fixed width */
.postbit_buttons a span {
	background: url(../../../images/buttons_sprite.png) no-repeat;
	padding-left: 22px;
	display: inline-block;
	width: auto;
	height: 20px;
	line-height: 20px;
	flex: none;
	margin: 0;
	white-space: nowrap;
	vertical-align: middle;
}

.postbit_find span { background-position: 0 0; }
.postbit_reputation_add span { background-position: 0 -20px; }
.postbit_email span { background-position: 0 -40px; }
.postbit_website span { background-position: 0 -60px; }
.postbit_pm span { background-position: 0 -80px; }
.postbit_quote span { background-position: 0 -100px; }
.postbit_multiquote span { background-position: 0 -120px; }
.postbit_multiquote_on span { background-position: 0 -140px; }
.postbit_edit span { background-position: 0 -160px; }
.postbit_qdelete span { background-position: 0 -180px; }
.postbit_qrestore span { background-position: 0 -200px; }
.postbit_report span { background-position: 0 -220px; }
.postbit_warn span { background-position: 0 -240px; }
.postbit_purgespammer span { background-position: 0 -260px; }
.postbit_reply_pm span { background-position: 0 -280px; }
.postbit_reply_all span { background-position: 0 -300px; }
.postbit_forward_pm span { background-position: 0 -320px; }
.postbit_delete_pm span { background-position: 0 -340px; }

.status_indicator {
	height: 10px;
	width: 10px;
	display: inline-block;
	border-radius: 50%;
}

.status_online { background: #45D64A; box-shadow: 0 0 8px #45D64A; }
.status_away { background: #ffaa50; box-shadow: 0 0 8px rgba(255,170,80,.7); }
.status_offline { background: #40606f; }

/* ============ QUOTES & CODE ============ */

blockquote {
	border: 1px solid var(--fc-border-strong);
	border-left: 3px solid var(--fc-green);
	border-radius: var(--fc-radius-sm);
	margin: 8px 0;
	background: rgba(4,16,24,.55);
	padding: 12px 14px;
	color: var(--fc-text-soft);
}

blockquote cite {
	font-weight: 700;
	font-style: normal;
	border-bottom: 1px solid rgba(126,224,255,.18);
	font-size: 13px;
	color: var(--fc-green-light);
	font-family: var(--fc-font-head);
	display: block;
	padding-bottom: 6px;
	margin: 0 0 10px;
}

blockquote cite span {
	float: right;
	font-weight: normal;
	font-size: 11px;
	color: var(--fc-text-dim);
}

blockquote cite span.highlight {
	float: none;
	font-weight: bold;
	padding-bottom: 0;
}

.codeblock {
	background: #040d15;
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius-sm);
	padding: 12px;
	margin: 8px 0;
}

.codeblock .title {
	border-bottom: 1px solid rgba(126,224,255,.15);
	font-weight: 700;
	font-family: var(--fc-font-pixel);
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--fc-cyan);
	padding-bottom: 6px;
	margin: 0 0 10px;
}

.codeblock code {
	overflow: auto;
	height: auto;
	max-height: 200px;
	display: block;
	font-family: 'JetBrains Mono', Consolas, Monaco, monospace;
	font-size: 13px;
	color: #8DF58F;
	line-height: 1.5;
}

.smilie {
	vertical-align: middle;
}

.smilie_pointer {
	cursor: pointer;
}

/* ============ SUBJECT / THREAD STATES ============ */

.subject_new {
	font-weight: 700;
}

.subject_new a:link, .subject_new a:visited {
	color: #ffffff;
}

.subject_new a:hover { color: var(--fc-green-light); }

.subject_old {
	font-weight: 400;
}

.subject_old a:link, .subject_old a:visited {
	color: var(--fc-text-muted);
}

.subject_editable { cursor: text; }

.ajax_mark_read { cursor: pointer; }

/* ============ ALERTS / WARNINGS ============ */

.pm_alert {
	background: rgba(69,214,74,.12);
	border: 1px solid rgba(69,214,74,.4);
	border-radius: var(--fc-radius-sm);
	color: var(--fc-green-light);
	text-align: center;
	padding: 10px 14px;
	margin-bottom: 15px;
	font-size: 12px;
	font-weight: 600;
}

.red_alert {
	background: rgba(233,0,15,.12);
	border: 1px solid rgba(233,0,15,.4);
	border-radius: var(--fc-radius-sm);
	color: #ff9aa4;
	text-align: center;
	padding: 10px 14px;
	margin-bottom: 15px;
	font-size: 12px;
	font-weight: 600;
}

.red_alert a:link, .red_alert a:visited { color: #ffc4ca; text-decoration: underline; }

.high_warning { color: #ff5b6b; }
.moderate_warning { color: #ffaa50; }
.low_warning { color: #ffe08a; }

.online { color: var(--fc-green-light); }
.offline { color: #5f8598; }

/* ============ POPUP MENUS ============ */

.popup_menu {
	background: linear-gradient(180deg, #0d2637, #081925);
	border: 1px solid var(--fc-border-strong);
	border-radius: var(--fc-radius-sm);
	box-shadow: 0 24px 50px rgba(3,12,20,.7);
	overflow: hidden;
}

.popup_menu .popup_item {
	background: transparent;
	color: var(--fc-text-soft);
	padding: 7px 12px;
	display: block;
	font-size: 13px;
}

.popup_menu .popup_item:hover {
	background: rgba(46,178,255,.14);
	color: #ffffff;
	text-decoration: none;
}

.popup_menu .popup_item_container {
	margin: 1px;
	text-align: left;
}

.popup_menu .popup_item_container:first-child .popup_item { border-radius: 9px 9px 0 0; }
.popup_menu .popup_item_container:last-child .popup_item { border-radius: 0 0 9px 9px; }

.subforumicon.subforum_minion + a { font-weight: 600; }

/* ============ EXPANDERS & MISC ============ */

.expcolimage {
	float: right;
	width: auto;
	vertical-align: middle;
	margin-top: 4px;
	filter: invert(1) brightness(2);
	opacity: .7;
}

img { border: none; }

.clear { clear: both; }

.hidden { display: none; float: none; width: 1%; }

.hiddenrow { display: none; }

.float_left { float: left; }
.float_right { float: right; }

/* ============ VALIDATION ============ */

.validation_error, .validation_success, .validation_loading {
	padding: 5px 8px;
	margin-top: 5px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 11px;
	display: inline-block;
}

.validation_error {
	background: rgba(233,0,15,.12) url(../../../images/invalid.png) no-repeat 6px center;
	border: 1px solid rgba(233,0,15,.35);
	color: #ff9aa4;
	padding-left: 26px;
}

.validation_success {
	background: rgba(69,214,74,.12) url(../../../images/valid.png) no-repeat 6px center;
	border: 1px solid rgba(69,214,74,.35);
	color: var(--fc-green-light);
	padding-left: 26px;
}

.validation_loading {
	background: rgba(126,224,255,.1) url(../../../images/spinner.gif) no-repeat 6px center;
	border: 1px solid var(--fc-border-strong);
	color: var(--fc-cyan);
	padding-left: 26px;
}

/* ============ EDITOR (SCEditor) ============ */

.sceditor-container {
	background: rgba(4,16,24,.75) !important;
	border: 1px solid var(--fc-border-strong) !important;
	border-radius: var(--fc-radius-sm) !important;
	overflow: hidden;
}

.sceditor-toolbar {
	background: rgba(13,38,55,.9) !important;
	border-bottom: 1px solid var(--fc-border) !important;
}

.sceditor-group {
	background: transparent !important;
	border: none !important;
}

.sceditor-button { border-radius: 6px; }

.sceditor-button:hover, .sceditor-button.active {
	background: rgba(126,224,255,.18) !important;
}

.sceditor-container iframe, .sceditor-container textarea {
	background: rgba(4,16,24,.4) !important;
	color: var(--fc-text) !important;
}

/* ============ QUICK JUMP / SEPARATORS ============ */

.quick_jump {
	background: url(../../../images/jump.png) no-repeat 0;
	width: 13px;
	height: 13px;
	padding-left: 13px;
	margin-top: -3px;
	border: none;
	filter: hue-rotate(160deg) brightness(1.5);
}

.separator {
	margin: 5px;
	padding: 0;
	height: 0;
	font-size: 1px;
	list-style-type: none;
	border-top: 1px solid rgba(126,224,255,.14);
}

/* ============ IMPORTANT/ANNOUNCE ROWS ============ */

tr td.trow_sticky, .trow_sticky {
	background: rgba(69,214,74,.08);
}

/* ============ STATS BAR (board statistics) ============ */

.board_stats {
	font-size: 12px;
	color: var(--fc-text-muted);
}

/* ============ ATTACHMENTS ============ */

.attachment {
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius-sm);
	background: rgba(4,16,24,.45);
	margin: 4px;
	padding: 8px;
	display: inline-block;
}

.attachment img.attachment_thumb { border-radius: 6px; }

/* ============ SCROLLBAR ============ */

::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #04101a; }
::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #2EB2FF, #45D64A);
	border-radius: 6px;
	border: 2px solid #04101a;
}
::-webkit-scrollbar-thumb:hover { filter: brightness(1.15); }

/* ============ FOOTER ============ */

#footer {
	clear: both;
}

#footer ul.menu {
	margin: 0;
	padding: 0;
}

#footer .upper {
	background: linear-gradient(180deg, rgba(6,20,30,.6), rgba(4,11,18,.9));
	border: 1px solid var(--fc-border);
	border-radius: var(--fc-radius-sm) var(--fc-radius-sm) 0 0;
	padding: 10px 16px;
	overflow: hidden;
	font-size: 12px;
	color: var(--fc-text-dim);
}

#footer .lower {
	background: rgba(4,11,18,.9);
	border: 1px solid var(--fc-border);
	border-top: none;
	border-radius: 0 0 var(--fc-radius-sm) var(--fc-radius-sm);
	padding: 10px 16px;
	overflow: hidden;
	font-family: var(--fc-font-pixel);
	font-size: 10px;
	letter-spacing: .06em;
	color: #5f8598;
}

#footer .lower a:link, #footer .lower a:visited {
	color: var(--fc-text-dim);
	font-weight: 400;
}

#footer .lower a:hover { color: var(--fc-cyan); }

#footer .upper .language { float: right; margin: -3px -3px 0 0; }
#footer .upper .language .autosubmit { width: 175px; }
#footer .upper .theme { float: right; margin: -3px 15px 0 0; }
#footer .upper .theme .autosubmit { width: 175px; }
#footer .upper ul.bottom_links { float: left; margin: 3px 0 0; }

#debug { float: right; text-align: right; margin-top: 0; font-size: 11px; color: #5f8598; }

/* ============ MODAL ============ */

.modal {
	background: linear-gradient(180deg, #0d2637, #081925);
	border: 1px solid var(--fc-border-strong);
	border-radius: var(--fc-radius);
	box-shadow: 0 40px 90px rgba(3,12,20,.8);
	color: var(--fc-text);
}

.modal .tborder { box-shadow: none; margin-bottom: 0; }

/* ============ IMPRESSION / SMALL POLISH ============ */

.tborder .tborder { box-shadow: none; }

dl.smalltext dt { font-weight: 700; color: var(--fc-text-soft); }

hr {
	border: 0;
	border-top: 1px solid rgba(126,224,255,.14);
}

.mycode_img { border-radius: 8px; max-width: 100%; }

table.tborder caption { display: none; }

/* ============================================================
   STAR RATING FALLBACK (bulletproof — lives in global.css so it
   loads everywhere; kills any text inside the rating no matter
   what markup MyBB renders)
   ============================================================ */

.star_rating, .inline_rating {
	width: 80px;
	height: 16px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	position: relative;
	display: block;
	overflow: hidden;
	background: url(../../../images/star_rating.png) repeat-x 0 0;
	filter: hue-rotate(160deg) saturate(1.4);
	font-size: 0 !important;
	line-height: 0 !important;
	color: transparent !important;
}

.star_rating li,
.star_rating li a,
.star_rating a,
.star_rating span,
.star_rating strong {
	font-size: 0 !important;
	line-height: 0 !important;
	color: transparent !important;
	text-indent: -9999px;
	margin: 0;
	padding: 0;
}

.star_rating li { display: inline; }

.star_rating .star_rating_on {
	background: url(../../../images/star_rating.png) repeat-x 0 -16px;
	position: absolute;
	top: 0;
	left: 0;
	height: 16px;
	display: block;
	overflow: hidden;
	border: none;
}

.star_rating li a {
	width: 16px;
	height: 16px;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	border: none;
	white-space: nowrap;
}

.star_rating li a:hover {
	z-index: 2;
	left: 0;
	background: url(../../../images/star_rating.png) repeat-x 0 -16px;
}

.star_rating a.star_rating_1 { left: 0; z-index: 6; }
.star_rating a.star_rating_1:hover { width: 16px; }
.star_rating a.star_rating_2 { left: 16px; z-index: 5; }
.star_rating a.star_rating_2:hover { width: 32px; left: 0; padding-left: 16px; }
.star_rating a.star_rating_3 { left: 32px; z-index: 4; }
.star_rating a.star_rating_3:hover { width: 48px; left: 0; padding-left: 32px; }
.star_rating a.star_rating_4 { left: 48px; z-index: 3; }
.star_rating a.star_rating_4:hover { width: 64px; left: 0; padding-left: 48px; }
.star_rating a.star_rating_5 { left: 64px; z-index: 2; }
.star_rating a.star_rating_5:hover { width: 80px; left: 0; padding-left: 64px; }

.star_rating_notrated li a:hover { cursor: default; }

/* Rating column: keep it on one line, centered */
td .star_rating { margin: 0 auto; }

/* ============================================================
   POLISH & EXTRAS
   ============================================================ */

/* Native controls in FurryCraft green */
input[type="checkbox"], input[type="radio"], input[type="range"], progress {
	accent-color: #45D64A;
}

input[type="checkbox"], input[type="radio"] {
	width: 15px;
	height: 15px;
	cursor: pointer;
}

/* Visible keyboard focus in cyan */
a:focus-visible, button:focus-visible, .button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
	outline: 2px solid rgba(126,224,255,.7);
	outline-offset: 2px;
	border-radius: 6px;
}

/* Thread prefixes (Accepted/Declined etc.) get the website pill look */
.thread_prefix, .subject_prefix {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 100px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	vertical-align: middle;
}

/* Sticky & closed thread rows subtly tinted */
tr td.forumdisplay_sticky, .forumdisplay_sticky {
	background: rgba(69,214,74,.07);
}

/* "Users browsing" line */
.trow1 .smalltext strong, .trow2 .smalltext strong { color: var(--fc-text-soft); }

/* Selects get a hover state matching inputs */
select:hover { border-color: rgba(126,224,255,.5); }

/* Lastpost column alignment */
.lastpost { line-height: 1.45; }

/* Avatars in mini contexts */
img.avatar_mini, .avatar_mini img {
	border-radius: 8px;
	border: 1px solid var(--fc-border);
}

/* Smooth link underline on hover inside post bodies for readability */
.post_body a:hover { text-decoration: underline; }

/* Table header sort arrows etc. stay visible */
.thead img { filter: brightness(1.6); }

/* Print sanity */
@media print {
	body { background: #ffffff; color: #000000; }
	body::before { display: none; }
}
