/* Rendimiento — Jewel MU premium event analytics */

.rend-shell {
	--rend-gold: #f0b44c;
	--rend-gold-soft: rgba(240, 180, 76, 0.18);
	--rend-orange: #ff8a3d;
	--rend-red: #ff6b6b;
	--rend-green: #5ee89a;
	--rend-blue: #7ec8ff;
	--rend-purple: #b794f6;
	--rend-card: rgba(8, 12, 22, 0.82);
	--rend-line: rgba(255, 255, 255, 0.08);
	position: relative;
	display: grid;
	gap: 22px;
	padding: 8px 0 40px;
	color: #eef2f7;
	color-scheme: dark;
	overflow: hidden;
}

.rend-bg-orb,
.rend-bg-grid {
	position: absolute;
	pointer-events: none;
}

.rend-bg-orb-a {
	top: -120px;
	left: -80px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(255, 138, 61, 0.16), transparent 68%);
	animation: rendOrbA 10s ease-in-out infinite alternate;
}

.rend-bg-orb-b {
	right: -60px;
	top: 120px;
	width: 360px;
	height: 360px;
	background: radial-gradient(circle, rgba(240, 180, 76, 0.12), transparent 70%);
	animation: rendOrbB 12s ease-in-out infinite alternate;
}

.rend-bg-orb-c {
	left: 35%;
	bottom: -80px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(126, 200, 255, 0.1), transparent 70%);
	animation: rendOrbC 14s ease-in-out infinite alternate;
}

.rend-bg-shimmer {
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.03) 50%, transparent 60%);
	background-size: 200% 100%;
	animation: rendShimmer 8s ease-in-out infinite;
	opacity: 0.6;
}

@keyframes rendOrbC {
	0% { transform: translate(0, 0) scale(1); }
	100% { transform: translate(-20px, -16px) scale(1.06); }
}

@keyframes rendShimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

.rend-bg-grid {
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
}

@keyframes rendOrbA {
	0% { transform: translate(0, 0) scale(1); opacity: 0.75; }
	100% { transform: translate(24px, 18px) scale(1.08); opacity: 1; }
}

@keyframes rendOrbB {
	0% { transform: translate(0, 0); opacity: 0.6; }
	100% { transform: translate(-18px, 24px); opacity: 0.95; }
}

.rend-hero,
.rend-toolbar,
.rend-event-tabs,
.rend-stats,
.rend-filter,
.rend-ai-panel,
.rend-guardia-widget,
.rend-section,
.rend-alert {
	position: relative;
	z-index: 1;
}

.rend-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 12px 16px;
	padding: 18px 20px;
	border-radius: 16px;
	border: 1px solid rgba(126, 200, 255, 0.18);
	background: linear-gradient(145deg, rgba(10, 16, 28, 0.92), rgba(8, 12, 22, 0.88));
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(8px);
}

.rend-toolbar-group {
	display: grid;
	gap: 6px;
	min-width: 120px;
}

.rend-toolbar-group label {
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.45);
}

.rend-input-wrap {
	position: relative;
	min-width: 200px;
}

.rend-input-wrap input[type="search"],
.rend-toolbar input[type="date"] {
	width: 100%;
	min-width: 140px;
	padding: 10px 12px 10px 34px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.28);
	color: #eef2f7;
	font-size: 14px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.rend-toolbar input[type="date"] {
	padding-left: 12px;
}

.rend-input-wrap input:focus,
.rend-toolbar input[type="date"]:focus {
	outline: none;
	border-color: rgba(126, 200, 255, 0.45);
	box-shadow: 0 0 0 3px rgba(126, 200, 255, 0.12);
}

.rend-input-icon {
	position: absolute;
	left: 11px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255, 255, 255, 0.35);
	font-size: 14px;
	pointer-events: none;
}

.rend-toolbar-btn {
	padding: 10px 18px;
	border: none;
	border-radius: 10px;
	font-weight: 800;
	font-size: 13px;
	cursor: pointer;
	color: #1a1208;
	background: linear-gradient(135deg, var(--rend-gold), var(--rend-orange));
	box-shadow: 0 8px 24px rgba(240, 180, 76, 0.25);
	transition: transform 0.15s, box-shadow 0.15s;
}

.rend-toolbar-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 28px rgba(240, 180, 76, 0.35);
}

.rend-toolbar-btn-danger {
	color: #fff;
	background: linear-gradient(135deg, #d64545, #962626);
	box-shadow: 0 8px 24px rgba(214, 69, 69, 0.25);
}

.rend-toolbar-btn-danger:hover {
	box-shadow: 0 12px 28px rgba(214, 69, 69, 0.35);
}

.rend-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--rend-line);
}

.rend-page-btn {
	padding: 9px 16px;
	border-radius: 999px;
	font-weight: 800;
	font-size: 12.5px;
	text-decoration: none;
	color: #1a1208;
	background: linear-gradient(135deg, var(--rend-gold), var(--rend-orange));
	box-shadow: 0 6px 18px rgba(240, 180, 76, 0.22);
	transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.rend-page-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(240, 180, 76, 0.32);
}

.rend-page-btn.is-disabled {
	color: rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: none;
	cursor: not-allowed;
	pointer-events: none;
}

.rend-page-info {
	font-size: 12.5px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.02em;
}

.rend-toolbar-btn-muted {
	color: rgba(255, 255, 255, 0.88);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: none;
}

.rend-toolbar-btn-muted:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.rend-empty-hint {
	margin-top: 16px;
	text-align: left;
	max-width: 760px;
}

.rend-empty-clear-form {
	margin-top: 12px;
}

.rend-admin-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 16px;
	margin: 0 0 18px;
	padding: 12px 16px;
	border: 1px solid rgba(214, 69, 69, 0.22);
	border-radius: 12px;
	background: rgba(214, 69, 69, 0.06);
}

.rend-admin-epoch {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.72);
}

.rend-reset-form {
	margin: 0;
}

.rend-toolbar-clear {
	align-self: center;
	padding: 10px 14px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
}

.rend-toolbar-clear:hover {
	color: var(--rend-gold);
}

.rend-hero {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 24px;
	align-items: center;
	padding: 28px 30px;
	border-radius: 20px;
	border: 1px solid rgba(240, 180, 76, 0.24);
	background:
		linear-gradient(145deg, rgba(28, 22, 14, 0.96), rgba(10, 12, 20, 0.94)),
		radial-gradient(circle at 85% 20%, rgba(255, 138, 61, 0.12), transparent 45%);
	box-shadow:
		0 24px 60px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.rend-hero:before {
	content: "";
	position: absolute;
	inset: auto -20% -60% auto;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(240, 180, 76, 0.14), transparent 68%);
}

.rend-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--rend-gold);
	background: rgba(240, 180, 76, 0.1);
	border: 1px solid rgba(240, 180, 76, 0.24);
}

.rend-hero-copy h1 {
	margin: 0 0 12px;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.05;
	letter-spacing: 0.02em;
	color: #fff;
	text-shadow: 0 2px 24px rgba(255, 138, 61, 0.18);
}

.rend-hero-copy p {
	margin: 0;
	max-width: 760px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
}

.rend-hero-badge {
	display: grid;
	gap: 6px;
	min-width: 180px;
	padding: 18px 20px;
	border-radius: 16px;
	text-align: center;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.22));
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rend-hero-badge-label {
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.45);
}

.rend-hero-badge strong {
	font-size: 18px;
	color: #fff;
}

.rend-hero-badge small {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.48);
}

.rend-event-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.rend-event-tab {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 200px;
	padding: 14px 16px;
	border-radius: 14px;
	text-decoration: none;
	color: inherit;
	background: var(--rend-card);
	border: 1px solid var(--rend-line);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.rend-event-tab:hover {
	transform: translateY(-2px);
	border-color: rgba(240, 180, 76, 0.28);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.rend-event-tab.is-active {
	border-color: rgba(255, 138, 61, 0.42);
	background: linear-gradient(145deg, rgba(255, 138, 61, 0.12), rgba(8, 12, 22, 0.88));
	box-shadow: 0 0 0 1px rgba(255, 138, 61, 0.12), 0 16px 34px rgba(255, 138, 61, 0.08);
}

.rend-event-tab-soon {
	opacity: 0.55;
	cursor: not-allowed;
}

.rend-event-tab-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	font-size: 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.rend-event-tab-text {
	display: grid;
	gap: 2px;
}

.rend-event-tab-text strong {
	font-size: 14px;
	color: #fff;
}

.rend-event-tab-text small {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.45);
}

.rend-stats {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
}

.rend-stat {
	position: relative;
	display: grid;
	gap: 8px;
	padding: 18px 18px 16px;
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.24));
	border: 1px solid var(--rend-line);
	overflow: hidden;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.rend-stat:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	opacity: 0.9;
}

.rend-stat:hover {
	transform: translateY(-2px);
}

.rend-stat-label {
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.48);
}

.rend-stat strong {
	font-size: clamp(24px, 2.5vw, 32px);
	line-height: 1;
	color: #fff;
	font-variant-numeric: tabular-nums;
}

.rend-stat small {
	font-size: 11px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.38);
}

.rend-stat-sessions:before { background: linear-gradient(90deg, var(--rend-blue), var(--rend-purple)); }
.rend-stat-kills:before { background: linear-gradient(90deg, var(--rend-red), var(--rend-orange)); }
.rend-stat-players:before { background: linear-gradient(90deg, var(--rend-green), var(--rend-blue)); }
.rend-stat-leaves:before { background: linear-gradient(90deg, #94a3b8, #64748b); }
.rend-stat-complot:before { background: linear-gradient(90deg, #fbbf24, var(--rend-red)); }

.rend-filter {
	display: grid;
	grid-template-columns: auto auto 1fr;
	align-items: center;
	gap: 14px 16px;
	padding: 16px 18px;
	border-radius: 14px;
	background: rgba(0, 0, 0, 0.18);
	border: 1px solid var(--rend-line);
}

.rend-filter label {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: rgba(255, 255, 255, 0.58);
}

.rend-select-wrap {
	position: relative;
}

.rend-select-wrap select {
	appearance: none;
	min-width: 140px;
	padding: 10px 38px 10px 14px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(6, 10, 18, 0.92);
	color: #fff;
	font-size: 13px;
	cursor: pointer;
}

.rend-select-wrap:after {
	content: "";
	position: absolute;
	right: 14px;
	top: 50%;
	margin-top: -3px;
	border: 5px solid transparent;
	border-top-color: var(--rend-gold);
	pointer-events: none;
}

.rend-filter-note {
	grid-column: 1 / -1;
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 12px;
	color: rgba(255, 255, 255, 0.38);
}

.rend-ai-panel {
	padding: 22px 24px;
	border-radius: 18px;
	border: 1px solid rgba(183, 148, 246, 0.22);
	background:
		linear-gradient(135deg, rgba(183, 148, 246, 0.1), rgba(8, 12, 22, 0.92)),
		radial-gradient(circle at 100% 0%, rgba(126, 200, 255, 0.08), transparent 42%);
}

.rend-ai-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 10px;
}

.rend-ai-kicker {
	display: inline-block;
	margin-bottom: 6px;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--rend-purple);
}

.rend-ai-head h2 {
	margin: 0;
	font-size: 20px;
	color: #fff;
}

.rend-ai-badge {
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--rend-purple);
	background: rgba(183, 148, 246, 0.12);
	border: 1px solid rgba(183, 148, 246, 0.24);
}

.rend-ai-panel p {
	margin: 0;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.68);
}

.rend-ai-panel-locked {
	opacity: 0.92;
}

.rend-ai-controls {
	display: grid;
	grid-template-columns: auto 1fr auto 1fr auto;
	gap: 12px 14px;
	align-items: center;
	margin-top: 16px;
}

.rend-ai-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 18px;
	border: 0;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 800;
	color: #1a1208;
	background: linear-gradient(135deg, #f0b44c, #ff8a3d);
	box-shadow: 0 10px 24px rgba(255, 138, 61, 0.22);
	cursor: pointer;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.rend-ai-btn:hover:not(:disabled) {
	transform: translateY(-1px);
}

.rend-ai-btn:disabled {
	opacity: 0.55;
	cursor: wait;
}

.rend-ai-btn-link {
	text-decoration: none;
}

.rend-ai-thinking {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 14px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.72);
}

.rend-ai-spinner {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid rgba(183, 148, 246, 0.25);
	border-top-color: var(--rend-purple);
	animation: rendSpin 0.8s linear infinite;
}

@keyframes rendSpin {
	to { transform: rotate(360deg); }
}

.rend-ai-output {
	margin-top: 14px;
	padding: 16px 18px;
	border-radius: 14px;
	background: rgba(0, 0, 0, 0.24);
	border: 1px solid rgba(183, 148, 246, 0.16);
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.86);
	min-height: 24px;
}

.rend-ai-output:empty {
	display: none;
}

/* El Guardia — robot widget + chat modal */
.rend-guardia-widget {
	position: relative;
	z-index: 1;
}

.rend-guardia-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 22px;
	align-items: center;
	padding: 22px 24px;
	border-radius: 18px;
	border: 1px solid rgba(183, 148, 246, 0.24);
	background:
		linear-gradient(135deg, rgba(183, 148, 246, 0.12), rgba(8, 12, 22, 0.94)),
		radial-gradient(circle at 0% 100%, rgba(126, 200, 255, 0.1), transparent 45%);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.rend-guardia-card.is-locked {
	border-color: rgba(148, 163, 184, 0.22);
	background:
		linear-gradient(135deg, rgba(100, 116, 139, 0.1), rgba(8, 12, 22, 0.94)),
		radial-gradient(circle at 0% 100%, rgba(126, 200, 255, 0.06), transparent 45%);
}

.rend-guardia-card.is-active {
	animation: rendGuardiaGlow 3s ease-in-out infinite alternate;
}

@keyframes rendGuardiaGlow {
	0% { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28); }
	100% { box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), 0 0 28px rgba(183, 148, 246, 0.12); }
}

.rend-guardia-robot {
	position: relative;
	width: 88px;
	height: 96px;
	flex-shrink: 0;
}

.rend-guardia-antenna {
	position: absolute;
	top: 0;
	left: 50%;
	width: 4px;
	height: 14px;
	margin-left: -2px;
	background: linear-gradient(180deg, var(--rend-purple), var(--rend-blue));
	border-radius: 999px;
}

.rend-guardia-antenna:after {
	content: "";
	position: absolute;
	top: -6px;
	left: 50%;
	width: 10px;
	height: 10px;
	margin-left: -5px;
	border-radius: 50%;
	background: var(--rend-gold);
	box-shadow: 0 0 12px rgba(240, 180, 76, 0.65);
	animation: rendAntennaBlink 1.8s ease-in-out infinite;
}

@keyframes rendAntennaBlink {
	0%, 100% { opacity: 0.55; transform: scale(0.9); }
	50% { opacity: 1; transform: scale(1); }
}

.rend-guardia-head {
	position: absolute;
	top: 12px;
	left: 50%;
	width: 72px;
	height: 58px;
	margin-left: -36px;
	border-radius: 16px;
	background: linear-gradient(180deg, #dbeafe, #93c5fd);
	border: 2px solid rgba(255, 255, 255, 0.35);
	box-shadow: inset 0 -8px 16px rgba(59, 130, 246, 0.18);
}

.rend-guardia-eye {
	position: absolute;
	top: 18px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #0f172a;
	box-shadow: inset 0 0 0 2px #7ec8ff;
	animation: rendEyeBlink 4.5s ease-in-out infinite;
}

.rend-guardia-eye-l { left: 16px; }
.rend-guardia-eye-r { right: 16px; }

@keyframes rendEyeBlink {
	0%, 92%, 100% { transform: scaleY(1); }
	95% { transform: scaleY(0.12); }
}

.rend-guardia-mouth {
	position: absolute;
	left: 50%;
	bottom: 12px;
	width: 28px;
	height: 8px;
	margin-left: -14px;
	border-radius: 0 0 12px 12px;
	background: rgba(15, 23, 42, 0.75);
}

.rend-guardia-body {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 52px;
	height: 22px;
	margin-left: -26px;
	border-radius: 10px 10px 14px 14px;
	background: linear-gradient(180deg, #64748b, #475569);
	border: 2px solid rgba(255, 255, 255, 0.12);
}

.rend-guardia-kicker {
	display: inline-block;
	margin-bottom: 6px;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--rend-purple);
}

.rend-guardia-copy h2 {
	margin: 0 0 8px;
	font-size: 20px;
	color: #fff;
}

.rend-guardia-copy p {
	margin: 0;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.68);
}

.rend-guardia-open-btn {
	margin-top: 14px;
	padding: 11px 18px;
	border: 0;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 800;
	color: #1a1208;
	background: linear-gradient(135deg, var(--rend-gold), var(--rend-orange));
	box-shadow: 0 10px 24px rgba(255, 138, 61, 0.22);
	cursor: pointer;
	transition: transform 0.2s ease;
}

.rend-guardia-open-btn:hover {
	transform: translateY(-1px);
}

.rend-guardia-hint {
	display: block;
	margin-top: 10px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
}

body.rend-guardia-open {
	overflow: hidden;
}

.rend-guardia-modal {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.rend-guardia-modal[hidden] {
	display: none !important;
}

.rend-guardia-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 6, 14, 0.72);
	backdrop-filter: blur(4px);
}

.rend-guardia-chat {
	position: relative;
	display: grid;
	grid-template-rows: auto 1fr auto auto auto;
	width: min(520px, 100%);
	max-height: min(86vh, 720px);
	border-radius: 18px;
	border: 1px solid rgba(183, 148, 246, 0.28);
	background: linear-gradient(180deg, rgba(12, 18, 30, 0.98), rgba(8, 12, 22, 0.98));
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
	overflow: hidden;
}

.rend-guardia-chat-head {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 12px;
	align-items: center;
	padding: 16px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(183, 148, 246, 0.08);
}

.rend-guardia-chat-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	font-size: 22px;
	background: rgba(255, 255, 255, 0.08);
}

.rend-guardia-chat-head strong {
	display: block;
	font-size: 15px;
	color: #fff;
}

.rend-guardia-chat-head span {
	display: block;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.45);
}

.rend-guardia-chat-close {
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.72);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.rend-guardia-messages {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 16px 18px;
	overflow: auto;
	min-height: 180px;
	max-height: 320px;
}

.rend-guardia-msg {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.rend-guardia-msg-user {
	flex-direction: row-reverse;
}

.rend-guardia-msg-avatar {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	font-size: 16px;
}

.rend-guardia-msg-bubble {
	max-width: 85%;
	padding: 12px 14px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.rend-guardia-msg-user .rend-guardia-msg-bubble {
	background: rgba(126, 200, 255, 0.12);
	border-color: rgba(126, 200, 255, 0.18);
}

.rend-guardia-msg-bubble p {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.86);
}

.rend-guardia-quick {
	display: grid;
	gap: 8px;
	padding: 0 18px 14px;
}

.rend-guardia-quick-btn {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 10px;
	align-items: center;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.22);
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.rend-guardia-quick-btn:not(:disabled):hover {
	border-color: rgba(183, 148, 246, 0.35);
	background: rgba(183, 148, 246, 0.1);
	transform: translateY(-1px);
}

.rend-guardia-quick-btn:disabled {
	opacity: 0.62;
	cursor: not-allowed;
	filter: grayscale(0.15);
}

.rend-guardia-quick-icon {
	font-size: 18px;
}

.rend-guardia-quick-lock {
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--rend-gold);
}

.rend-guardia-session-row {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px 12px;
	align-items: center;
	padding: 0 18px 14px;
}

.rend-guardia-session-row label {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.45);
}

.rend-guardia-thinking {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 18px 14px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.72);
}

.rend-guardia-thinking[hidden] {
	display: none !important;
}

.rend-guardia-vip-cta {
	display: grid;
	gap: 10px;
	padding: 14px 18px 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(240, 180, 76, 0.06);
}

.rend-guardia-vip-cta p {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.72);
}

.rend-guardia-vip-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 800;
	color: #1a1208;
	background: linear-gradient(135deg, var(--rend-gold), var(--rend-orange));
	text-decoration: none;
}

.rend-panel-alliance {
	border-color: rgba(251, 191, 36, 0.18);
}

.rend-panel-inactive {
	border-color: rgba(148, 163, 184, 0.16);
}

.rend-chip-warn {
	color: #fde68a;
	background: rgba(251, 191, 36, 0.1);
	border-color: rgba(251, 191, 36, 0.18);
}

.rend-table tr.is-inactive {
	opacity: 0.88;
}

.rend-mini-tag-muted {
	color: rgba(255, 255, 255, 0.55);
	background: rgba(148, 163, 184, 0.12);
}

.rend-section {
	padding: 22px 24px;
	border-radius: 18px;
	background: var(--rend-card);
	border: 1px solid var(--rend-line);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.rend-section-head h2 {
	margin: 0 0 4px;
	font-size: 18px;
	color: #fff;
}

.rend-section-head p {
	margin: 0 0 18px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
}

.rend-session-list {
	display: grid;
	gap: 14px;
}

.rend-session-card {
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.18));
	overflow: hidden;
	transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.rend-session-card.is-open {
	border-color: rgba(240, 180, 76, 0.24);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.rend-session-card.is-live-card {
	border-color: rgba(94, 232, 154, 0.28);
	box-shadow: 0 0 0 1px rgba(94, 232, 154, 0.08);
}

.rend-session-head {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 18px;
	border: 0;
	background: transparent;
	color: inherit;
	text-align: left;
	cursor: pointer;
}

.rend-session-head-main {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.rend-session-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	font-size: 20px;
	background: rgba(255, 138, 61, 0.12);
	border: 1px solid rgba(255, 138, 61, 0.22);
	flex-shrink: 0;
}

.rend-session-head strong {
	display: block;
	font-size: 15px;
	color: #fff;
}

.rend-session-sub {
	display: block;
	margin-top: 3px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
}

.rend-session-head-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.rend-status-pill,
.rend-winner-pill,
.rend-flag-pill,
.rend-leave-pill,
.rend-highlight-pill {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	white-space: nowrap;
}

.rend-status-pill.is-live {
	color: var(--rend-green);
	background: rgba(94, 232, 154, 0.12);
	border: 1px solid rgba(94, 232, 154, 0.22);
}

.rend-status-pill.is-closed {
	color: var(--rend-blue);
	background: rgba(126, 200, 255, 0.1);
	border: 1px solid rgba(126, 200, 255, 0.18);
}

.rend-status-pill.is-orphan {
	color: #cbd5e1;
	background: rgba(148, 163, 184, 0.12);
	border: 1px solid rgba(148, 163, 184, 0.18);
}

.rend-winner-pill {
	color: var(--rend-gold);
	background: rgba(240, 180, 76, 0.12);
	border: 1px solid rgba(240, 180, 76, 0.22);
}

.rend-flag-pill {
	color: #fecaca;
	background: rgba(255, 107, 107, 0.12);
	border: 1px solid rgba(255, 107, 107, 0.22);
}

.rend-leave-pill {
	color: #fecaca;
	background: rgba(255, 107, 107, 0.12);
	border: 1px solid rgba(255, 107, 107, 0.22);
}

.rend-highlight-pill {
	color: var(--rend-gold);
	background: rgba(240, 180, 76, 0.12);
	border: 1px solid rgba(240, 180, 76, 0.24);
}

.rend-session-chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.04);
	transition: transform 0.22s ease;
}

.rend-session-card.is-open .rend-session-chevron {
	transform: rotate(180deg);
}

.rend-session-body {
	display: none;
	padding: 0 18px 18px;
}

.rend-session-card.is-open .rend-session-body {
	display: grid;
	gap: 16px;
	animation: rendReveal 0.28s ease;
}

@keyframes rendReveal {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: translateY(0); }
}

.rend-session-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 14px;
}

.rend-panel {
	padding: 16px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.rend-panel h3 {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.72);
}

.rend-panel-lead {
	margin: -6px 0 12px;
	font-size: 12px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.48);
}

.rend-meta-list {
	display: grid;
	gap: 8px;
	margin: 0 0 14px;
}

.rend-meta-list div {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 10px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rend-meta-list dt {
	margin: 0;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.42);
}

.rend-meta-list dd {
	margin: 0;
	font-size: 13px;
	color: #fff;
}

.rend-meta-list dd small {
	color: rgba(255, 255, 255, 0.42);
}

.rend-chip-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.rend-chip {
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.82);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.rend-chip-feed {
	color: #fed7aa;
	background: rgba(255, 138, 61, 0.12);
	border-color: rgba(255, 138, 61, 0.24);
}

.rend-chip-inactive {
	color: #cbd5e1;
	background: rgba(148, 163, 184, 0.12);
	border-color: rgba(148, 163, 184, 0.2);
}

.rend-panel-complot {
	border-color: rgba(255, 107, 107, 0.18);
	background: linear-gradient(180deg, rgba(255, 107, 107, 0.06), rgba(255, 255, 255, 0.02));
}

.rend-stat {
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.rend-stat:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
	border-color: rgba(240, 180, 76, 0.22);
}

.rend-session-card.is-filtered-out {
	display: none;
}

.rend-session-card.is-live-card .rend-session-head {
	animation: rendLivePulse 2.4s ease-in-out infinite;
}

@keyframes rendLivePulse {
	0%, 100% { box-shadow: inset 0 0 0 1px rgba(94, 232, 154, 0.15); }
	50% { box-shadow: inset 0 0 0 1px rgba(94, 232, 154, 0.35), 0 0 20px rgba(94, 232, 154, 0.08); }
}

.rend-panel-highlights {
	border-color: rgba(240, 180, 76, 0.22);
	background: linear-gradient(180deg, rgba(240, 180, 76, 0.07), rgba(255, 255, 255, 0.02));
}

.rend-highlight-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 12px;
}

.rend-highlight-card {
	display: flex;
	gap: 12px;
	padding: 14px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.22);
	transition: transform 0.2s, border-color 0.2s;
}

.rend-highlight-card:hover {
	transform: translateY(-2px);
	border-color: rgba(240, 180, 76, 0.28);
}

.rend-highlight-icon {
	font-size: 22px;
	line-height: 1;
	filter: drop-shadow(0 0 8px rgba(240, 180, 76, 0.35));
}

.rend-highlight-body strong {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--rend-gold);
}

.rend-highlight-player {
	display: block;
	font-size: 16px;
	font-weight: 800;
	margin: 4px 0;
}

.rend-highlight-body p {
	margin: 0;
	font-size: 12px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.55);
}

.rend-panel-roles {
	border-color: rgba(183, 148, 246, 0.2);
	grid-column: 1 / -1;
}

.rend-role-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 12px;
}

.rend-role-card {
	padding: 16px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.24);
	display: grid;
	gap: 10px;
	transition: transform 0.2s;
}

.rend-role-card:hover {
	transform: translateY(-2px);
}

.rend-role-card.is-destacado {
	border-color: rgba(94, 232, 154, 0.35);
	background: linear-gradient(180deg, rgba(94, 232, 154, 0.08), rgba(0, 0, 0, 0.2));
}

.rend-role-card.is-solido {
	border-color: rgba(126, 200, 255, 0.28);
}

.rend-role-card.is-critico {
	border-color: rgba(255, 107, 107, 0.35);
	background: linear-gradient(180deg, rgba(255, 107, 107, 0.07), rgba(0, 0, 0, 0.2));
}

.rend-role-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
}

.rend-role-head strong {
	font-size: 16px;
}

.rend-role-class {
	display: block;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 2px;
}

.rend-role-badge {
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
}

.rend-role-card.is-destacado .rend-role-badge {
	background: rgba(94, 232, 154, 0.15);
	color: var(--rend-green);
}

.rend-role-card.is-critico .rend-role-badge {
	background: rgba(255, 107, 107, 0.15);
	color: var(--rend-red);
}

.rend-role-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
}

.rend-role-guild {
	color: var(--rend-blue);
	font-weight: 700;
}

.rend-role-kd {
	margin-left: auto;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.75);
}

.rend-role-doctrine {
	margin: 0;
	font-size: 11px;
	line-height: 1.45;
	color: rgba(183, 148, 246, 0.85);
	font-style: italic;
}

.rend-role-verdict {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.72);
}

.rend-panel-leaves {
	border-color: rgba(148, 163, 184, 0.22);
	background: linear-gradient(180deg, rgba(148, 163, 184, 0.08), rgba(255, 255, 255, 0.02));
}

.rend-panel-inactive {
	border-color: rgba(251, 191, 36, 0.18);
	background: linear-gradient(180deg, rgba(251, 191, 36, 0.05), rgba(255, 255, 255, 0.02));
}

.rend-team-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.rend-team-list li {
	display: grid;
	gap: 3px;
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 13px;
}

.rend-team-list li span {
	font-weight: 700;
	color: var(--rend-blue);
}

.rend-team-list li small {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.42);
}

.rend-complot-list,
.rend-leave-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.rend-leave-list li,
.rend-complot-list li {
	display: grid;
	gap: 3px;
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 13px;
}

.rend-leave-item {
	border-left: 3px solid rgba(255, 107, 107, 0.55);
	background: linear-gradient(90deg, rgba(255, 107, 107, 0.08), rgba(0, 0, 0, 0.18));
}

.rend-leave-reason {
	font-size: 12px;
	color: #fecaca;
	font-weight: 600;
}

.rend-complot-guild {
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--rend-red);
}

.rend-leave-list time {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.38);
}

.rend-timeline {
	display: grid;
	gap: 8px;
	max-height: 320px;
	overflow: auto;
	padding-right: 4px;
}

.rend-timeline-item {
	display: grid;
	grid-template-columns: 52px auto auto auto 1fr;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 13px;
}

.rend-timeline-time {
	font-size: 11px;
	font-weight: 800;
	color: var(--rend-orange);
}

.rend-timeline-killer {
	font-weight: 700;
	color: #fff;
}

.rend-timeline-arrow {
	color: rgba(255, 255, 255, 0.28);
}

.rend-timeline-victim {
	color: var(--rend-red);
	font-weight: 600;
}

.rend-timeline-meta {
	justify-self: end;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.35);
	font-variant-numeric: tabular-nums;
}

.rend-table-wrap {
	overflow: auto;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.rend-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 560px;
	font-size: 13px;
}

.rend-table th,
.rend-table td {
	padding: 11px 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	text-align: left;
}

.rend-table th {
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: rgba(255, 255, 255, 0.42);
	background: rgba(255, 255, 255, 0.03);
}

.rend-table tbody tr:hover {
	background: rgba(240, 180, 76, 0.05);
}

.rend-table tr.is-winner {
	background: rgba(240, 180, 76, 0.08);
}

.rend-table tr.is-complot {
	background: rgba(255, 107, 107, 0.06);
}

.rend-table tr.is-left {
	background: rgba(148, 163, 184, 0.06);
}

.rend-table tr.is-left td {
	opacity: 0.88;
}

.rend-table tr.is-inactive {
	background: rgba(148, 163, 184, 0.04);
}

.rend-rank {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 800;
	background: rgba(255, 255, 255, 0.07);
}

.rend-rank.is-gold {
	color: var(--rend-gold);
	background: rgba(240, 180, 76, 0.16);
}

.rend-rank.is-silver {
	color: #d4d9e4;
	background: rgba(200, 205, 220, 0.12);
}

.rend-rank.is-bronze {
	color: #e09855;
	background: rgba(205, 127, 50, 0.14);
}

.rend-player-name {
	font-weight: 700;
	color: #fff;
}

.rend-mini-tag {
	display: inline-flex;
	margin-left: 8px;
	padding: 2px 7px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	vertical-align: middle;
	color: rgba(255, 255, 255, 0.72);
	background: rgba(255, 255, 255, 0.08);
}

.rend-mini-tag-warn {
	color: #fecaca;
	background: rgba(255, 107, 107, 0.16);
}

.rend-mini-tag-leave {
	color: #fecaca;
	background: rgba(255, 107, 107, 0.14);
	border: 1px solid rgba(255, 107, 107, 0.22);
}

.rend-mini-tag-feed {
	color: #fed7aa;
	background: rgba(255, 138, 61, 0.14);
	border: 1px solid rgba(255, 138, 61, 0.22);
}

.rend-mini-tag-complot {
	color: #fde68a;
	background: rgba(251, 191, 36, 0.14);
	border: 1px solid rgba(251, 191, 36, 0.22);
}

.rend-mini-tag-muted {
	color: #cbd5e1;
	background: rgba(148, 163, 184, 0.14);
}

.rend-streak {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 8px;
	border-radius: 999px;
	font-weight: 800;
	background: rgba(255, 255, 255, 0.05);
}

.rend-streak.is-warm {
	color: #fde68a;
	background: rgba(251, 191, 36, 0.12);
}

.rend-streak.is-hot {
	color: #fecaca;
	background: rgba(255, 107, 107, 0.14);
	box-shadow: 0 0 12px rgba(255, 107, 107, 0.12);
}

.rend-empty {
	display: grid;
	justify-items: center;
	gap: 8px;
	padding: 42px 20px;
	text-align: center;
}

.rend-empty-icon {
	font-size: 36px;
}

.rend-empty p {
	margin: 0;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.78);
}

.rend-empty small {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.42);
}

.rend-empty-inline {
	padding: 18px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.52);
	text-align: center;
}

.rend-alert {
	padding: 14px 16px;
	border-radius: 12px;
	font-size: 13px;
	line-height: 1.55;
}

.rend-alert ul {
	margin: 8px 0 0;
	padding-left: 18px;
}

.rend-alert-warn {
	color: #fde68a;
	background: rgba(251, 191, 36, 0.1);
	border: 1px solid rgba(251, 191, 36, 0.22);
}

.rend-alert-success {
	color: #bbf7d0;
	background: rgba(72, 199, 116, 0.1);
	border: 1px solid rgba(72, 199, 116, 0.24);
}

.rend-alert-danger {
	color: #fecaca;
	background: rgba(255, 107, 107, 0.1);
	border: 1px solid rgba(255, 107, 107, 0.22);
}

.rend-shell .rend-player-link,
.rend-shell a.rend-player-link {
	color: var(--rend-blue);
	font-weight: 700;
	text-decoration: none;
	transition: color 0.15s;
}

.rend-shell .rend-player-link:hover,
.rend-shell a.rend-player-link:hover {
	color: var(--rend-gold);
	text-decoration: underline;
}

.rend-highlight-player .rend-player-link,
.rend-highlight-player a {
	font-size: 16px;
}

.rend-player-name .rend-player-link,
.rend-player-name a {
	font-weight: 800;
}

.rend-timeline-killer a,
.rend-timeline-victim a {
	font-weight: 700;
}

.rend-chip a {
	color: inherit;
	text-decoration: none;
}

.rend-chip a:hover {
	text-decoration: underline;
}

@media (max-width: 1100px) {
	.rend-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rend-hero {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.rend-stats {
		grid-template-columns: 1fr;
	}

	.rend-filter {
		grid-template-columns: 1fr;
	}

	.rend-ai-controls {
		grid-template-columns: 1fr;
	}

	.rend-guardia-card {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.rend-guardia-copy h2 {
		font-size: 18px;
	}

	.rend-guardia-chat {
		width: 100%;
		max-height: 92vh;
	}

	.rend-session-head {
		flex-direction: column;
		align-items: stretch;
	}

	.rend-session-head-meta {
		justify-content: flex-start;
	}

	.rend-timeline-item {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.rend-timeline-meta {
		justify-self: start;
	}

	.rend-meta-list div {
		grid-template-columns: 1fr;
		gap: 4px;
	}
}
