:root {
	--bg: #090f1b;
	--panel: rgba(15, 24, 43, 0.78);
	--panel-strong: rgba(20, 30, 55, 0.92);
	--line: rgba(147, 179, 255, 0.18);
	--text: #edf4ff;
	--muted: #99a9ca;
	--accent: #4da9ff;
	--accent-soft: rgba(77, 169, 255, 0.24);
	--accent-2: #52d6b6;
	--shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	min-height: 100%;
}

body {
	font-family: "Manrope", sans-serif;
	color: var(--text);
	background: var(--bg);
}

.app-bg {
	position: fixed;
	inset: 0;
	z-index: -1;
	overflow: hidden;
}

.bg-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(8px);
	opacity: 0.65;
	animation: drift 18s ease-in-out infinite;
}

.bg-orb-a {
	width: 520px;
	height: 520px;
	top: -180px;
	left: -120px;
	background: radial-gradient(circle at 30% 30%, #37b0ff 0%, rgba(55, 176, 255, 0) 72%);
}

.bg-orb-b {
	width: 640px;
	height: 640px;
	bottom: -300px;
	right: -120px;
	background: radial-gradient(circle at 60% 45%, #2be0b5 0%, rgba(43, 224, 181, 0) 70%);
	animation-delay: -5s;
}

.bg-grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(138, 168, 236, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(138, 168, 236, 0.08) 1px, transparent 1px);
	background-size: 40px 40px;
	mask-image: radial-gradient(circle at 40% 10%, #000 10%, transparent 80%);
}

@keyframes drift {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, 12px, 0);
	}
}

.container {
	width: min(1280px, calc(100% - 40px));
	margin: 0 auto;
}

.site-header {
	padding: 18px 0 12px;
}

.site-header-shell {
	background: linear-gradient(180deg, rgba(17, 27, 48, 0.9), rgba(12, 20, 38, 0.84));
	border: 1px solid rgba(147, 179, 255, 0.24);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
	border-radius: 20px;
	backdrop-filter: blur(8px);
	padding: 16px 18px;
}

.site-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.header-nav {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	justify-content: flex-end;
	padding: 6px;
	border-radius: 14px;
	background: rgba(126, 158, 220, 0.12);
	border: 1px solid rgba(126, 158, 220, 0.28);
}

.brand {
	display: inline-flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--text);
}

.brand-kicker {
	font-size: 12px;
	letter-spacing: 0.22em;
	font-weight: 700;
	color: #bcd6ff;
	text-transform: uppercase;
}

.brand-title {
	margin-top: 4px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 32px;
	line-height: 1;
	font-weight: 700;
}

.brand-sub {
	margin-top: 6px;
	font-size: 13px;
	color: var(--muted);
}

.header-link {
	height: 38px;
	padding: 0 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	color: #d8e8ff;
	border: 1px solid transparent;
	transition: all 0.18s ease;
}

.header-link:hover {
	background: rgba(121, 158, 224, 0.2);
	border-color: rgba(121, 158, 224, 0.26);
}

.header-link.active {
	background: linear-gradient(180deg, rgba(77, 169, 255, 0.38), rgba(77, 169, 255, 0.22));
	border-color: rgba(121, 192, 255, 0.45);
	color: #ffffff;
	box-shadow: inset 0 0 0 1px rgba(169, 215, 255, 0.14);
}

.site-main {
	padding: 10px 0 36px;
}

.page-shell {
	animation: reveal 0.45s ease;
}

@keyframes reveal {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #a9cef9;
}

.hero-title {
	margin: 8px 0 4px;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 0.98;
}

.hero-subtitle {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.home-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 14px;
}

.home-hero-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.home-stat-card {
	padding: 16px;
}

.home-stat-label {
	margin: 0;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--muted);
}

.home-stat-value {
	margin: 8px 0 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: 34px;
	line-height: 1;
}

.home-stat-hint {
	margin: 8px 0 0;
	font-size: 12px;
	color: var(--muted);
}

.home-highlights {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.home-highlight {
	padding: 16px;
}

.home-highlight h3 {
	margin: 0 0 10px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 22px;
}

.home-player-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.home-highlight-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
}

.home-highlight-sub {
	margin: 4px 0 0;
	color: var(--muted);
	font-size: 13px;
}

.home-empty {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

.home-preview {
	margin-top: 12px;
	padding: 16px;
}

.home-preview-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.home-preview-head h3 {
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: 22px;
}

.home-preview-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.home-preview-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 12px;
	border: 1px solid rgba(147, 179, 255, 0.16);
	background: rgba(147, 179, 255, 0.08);
	text-decoration: none;
	color: var(--text);
	transition: all 0.18s ease;
}

.home-preview-item:hover {
	background: rgba(147, 179, 255, 0.14);
}

.home-preview-meta {
	min-width: 0;
}

.home-preview-name {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.home-preview-sub {
	margin: 4px 0 0;
	color: var(--muted);
	font-size: 12px;
}

.today-table td {
	vertical-align: middle;
}

.sync-button,
.opgg-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	border-radius: 13px;
	border: 1px solid var(--line);
	padding: 0 18px;
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	background: linear-gradient(180deg, rgba(77, 169, 255, 0.28), rgba(77, 169, 255, 0.14));
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.sync-button:hover,
.opgg-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.leaderboard-card,
.panel {
	background: linear-gradient(180deg, rgba(17, 27, 48, 0.92), rgba(12, 20, 38, 0.88));
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	border-radius: 22px;
	backdrop-filter: blur(8px);
}

.leaderboard-card {
	overflow-x: auto;
}

.leaderboard-filters-panel {
	padding: 14px;
	margin-bottom: 14px;
	overflow: visible;
	position: relative;
	z-index: 30;
}

.leaderboard-filters-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	width: 100%;
}

.leaderboard-search-wrap {
	position: relative;
	z-index: 40;
	width: 100%;
}

.leaderboard-search-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 52px;
	align-items: center;
	gap: 10px;
	width: 100%;
}

.leaderboard-filter-label {
	display: inline-block;
	margin-bottom: 6px;
	font-size: 12px;
	color: var(--muted);
	font-weight: 600;
}

.leaderboard-search-input,
.leaderboard-filter-control {
	width: 100%;
	height: 44px;
	border-radius: 12px;
	border: 1px solid rgba(131, 170, 243, 0.28);
	background: rgba(120, 150, 215, 0.09);
	color: var(--text);
	font: inherit;
	padding: 0 12px;
	outline: none;
}

.leaderboard-search-submit {
	width: 52px;
	height: 44px;
	border: 1px solid rgba(131, 170, 243, 0.28);
	border-radius: 12px;
	background: linear-gradient(180deg, rgba(77, 169, 255, 0.3), rgba(77, 169, 255, 0.15));
	color: #f3f9ff;
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
	flex-shrink: 0;
	transition: all 0.18s ease;
}

.leaderboard-search-submit:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}

.leaderboard-search-input:focus,
.leaderboard-filter-control:focus {
	border-color: rgba(116, 195, 255, 0.52);
	box-shadow: 0 0 0 3px rgba(77, 169, 255, 0.15);
}

.leaderboard-filter-control::placeholder,
.leaderboard-search-input::placeholder {
	color: rgba(177, 199, 235, 0.68);
}

.player-search-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	border-radius: 14px;
	border: 1px solid rgba(136, 176, 250, 0.3);
	background: linear-gradient(180deg, rgba(18, 28, 50, 0.98), rgba(12, 20, 38, 0.98));
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
	overflow: hidden;
	z-index: 120;
}

.leaderboard-card {
	position: relative;
	z-index: 5;
}

.player-search-dropdown.hidden {
	display: none;
}

.search-dropdown-head {
	padding: 10px 12px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 18px;
	font-weight: 700;
	border-bottom: 1px solid rgba(147, 179, 255, 0.16);
	color: #ecf4ff;
	background: rgba(138, 170, 236, 0.08);
}

.search-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	text-decoration: none;
	color: var(--text);
	border-bottom: 1px solid rgba(147, 179, 255, 0.1);
}

.search-item:last-child {
	border-bottom: none;
}

.search-item:hover {
	background: rgba(77, 169, 255, 0.14);
}

.search-item-icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid rgba(167, 198, 248, 0.36);
	object-fit: cover;
	flex-shrink: 0;
}

.search-item-icon-placeholder {
	background: rgba(151, 176, 228, 0.16);
}

.search-level-badge {
	bottom: -6px;
	height: 18px;
	min-width: 24px;
	font-size: 11px;
}

.search-item-meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.search-item-name {
	font-weight: 700;
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.search-hit {
	color: #ff5f70;
	font-weight: 800;
}

.search-hash {
	color: #9fb2d7;
}

.search-item-sub {
	font-size: 12px;
	color: var(--muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.search-empty {
	padding: 12px;
	font-size: 13px;
	color: var(--muted);
}

.search-empty-hint {
	padding: 22px 14px;
	border-top: 1px solid rgba(147, 179, 255, 0.12);
	background: linear-gradient(180deg, rgba(123, 158, 224, 0.08), rgba(123, 158, 224, 0.03));
}

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

.leaderboard-table th {
	text-align: left;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #b9caea;
	padding: 18px 16px;
	border-bottom: 1px solid var(--line);
}

.table-sort-link {
	color: #b9caea;
	text-decoration: none;
	font: inherit;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.table-sort-link:hover {
	color: #ddecff;
}

.table-sort-link.active {
	color: #f1f8ff;
}

.sort-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 14px;
	font-size: 14px;
	line-height: 1;
	opacity: 0.95;
}

.today-empty-row td {
	text-align: center;
	padding: 22px 14px;
}

.leaderboard-table td {
	padding: 14px 16px;
	border-bottom: 1px solid rgba(147, 179, 255, 0.08);
}

.leaderboard-table tbody tr {
	transition: background 0.18s ease;
}

.leaderboard-table tbody tr:hover {
	background: rgba(77, 169, 255, 0.08);
}

.cell-rank {
	width: 74px;
}

.rank-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border-radius: 12px;
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
	background: rgba(77, 169, 255, 0.18);
	border: 1px solid rgba(77, 169, 255, 0.32);
}

.rank-pill-1 {
	background: linear-gradient(180deg, rgba(255, 211, 94, 0.34), rgba(255, 170, 52, 0.2));
	border-color: rgba(255, 214, 120, 0.52);
	color: #fff5d8;
	box-shadow: 0 0 0 1px rgba(255, 235, 176, 0.16) inset;
}

.rank-pill-2 {
	background: linear-gradient(180deg, rgba(199, 214, 238, 0.34), rgba(152, 168, 198, 0.2));
	border-color: rgba(192, 210, 240, 0.5);
	color: #f2f7ff;
	box-shadow: 0 0 0 1px rgba(226, 238, 255, 0.14) inset;
}

.rank-pill-3 {
	background: linear-gradient(180deg, rgba(233, 160, 104, 0.34), rgba(182, 107, 66, 0.2));
	border-color: rgba(228, 159, 118, 0.52);
	color: #ffe8d8;
	box-shadow: 0 0 0 1px rgba(255, 208, 178, 0.12) inset;
}

.row-clickable {
	cursor: pointer;
}

.player-cell {
	display: flex;
	align-items: center;
	gap: 12px;
}

.profile-icon-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.player-icon,
.player-profile-icon {
	width: 52px;
	height: 52px;
	border-radius: 13px;
	object-fit: cover;
	border: 1px solid rgba(172, 198, 248, 0.35);
}

.player-icon-placeholder,
.champion-slot-empty {
	background: rgba(154, 176, 216, 0.14);
}

.summoner-level-badge {
	position: absolute;
	left: 50%;
	bottom: -8px;
	transform: translateX(-50%);
	min-width: 28px;
	height: 20px;
	padding: 0 8px;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(34, 52, 84, 0.96), rgba(17, 30, 54, 0.96));
	border: 1px solid rgba(131, 174, 246, 0.34);
	color: #e8f3ff;
	font-family: "Space Grotesk", sans-serif;
	font-size: 12px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.player-meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.player-name {
	font-size: 15px;
	font-weight: 700;
}

.player-link {
	color: inherit;
	text-decoration: none;
}

.player-link:hover {
	color: #b9ddff;
}

.player-region {
	font-size: 12px;
	color: var(--muted);
}

.rank-main,
.wr-cell {
	font-weight: 700;
}

.rank-main {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.rank-mini-emblem-wrap {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	overflow: hidden;
	background: rgba(77, 169, 255, 0.18);
	border: 1px solid rgba(168, 202, 255, 0.28);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.rank-mini-emblem {
	width: 54px;
	height: 54px;
	object-fit: cover;
	object-position: center;
	filter: drop-shadow(0 0 4px rgba(120, 182, 255, 0.3));
}

.champion-strip {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 220px;
	width: 100%;
	flex-wrap: nowrap;
}

.champion-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	border: 1px solid rgba(188, 211, 248, 0.42);
	object-fit: cover;
}

.champions-cell {
	min-width: 260px;
}

.champions-empty {
	font-size: 13px;
	color: var(--muted);
}

.pagination-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	margin-top: 20px;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}

.pagination-button,
.back-to-top {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: var(--text);
	border: 1px solid var(--line);
	background: rgba(144, 174, 238, 0.1);
	border-radius: 12px;
	font-weight: 700;
	transition: all 0.18s ease;
}

.pagination-button {
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
}

.pagination-button.active {
	background: rgba(77, 169, 255, 0.32);
	border-color: rgba(77, 169, 255, 0.48);
}

.pagination-button:hover,
.back-to-top:hover {
	background: rgba(77, 169, 255, 0.22);
}

.back-to-top {
	height: 40px;
	padding: 0 14px;
}

.player-layout {
	display: grid;
	grid-template-columns: minmax(300px, 360px) 1fr;
	gap: 18px;
}

.panel {
	padding: 20px;
}

.player-sidebar-top {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}

.player-profile-icon {
	width: 84px;
	height: 84px;
	border-radius: 18px;
}

.profile-icon-wrap-large .summoner-level-badge,
.summoner-level-badge-large {
	bottom: -10px;
	min-width: 34px;
	height: 24px;
	font-size: 13px;
}

.player-profile-name {
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: 28px;
	line-height: 0.98;
}

.player-rank-panel {
	background: rgba(108, 144, 224, 0.1);
	border: 1px solid rgba(108, 144, 224, 0.22);
	border-radius: 16px;
	padding: 14px;
	text-align: center;
}

.player-rank-emblem {
	width: 140px;
	height: 140px;
	object-fit: cover;
	object-position: center;
	filter: drop-shadow(0 10px 20px rgba(60, 120, 220, 0.22));
}

.player-rank-emblem-wrap {
	width: 92px;
	height: 92px;
	margin: 0 auto;
	border-radius: 50%;
	overflow: hidden;
	background: radial-gradient(circle at 50% 30%, rgba(77, 169, 255, 0.26), rgba(77, 169, 255, 0.02));
	border: 1px solid rgba(156, 196, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
}

.player-rank-tier {
	font-family: "Space Grotesk", sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin-top: 6px;
}

.player-rank-lp {
	font-weight: 700;
	color: #bcdfff;
}

.player-rank-position {
	margin-top: 5px;
	color: var(--muted);
	font-size: 13px;
}

.player-mini-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 12px;
}

.mini-stat {
	background: rgba(145, 177, 238, 0.1);
	border: 1px solid rgba(145, 177, 238, 0.2);
	border-radius: 12px;
	padding: 10px;
	text-align: center;
}

.mini-stat-label {
	font-size: 11px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.mini-stat-value {
	margin-top: 4px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 19px;
	font-weight: 700;
}

.player-sidebar-updated {
	margin-top: 12px;
	font-size: 12px;
	color: var(--muted);
}

.player-main-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
}

.player-main-header h3 {
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: 30px;
}

.player-main-header p {
	margin: 4px 0 0;
	color: var(--muted);
	font-size: 13px;
}

.player-main-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.period-switcher {
	display: inline-flex;
	gap: 7px;
	padding: 5px;
	border-radius: 12px;
	background: rgba(123, 160, 226, 0.14);
	border: 1px solid rgba(123, 160, 226, 0.28);
}

.period-button {
	height: 36px;
	padding: 0 14px;
	border-radius: 9px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #cee5ff;
	background: transparent;
	border: none;
	cursor: pointer;
	font-weight: 700;
	font-size: 13px;
	font-family: inherit;
}

.period-button.active {
	color: #fff;
	background: rgba(77, 169, 255, 0.38);
}

.champions-period-panel {
	display: none;
}

.champions-period-panel.active {
	display: block;
}

.period-state {
	margin: 6px 0 12px;
	color: var(--muted);
	font-size: 13px;
}

.champion-podium {
	margin-top: 16px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.podium-slot {
	min-height: 220px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 14px;
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(132, 166, 232, 0.18), rgba(132, 166, 232, 0.08));
	border: 1px solid rgba(132, 166, 232, 0.22);
}

.podium-slot.first {
	min-height: 260px;
	background: linear-gradient(180deg, rgba(77, 169, 255, 0.26), rgba(77, 169, 255, 0.11));
}

.podium-place {
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
	font-size: 20px;
}

.podium-icon {
	width: 82px;
	height: 82px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(208, 228, 255, 0.42);
	margin-top: 8px;
}

.podium-name {
	margin-top: 10px;
	font-weight: 700;
}

.podium-games {
	font-size: 13px;
	color: var(--muted);
}

.podium-winrate {
	margin-top: 4px;
	font-size: 13px;
	color: #b6fff0;
	font-weight: 700;
}

.podium-slot-empty {
	justify-content: center;
}

.podium-empty-text,
.player-empty-block {
	color: var(--muted);
}

.player-empty-block {
	margin-top: 18px;
	padding: 20px;
	border-radius: 14px;
	border: 1px dashed rgba(147, 179, 255, 0.3);
	background: rgba(147, 179, 255, 0.08);
}

.admin-ops-panel {
	margin-top: 14px;
}

.admin-ops-panel h3 {
	margin: 0 0 10px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 24px;
}

.admin-error-cell {
	max-width: 460px;
	font-size: 12px;
	color: #ffbfca;
	word-break: break-word;
}

.admin-empty-cell {
	color: var(--muted);
	font-size: 13px;
}

@media (max-width: 1050px) {
	.home-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-highlights {
		grid-template-columns: 1fr;
	}

	.home-preview-list {
		grid-template-columns: 1fr;
	}

	.player-layout {
		grid-template-columns: 1fr;
	}

	.leaderboard-filters-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.container {
		width: calc(100% - 24px);
	}

	.brand-title {
		font-size: 26px;
	}

	.site-header-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.header-nav {
		justify-content: flex-start;
	}

	.site-header-shell {
		padding: 14px;
	}

	.brand-sub {
		font-size: 12px;
	}

	.hero-title {
		font-size: 32px;
	}

	.home-grid {
		grid-template-columns: 1fr;
	}

	.panel {
		padding: 15px;
	}

	.player-profile-name {
		font-size: 24px;
	}

	.player-mini-stats {
		grid-template-columns: 1fr;
	}

	.champion-podium {
		grid-template-columns: 1fr;
	}

	.leaderboard-filters-grid {
		grid-template-columns: 1fr;
	}

	.podium-slot.first,
	.podium-slot,
	.podium-slot.second,
	.podium-slot.third {
		min-height: 0;
	}
}
