/* Root + reset ---------------------------------------------------------------- */
:root {
	--rf-bg: #04060d;
	--rf-surface: rgba(10, 13, 24, 0.75);
	--rf-card: rgba(14, 18, 32, 0.9);
	--rf-border: rgba(255, 255, 255, 0.08);
	--rf-primary: #f97316;
	--rf-primary-strong: #fb923c;
	--rf-text: #f8fafc;
	--rf-muted: #8e9bb7;
	--rf-accent: #60a5fa;
	--rf-danger: #f87171;
	--rf-success: #34d399;
	--rf-gradient: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.18), transparent 45%),
		radial-gradient(circle at 80% 0%, rgba(96, 165, 250, 0.2), transparent 35%),
		radial-gradient(circle at 20% 80%, rgba(52, 211, 153, 0.13), transparent 45%),
		#04060d;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--rf-gradient);
	color: var(--rf-text);
	line-height: 1.6;
}

a {
	color: var(--rf-accent);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: #93c5fd;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

/* Layout --------------------------------------------------------------------- */
.rf-app {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.rf-sticky-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(4, 6, 13, 0.95);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--rf-border);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	overflow: visible;
}

.rf-sticky-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 0.75rem 1.5rem;
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
}

.rf-sticky-header .rf-logo {
	font-size: 1.8rem;
	flex-shrink: 0;
}

.rf-sticky-header .rf-nav-toggle {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}


@media (min-width: 961px) {
	.rf-sticky-header .rf-nav-toggle {
		display: none;
	}
}

.rf-header-search {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex: 1;
	justify-content: center;
	overflow: visible;
}

.rf-search-group {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	overflow: visible;
}

.rf-search-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--rf-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.rf-search-form-inline {
	display: flex;
	align-items: center;
	position: relative;
}

.rf-search-input {
	padding: 0.4rem 2.2rem 0.4rem 0.75rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
	color: var(--rf-text);
	font-size: 0.82rem;
	width: 170px;
	transition: all 0.2s ease;
}

.rf-search-input:focus {
	outline: none;
	border-color: var(--rf-primary);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.08);
}

.rf-search-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

/* Autocomplete styles */
.rf-autocomplete {
	position: fixed;
	z-index: 10000;
	background: var(--rf-card);
	border: 1px solid var(--rf-border);
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
	max-height: 280px;
	overflow-y: auto;
	overflow-x: hidden;
	display: none;
	min-width: 200px;
	backdrop-filter: blur(12px);
	pointer-events: auto;
}

.rf-autocomplete-list {
	list-style: none;
	margin: 0;
	padding: 0.375rem 0;
}

.rf-autocomplete-item {
	padding: 0.625rem 1rem;
	cursor: pointer;
	color: var(--rf-text);
	transition: all 0.15s ease;
	word-wrap: break-word;
	line-height: 1.5;
	font-size: 0.9rem;
	position: relative;
}

.rf-autocomplete-item:first-child {
	margin-top: 0;
}

.rf-autocomplete-item:last-child {
	margin-bottom: 0;
}

.rf-autocomplete-item:hover,
.rf-autocomplete-item.is-selected {
	background: rgba(249, 115, 22, 0.12);
	color: var(--rf-text);
}

.rf-autocomplete-item.is-selected {
	background: rgba(249, 115, 22, 0.18);
}

.rf-autocomplete-item:active {
	background: rgba(249, 115, 22, 0.25);
}

.rf-autocomplete-match {
	font-weight: 600;
	color: var(--rf-primary);
	background: rgba(249, 115, 22, 0.15);
	padding: 0 2px;
	border-radius: 2px;
}

.rf-autocomplete-item.is-selected .rf-autocomplete-match {
	color: var(--rf-primary-strong);
	background: rgba(249, 115, 22, 0.25);
}

/* Scrollbar styling for autocomplete */
.rf-autocomplete::-webkit-scrollbar {
	width: 8px;
}

.rf-autocomplete::-webkit-scrollbar-track {
	background: transparent;
}

.rf-autocomplete::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 4px;
}

.rf-autocomplete::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.25);
}

.rf-search-submit {
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	color: var(--rf-muted);
	cursor: pointer;
	padding: 0.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease;
}

.rf-search-submit:hover {
	color: var(--rf-primary);
}

.rf-status-compact {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
}

.rf-status-compact-item {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8rem;
	color: var(--rf-muted);
	flex-direction: row;
}

.rf-status-compact-item > span:not(.rf-status-dot):not(.rf-status-users):not(.rf-status-label) {
	display: inline;
}

.rf-status-label {
	display: none;
}

.rf-status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

.rf-status-dot.is-online {
	background: #34d399;
	box-shadow: 0 0 6px rgba(52, 211, 153, 0.5);
}

.rf-status-dot.is-offline {
	background: #f87171;
	box-shadow: 0 0 6px rgba(248, 113, 113, 0.5);
}

.rf-status-users {
	font-weight: 600;
	color: var(--rf-text);
}

.rf-header-auth {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}

.rf-user-name {
	font-size: 0.85rem;
	color: var(--rf-text);
	font-weight: 500;
	margin-right: 0.25rem;
}

.rf-btn-link {
	padding: 0.4rem 0.85rem;
	border-radius: 6px;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--rf-text);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: background 0.2s ease, border-color 0.2s ease;
	text-decoration: none;
}

.rf-btn-link:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
	color: var(--rf-text);
}

.rf-header {
	position: relative;
	padding: 3rem 1.5rem 2.25rem;
	background: linear-gradient(135deg, rgba(10, 13, 24, 0.9), rgba(11, 16, 34, 0.95));
	box-shadow: 0 30px 120px rgba(0, 0, 0, 0.55);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.rf-header::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% -10%, rgba(249, 115, 22, 0.25), transparent 60%),
		radial-gradient(circle at 90% 10%, rgba(96, 165, 250, 0.25), transparent 55%);
	pointer-events: none;
}

.rf-header > * {
	position: relative;
	z-index: 2;
}

.rf-header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.rf-logo {
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: clamp(2.2rem, 4vw, 3rem);
	font-weight: 600;
	color: var(--rf-text);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.rf-header-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.rf-pill {
	padding: 0.35rem 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 999px;
	font-size: 0.85rem;
	color: var(--rf-muted);
	background: rgba(255, 255, 255, 0.04);
}

.rf-nav-toggle {
	position: relative;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--rf-border);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	transition: transform 0.2s ease, background 0.2s ease;
}

.rf-nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--rf-text);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}


.rf-nav-toggle:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.15);
}

.rf-nav-toggle.is-active span:nth-of-type(1) {
	transform: translateY(7px) rotate(45deg);
}

.rf-nav-toggle.is-active span:nth-of-type(2) {
	opacity: 0;
}

.rf-nav-toggle.is-active span:nth-of-type(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.rf-hero {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3rem 1.5rem;
}

.rf-hero-copy {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	max-width: 800px;
	text-align: center;
}

.rf-eyebrow {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--rf-muted);
}

.rf-hero-copy h1 {
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	margin: 0;
	font-weight: 600;
	line-height: 1.25;
	color: var(--rf-text);
}

.rf-hero-text {
	color: var(--rf-muted);
	font-size: 1rem;
	margin: 0 0 0.5rem 0;
	max-width: 100%;
	line-height: 1.6;
}

.rf-hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin-top: 2.5rem;
	justify-content: center;
	align-items: center;
}

.rf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2.25rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
	cursor: pointer;
	border: 1px solid transparent;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	min-width: 160px;
}

.rf-btn.small {
	min-width: 0;
	padding: 0.55rem 1.25rem;
	font-size: 0.85rem;
}

.rf-btn.primary {
	background: var(--rf-primary);
	color: #1d1208;
	box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35), 0 0 0 0 rgba(249, 115, 22, 0);
}

.rf-btn.primary:hover {
	transform: translateY(-2px);
	background: var(--rf-primary-strong);
	box-shadow: 0 8px 24px rgba(249, 115, 22, 0.45), 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.rf-btn.primary:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.rf-btn.ghost {
	border-color: rgba(255, 255, 255, 0.2);
	color: var(--rf-text);
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(8px);
}

.rf-btn.ghost:hover {
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.rf-btn.ghost:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.rf-btn.danger {
	background: rgba(248, 113, 113, 0.15);
	color: var(--rf-danger);
	border-color: rgba(248, 113, 113, 0.4);
}

.rf-auth-card {
	border: 1px solid var(--rf-border);
	border-radius: 18px;
	padding: 1.25rem;
	background: rgba(8, 10, 20, 0.7);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.rf-auth-label {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--rf-muted);
	margin: 0;
}

.rf-auth-username {
	font-size: 1.35rem;
	font-weight: 600;
	margin: 0;
}

.rf-auth-copy {
	color: var(--rf-muted);
	margin: 0;
	font-size: 0.95rem;
}

.rf-auth-server {
	display: flex;
	justify-content: space-between;
	font-size: 0.9rem;
	margin: 0;
	color: var(--rf-muted);
}

.rf-auth-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.rf-auth-card select {
	width: 100%;
	padding: 0.65rem 0.8rem;
	border-radius: 12px;
	border: 1px solid var(--rf-border);
	background: rgba(255, 255, 255, 0.05);
	color: var(--rf-text);
}

.rf-auth-admin {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	font-size: 0.85rem;
	color: var(--rf-muted);
}

.rf-auth-admin a {
	color: var(--rf-text);
	font-weight: 500;
}

.rf-stat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 0.8rem;
}

.rf-status-table {
	border: 1px solid var(--rf-border);
	border-radius: 18px;
	background: rgba(5, 7, 16, 0.65);
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.rf-status-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
	align-items: center;
	text-align: center;
}

.rf-status-row--head {
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 1.5px;
	color: var(--rf-muted);
}

.rf-status-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 0.5rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.9rem;
	border: 1px solid transparent;
}

.rf-status-pill.is-online {
	color: #34d399;
	border-color: rgba(52, 211, 153, 0.4);
	background: rgba(52, 211, 153, 0.12);
}

.rf-status-pill.is-offline {
	color: #f87171;
	border-color: rgba(248, 113, 113, 0.4);
	background: rgba(248, 113, 113, 0.12);
}

.rf-status-value {
	font-size: 1.5rem;
	font-weight: 600;
}

.rf-status-footnote {
	margin: 0;
	text-align: right;
	font-size: 0.75rem;
	color: var(--rf-muted);
}

.rf-card {
	background: var(--rf-card);
	border: 1px solid var(--rf-border);
	border-radius: 24px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.rf-card-header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.rf-card-title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
}

.rf-card-description {
	margin: 0.35rem 0 0;
	color: var(--rf-muted);
	width: 100%;
}

.rf-card-subtitle {
	font-size: 0.8rem;
	font-weight: 500;
	margin-left: 0.65rem;
	color: var(--rf-muted);
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.rf-form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
}

.rf-field label {
	display: block;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--rf-muted);
	margin-bottom: 0.35rem;
}

.rf-field input[type="text"],
.rf-field input[type="date"],
.rf-field select {
	width: 100%;
	padding: 0.65rem 0.85rem;
	border-radius: 14px;
	border: 1px solid var(--rf-border);
	background: rgba(255, 255, 255, 0.04);
	color: var(--rf-text);
	font-size: 0.95rem;
	transition: all 0.2s ease;
}

.rf-field input[type="date"]:focus {
	outline: none;
	border-color: var(--rf-primary);
	box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
	background: rgba(255, 255, 255, 0.06);
}

/* Date input calendar picker icon styling */
.rf-field input[type="date"]::-webkit-calendar-picker-indicator {
	cursor: pointer;
	opacity: 0.8;
	transition: opacity 0.2s ease;
	filter: invert(1) brightness(1.5);
	padding: 4px;
	margin-left: 4px;
}

.rf-field input[type="date"]::-webkit-calendar-picker-indicator:hover {
	opacity: 1;
	filter: invert(1) brightness(2);
}

/* Firefox date input calendar picker icon */
.rf-field input[type="date"]::-moz-calendar-picker-indicator {
	cursor: pointer;
	opacity: 0.8;
	transition: opacity 0.2s ease;
	filter: invert(1) brightness(1.5);
	padding: 4px;
}

.rf-field input[type="date"]::-moz-calendar-picker-indicator:hover {
	opacity: 1;
	filter: invert(1) brightness(2);
}

.rf-field select option,
select option {
	background: rgba(7, 9, 18, 0.95);
	color: var(--rf-text);
}

.rf-field-inline {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.rf-field-inline select {
	flex: 0 0 130px;
}

.rf-field-inline input[type="text"] {
	flex: 1;
	min-width: 0;
}

.account-change-pass-page .account-change-pass-sidebar {
	padding-left: 1.25rem;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.9rem;
	color: var(--rf-muted);
}

.account-change-pass-page .account-change-pass-sidebar .important {
	margin-top: 0.75rem;
	color: var(--rf-danger, #f87171);
	font-weight: 600;
}

.rf-search-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.rf-table-meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	color: var(--rf-muted);
	font-size: 0.9rem;
	text-align: center;
}

.rf-table-wrapper {
	overflow-x: auto;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.rf-table {
	width: 100%;
	min-width: 980px;
	border-collapse: collapse;
}

.rf-table th {
	background: rgba(255, 255, 255, 0.02);
	font-size: 0.8rem;
}

.rf-table td {
	font-size: 0.9rem;
}

.rf-table-icon-head,
.rf-table-icon {
	width: 42px;
	min-width: 42px;
	text-align: center;
}

.rf-table-icon img {
	display: inline-block;
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.rf-icon-placeholder {
	color: var(--rf-muted);
}

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

.rf-pagination {
	margin-top: 1rem;
}

.rf-pagination .pages,
.rf-table-meta .pages {
	text-align: center;
}

.rf-pagination .jump-to-page,
.rf-table-meta .jump-to-page {
	text-align: center;
	margin-top: 0.5rem;
}

.rf-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.15rem 0.65rem;
	border-radius: 999px;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

.rf-badge.yes {
	background: rgba(52, 211, 153, 0.18);
	color: #34d399;
}

.rf-badge.no {
	background: rgba(248, 113, 113, 0.18);
	color: #f87171;
}

.rf-badge.card {
	background: rgba(147, 197, 253, 0.2);
	color: #93c5fd;
}

.rf-badge.sale {
	background: rgba(96, 165, 250, 0.2);
	color: #93c5fd;
}

.rf-badge.mvp {
	background: rgba(251, 191, 36, 0.2);
	color: #fcd34d;
}

.rf-empty-state {
	margin: 0;
	padding: 1rem;
	border-radius: 16px;
	border: 1px dashed rgba(255, 255, 255, 0.2);
	color: var(--rf-muted);
	text-align: center;
}

.rf-empty-state.small {
	padding: 0.5rem;
	border-radius: 10px;
	font-size: 0.85rem;
}

.rf-table .not-applicable {
	color: var(--rf-muted);
	font-style: italic;
}

.rf-stat-card {
	padding: 0.9rem;
	border-radius: 16px;
	border: 1px solid var(--rf-border);
	background: rgba(255, 255, 255, 0.03);
}

.rf-stat-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	color: var(--rf-muted);
	margin: 0;
	letter-spacing: 1px;
}

.rf-stat-value {
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0.15rem 0 0;
}

/* Primary navigation -------------------------------------------------------- */
.rf-primary-nav {
	margin-top: 0;
	padding: 0;
	border-radius: 24px;
	border: 1px solid transparent;
	background: rgba(5, 7, 16, 0.6);
	backdrop-filter: blur(12px);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
	z-index: 5;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-12px);
	pointer-events: none;
	transition:
		max-height 0.35s ease,
		opacity 0.2s ease,
		transform 0.2s ease,
		padding 0.2s ease,
		margin-top 0.2s ease,
		border-color 0.2s ease;
}

.rf-primary-nav.is-open {
	padding: 1.5rem;
	margin-top: 2rem;
	max-height: 1200px;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	border-color: var(--rf-border);
	z-index: 101;
}

@media (min-width: 961px) {
	.rf-primary-nav {
		position: fixed;
		left: 0;
		top: 60px;
		bottom: 0;
		width: 260px;
		padding: 1.5rem;
		margin-top: 0;
		max-height: none;
		opacity: 1;
		transform: none;
		pointer-events: auto;
		border-radius: 0;
		border-right: 1px solid var(--rf-border);
		border-top: none;
		overflow-y: auto;
		overflow-x: hidden;
	}

	.rf-header {
		margin-left: 260px;
	}

	.rf-main {
		margin-left: 260px;
	}
}

.rf-primary-nav__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

@media (min-width: 961px) {
	.rf-primary-nav__meta {
		display: none;
	}
}

.rf-nav-link {
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	font-size: 0.85rem;
	color: var(--rf-text);
	background: rgba(255, 255, 255, 0.03);
}

.rf-primary-nav .rf-preferences {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	font-size: 0.85rem;
	color: var(--rf-muted);
}

.rf-primary-nav .rf-preferences select {
	padding: 0.45rem 0.65rem;
	border-radius: 10px;
	border: 1px solid var(--rf-border);
	background: rgba(255, 255, 255, 0.04);
	color: var(--rf-text);
	min-width: 180px;
}

.rf-nav-groups {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
	padding: 0;
	margin: 0;
}

@media (min-width: 961px) {
	.rf-nav-groups {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}
}

.rf-nav-group {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--rf-border);
	border-radius: 16px;
	padding: 0;
	overflow: hidden;
}

.rf-nav-group-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem 1rem;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	gap: 0.5rem;
	transition: background 0.2s ease;
}

.rf-nav-group-link {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.5rem;
	padding: 0.85rem 1rem;
	color: var(--rf-text);
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 2px;
	text-decoration: none;
	border: none;
	background: transparent;
	transition: background 0.2s ease;
}

.rf-nav-group-link:hover {
	background: rgba(255, 255, 255, 0.05);
}

.rf-nav-group-toggle:hover {
	background: rgba(255, 255, 255, 0.05);
}

.rf-nav-group-label {
	display: block;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 2px;
	color: var(--rf-muted);
	margin: 0;
	flex: 1;
}

.rf-nav-group-icon {
	width: 12px;
	height: 12px;
	color: var(--rf-muted);
	transition: transform 0.2s ease;
	flex-shrink: 0;
}

.rf-nav-group.is-expanded .rf-nav-group-icon {
	transform: rotate(180deg);
}

.rf-nav-submenu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

@media (min-width: 961px) {
	.rf-nav-submenu {
		max-height: 0;
	}

	.rf-nav-group.is-expanded .rf-nav-submenu {
		max-height: 500px;
	}
}

@media (max-width: 960px) {
	.rf-nav-submenu {
		max-height: none !important;
		display: flex !important;
	}

	.rf-nav-group-toggle {
		cursor: default;
		pointer-events: none;
		padding-bottom: 0.5rem;
	}

	.rf-nav-group-toggle:hover {
		background: transparent;
	}

	.rf-nav-group-icon {
		display: none;
	}

	.rf-nav-group {
		padding: 1rem;
	}
}

.rf-nav-submenu a {
	display: block;
	padding: 0.5rem 1rem 0.5rem 1.5rem;
	color: var(--rf-text);
	font-size: 0.85rem;
	border-radius: 0;
	border: none;
	border-left: 2px solid transparent;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.rf-nav-submenu a:hover {
	border-left-color: var(--rf-primary);
	background: rgba(255, 255, 255, 0.05);
}

.rf-status-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.15rem 0.65rem;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #fff;
	background: rgba(255, 255, 255, 0.15);
}

.rf-status-badge.neutral {
	background: rgba(255, 255, 255, 0.1);
}

.rf-status-badge.pending {
	background: rgba(249, 186, 45, 0.2);
	color: #ffdda6;
}

.rf-status-badge.normal,
.rf-status-badge.success {
	background: rgba(57, 201, 114, 0.2);
	color: #8df8ba;
}

.rf-status-badge.banned,
.rf-status-badge.danger {
	background: rgba(231, 83, 83, 0.25);
	color: #ffbaba;
}

.rf-nav-submenu li {
	margin: 0;
}

.rf-submenu {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.75rem 1rem;
	margin-bottom: 0.75rem;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--rf-border, rgba(255, 255, 255, 0.08));
	border-radius: 999px;
	overflow-x: auto;
	scrollbar-width: none;
}

.rf-submenu::-webkit-scrollbar {
	display: none;
}

.rf-submenu-label {
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 2px;
	color: var(--rf-muted);
	flex-shrink: 0;
}

.rf-submenu-links {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	flex-wrap: nowrap;
	min-width: 0;
}

.rf-submenu-link {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.95rem;
	border-radius: 999px;
	font-size: 0.9rem;
	color: var(--rf-text);
	text-decoration: none;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid transparent;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}

.rf-submenu-link:hover {
	background: rgba(255, 255, 255, 0.1);
}

.rf-submenu-link.is-active {
	background: rgba(249, 115, 22, 0.15);
	border-color: rgba(249, 115, 22, 0.4);
	color: var(--rf-primary-strong, #ffb470);
	font-weight: 600;
}

/* Main content -------------------------------------------------------------- */
.rf-main {
	width: min(1200px, calc(100% - 2.5rem));
	margin: -3rem auto 3rem;
	padding: 2.5rem;
	background: rgba(7, 9, 18, 0.9);
	border-radius: 32px;
	border: 1px solid var(--rf-border);
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(10px);
}

@media (min-width: 961px) {
	.rf-main {
		width: calc(100% - 260px - 3rem);
		margin-left: auto;
		margin-right: 1.5rem;
	}
}

.rf-alert {
	padding: 0.85rem 1rem;
	border-radius: 12px;
	margin-bottom: 1rem;
	font-size: 0.95rem;
	border: 1px solid transparent;
}

.rf-alert.warning {
	background: rgba(251, 191, 36, 0.12);
	color: #fcd34d;
	border-color: rgba(251, 191, 36, 0.4);
}

.rf-alert.info {
	background: rgba(96, 165, 250, 0.15);
	color: #bfdbfe;
	border-color: rgba(96, 165, 250, 0.4);
}

.rf-secondary-nav {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin-bottom: 1.5rem;
}

#submenu,
#pagemenu {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--rf-border);
	border-radius: 12px;
	padding: 0.75rem 1rem;
	font-size: 0.9rem;
	color: var(--rf-muted);
}

#submenu a,
#pagemenu a {
	color: var(--rf-text);
	font-weight: 500;
}

.rf-secondary-nav .balance-box {
	background: rgba(17, 24, 39, 0.6);
	border-radius: 12px;
	padding: 1rem;
}

/* Tables & forms ------------------------------------------------------------ */
table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.5rem;
	color: var(--rf-text);
}

th,
td {
	padding: 0.75rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	text-align: left;
	vertical-align: top;
}

th {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--rf-muted);
}

.generic-form-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 1rem;
}

.generic-form-table th {
	text-align: left;
	padding: 1.25rem 1.5rem 1.25rem 0;
	vertical-align: top;
	font-weight: 600;
	color: var(--rf-text);
	font-size: 0.8rem;
	width: 200px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.generic-form-table td {
	padding: 1.25rem 0;
	vertical-align: top;
}

tr:nth-child(even) td {
	background: rgba(255, 255, 255, 0.015);
}

.generic-form-table input[type="text"],
.generic-form-table input[type="password"],
.generic-form-table input[type="date"],
.generic-form-table select {
	width: 100%;
	max-width: 400px;
	padding: 0.85rem 1rem;
	border-radius: 12px;
	border: 1px solid var(--rf-border);
	background: rgba(255, 255, 255, 0.04);
	color: var(--rf-text);
	font-size: 0.95rem;
	transition: all 0.2s ease;
}

.generic-form-table input[type="text"]:focus,
.generic-form-table input[type="password"]:focus,
.generic-form-table input[type="date"]:focus,
.generic-form-table select:focus {
	outline: none;
	border-color: var(--rf-primary);
	box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
	background: rgba(255, 255, 255, 0.06);
}

/* Date input calendar picker icon styling */
.generic-form-table input[type="date"]::-webkit-calendar-picker-indicator {
	cursor: pointer;
	opacity: 0.8;
	transition: opacity 0.2s ease;
	filter: invert(1) brightness(1.5);
	padding: 4px;
	margin-left: 4px;
}

.generic-form-table input[type="date"]::-webkit-calendar-picker-indicator:hover {
	opacity: 1;
	filter: invert(1) brightness(2);
}

/* Firefox date input calendar picker icon */
.generic-form-table input[type="date"]::-moz-calendar-picker-indicator {
	cursor: pointer;
	opacity: 0.8;
	transition: opacity 0.2s ease;
	filter: invert(1) brightness(1.5);
	padding: 4px;
}

.generic-form-table input[type="date"]::-moz-calendar-picker-indicator:hover {
	opacity: 1;
	filter: invert(1) brightness(2);
}

.generic-form-table button[type="submit"] {
	background: var(--rf-primary);
	border: none;
	color: #1a1209;
	font-weight: 600;
	padding: 0.95rem 2rem;
	border-radius: 999px;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	font-size: 0.95rem;
	min-width: 160px;
}

.generic-form-table button[type="submit"]:hover:not(:disabled) {
	transform: translateY(-2px);
	background: var(--rf-primary-strong);
	box-shadow: 0 8px 24px rgba(249, 115, 22, 0.45);
}

.generic-form-table button[type="submit"]:active:not(:disabled) {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.generic-form-table button[type="submit"]:disabled,
.generic-form-table button[type="submit"].is-enabled:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

.account-view-page .account-summary-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0.85rem;
	margin-top: 1.25rem;
}

.account-summary-item {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--rf-border, rgba(255, 255, 255, 0.08));
	border-radius: 12px;
	padding: 0.85rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	min-height: 90px;
}

.account-summary-item .label {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--rf-muted);
}

.account-summary-item .value {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--rf-text);
	word-break: break-word;
}

.rf-value-muted {
	color: var(--rf-muted);
	font-weight: 500;
}

.rf-inline-link {
	color: var(--rf-accent);
	font-size: 0.85rem;
	margin-left: 0.4rem;
	text-decoration: none;
}

.rf-inline-link:hover {
	color: var(--rf-primary-strong, #fda95e);
}

.account-section {
	margin-top: 1.5rem;
	padding: 1.25rem;
	background: rgba(255, 255, 255, 0.02);
	border-radius: 16px;
	border: 1px solid var(--rf-border, rgba(255, 255, 255, 0.08));
}

.account-section-header h3 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
}

.account-section-header p {
	margin: 0.25rem 0 0;
	color: var(--rf-muted);
	font-size: 0.9rem;
}

.account-action-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.account-action-card {
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 1rem;
}

.account-action-card h4 {
	margin: 0 0 0.75rem;
	font-size: 1rem;
}

.account-action-form textarea,
.account-action-form input[type="text"] {
	width: 100%;
	margin-top: 0.4rem;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
	color: var(--rf-text);
	padding: 0.65rem;
	min-height: 80px;
}

.account-action-form label {
	display: block;
	font-size: 0.85rem;
	text-transform: uppercase;
	color: var(--rf-muted);
	margin-bottom: 0.5rem;
}

.account-action-form .rf-btn {
	margin-top: 0.75rem;
	width: 100%;
}

.account-section .rf-table-wrapper {
	margin-top: 1rem;
}

.rf-meta-text {
	font-size: 0.9rem;
	color: var(--rf-muted);
	margin-top: 0.75rem;
}

.storage-item-name {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.storage-item-name img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.storage-item-name .refine {
	color: var(--rf-primary);
	font-weight: 600;
}

.storage-item-name .slots {
	color: var(--rf-muted);
	font-size: 0.85rem;
}

.rf-empty-state.small {
	font-size: 0.9rem;
}

.character-view-page .character-header {
	align-items: center;
}

.character-breadcrumb {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--rf-muted);
	margin-bottom: 0.35rem;
}

.character-status-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 0.4rem;
}

.character-avatar {
	width: 120px;
	height: 120px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
}

.character-avatar img {
	max-width: 90%;
	max-height: 90%;
}

.character-summary-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 0.8rem;
	margin-top: 1.5rem;
}

.character-summary-item {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 0.75rem 0.95rem;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.character-summary-item .label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--rf-muted);
}

.character-summary-item .value {
	font-size: 1rem;
	font-weight: 600;
	color: var(--rf-text);
	word-break: break-word;
}

.character-stat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.character-stat {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 0.65rem 0.85rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.character-stat .stat-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	color: var(--rf-muted);
}

.character-stat .stat-value {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--rf-text);
}

.relationship-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 0.75rem;
	margin-top: 1rem;
}

.relationship-grid .label {
	display: block;
	font-size: 0.8rem;
	text-transform: uppercase;
	color: var(--rf-muted);
}

.relationship-grid .value {
	font-size: 1rem;
	font-weight: 600;
	color: var(--rf-text);
}

.account-create-page {
	margin-bottom: 2rem;
}

.account-create-page .rf-card-header {
	margin-bottom: 1.5rem;
}

.account-create-page .rf-card-header > div {
	width: 100%;
}

.account-create-page .rf-card-description {
	max-width: none;
	width: 100%;
}

.generic-form-wrapper {
	background: rgba(6, 8, 15, 0.85);
	padding: 2rem;
	border-radius: 24px;
	border: 1px solid var(--rf-border);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
	margin-bottom: 2rem;
}

h1,
h2 {
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-weight: 600;
	color: var(--rf-text);
	margin: 0 0 0.75rem;
}

h2 {
	font-size: 1.6rem;
}

h1 {
	font-size: 2.1rem;
}

.red {
	color: var(--rf-danger);
}

.text-success {
	color: var(--rf-success);
}

.text-danger {
	color: var(--rf-danger);
}

.password-requirements {
	border-radius: 12px;
	padding: 1.25rem;
	border: 1px solid var(--rf-border);
	background: rgba(255, 255, 255, 0.04);
	margin-top: 0.75rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.password-requirements ul {
	padding-left: 1.25rem;
	margin: 0;
}

.pw-req-item {
	font-size: 0.875rem;
	color: var(--rf-muted);
	margin-bottom: 0.65rem;
	display: flex;
	align-items: center;
	gap: 0.65rem;
	transition: all 0.2s ease;
	line-height: 1.4;
}

.pw-req-item:last-child {
	margin-bottom: 0;
}

.pw-req-item.is-valid {
	color: var(--rf-success);
}

.pw-check {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--rf-muted);
	transition: all 0.2s ease;
	flex-shrink: 0;
	width: 1.2rem;
	text-align: center;
	line-height: 1;
}

.pw-check.is-valid {
	color: var(--rf-success);
}

.rf-input-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 400px;
}

.rf-input-wrapper input {
	padding-right: 2.75rem;
}

.rf-input-wrapper input[type="password"] {
	padding-right: 3rem;
}

.rf-input-status {
	position: absolute;
	right: 0.85rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.85rem;
	font-weight: 600;
	pointer-events: none;
	transition: all 0.2s ease;
}

.rf-input-status.username-available {
	color: var(--rf-success);
}

.rf-input-status.username-taken {
	color: var(--rf-danger);
}

.rf-input-status.username-checking {
	color: var(--rf-muted);
	font-size: 0.75rem;
}

.rf-input-status.email-available {
	color: var(--rf-success);
}

.rf-input-status.email-taken {
	color: var(--rf-danger);
}

.rf-input-status.email-checking {
	color: var(--rf-muted);
	font-size: 0.75rem;
}

.rf-field-message {
	font-size: 0.85rem;
	margin-top: 0.5rem;
	min-height: 1.25rem;
	line-height: 1.4;
}

.rf-field-message.text-success {
	color: var(--rf-success);
	font-weight: 500;
}

.rf-field-message.text-danger {
	color: var(--rf-danger);
	font-weight: 500;
}

.rf-field-hint {
	font-size: 0.8rem;
	color: var(--rf-muted);
	margin-top: 0.5rem;
	margin-bottom: 0;
}

.rf-radio-group {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.rf-radio-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	font-size: 0.95rem;
	color: var(--rf-text);
}

.rf-radio-label input[type="radio"] {
	width: auto;
	margin: 0;
	cursor: pointer;
	accent-color: var(--rf-primary);
}

.rf-help-text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--rf-border);
	color: var(--rf-muted);
	font-size: 0.75rem;
	font-weight: 600;
	cursor: help;
	margin-left: 0.5rem;
	transition: all 0.2s ease;
}

.rf-help-text:hover {
	background: rgba(255, 255, 255, 0.12);
	color: var(--rf-text);
	border-color: var(--rf-primary);
}

.rf-form-footer {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--rf-border);
}

.rf-terms-text {
	font-size: 0.85rem;
	color: var(--rf-muted);
	margin: 0;
	line-height: 1.6;
}

.rf-form-divider {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 0.5rem 0;
	text-align: center;
}

.rf-form-divider::before,
.rf-form-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--rf-border);
}

.rf-form-divider span {
	font-size: 0.85rem;
	color: var(--rf-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
	padding: 0 0.5rem;
}

.rf-form-footer .rf-btn-google {
	width: 100%;
	justify-content: center;
	padding: 0.85rem 1.5rem;
	font-size: 0.95rem;
}

.rf-terms-text a {
	color: var(--rf-primary);
	text-decoration: none;
}

.rf-terms-text a:hover {
	text-decoration: underline;
}

.password-toggle {
	position: absolute;
	right: 0.85rem;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: var(--rf-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	transition: all 0.2s ease;
	z-index: 1;
	border-radius: 4px;
}

.password-toggle:hover {
	color: var(--rf-text);
	background: rgba(255, 255, 255, 0.05);
}

.password-toggle.is-visible {
	color: var(--rf-primary);
}

.password-toggle svg {
	width: 18px;
	height: 18px;
}

.password-toggle .eye-slash {
	display: none;
}

.password-toggle.is-visible .eye-slash {
	display: block;
}

.security-code {
	margin-bottom: 0.75rem;
}

.security-code img {
	border-radius: 8px;
	border: 1px solid var(--rf-border);
}

/* Pre-registration page ------------------------------------------------ */
.rf-preregister-hero {
	padding: 3rem 1.5rem;
	max-width: 1400px;
	margin: 0 auto;
}

.rf-preregister-content {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 3rem;
	align-items: start;
}

.rf-preregister-main {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.rf-preregister-header {
	text-align: center;
	margin-bottom: 1rem;
}

.rf-preregister-header h1 {
	font-size: clamp(2rem, 5vw, 3rem);
	margin: 0.5rem 0 1rem;
	line-height: 1.2;
}

.rf-preregister-description {
	color: var(--rf-muted);
	font-size: 1.1rem;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
}

.rf-account-count-card {
	background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
	border-color: rgba(249, 115, 22, 0.3);
	padding: 2rem;
	text-align: center;
}

.rf-account-count-header {
	margin-bottom: 2rem;
}

.rf-account-count-label {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--rf-muted);
	margin: 0 0 0.75rem;
}

.rf-account-count-value {
	font-size: clamp(3rem, 8vw, 5rem);
	font-weight: 700;
	color: var(--rf-primary);
	line-height: 1;
	text-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
	letter-spacing: -2px;
}

.rf-progress-section {
	margin-top: 2rem;
}

.rf-progress-bar-wrapper {
	position: relative;
	width: 100%;
}

.rf-progress-bar-track {
	position: relative;
	width: 100%;
	height: 12px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.rf-progress-bar-fill {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background: linear-gradient(90deg, var(--rf-primary), var(--rf-primary-strong));
	border-radius: 999px;
	transition: width 0.5s ease;
	box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

.rf-milestones {
	position: relative;
	width: 100%;
	height: 40px;
	margin-top: 0.75rem;
}

.rf-milestone-marker {
	position: absolute;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.rf-milestone-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.5);
	transition: all 0.3s ease;
}

.rf-milestone-dot.is-completed {
	background: var(--rf-primary);
	border-color: var(--rf-primary);
	box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
}

.rf-milestone-label {
	font-size: 0.75rem;
	color: var(--rf-muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.rf-features-card {
	padding: 2rem;
}

.rf-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 1rem;
}

.rf-features-column {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.rf-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: var(--rf-text);
	font-size: 0.95rem;
	line-height: 1.5;
}

.rf-feature-icon {
	color: var(--rf-primary);
	font-weight: 700;
	font-size: 1.1rem;
	flex-shrink: 0;
	margin-top: 0.1rem;
}

.rf-register-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-top: 1rem;
}

.rf-btn-google,
.rf-btn-discord {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
}

.rf-btn-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.rf-preregister-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.rf-novice-image {
	max-width: 400px;
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
	animation: rf-float 3s ease-in-out infinite;
}

@keyframes rf-float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@media (max-width: 960px) {
	.rf-preregister-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.rf-preregister-visual {
		order: -1;
		max-width: 300px;
		margin: 0 auto;
	}
	
	.rf-features-grid {
		grid-template-columns: 1fr;
	}
	
	.rf-register-actions {
		flex-direction: column;
	}
	
	.rf-register-actions .rf-btn {
		width: 100%;
	}
}

.message {
	padding: 15px;
	margin: 20px 0;
	border-radius: 10px;
	background: #e3f2fd;
	color: #1976d2;
	border-left: 4px solid #1976d2;
}

.error {
	background: #ffebee;
	color: #c62828;
	border-left-color: #c62828;
}

/* Footer -------------------------------------------------------------------- */
.rf-footer {
	margin-top: auto;
	padding: 2rem 1.5rem 3rem;
	background: rgba(5, 7, 14, 0.95);
	border-top: 1px solid var(--rf-border);
}

.rf-footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1.5rem;
}

.rf-footer-title {
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 1.4rem;
	margin: 0 0 0.25rem;
}

.rf-footer-copy {
	margin: 0;
	color: var(--rf-muted);
}

.rf-footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.rf-footer-links a {
	color: var(--rf-text);
	font-weight: 500;
}

.rf-footer-meta {
	margin-top: 1.5rem;
	text-align: center;
	color: var(--rf-muted);
	font-size: 0.85rem;
}

/* Responsive tweaks --------------------------------------------------------- */
@media (max-width: 960px) {
	.rf-primary-nav {
		position: relative !important;
		left: auto !important;
		top: auto !important;
		bottom: auto !important;
		width: 100% !important;
		padding: 0 !important;
		margin-top: 0 !important;
		max-height: 0 !important;
		opacity: 0 !important;
		transform: translateY(-12px) !important;
		pointer-events: none !important;
		border-radius: 24px !important;
		border-right: 1px solid transparent !important;
		border-top: 1px solid transparent !important;
		overflow: hidden !important;
		order: 2;
	}

	.rf-primary-nav.is-open {
		padding: 1.25rem !important;
		margin-top: 1rem !important;
		max-height: 1200px !important;
		opacity: 1 !important;
		transform: translateY(0) !important;
		pointer-events: auto !important;
		border-color: var(--rf-border) !important;
	}

	.rf-header {
		margin-left: 0 !important;
		padding: 2.5rem 1rem 2rem;
	}

	.rf-main {
		margin-left: 0 !important;
		width: calc(100% - 2rem) !important;
		padding: 2rem;
		margin-top: -2rem;
	}

	.rf-hero {
		order: 3;
	}
}

@media (max-width: 1200px) {
	.rf-header-search {
		gap: 1rem;
	}
	.rf-search-input {
		width: 150px;
	}
}

@media (max-width: 960px) {
	.rf-header-search {
		display: none;
	}
}

@media (max-width: 768px) {
	.rf-sticky-header {
		box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
	}
	
	.rf-sticky-header-inner {
		padding: 0.75rem 1rem;
		gap: 0.75rem;
		flex-wrap: wrap;
		align-items: center;
	}
	
	.rf-sticky-header .rf-logo {
		font-size: 1.5rem;
		flex: 1;
		min-width: 0;
	}
	
	.rf-sticky-header .rf-logo span {
		display: block;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	
	.rf-sticky-header .rf-nav-toggle {
		order: 2;
		width: 38px;
		height: 38px;
		flex-shrink: 0;
		margin-left: auto;
	}
	
	.rf-status-compact {
		order: 3;
		width: 100%;
		justify-content: space-between;
		gap: 0.5rem;
		padding-top: 0.5rem;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		margin-top: 0.5rem;
	}
	
	.rf-status-compact-item {
		font-size: 0.7rem;
		flex: 1;
		justify-content: center;
		align-items: center;
		gap: 0.35rem;
		flex-direction: column;
	}
	
	.rf-status-compact-item .rf-status-dot {
		margin-bottom: 0.1rem;
	}
	
	.rf-status-compact-item > span:not(.rf-status-dot):not(.rf-status-users):not(.rf-status-label) {
		display: none !important;
	}
	
	.rf-status-label {
		display: block !important;
		font-size: 0.65rem;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		color: var(--rf-muted);
		text-align: center;
		line-height: 1.2;
		margin-top: 0.1rem;
	}
	
	.rf-status-users {
		font-size: 0.85rem;
		font-weight: 600;
		color: var(--rf-text);
		display: block;
		margin-bottom: 0.1rem;
	}
	
	.rf-user-name {
		display: none;
	}
	
	.rf-header-top {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.rf-hero {
		padding: 2rem 1rem 1.5rem;
	}
	
	.rf-hero-copy {
		text-align: left;
		gap: 1rem;
		max-width: 100%;
	}
	
	.rf-eyebrow {
		font-size: 0.75rem;
		letter-spacing: 2px;
		margin-bottom: 0.25rem;
	}
	
	.rf-hero-copy h1 {
		font-size: clamp(1.5rem, 6vw, 2rem);
		line-height: 1.3;
		margin: 0;
	}
	
	.rf-hero-text {
		font-size: 0.9rem;
		line-height: 1.5;
		margin: 0;
	}
	
	.rf-hero-cta {
		flex-direction: column;
		align-items: stretch;
		gap: 0.75rem;
		margin-top: 1.5rem;
	}
	
	.rf-hero-cta .rf-btn {
		width: 100%;
		min-width: auto;
		padding: 0.9rem 1.5rem;
		font-size: 0.9rem;
	}
	
	.rf-nav-groups {
		grid-template-columns: 1fr;
	}
	
	.rf-main {
		padding: 1.25rem 1rem;
	}
	
	.rf-auth-actions {
		flex-direction: column;
		align-items: stretch;
	}
	.generic-form-table th,
	.generic-form-table td {
		display: block;
		width: 100%;
		padding: 0.5rem 0;
	}
	.generic-form-table th {
		text-transform: none;
		letter-spacing: 0;
		font-size: 0.95rem;
	}
}

@media (max-width: 520px) {
	.rf-sticky-header-inner {
		padding: 0.65rem 0.85rem;
		gap: 0.65rem;
	}
	
	.rf-sticky-header .rf-logo {
		font-size: 1.3rem;
	}
	
	.rf-header-auth .rf-btn-link {
		padding: 0.3rem 0.6rem;
		font-size: 0.75rem;
	}
	
	.rf-sticky-header .rf-nav-toggle {
		width: 36px;
		height: 36px;
	}
	
	.rf-status-compact {
		gap: 0.4rem;
		padding-top: 0.4rem;
		margin-top: 0.4rem;
	}
	
	.rf-status-compact-item {
		font-size: 0.65rem;
		gap: 0.3rem;
	}
	
	.rf-status-compact-item > span:not(.rf-status-dot):not(.rf-status-label):not(.rf-status-users) {
		display: none;
	}
	
	.rf-status-label {
		display: block !important;
		font-size: 0.6rem;
	}
	
	.rf-status-users {
		font-size: 0.75rem;
		display: block;
		margin-bottom: 0.1rem;
	}
	
	.rf-hero {
		padding: 1.5rem 0.85rem 1.25rem;
	}
	
	.rf-hero-copy h1 {
		font-size: clamp(1.35rem, 7vw, 1.75rem);
	}
	
	.rf-hero-text {
		font-size: 0.85rem;
	}
	
	.rf-hero-cta {
		margin-top: 1.25rem;
		gap: 0.65rem;
	}
	
	.rf-hero-cta .rf-btn {
		padding: 0.85rem 1.25rem;
		font-size: 0.85rem;
	}
	
	.rf-main {
		padding: 1rem 0.85rem;
	}
	
	.rf-card {
		padding: 1.25rem;
		border-radius: 18px;
		margin-bottom: 1.25rem;
	}
	
	.rf-card-title {
		font-size: 1.3rem;
	}
	
	.rf-card-description {
		font-size: 0.9rem;
	}
	
	.rf-btn-link {
		min-height: 36px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	
	.rf-alert {
		padding: 0.75rem 0.85rem;
		font-size: 0.9rem;
		border-radius: 10px;
		margin-bottom: 0.85rem;
	}
	
	.rf-table-wrapper {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin: 0 -1rem;
		padding: 0 1rem;
	}
	
	.rf-table {
		font-size: 0.85rem;
		min-width: 800px;
	}
	
	.rf-table th,
	.rf-table td {
		padding: 0.6rem 0.5rem;
	}
	
	.rf-pagination {
		font-size: 0.85rem;
	}
	
	.rf-form-grid {
		grid-template-columns: 1fr;
		gap: 0.85rem;
	}
	
	.rf-field input[type="text"],
	.rf-field select {
		padding: 0.6rem 0.75rem;
		font-size: 0.9rem;
	}
	
	.rf-search-actions {
		flex-direction: column;
		gap: 0.75rem;
	}
	
	.rf-search-actions .rf-btn {
		width: 100%;
	}
	.rf-status-compact-item {
		font-size: 0.7rem;
	}
	.rf-status-compact-item span:last-child {
		display: none;
	}
	.rf-btn-link {
		padding: 0.35rem 0.65rem;
		font-size: 0.8rem;
	}
	.rf-header-actions {
		width: 100%;
		justify-content: space-between;
	}
	.rf-pill {
		font-size: 0.75rem;
	}
	.rf-footer-content {
		flex-direction: column;
	}
}

.google-auth-box strong {
	color: #333;
}

.google-auth-box p:last-child {
	font-size: 13px;
	color: #666;
	margin-top: 10px;
}


/* Date Field Container */
.date-field-container {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.date-field-container select {
	max-width: 120px;
}

/* Date field inputs */
input[type="text"].date-field,
select.date-field {
	max-width: 120px;
}

/* Radio button styling */
.generic-form-table input[type="radio"] {
	width: auto;
	margin-right: 8px;
	accent-color: #667eea;
}

/* Select dropdown styling */
.generic-form-table select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 35px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 30px 20px;
	}
	
	h1 {
		font-size: 2em;
	}
	
	h2 {
		font-size: 1.6em;
	}
	
	.subtitle {
		font-size: 1.1em;
	}
	
	.milestones {
		flex-wrap: wrap;
		gap: 20px;
	}
	
	.milestone {
		flex: 0 0 calc(50% - 10px);
	}
	
	.generic-form-table {
		display: block;
	}
	
	.generic-form-table th,
	.generic-form-table td {
		display: block;
		width: 100%;
		padding: 10px 0;
	}
	
	.generic-form-table th {
		padding-bottom: 5px;
		font-size: 13px;
	}
	
	.generic-form-table input[type="text"],
	.generic-form-table input[type="password"],
	.generic-form-table input[type="date"],
	.generic-form-table select {
		max-width: 100%;
		width: 100%;
	}
	
	.generic-form-table label {
		display: block;
		margin-bottom: 10px;
	}
	
	.generic-form-table button[type="submit"] {
		width: 100%;
		padding: 16px;
		font-size: 16px;
	}
	
	.date-field-container {
		width: 100%;
	}
	
	.date-field-container select {
		flex: 1;
		min-width: 0;
		max-width: 100%;
	}
	
	.register-buttons {
		flex-direction: column;
		gap: 15px;
	}
	
	.google-register-btn,
	.discord-btn {
		width: 100%;
		padding: 15px 20px;
		font-size: 1.1em;
	}
	
	.landing-wrapper {
		flex-direction: column;
	}
	
	.landing-content {
		padding: 30px 20px;
		flex-direction: column;
	}
	
	.content-left {
		flex: 1;
		padding: 0 15px;
		width: 100%;
	}
	
	.content-right {
		flex: 1;
		min-height: 250px;
		margin-top: 20px;
	}
	
	.novice-character {
		position: relative;
		left: auto;
		bottom: auto;
		margin: 0 auto;
	}
	
	h1 {
		font-size: 2.2em;
	}
	
	.subtitle {
		font-size: 1.1em;
	}
	
	.novice-image {
		max-width: 150px;
	}
	
	.server-features {
		gap: 20px;
		margin-top: 15px;
	}
	
	.feature-item {
		font-size: 0.85em;
		white-space: normal;
	}
	
	.account-count-large {
		font-size: 3em;
		letter-spacing: 2px;
	}
	
	.progress-bar-container {
		margin: 30px 10px;
	}
	
	.progress-bar-track {
		height: 40px;
	}
	
	.progress-bar-track::before {
		left: -15px;
		border-top-width: 20px;
		border-bottom-width: 20px;
		border-right-width: 15px;
	}
	
	.progress-bar-track::after {
		right: -15px;
		border-top-width: 20px;
		border-bottom-width: 20px;
		border-left-width: 15px;
	}
	
	.milestone-value {
		font-size: 0.75em;
	}
	
	.info-text,
	.info-text-sub {
		font-size: 0.9em;
	}
	
	.register-title {
		font-size: 1.3em;
	}
	
	.landing-wrapper {
		flex-direction: column;
	}
	
	.landing-content {
		padding: 30px 20px;
		flex-direction: column;
	}
	
	.content-left {
		flex: 1;
		padding: 0 20px;
		width: 100%;
	}
	
	.content-right {
		flex: 1;
		min-height: 300px;
		margin-top: 20px;
	}
	
	.novice-character {
		position: relative;
		left: auto;
		bottom: auto;
		margin: 0 auto;
	}
	
	.novice-image {
		max-width: 100px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 20px 15px;
	}
	
	h1 {
		font-size: 1.6em;
	}
	
	h2 {
		font-size: 1.4em;
	}
	
	.account-count {
		font-size: 2em;
	}
	
	.password-requirements {
		padding: 12px 15px;
	}
	
	.google-auth-box {
		padding: 15px;
	}
	
	.landing-content {
		padding: 25px 15px;
		flex-direction: column;
	}
	
	.content-left {
		padding: 0 10px;
	}
	
	.content-right {
		min-height: 200px;
		margin-top: 15px;
	}
	
	.novice-character {
		position: relative;
		left: auto;
		bottom: auto;
	}
	
	h1 {
		font-size: 1.8em;
	}
	
	.subtitle {
		font-size: 1em;
	}
	
	.novice-image {
		max-width: 120px;
	}
	
	.server-features {
		gap: 15px;
		margin-top: 10px;
		flex-direction: column;
	}
	
	.features-column {
		width: 100%;
	}
	
	.feature-item {
		font-size: 0.8em;
		white-space: normal;
	}
	
	.account-count-large {
		font-size: 2.5em;
		letter-spacing: 1px;
	}
	
	.progress-bar-track {
		height: 35px;
	}
	
	.progress-bar-track::before {
		left: -12px;
		border-top-width: 17px;
		border-bottom-width: 17px;
		border-right-width: 12px;
	}
	
	.progress-bar-track::after {
		right: -12px;
		border-top-width: 17px;
		border-bottom-width: 17px;
		border-left-width: 12px;
	}
	
	.milestone-value {
		font-size: 0.7em;
	}
	
	.info-text {
		font-size: 0.85em;
	}
	
	.info-text-sub {
		font-size: 0.8em;
	}
	
	.register-title {
		font-size: 1.2em;
	}
	
	.landing-content {
		padding: 30px 20px;
		border-radius: 12px;
	}
	
	.characters-section {
		min-height: 250px;
		margin-top: -30px;
	}
	
	.novice-character {
		padding: 15px;
	}
	
	.novice-image {
		max-width: 150px;
	}
}

/* Item Cards ---------------------------------------------------------------- */
.rf-item-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.rf-item-card {
	background: rgba(10, 13, 24, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 1.25rem;
	transition: all 0.2s ease;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

.rf-item-card:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(10, 13, 24, 0.7);
}

.rf-item-card-header {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	padding-bottom: 0.875rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rf-item-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.rf-item-icon img {
	width: 36px;
	height: 36px;
	object-fit: contain;
}

.rf-item-title-section {
	flex: 1;
	min-width: 0;
}

.rf-item-name-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 0.25rem;
}

.rf-item-name {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.4;
}

.rf-item-name a {
	color: var(--rf-text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.rf-item-name a:hover {
	color: var(--rf-primary);
}

.rf-item-id {
	font-size: 0.8rem;
	color: var(--rf-muted);
}

.rf-item-id a {
	color: var(--rf-muted);
	text-decoration: none;
	transition: color 0.2s ease;
}

.rf-item-id a:hover {
	color: var(--rf-accent);
}

.rf-item-description-small {
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.65);
	margin-top: 0.375rem;
}

.rf-item-description-small br {
	margin-bottom: 0.25rem;
	display: block;
}

.rf-item-description-small font {
	color: inherit;
}

.rf-item-stats {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.rf-item-stat-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
	gap: 1rem;
}

.rf-item-stat {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.rf-item-stat-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: rgba(255, 255, 255, 0.45);
	font-weight: 500;
}

.rf-item-stat-value {
	font-size: 0.95rem;
	color: var(--rf-text);
	font-weight: 500;
}

.rf-item-description {
	padding: 1rem 1.25rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	border-left: 3px solid var(--rf-primary);
	margin-top: 0.5rem;
}

.rf-item-description-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--rf-muted);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.rf-item-description-text {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--rf-text);
}

.rf-item-description-text br {
	margin-bottom: 0.5rem;
	display: block;
}

.rf-item-description-text font {
	color: inherit;
}

.rf-item-equip-jobs {
	padding: 0.75rem 1rem;
	background: rgba(255, 255, 255, 0.015);
	border-radius: 8px;
	border-left: 2px solid rgba(96, 165, 250, 0.4);
	margin-top: 0.375rem;
}

.rf-item-equip-jobs-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: rgba(255, 255, 255, 0.45);
	font-weight: 500;
	margin-bottom: 0.375rem;
}

.rf-item-equip-jobs-text {
	font-size: 0.85rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
}

.rf-item-drops {
	padding: 0.625rem 0.875rem;
	background: rgba(255, 255, 255, 0.018);
	border-radius: 6px;
	border-left: 2px solid rgba(139, 92, 246, 0.35);
	margin-top: 0.375rem;
}

.rf-item-drops-label {
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 500;
	margin-bottom: 0.375rem;
}

.rf-item-drops-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem 0.75rem;
	line-height: 1.5;
}

.rf-item-drop-entry {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.75rem;
	padding: 0.1rem 0;
}

.rf-item-drop-monster {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.rf-item-drop-monster:hover {
	color: rgba(139, 92, 246, 1);
	text-decoration: none;
}

.rf-item-drop-percentage {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.7rem;
	font-weight: 400;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

.rf-item-footer {
	padding-top: 0.625rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	margin-top: auto;
}

.rf-item-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.rf-item-badges .rf-badge {
	font-size: 0.7rem;
	padding: 0.25rem 0.6rem;
}

.rf-item-badges .rf-badge a {
	color: inherit;
	text-decoration: none;
}

.rf-monster-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.rf-monster-card {
	background: rgba(9, 11, 22, 0.65);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.rf-monster-card:hover {
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.rf-monster-card-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rf-monster-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
	display: flex;
	align-items: center;
	justify-content: center;
}

.rf-monster-icon img {
	width: 44px;
	height: 44px;
	object-fit: contain;
}

.rf-monster-title {
	flex: 1;
	min-width: 0;
}

.rf-monster-name-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.rf-monster-name {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
}

.rf-monster-name a {
	color: var(--rf-text);
	text-decoration: none;
}

.rf-monster-name a:hover {
	color: var(--rf-primary);
}

.rf-monster-subname {
	color: var(--rf-muted);
	font-size: 0.9rem;
	margin-top: 0.15rem;
}

.rf-monster-id {
	font-size: 0.8rem;
	color: var(--rf-muted);
	margin-top: 0.15rem;
}

.rf-monster-title .rf-monster-pill-row {
	margin-top: 0.35rem;
	gap: 0.35rem;
}

.rf-monster-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
}

.rf-monster-stat {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	padding: 0.65rem 0.8rem;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.rf-monster-stat-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--rf-muted);
}

.rf-monster-stat-value {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--rf-text);
}

.rf-monster-meta {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.rf-monster-pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.rf-monster-pill {
	padding: 0.2rem 0.8rem;
	border-radius: 999px;
	font-size: 0.75rem;
	border: 1px solid rgba(96, 165, 250, 0.35);
	color: #93c5fd;
	background: rgba(96, 165, 250, 0.18);
}

.rf-monster-pill.muted {
	border-color: rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	color: var(--rf-muted);
}

.rf-monster-pill-small {
	padding: 0.15rem 0.5rem;
	border-radius: 999px;
	font-size: 0.65rem;
	border: 1px solid rgba(96, 165, 250, 0.35);
	color: #93c5fd;
	background: rgba(96, 165, 250, 0.18);
	line-height: 1.2;
}

.rf-monster-pill-small.muted {
	border-color: rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	color: var(--rf-muted);
}

.rf-monster-attributes-section {
	margin-top: 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.rf-monster-attributes-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	color: var(--rf-muted);
}

.rf-monster-attributes-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.35rem;
}

.rf-monster-attribute-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.4rem 0.55rem;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
}

.rf-monster-attribute-label {
	font-size: 0.75rem;
	color: var(--rf-text);
}

.rf-monster-attribute-value {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--rf-text);
}

.rf-monster-attribute-value.rf-attrib-positive {
	color: #4ade80;
}

.rf-monster-attribute-value.rf-attrib-negative {
	color: #f87171;
}

.rf-monster-drops {
	margin-top: 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.rf-monster-drops-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	color: var(--rf-muted);
}

.rf-monster-drops-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem;
}

.rf-monster-drop-chip {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.45rem 0.6rem;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
}

.rf-monster-drop-chip-icon {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
}

.rf-monster-drop-chip-icon img {
	max-width: 24px;
	max-height: 24px;
	object-fit: contain;
}

.rf-monster-drop-chip-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.rf-monster-drop-chip-name {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--rf-text);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.rf-monster-drop-chip-name a {
	color: inherit;
	text-decoration: none;
}

.rf-monster-drop-chip-name a:hover {
	color: var(--rf-primary);
}

.rf-monster-drop-chip-name .rf-badge {
	font-size: 0.65rem;
	padding: 0.15rem 0.5rem;
}

.rf-monster-drop-chip-rate {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--rf-text);
	white-space: nowrap;
}

.rf-monster-locations {
	margin-top: 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.rf-monster-locations-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	color: var(--rf-muted);
}

.rf-monster-locations-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.4rem;
}

.rf-monster-location {
	padding: 0.45rem 0.6rem;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
}

.rf-monster-location-map {
	font-weight: 600;
	font-size: 0.9rem;
}

.rf-monster-location-count {
	font-size: 0.75rem;
	color: var(--rf-muted);
	margin-left: 0.35rem;
}

.rf-monster-location-desc {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.8);
}

.rf-monster-location-extra {
	font-size: 0.75rem;
	color: var(--rf-muted);
}

.rf-monster-detail-card {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	background: rgba(9, 11, 22, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.rf-monster-detail-header {
	display: flex;
	gap: 1.25rem;
	align-items: center;
}

.rf-monster-detail-portrait {
	width: 120px;
	height: 120px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
}

.rf-monster-detail-portrait img {
	max-width: 90px;
	max-height: 90px;
	object-fit: contain;
}

.rf-monster-detail-info {
	flex: 1;
	min-width: 0;
}

.rf-monster-detail-name-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.rf-monster-detail-name {
	margin: 0;
	font-size: 1.6rem;
	font-weight: 600;
}

.rf-monster-detail-subname {
	color: var(--rf-muted);
	margin-top: 0.15rem;
}

.rf-monster-detail-id {
	font-size: 0.9rem;
	color: var(--rf-muted);
	margin-top: 0.35rem;
}

.rf-monster-detail-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 0.5rem;
}

.rf-monster-detail-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.9rem;
}

.rf-monster-detail-stat {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	padding: 0.85rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.rf-monster-detail-stat span {
	font-size: 0.75rem;
	text-transform: uppercase;
	color: var(--rf-muted);
	letter-spacing: 0.6px;
}

.rf-monster-detail-stat strong {
	font-size: 1.05rem;
}

.rf-monster-attributes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.rf-monster-attributes h4 {
	margin: 0 0 0.5rem;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--rf-muted);
}

.rf-monster-attributes ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.4rem;
}

.rf-monster-attributes li {
	padding: 0.45rem 0.6rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 8px;
	font-size: 0.9rem;
}

.rf-monster-attributes li strong {
	display: inline-block;
	width: 2.5rem;
	font-size: 0.8rem;
	color: var(--rf-muted);
}

.rf-monster-mode-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.rf-monster-mode-list li {
	padding: 0.35rem 0.75rem;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 999px;
	font-size: 0.8rem;
}

.rf-monster-drop-card {
	margin-bottom: 1.5rem;
}

.rf-monster-drop-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.rf-monster-drop-item {
	display: flex;
	gap: 0.9rem;
	padding: 0.9rem 1rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
}

.rf-monster-drop-item.rf-drop-card {
	border-color: rgba(147, 197, 253, 0.4);
	background: rgba(147, 197, 253, 0.08);
}

.rf-monster-drop-item.rf-drop-mvp {
	border-color: rgba(251, 191, 36, 0.45);
	background: rgba(251, 191, 36, 0.08);
}

.rf-monster-drop-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
}

.rf-monster-drop-icon img {
	max-width: 36px;
	max-height: 36px;
	object-fit: contain;
}

.rf-monster-drop-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.rf-monster-drop-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem;
}

.rf-monster-drop-name {
	font-weight: 600;
}

.rf-monster-drop-name a {
	color: var(--rf-text);
	text-decoration: none;
}

.rf-monster-drop-name a:hover {
	color: var(--rf-primary);
}

.rf-monster-drop-chance {
	font-weight: 600;
	font-size: 1.1rem;
}

.rf-monster-drop-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	font-size: 0.85rem;
	color: var(--rf-muted);
}

.rf-monster-drop-note {
	margin-top: 1rem;
	font-size: 0.85rem;
	color: var(--rf-muted);
	text-align: center;
}

.rf-monster-skill-card .rf-table {
	margin-top: 1rem;
}

.rf-monster-skill-table th,
.rf-monster-skill-table td {
	font-size: 0.85rem;
}

.rf-badge-small {
	display: inline-block;
	padding: 0.2rem 0.5rem;
	font-size: 0.7rem;
	font-weight: 500;
	border-radius: 6px;
	white-space: nowrap;
	line-height: 1.2;
}

.rf-badge-small.yes {
	background: rgba(34, 197, 94, 0.12);
	color: #6ee7b7;
	border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Item Detail Styles */
.rf-item-detail-card {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	background: rgba(9, 11, 22, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	padding: 1.5rem;
}

.rf-item-detail-header {
	display: flex;
	gap: 1.25rem;
	align-items: center;
}

.rf-item-detail-portrait {
	width: 120px;
	height: 120px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.rf-item-detail-portrait img {
	max-width: 90px;
	max-height: 90px;
	object-fit: contain;
}

.rf-item-detail-info {
	flex: 1;
	min-width: 0;
}

.rf-item-detail-name-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.rf-item-detail-name {
	margin: 0;
	font-size: 1.6rem;
	font-weight: 600;
}

.rf-item-detail-id {
	font-size: 0.9rem;
	color: var(--rf-muted);
	margin-top: 0.35rem;
}

.rf-item-detail-pills {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 0.4rem !important;
	margin-top: 0.5rem !important;
}

.rf-item-detail-pills .rf-item-pill {
	padding: 0.2rem 0.8rem !important;
	border-radius: 999px !important;
	font-size: 0.75rem !important;
	border: 1px solid rgba(139, 92, 246, 0.35) !important;
	color: #c4b5fd !important;
	background: rgba(139, 92, 246, 0.18) !important;
	display: inline-block !important;
}

.rf-item-detail-pills .rf-item-pill.muted {
	border-color: rgba(255, 255, 255, 0.1) !important;
	background: rgba(255, 255, 255, 0.04) !important;
	color: var(--rf-muted) !important;
}

.rf-item-detail-properties {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.02);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.rf-item-detail-property {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.rf-item-detail-property-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	color: var(--rf-muted);
	font-weight: 500;
}

.rf-item-detail-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.9rem;
}

.rf-item-detail-stat {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	padding: 0.85rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.rf-item-detail-stat span {
	font-size: 0.75rem;
	text-transform: uppercase;
	color: var(--rf-muted);
	letter-spacing: 0.6px;
}

.rf-item-detail-stat strong {
	font-size: 1.05rem;
}

.rf-item-attributes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.rf-item-attributes h4 {
	margin: 0 0 0.5rem;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--rf-muted);
}

.rf-item-attributes p {
	margin: 0;
	font-size: 0.9rem;
}

.rf-item-scripts {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.rf-item-scripts h4 {
	margin: 0 0 0.5rem;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--rf-muted);
}

.rf-item-script {
	font-size: 0.85rem;
	font-family: 'Courier New', monospace;
	background: rgba(0, 0, 0, 0.3);
	padding: 0.75rem;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	white-space: pre-wrap;
	word-break: break-all;
}

.rf-item-drop-card {
	margin-top: 1.5rem;
}

.rf-item-drop-table {
	margin-top: 1rem;
}

.rf-item-drop-monster-info {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.rf-item-drop-id {
	font-size: 0.75rem;
	color: var(--rf-muted);
}

@media (max-width: 1024px) {
	.rf-item-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.rf-monster-grid {
		grid-template-columns: 1fr;
	}
	
	.rf-monster-stat-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.rf-monster-detail-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.rf-item-detail-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.rf-item-attributes {
		grid-template-columns: 1fr;
	}
	
	.rf-monster-attributes ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.rf-monster-drop-grid {
		grid-template-columns: 1fr;
	}

	.rf-monster-drops-grid {
		grid-template-columns: 1fr;
	}
	
	.rf-monster-locations-list {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.rf-monster-attributes-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.rf-item-grid {
		grid-template-columns: 1fr;
	}
	
	.rf-item-card {
		padding: 1.25rem;
	}
	
	.rf-item-stat-row {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}
	
	.rf-monster-stat-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.rf-monster-detail-header {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.rf-item-detail-header {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.rf-monster-detail-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.rf-item-detail-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.rf-monster-attributes {
		grid-template-columns: 1fr;
	}
	
	.rf-item-attributes {
		grid-template-columns: 1fr;
	}

	.rf-monster-drops-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.rf-item-card {
		padding: 1rem;
	}
	
	.rf-item-card-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	
	.rf-item-stat-row {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}
	
	.rf-monster-stat-grid {
		grid-template-columns: 1fr;
	}
	
	.rf-monster-detail-grid {
		grid-template-columns: 1fr;
	}
	
	.rf-item-detail-grid {
		grid-template-columns: 1fr;
	}
	
	.rf-item-detail-properties {
		flex-direction: column;
	}
	
	.rf-monster-attributes ul {
		grid-template-columns: 1fr;
	}

	.rf-monster-drops-grid {
		grid-template-columns: 1fr;
	}
	
	.rf-monster-locations-list {
		grid-template-columns: 1fr;
	}
}

