/* ═══════════════════════════════════════════════════════
   FURYMINE EXTRA.CSS — Fire / Nether / Crimson Theme
   LeaderOS Tabler Override Layer
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

:root {
	--tblr-font-sans-serif: 'Geist', -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
}

body {
	font-family: "Geist", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "cv03", "cv04", "cv11";
	font-variation-settings: "wdth" 100, "YTLC" 500;
}

/* ═══════════════════════════════════════
   CORE DESIGN TOKENS
   ═══════════════════════════════════════ */
:root {
	/* ── Blacks ── */
	--color-black-absolute: #050505;
	--color-black-deep: #0a0808;
	--color-black-soft: #110c0c;
	--color-black-surface: #160e0e;
	--color-black-card: #1a1010;
	--color-black-border: #2a1515;

	/* ── Whites ── */
	--color-white-pure: #f0e0d8;
	--color-white-soft: #d4c0b8;
	--color-white-muted: #8a6a5a;
	--color-white-dim: #5a4040;

	/* ── Accent: Fire Red ── */
	--color-red-main: #ff4040;
	--color-red-soft: #ff6b6b;
	--color-red-muted: #cc2020;
	--color-red-dark: #8f1d1d;
	--color-red-glow: rgba(255, 64, 64, 0.4);

	/* ── Fire / Nether / Gold ── */
	--color-fire: #ff6020;
	--color-fire-soft: #ff8040;
	--color-nether: #7b2fbe;
	--color-nether-soft: #9b40e0;
	--color-gold: #e8a020;
	--color-gold-soft: #ffc040;

	/* ── Status ── */
	--color-success: #2ecc71;
	--color-warning: #f39c12;
	--color-info: #3498db;
	--color-danger: var(--color-red-main);

	/* ── Backgrounds ── */
	--bg-body: var(--color-black-absolute);
	--bg-layout: var(--color-black-deep);
	--bg-surface: var(--color-black-soft);
	--bg-card: var(--color-black-card);
	--bg-card-hover: #201414;
	--bg-overlay: rgba(5, 5, 5, 0.85);

	/* ── Text ── */
	--text-primary: var(--color-white-pure);
	--text-secondary: var(--color-white-soft);
	--text-muted: var(--color-white-muted);
	--text-dim: var(--color-white-dim);
	--text-inverted: #050505;
	--text-accent: var(--color-red-main);

	/* ── Borders ── */
	--border-color: var(--color-black-border);
	--border-color-strong: #3a1a1a;
	--border-color-accent: var(--color-red-muted);
	--border-width: 1px;

	/* ── Shadows ── */
	--shadow-xs: 0 0 0 1px rgba(255, 64, 64, 0.03);
	--shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.6);
	--shadow-md: 0 10px 30px rgba(0, 0, 0, 0.75);
	--shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.9);
	--shadow-glow-red: 0 0 20px var(--color-red-glow);

	/* ── Radius ── */
	--radius-xs: 4px;
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-pill: 999px;

	/* ── Buttons ── */
	--btn-bg: var(--color-black-card);
	--btn-bg-hover: #261616;
	--btn-bg-accent: var(--color-red-main);
	--btn-bg-accent-hover: var(--color-red-soft);
	--btn-text: var(--text-primary);
	--btn-text-accent: #ffffff;
	--btn-border: var(--border-color);
	--btn-border-accent: var(--color-red-muted);

	/* ── Inputs ── */
	--input-bg: var(--color-black-soft);
	--input-bg-focus: #1a0e0e;
	--input-text: var(--text-primary);
	--input-placeholder: var(--text-dim);
	--input-border: var(--border-color);
	--input-border-focus: var(--color-red-main);

	/* ── Links ── */
	--link-color: var(--color-red-main);
	--link-hover: var(--color-red-soft);

	/* ── Scrollbar ── */
	--scrollbar-bg: var(--color-black-absolute);
	--scrollbar-thumb: #2a1515;
	--scrollbar-thumb-hover: var(--color-red-muted);

	/* ── Transitions ── */
	--transition-fast: 0.15s ease;
	--transition-base: 0.25s ease;
	--transition-slow: 0.4s ease;

	/* ── Tabler Overrides ── */
	--tblr-body-bg: var(--color-black-absolute);
	--tblr-body-color: var(--color-white-soft);
	--tblr-bg-surface: var(--color-black-soft);
	--tblr-bg-surface-secondary: var(--color-black-surface);
	--tblr-bg-forms: var(--color-black-soft);
	--tblr-border-color: var(--color-black-border);
	--tblr-border-color-translucent: rgba(255, 64, 64, 0.06);
	--tblr-card-bg: var(--color-black-card);
	--tblr-card-border-color: var(--color-black-border);
	--tblr-primary: var(--color-red-main);
	--tblr-primary-rgb: 255, 64, 64;
	--tblr-link-color: var(--color-red-main);
	--tblr-link-color-rgb: 255, 64, 64;
	--tblr-link-hover-color: var(--color-red-soft);
	--tblr-link-hover-color-rgb: 255, 107, 107;
	--tblr-muted-rgb: 138, 106, 90;
	--tblr-navbar-active-border-color: var(--color-red-main);
	--tblr-success: #2ecc71;
	--tblr-warning: #f39c12;
	--tblr-info: #3498db;
	--tblr-danger: var(--color-red-main);
	--tblr-dropdown-link-active-bg: rgba(255, 64, 64, 0.08);
	--tblr-dropdown-link-active-color: var(--color-red-main);
}

/* ═══════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════ */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track {
	background: var(--scrollbar-bg);
}
::-webkit-scrollbar-thumb {
	background: var(--scrollbar-thumb);
	border-radius: var(--radius-pill);
	transition: background var(--transition-fast);
}
::-webkit-scrollbar-thumb:hover {
	background: var(--scrollbar-thumb-hover);
}

/* ═══════════════════════════════════════
   BODY & GLOBAL
   ═══════════════════════════════════════ */
body {
	background-color: var(--bg-body) !important;
	color: var(--text-secondary) !important;
}

[x-cloak] { display: none !important; }

.section {
	margin: 3rem 0;
}

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

/* ═══════════════════════════════════════
   CARDS
   ═══════════════════════════════════════ */
.card {
	--tblr-card-border-radius: var(--radius-md);
	margin-bottom: 1rem;
	background: var(--bg-card) !important;
	border: 1px solid var(--border-color) !important;
	box-shadow: var(--shadow-sm);
	transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
	border-color: var(--border-color-strong) !important;
}

.card-header {
	padding-top: 1rem;
	padding-bottom: 1rem;
	background: transparent !important;
	border-bottom: 1px solid var(--border-color) !important;
}

.card-header .ck-content p:last-child,
.card-body .ck-content p:last-child {
	margin-bottom: 0;
}

.fs-100 {
	font-size: 100%;
}

/* ═══════════════════════════════════════
   ALERTS
   ═══════════════════════════════════════ */
.alert-success {
	color: #fff;
	background-color: var(--color-success) !important;
	border: none !important;
	border-radius: var(--radius-lg);
}
.alert-danger {
	color: #fff;
	background-color: var(--color-danger) !important;
	border: none !important;
	border-radius: var(--radius-lg);
}
.alert-warning {
	color: #fff;
	background-color: var(--color-warning) !important;
	border: none !important;
	border-radius: var(--radius-lg);
}
.alert-info {
	color: #fff;
	background-color: var(--color-info) !important;
	border: none !important;
	border-radius: var(--radius-lg);
}

div.alert {
	border-radius: var(--radius-lg);
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn-primary {
	background-color: var(--btn-bg-accent) !important;
	border-color: var(--btn-bg-accent) !important;
	color: var(--btn-text-accent) !important;
	font-weight: 600;
	border-radius: var(--radius-md);
	transition: all var(--transition-base);
	box-shadow: 0 0 16px rgba(255, 64, 64, 0.1);
}

.btn-primary:hover,
.btn-primary:focus {
	background-color: var(--color-red-muted) !important;
	border-color: var(--color-red-muted) !important;
	color: var(--btn-text-accent) !important;
	box-shadow: 0 0 24px rgba(255, 64, 64, 0.2) !important;
	transform: translateY(-1px);
}

.btn-primary:active,
.btn-primary.active {
	background-color: var(--color-red-dark) !important;
	border-color: var(--color-red-dark) !important;
	transform: scale(0.97);
}

.btn-primary:focus-visible {
	outline: 2px solid var(--color-red-main);
	outline-offset: 2px;
}

.btn-transparent {
	background-color: transparent;
	border-color: transparent !important;
	box-shadow: none;
	color: inherit;
}

.btn-link {
	color: var(--color-red-main);
	text-decoration: none;
}
.btn-link:hover {
	color: var(--color-red-soft);
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
	--tblr-btn-disabled-border-color: var(--tblr-btn-disabled-bg);
	opacity: 0.4;
}

.btn-group-sm > .btn, .btn-sm {
	--tblr-btn-line-height: 1.625;
	--tblr-btn-icon-size: 0.813rem;
}

.btn-icon .ti {
	font-size: 1rem;
}

/* ═══════════════════════════════════════
   INPUTS & FORMS
   ═══════════════════════════════════════ */
input#username.form-control,
input#password.form-control,
input#passwordRe.form-control,
input#email.form-control,
.form-control,
.form-select {
	background-color: var(--input-bg) !important;
	border: 1px solid var(--input-border) !important;
	color: var(--input-text) !important;
	border-radius: var(--radius-md);
	transition: border-color var(--transition-base), background-color var(--transition-base), box-shadow var(--transition-base);
}

input#username.form-control:focus,
input#password.form-control:focus,
input#passwordRe.form-control:focus,
input#email.form-control:focus,
.form-control:focus,
.form-select:focus {
	background-color: var(--input-bg-focus) !important;
	border-color: var(--input-border-focus) !important;
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(255, 64, 64, 0.08) !important;
}

.input-group,
.input-group-text {
	background-color: var(--input-bg);
	border: 1px solid var(--input-border);
	color: var(--text-muted);
}

.input-group.input-icon {
	margin-left: 1px;
}
.input-group.input-icon .input-icon-addon {
	z-index: 6;
}
.input-group.input-icon .form-control {
	height: calc(2.25rem + 2px);
}

/* ═══════════════════════════════════════
   CHECKBOX — Custom Fire Style
   ═══════════════════════════════════════ */
input.form-check-input {
	--bs-form-check-bg: transparent !important;
	--bs-form-check-border-color: transparent !important;
	--bs-form-check-bg-image: none !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	background-image: none !important;
	box-shadow: none !important;
	outline: none !important;
	width: 18px;
	height: 18px;
	background-color: var(--input-bg) !important;
	border: 1px solid var(--input-border) !important;
	border-radius: var(--radius-xs);
	cursor: pointer;
	position: relative;
	display: inline-grid;
	place-content: center;
	transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

input.form-check-input:hover {
	border-color: var(--border-color-strong) !important;
}

input.form-check-input:checked {
	background-color: var(--color-red-main) !important;
	border-color: var(--color-red-main) !important;
}

input.form-check-input::before {
	content: "";
	width: 11px;
	height: 11px;
	opacity: 0;
	transform: scale(0.8);
	background-color: #ffffff;
	mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.173 13.727L1.173 8.727L2.587 7.313L6.173 10.899L13.413 3.659L14.827 5.073Z'/%3E%3C/svg%3E") center / contain no-repeat;
	transition: opacity var(--transition-fast), transform var(--transition-fast);
}

input.form-check-input:checked::before {
	opacity: 1;
	transform: scale(1);
}

input.form-check-input:focus,
input.form-check-input:focus-visible {
	outline: none !important;
	box-shadow: none !important;
	border-color: var(--color-red-muted) !important;
}

input.form-check-input:active {
	transform: scale(0.9);
}

input.form-check-input:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.form-check-label {
	color: var(--text-secondary);
	cursor: pointer;
	user-select: none;
}

/* ═══════════════════════════════════════
   LINKS — Global Override
   ═══════════════════════════════════════ */
a:not(.btn):not([class*="btn"]):not(.toggle-password):not(.icon):not(.no-style):not(.fh-link):not(.fh-login-btn):not(.fm-footer-logo):not(.widget-link) {
	color: var(--text-muted) !important;
	text-decoration: none !important;
	transition: color var(--transition-fast);
}

a:not(.btn):not([class*="btn"]):not(.toggle-password):not(.icon):not(.no-style):not(.fh-link):not(.fh-login-btn):not(.fm-footer-logo):not(.widget-link):hover {
	color: var(--color-red-main) !important;
	text-decoration: none !important;
}

a:not(.btn):not([class*="btn"]):not(.toggle-password):not(.icon):not(.no-style):focus,
a:not(.btn):not([class*="btn"]):not(.toggle-password):not(.icon):not(.no-style):focus-visible {
	outline: none !important;
}

/* ═══════════════════════════════════════
   WIDGETS (Footer columns etc.)
   ═══════════════════════════════════════ */
.widget-title {
	color: var(--color-red-main) !important;
	margin-bottom: 0.5rem;
	font-weight: 800;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.widget-link {
	color: var(--text-dim) !important;
	text-decoration: none !important;
}
.widget-link:hover {
	text-decoration: none !important;
	color: var(--text-secondary) !important;
}

[data-bs-theme=dark] .widget-link {
	color: var(--text-dim) !important;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
	color: var(--text-secondary);
	background-color: var(--color-black-absolute) !important;
}

/* ═══════════════════════════════════════
   BORDER INPUT (light theme remnant)
   ═══════════════════════════════════════ */
.border-input {
	border-color: var(--border-color) !important;
}

/* ═══════════════════════════════════════
   NAVBAR — Tabler Override
   ═══════════════════════════════════════ */
@media (min-width: 768px) {
	.navbar-expand-md .nav-item:hover {
		position: relative;
	}
	.navbar-expand-md .nav-item:hover:not(.no-hover-border)::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: -.25rem;
		border: 0 var(--tblr-border-style) var(--color-red-main);
		border-bottom-width: 2px;
	}
}

.ti {
	font-size: 20px;
}

.page-center {
	justify-content: center;
}

/* ═══════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════ */
.breadcrumb {
	background-color: var(--bg-card) !important;
	padding: 1rem 1.5rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-color) !important;
	margin-bottom: 0.75rem;
}
.breadcrumb-item a {
	color: var(--text-muted);
}
.breadcrumb-item.active {
	color: var(--text-dim) !important;
	font-weight: normal;
}

ol.breadcrumb {
	background-color: var(--bg-card);
	border-radius: var(--radius-md);
	width: fit-content;
}

/* ═══════════════════════════════════════
   DROPDOWNS
   ═══════════════════════════════════════ */
.dropdown-menu {
	background: var(--color-black-deep) !important;
	border: 1px solid var(--border-color) !important;
	border-radius: var(--radius-md) !important;
	box-shadow: var(--shadow-md), 0 0 20px rgba(255, 64, 64, 0.03) !important;
	z-index: 9999 !important;
}

.dropdown-item {
	color: var(--text-muted) !important;
	font-weight: 600;
	font-size: 13px;
	padding: 8px 14px;
	border-radius: var(--radius-sm);
	transition: all var(--transition-fast);
}

.dropdown-item:hover,
.dropdown-item:focus {
	background-color: rgba(255, 64, 64, 0.06) !important;
	color: var(--text-primary) !important;
	text-decoration: none;
}

.dropdown-item.active,
.dropdown-item:active {
	background-color: rgba(204, 32, 32, 0.12) !important;
	color: var(--color-red-main) !important;
}

[data-bs-theme=dark] .dropdown-item.active,
[data-bs-theme=dark] .dropdown-item:active,
[data-bs-theme=dark] .dropdown-item:hover {
	color: var(--text-primary) !important;
}

/* ═══════════════════════════════════════
   TABLES
   ═══════════════════════════════════════ */
.table {
	--tblr-table-bg: transparent;
	color: var(--text-secondary);
}

.table a:not(.btn) {
	color: inherit;
}
.table a:hover {
	text-decoration: none;
}

tbody td {
	vertical-align: middle;
	border-color: var(--border-color) !important;
}

/* ═══════════════════════════════════════
   NAV TABS
   ═══════════════════════════════════════ */
.nav-tabs {
	margin-bottom: 0;
	border-bottom-color: var(--border-color);
}
.nav-tabs .nav-link {
	display: block;
	text-align: center;
	padding: 1rem;
	font-weight: 500;
	color: var(--text-muted);
	border: 0;
	border-radius: 0;
	border-bottom: 2px solid var(--border-color);
	transition: color var(--transition-fast), border-color var(--transition-fast);
}

.nav-tabs .nav-link:hover {
	color: var(--color-red-main);
	border-color: var(--border-color);
}

.nav-tabs .nav-link:first-child {
	border-top-left-radius: var(--radius-md);
}
.nav-tabs .nav-link:last-child {
	border-top-right-radius: var(--radius-md);
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
	color: var(--color-red-main);
	border-color: var(--color-red-main);
	border-bottom: 2px solid var(--color-red-main);
	background-color: transparent;
}

/* ═══════════════════════════════════════
   DARK THEME OVERRIDES
   ═══════════════════════════════════════ */
[data-bs-theme=dark] .text-muted {
	color: var(--text-dim) !important;
}

[data-bs-theme=dark] .breadcrumb-item.active {
	color: var(--text-dim) !important;
}

[data-bs-theme=dark] .navbar-brand-autodark .navbar-brand-image {
	filter: none !important;
}

/* ═══════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════ */
.card-product {
	height: 100%;
	background: var(--bg-card) !important;
	border: 1px solid var(--border-color) !important;
	transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.card-product:hover {
	border-color: rgba(255, 64, 64, 0.15) !important;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 16px rgba(255, 64, 64, 0.04) !important;
	transform: translateY(-2px);
}

.card-product .card-img-top {
	height: auto;
}

.card-product .card-body {
	display: flex;
	flex-direction: column;
	position: initial;
}

.card-product .stock {
	position: absolute;
	top: -.75rem;
	left: -0.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	height: auto;
	padding: .325rem .625rem;
	font-size: 90%;
	color: #ffffff;
	border-radius: var(--radius-sm);
	z-index: 2;
	font-weight: 700;
}
.card-product .stock.stock-sm {
	top: -0.5rem;
	left: -0.5rem;
	font-size: 85%;
	padding: .25rem .5rem;
}
.card-product .stock.have-stock {
	background: linear-gradient(135deg, var(--color-fire), var(--color-fire-soft));
}
.card-product .stock.stock-out {
	background: linear-gradient(135deg, var(--color-red-dark), var(--color-red-main));
}

.card-product .discount {
	position: absolute;
	top: -1.25rem;
	right: -0.75rem;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 3rem;
	height: 3rem;
	font-weight: 700;
	color: #ffffff;
	background: linear-gradient(135deg, var(--color-red-muted), var(--color-red-main));
	border-radius: 50%;
	z-index: 2;
	box-shadow: 0 0 12px rgba(255, 64, 64, 0.2);
}
.card-product .discount.discount-sm {
	width: 2.5rem;
	height: 2.5rem;
	font-size: 90%;
	font-weight: 700;
	top: -0.75rem;
	right: -0.5rem;
}

.card-product .price {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text-primary);
}

.card-product .old-price {
	font-size: 80%;
	font-weight: 700;
	color: var(--color-red-main);
	text-decoration: line-through;
}

/* ═══════════════════════════════════════
   POWERED BY LEADEROS
   ═══════════════════════════════════════ */
a#powered_by_leaderos {
	background-color: var(--bg-card) !important;
	padding: 10px 15px !important;
	border-radius: var(--radius-md) !important;
	font-size: 13px !important;
	color: var(--text-dim) !important;
	text-decoration: none !important;
	display: inline-block !important;
	border: 1px solid var(--border-color) !important;
	transition: all var(--transition-base) !important;
}

a#powered_by_leaderos:hover {
	background-color: var(--color-red-main) !important;
	border-color: var(--color-red-main) !important;
	color: #ffffff !important;
	box-shadow: 0 0 16px rgba(255, 64, 64, 0.15) !important;
}

#powered_by_leaderos {
	color: var(--text-dim);
}

.auth-layout #powered_by_leaderos {
	opacity: 0.75;
}
[data-bs-theme=dark] .auth-layout #powered_by_leaderos {
	opacity: 0.5;
}

/* ═══════════════════════════════════════
   SPIN WHEEL
   ═══════════════════════════════════════ */
.superWheel .sWheel-inner {
	background: linear-gradient(135deg, var(--color-gold), var(--color-fire));
	border-radius: 100%;
}

/* ═══════════════════════════════════════
   BORDER SEPARATOR
   ═══════════════════════════════════════ */
.border-bottom-separator > * {
	padding-top: .875rem;
	padding-bottom: .875rem;
	border-bottom: 1px solid var(--border-color) !important;
}
.border-bottom-separator > *:last-child {
	border-bottom: 0 !important;
}

.no-underline:hover {
	text-decoration: none;
}

.icon-sm {
	font-size: 1rem !important;
}

/* ═══════════════════════════════════════
   HEADER BANNER / IMAGE
   ═══════════════════════════════════════ */
.header-banner {
	position: relative;
	overflow: hidden;
}

.header-image {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: 255px;
}

.header-image img {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}

.header-banner-content {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1.5rem;
	color: #fff;
	font-weight: 600;
}

@media (max-width: 768px) {
	.header-banner-content {
		width: 100%;
		justify-content: center;
	}
}

.zoom-hover {
	transition: transform var(--transition-base);
	transform: scale(1.0);
}
.zoom-hover:hover {
	transform: scale(1.1);
}

.header-banner-logo {
	max-height: 150px;
}

.header-side-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background-color: rgba(255, 64, 64, 0.15);
	border-radius: var(--radius-md);
	color: var(--color-red-main);
}
.header-side-icon svg {
	fill: var(--color-red-main);
	width: 30px;
	height: 30px;
}

.card-img-right {
	border-radius: var(--tblr-card-border-radius) var(--tblr-card-border-radius) 0 0;
	object-fit: cover;
	object-position: center;
}

/* ═══════════════════════════════════════
   HOME SLIDER
   ═══════════════════════════════════════ */
@media (min-width: 992px) {
	.home-slider .carousel-inner,
	.home-slider .carousel-item {
		height: 400px;
		overflow: hidden;
		border-radius: var(--radius-lg);
	}
	.home-slider .carousel-item img {
		height: 400px;
		object-fit: cover;
		overflow: hidden;
	}
}

/* ═══════════════════════════════════════
   BROADCAST BAR
   ═══════════════════════════════════════ */
.broadcast {
	width: 100%;
	height: 44px;
	background-color: var(--color-black-deep);
	overflow: hidden;
	border-bottom: 1px solid var(--border-color);
}
.broadcast-item {
	display: inline-block;
	padding: 10px 600px 10px 0;
}
@media (max-width: 768px) {
	.broadcast-item {
		padding-right: 400px;
	}
}
.broadcast-link {
	color: var(--text-secondary);
}

/* ═══════════════════════════════════════
   SHOPPING CART BADGE
   ═══════════════════════════════════════ */
.shopping-cart-count-circle {
	width: 18px;
	height: 18px;
	text-align: center;
	justify-content: center;
	display: flex;
	align-items: center;
	border-radius: 50%;
	font-size: 80%;
	background: linear-gradient(135deg, var(--color-red-muted), var(--color-red-main));
	color: #fff;
	font-weight: 700;
}

/* ═══════════════════════════════════════
   COOKIE CONSENT
   ═══════════════════════════════════════ */
@media (min-width: 768px) {
	.termsfeed-com---nb .cc-nb-main-container {
		padding: 2rem !important;
	}
	.termsfeed-com---nb-simple {
		bottom: 20px !important;
		right: 20px !important;
		border-radius: var(--radius-lg) !important;
	}
}
.cc-cp-foot-byline {
	visibility: hidden;
}
.cc-pc-head-close:focus {
	border: none !important;
}
.termsfeed-com---palette-dark *:focus {
	box-shadow: none !important;
}
.cc-nb-okagree, .cc-cp-foot-save {
	color: #fff !important;
	background-color: var(--color-red-main) !important;
	border-radius: var(--radius-md) !important;
}

/* ═══════════════════════════════════════
   ROLES
   ═══════════════════════════════════════ */
.role__default {
	display: inline-block;
	justify-content: center;
	align-items: center;
	background: var(--bg-surface);
	overflow: hidden;
	user-select: none;
	min-width: 1.35714285em;
	font-size: 85%;
	font-weight: 700;
	letter-spacing: .04em;
	vertical-align: bottom;
	line-height: 1;
	padding: 0.25rem 0.5rem;
	text-align: center;
	white-space: nowrap;
	border-radius: var(--radius-xs);
}

/* ═══════════════════════════════════════
   FORUM
   ═══════════════════════════════════════ */
.forum-online-users a:hover {
	text-decoration: none;
}
.forum-online-users a:not(:last-child)::after {
	margin-left: -3px;
	content: ",";
	font-size: 90%;
	color: var(--text-secondary) !important;
}

/* ═══════════════════════════════════════
   SELECT2
   ═══════════════════════════════════════ */
.select2-container--bootstrap4 .select2-selection--single {
	height: calc(1.875em + .75rem + 2px) !important;
}
.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
	line-height: calc(1.875em + .75rem);
}
.select2-container .select2-selection--single .select2-selection__rendered {
	padding-left: 12px;
}
.select2-container--bootstrap4 .select2-selection {
	background-color: var(--input-bg) !important;
	border-color: var(--border-color) !important;
}
.select2-results__option {
	background-color: var(--input-bg) !important;
}
.select2-container--bootstrap4 .select2-dropdown {
	border-color: var(--border-color) !important;
	background: var(--color-black-deep) !important;
}

/* ═══════════════════════════════════════
   CKEDITOR
   ═══════════════════════════════════════ */
.ck-editor__editable {
	min-height: 150px !important;
}
[data-bs-theme=dark] .ck-editor .ck-content {
	background: var(--bg-surface) !important;
	border-color: var(--border-color) !important;
}
[data-bs-theme=dark] .card .ck-editor .ck-content {
	background: var(--input-bg) !important;
	border-color: var(--input-bg) !important;
}
[data-bs-theme=dark] .ck-editor .ck-toolbar {
	background: var(--color-black-deep) !important;
	border-color: var(--color-black-deep) !important;
}
[data-bs-theme=dark] .ck-editor .ck-toolbar__items * {
	color: var(--text-primary) !important;
}
[data-bs-theme=dark] .ck-editor .ck-button:hover,
[data-bs-theme=dark] .ck-editor .ck-button:focus {
	background: var(--color-black-absolute) !important;
}
[data-bs-theme=dark] .ck-editor .ck-list__item {
	background: var(--color-black-deep) !important;
	border-color: var(--color-black-deep) !important;
}
.ck-editor.ck-toolbar {
	border: 1px solid var(--border-color) !important;
}

/* ═══════════════════════════════════════
   BG SURFACE UTILITY
   ═══════════════════════════════════════ */
.bg-surface {
	background-color: var(--bg-surface) !important;
}

/* ═══════════════════════════════════════
   USER DATA / PROFILE
   ═══════════════════════════════════════ */
.user-data {
	display: flex;
	align-items: center;
	padding: 8px;
}
.user-data:nth-child(2n) {
	border-right: none !important;
}
.user-data:last-child {
	border-bottom: none;
}
@media (max-width: 768px) {
	.user-data {
		border-right: none !important;
	}
}

.sidebar-profile-card .sidebar-link {
	display: flex;
	align-items: center;
	padding: 0.5rem 1.5rem;
	color: var(--text-secondary);
	text-decoration: none !important;
	transition: background-color var(--transition-fast);
	border-radius: var(--radius-sm);
}
.sidebar-profile-card .sidebar-link:hover,
.sidebar-profile-card .sidebar-link.active {
	background-color: rgba(255, 64, 64, 0.05);
}

.avatar-150px {
	width: 150px;
	height: 150px;
}

.toggle-password {
	line-height: 1;
}

/* ═══════════════════════════════════════
   AUTH PAGES — Split Layout
   ═══════════════════════════════════════ */
.auth-split {
	display: flex;
	width: 100%;
	min-height: 100vh;
	background: var(--color-black-absolute);
}

.auth-left {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle at right, var(--color-black-deep), var(--color-black-absolute));
}

.auth-card {
	width: 100%;
	max-width: 420px;
	padding: 2.5rem;
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-color);
	box-shadow:
		var(--shadow-xs),
		var(--shadow-lg),
		0 0 40px rgba(255, 64, 64, 0.02);
}

.auth-right {
	flex: 1;
	position: relative;
	background:
		linear-gradient(to left, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.6)),
		url("/assets/images/auth-bg.jpg") center / cover no-repeat;
}

.auth-image-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--text-primary);
	padding: 2rem;
}

.auth-image-overlay h1 {
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	margin-bottom: .5rem;
	background: linear-gradient(135deg, var(--color-red-main), var(--color-fire));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.auth-image-overlay p {
	opacity: .6;
	font-size: 1.05rem;
	color: var(--text-muted);
}

@media (max-width: 992px) {
	.auth-right {
		display: none;
	}
	.auth-left {
		flex: 1;
	}
}

.auth-logo {
	max-height: 100px;
}

/* ═══════════════════════════════════════
   SELECTION HIGHLIGHT
   ═══════════════════════════════════════ */
::selection {
	background: rgba(255, 64, 64, 0.2);
	color: var(--text-primary);
}

::-moz-selection {
	background: rgba(255, 64, 64, 0.2);
	color: var(--text-primary);
}

/* ═══════════════════════════════════════
   FOCUS RING — Global
   ═══════════════════════════════════════ */
:focus-visible {
	outline: 2px solid rgba(255, 64, 64, 0.4);
	outline-offset: 2px;
}

/* ═══════════════════════════════════════
   SMOOTH TRANSITIONS — Page feel
   ═══════════════════════════════════════ */
a, button, .btn, .card, .form-control, .form-select, .nav-link, .dropdown-item {
	transition: all var(--transition-fast);
}

/* ═══════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}


/* ═══════════════════════════════════════════════════════
   FURYMINE SLIDER — Ultra Premium Carousel
   Fire / Nether / Crimson Theme
   ═══════════════════════════════════════════════════════ */

/* ── Container ── */
.home-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0a0808;
    box-shadow:
        0 0 0 1px rgba(255, 64, 64, 0.08),
        0 8px 40px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(255, 64, 64, 0.04);
}

/* Animated border glow */
.home-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 64, 64, 0.3),
        rgba(255, 96, 32, 0.15),
        transparent 50%,
        rgba(123, 47, 190, 0.15),
        rgba(255, 64, 64, 0.3)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
    animation: sliderBorderShift 6s ease infinite;
}

@keyframes sliderBorderShift {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Bottom fire reflection */
.home-slider::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 10%;
    right: 10%;
    height: 80px;
    background: radial-gradient(ellipse, rgba(255, 64, 64, 0.12) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

/* ── Inner & Items ── */
.home-slider .carousel-item {
    position: relative;
    overflow: hidden;
}

.home-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.6s ease;
    will-change: transform;
}

/* Subtle zoom on active slide */
.home-slider .carousel-item.active img {
    animation: sliderZoom 8s ease-in-out infinite alternate;
}

@keyframes sliderZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.04); }
}

/* ── Vignette overlay ── */
.home-slider .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.15) 0%, transparent 30%, transparent 60%, rgba(5, 5, 5, 0.5) 100%),
        linear-gradient(90deg, rgba(5, 5, 5, 0.2) 0%, transparent 15%, transparent 85%, rgba(5, 5, 5, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

/* ── Navigation Arrows ── */
.home-slider .carousel-control-prev,
.home-slider .carousel-control-next {
    width: 52px;
    height: 52px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    background: #ff4040;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 64, 64, 0.6);
    border-radius: 14px;
    opacity: 0.85;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 4;
    box-shadow: 0 4px 20px rgba(255, 64, 64, 0.25);
}

.home-slider .carousel-control-prev {
    left: 16px;
}

.home-slider .carousel-control-next {
    right: 16px;
}

.home-slider:hover .carousel-control-prev,
.home-slider:hover .carousel-control-next {
    opacity: 1;
}

.home-slider .carousel-control-prev:hover,
.home-slider .carousel-control-next:hover {
    background: #cc2020;
    border-color: rgba(255, 64, 64, 0.8);
    box-shadow:
        0 4px 20px rgba(255, 64, 64, 0.35),
        0 0 20px rgba(255, 64, 64, 0.15);
    transform: translateY(-50%) scale(1.08);
}

.home-slider .carousel-control-prev:active,
.home-slider .carousel-control-next:active {
    transform: translateY(-50%) scale(0.95);
}

/* Arrow icons */
.home-slider .carousel-control-prev-icon,
.home-slider .carousel-control-next-icon {
    width: 18px;
    height: 18px;
    filter: none;
    background-image: none;
    position: relative;
}

.home-slider .carousel-control-prev-icon::before,
.home-slider .carousel-control-next-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: 18px 18px;
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 4px rgba(255, 64, 64, 0.3));
}

.home-slider .carousel-control-prev-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E");
}

.home-slider .carousel-control-next-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}

.home-slider .carousel-control-prev:hover .carousel-control-prev-icon::before,
.home-slider .carousel-control-next:hover .carousel-control-next-icon::before {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
}

/* ── Indicators (dots) ── */
.home-slider .carousel-indicators {
    bottom: 16px;
    margin-bottom: 0;
    gap: 6px;
    z-index: 4;
}

.home-slider .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(240, 224, 216, 0.25);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin: 0;
    padding: 0;
}

.home-slider .carousel-indicators .active {
    width: 28px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #ff4040, #ff6020);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 0 14px rgba(255, 64, 64, 0.4);
}

/* ── Slide transition — crossfade + zoom ── */
.home-slider .carousel-inner {
    border-radius: 16px;
    overflow: hidden;
}

.home-slider .carousel-item {
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    opacity: 0;
    transform: scale(1.03);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    backface-visibility: hidden;
}

.home-slider .carousel-item.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
    z-index: 1;
}

/* Override Bootstrap's default slide transform */
.home-slider .carousel-item-next,
.home-slider .carousel-item-prev {
    opacity: 0;
    transform: scale(1.03);
}

.home-slider .carousel-item-next.carousel-item-start,
.home-slider .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transform: scale(1);
}

.home-slider .carousel-item.active.carousel-item-start,
.home-slider .carousel-item.active.carousel-item-end {
    opacity: 0;
    transform: scale(0.97);
}

/* Kill Bootstrap's default translateX slide */
.home-slider .carousel-item-next:not(.carousel-item-start),
.home-slider .carousel-item-prev:not(.carousel-item-end) {
    transform: scale(1.03);
}

/* Auto-slide: arrows fully visible on hover */
.home-slider:hover .carousel-control-prev,
.home-slider:hover .carousel-control-next {
    opacity: 1;
}

/* ── Desktop height ── */
@media (min-width: 992px) {
    .home-slider .carousel-inner,
    .home-slider .carousel-item {
        height: 420px;
    }

    .home-slider .carousel-item img {
        height: 420px;
    }
}

@media (min-width: 1400px) {
    .home-slider .carousel-inner,
    .home-slider .carousel-item {
        height: 480px;
    }

    .home-slider .carousel-item img {
        height: 480px;
    }
}

/* ── Tablet ── */
@media (max-width: 991px) {
    .home-slider .carousel-inner,
    .home-slider .carousel-item {
        height: 300px;
    }

    .home-slider .carousel-item img {
        height: 300px;
    }

    .home-slider .carousel-control-prev,
    .home-slider .carousel-control-next {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .home-slider .carousel-control-prev {
        left: 10px;
    }

    .home-slider .carousel-control-next {
        right: 10px;
    }
}

/* ── Mobile ── */
@media (max-width: 576px) {
    .home-slider {
        border-radius: 12px;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }

    .home-slider::before {
        border-radius: 12px;
    }

    .home-slider .carousel-inner {
        border-radius: 12px;
    }

    .home-slider .carousel-inner,
    .home-slider .carousel-item {
        height: 200px;
    }

    .home-slider .carousel-item img {
        height: 200px;
        border-radius: 12px;
    }

    .home-slider .carousel-item::after {
        border-radius: 12px;
    }

    .home-slider .carousel-control-prev,
    .home-slider .carousel-control-next {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        opacity: 0.7;
    }

    .home-slider .carousel-control-prev {
        left: 8px;
    }

    .home-slider .carousel-control-next {
        right: 8px;
    }

    .home-slider .carousel-control-prev-icon,
    .home-slider .carousel-control-next-icon {
        width: 14px;
        height: 14px;
    }

    .home-slider .carousel-indicators {
        bottom: 10px;
    }

    .home-slider .carousel-indicators [data-bs-target] {
        width: 6px;
        height: 6px;
    }

    .home-slider .carousel-indicators .active {
        width: 22px;
    }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .home-slider .carousel-item.active img {
        animation: none;
    }

    .home-slider::before {
        animation: none;
        opacity: 0.8;
    }

    .home-slider .carousel-item {
        transition-duration: 0.01ms;
    }
}
/* ═══════════════════════════════════════════════════════
   FURYMINE INTERACTIONS — Hover & Click Animations
   Global link, button, card micro-interactions
   ═══════════════════════════════════════════════════════ */

/* ── Text Links — underline slide + click press ── */
a:not(.btn):not(.nav-link):not(.dropdown-item):not(.stretched-link):not(.carousel-control-prev):not(.carousel-control-next):not(.no-style):not(.widget-row) {
    position: relative;
    transition: color 0.2s ease, transform 0.15s ease, opacity 0.15s ease;
}

a:not(.btn):not(.nav-link):not(.dropdown-item):not(.stretched-link):not(.carousel-control-prev):not(.carousel-control-next):not(.no-style):not(.widget-row)::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #ff4040, #ff6020);
    border-radius: 1px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

a:not(.btn):not(.nav-link):not(.dropdown-item):not(.stretched-link):not(.carousel-control-prev):not(.carousel-control-next):not(.no-style):not(.widget-row):hover::after {
    width: 100%;
}

a:not(.btn):not(.nav-link):not(.dropdown-item):not(.stretched-link):not(.carousel-control-prev):not(.carousel-control-next):not(.no-style):not(.widget-row):active {
    transform: scale(0.97);
    opacity: 0.8;
}

/* ── Buttons — lift + press ── */
.btn {
    transition: all 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease !important;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0) scale(0.97) !important;
    transition-duration: 0.08s !important;
}

/* Primary button glow pulse on hover */
.btn-primary:hover {
    box-shadow:
        0 4px 16px rgba(255, 64, 64, 0.3),
        0 0 0 0 rgba(255, 64, 64, 0.2) !important;
    animation: fmBtnPulse 1.5s ease infinite;
}

@keyframes fmBtnPulse {
    0%   { box-shadow: 0 4px 16px rgba(255, 64, 64, 0.3), 0 0 0 0 rgba(255, 64, 64, 0.2); }
    70%  { box-shadow: 0 4px 16px rgba(255, 64, 64, 0.3), 0 0 0 8px rgba(255, 64, 64, 0); }
    100% { box-shadow: 0 4px 16px rgba(255, 64, 64, 0.3), 0 0 0 0 rgba(255, 64, 64, 0); }
}

.btn-primary:active {
    animation: none !important;
}

/* ── Nav Links — bottom bar slide ── */
.nav-link {
    position: relative;
    transition: color 0.2s ease, background 0.2s ease !important;
}

.nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ff4040;
    border-radius: 1px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-tabs .nav-link:hover::after,
.nav-tabs .nav-link.active::after {
    width: 100%;
    left: 0;
}

/* ── Dropdown Items — slide highlight ── */
.dropdown-item {
    position: relative;
    overflow: hidden;
    transition: color 0.15s ease, background 0.15s ease, padding-left 0.2s ease !important;
}

.dropdown-item:hover {
    padding-left: 1rem;
}

.dropdown-item:active {
    transform: scale(0.98);
}

/* ── Cards — hover lift ── */
.card {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.25s ease,
                border-color 0.25s ease !important;
}

.card:hover {
    transform: translateY(-2px);
}

/* ── Form Inputs — focus glow ── */
.form-control,
.form-select {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease !important;
}

.form-control:focus,
.form-select:focus {
    animation: fmInputFocus 0.3s ease;
}

@keyframes fmInputFocus {
    0%   { box-shadow: 0 0 0 0 rgba(255, 64, 64, 0); }
    50%  { box-shadow: 0 0 0 5px rgba(255, 64, 64, 0.15); }
    100% { box-shadow: 0 0 0 3px rgba(255, 64, 64, 0.1); }
}

/* ── Checkbox — bounce on check ── */
.form-check-input {
    transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease !important;
}

.form-check-input:active {
    transform: scale(0.85);
}

.form-check-input:checked {
    animation: fmCheckBounce 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fmCheckBounce {
    0%   { transform: scale(0.8); }
    50%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* ── Badge — subtle pop on hover ── */
.badge {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.badge:hover {
    transform: scale(1.05);
}

/* ── Avatar — ring glow on hover ── */
.avatar {
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.avatar:hover {
    box-shadow: 0 0 0 3px rgba(255, 64, 64, 0.2);
    transform: scale(1.05);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
