.home-content {
	width: min(100% - 72px, 1280px);
	padding: 72px 0 70px;
}

.home-match-shell,
.home-match-panel {
	display: grid;
	gap: 28px;
}

.home-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.home-section-title {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.home-section-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(86, 197, 47, 0.22);
	border-radius: 9px;
	background: rgba(86, 197, 47, 0.08);
	color: var(--site-green);
}

.home-section-icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-section-title h1 {
	margin: 0;
	color: #f4f4f4;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: -0.03em;
}

.home-section-title p {
	margin: 5px 0 0;
	color: #b7b7bd;
	font-size: 15px;
	line-height: 1.2;
}

.home-status-nav {
	position: relative;
	flex: 0 0 auto;
	display: flex;
	justify-content: flex-end;
}

.home-status-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 44px;
	padding: 0 14px;
	border: 1px solid #2c2c2c;
	border-radius: 8px;
	background: #202020;
	color: #f7f7f7;
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
	transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.home-status-trigger:hover,
.home-status-nav.open .home-status-trigger,
.home-status-nav:focus-within .home-status-trigger {
	border-color: rgba(86, 197, 47, 0.42);
	background: #242424;
}

.home-status-trigger-icon,
.home-status-chevron,
.home-filter-item-icon,
.home-filter-check {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.home-status-trigger-icon,
.home-status-chevron {
	width: 20px;
	height: 20px;
}

.home-status-trigger-icon {
	color: var(--site-green);
}

.home-status-chevron {
	color: #bfc0c3;
	transition: transform 0.18s ease;
}

.home-status-nav.open .home-status-chevron {
	transform: rotate(180deg);
}

.home-status-nav svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.1;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-status-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 20;
	display: grid;
	gap: 10px;
	width: 240px;
	padding: 16px;
	border: 1px solid #282828;
	border-radius: 14px;
	background: #111;
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-6px);
	visibility: hidden;
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.home-status-nav.open .home-status-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.home-filter-btn {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr) 18px;
	align-items: center;
	gap: 10px;
	width: 100%;
	min-height: 34px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #f1f1f1;
	font-size: 16px;
	font-style: italic;
	font-weight: 900;
	line-height: 1;
	text-align: left;
	cursor: pointer;
	transition: color 0.18s ease;
}

.home-filter-btn span:nth-child(2) {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.home-filter-item-icon,
.home-filter-check {
	width: 18px;
	height: 18px;
}

.home-filter-check {
	color: var(--site-green);
	opacity: 0;
}

.home-filter-btn:hover,
.home-filter-btn.active {
	color: var(--site-green);
}

.home-filter-btn.active .home-filter-check {
	opacity: 1;
}

.home-event-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.home-event-card {
	position: relative;
	display: flex;
	min-height: 256px;
	overflow: hidden;
	border: 1px solid #222;
	border-radius: 14px;
	background: #111;
	color: #f2f2f2;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.home-event-card:hover,
.home-event-card.active {
	border-color: #1ed760;
	box-shadow: 0 0 0 1px rgba(30, 215, 96, 0.75), 0 0 28px rgba(30, 215, 96, 0.32);
	transform: translateY(-1px);
}

.home-card-poster,
.home-event-overlay {
	position: absolute;
	inset: 0;
}

.home-card-poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(1.2px) brightness(0.52) saturate(1.04);
	transform: scale(1.035);
}

.home-event-overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.88) 100%);
}

.home-event-badges {
	position: absolute;
	top: 12px;
	right: 12px;
	left: 12px;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 8px;
}

.home-event-badge,
.home-event-badges time {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 26px;
	padding: 0 10px;
	border-radius: 4px;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.home-event-badge.live,
.home-event-badge.non-live {
	gap: 6px;
}

.home-event-badge.live {
	background: #f80c14;
}

.home-event-badge.non-live {
	background: #22c55e;
}

.home-event-badge.live i,
.home-event-badge.non-live i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #fff;
}

.home-event-badge.hot,
.home-event-badges time {
	background: var(--site-green);
}

.home-event-badge.hot svg {
	width: 13px;
	height: 13px;
	margin-right: 4px;
	fill: currentColor;
}

.home-event-badges time {
	margin-left: auto;
}

.home-event-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	min-width: 0;
	padding: 86px 18px 56px;
}

.home-event-main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	min-width: 0;
}

.home-event-teams {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.home-event-team {
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
	color: #f0f0f0;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.2;
}

.home-event-team img {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.08);
}

.home-event-team span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.home-event-score {
	color: var(--site-green);
	font-size: 29px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.04em;
	white-space: nowrap;
}

.home-event-card.upcoming .home-event-score {
	color: #e8e8e8;
}

.home-event-card.ended .home-event-score {
	color: #8f9299;
}

.home-event-meta {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	height: 50px;
	padding: 0 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(13, 13, 13, 0.92);
}

.home-event-meta span {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	width: 100%;
	min-width: 0;
	color: #f0f0f0;
	font-size: 13px;
	font-weight: 900;
}

.home-event-meta strong {
	min-width: 0;
	overflow: hidden;
	font: inherit;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.home-event-competition-logo,
.home-event-competition-fallback {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}

.home-event-competition-logo {
	object-fit: contain;
}

.home-event-competition-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--site-green);
	font-size: 10px;
	line-height: 1;
}

.home-empty-data {
	grid-column: 1 / -1;
	padding: 34px 20px;
	border: 1px solid #222;
	border-radius: 14px;
	background: #111;
	color: #9ea0a7;
	font-weight: 800;
	text-align: center;
}

.home-live-sidebar {
	display: none;
}

.category-archive {
	width: min(100% - 72px, 1280px);
	max-width: 100%;
	overflow-x: clip;
	padding: 52px 0 72px;
}

.category-archive .category-title {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 112px;
	margin: 0 0 68px;
	padding: 0;
	border-bottom: 1px solid #1b1b1b;
}

.category-archive .category-title i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(86, 197, 47, 0.32);
	border-radius: 7px;
	background: rgba(86, 197, 47, 0.12);
	color: var(--site-green);
	font-size: 19px;
}

.category-archive .category-title h1 {
	min-width: 0;
	margin: 0;
	color: #f5f5f5;
	font-size: clamp(28px, 2.5vw, 40px);
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: -0.04em;
	overflow-wrap: anywhere;
}

.category-archive .category-layout {
	display: block;
}

.category-archive .category-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
	justify-content: start;
	gap: 28px;
}

.category-card {
	overflow: hidden;
	border: 1px solid #242424;
	border-radius: 10px;
	background: #111;
	color: #f2f2f2;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.category-card:hover {
	border-color: rgba(86, 197, 47, 0.5);
	box-shadow: 0 0 0 1px rgba(86, 197, 47, 0.18), 0 18px 36px rgba(0, 0, 0, 0.34);
	transform: translateY(-1px);
}

.category-thumb {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #151515;
}

.category-thumb::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 42%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.64));
	pointer-events: none;
}

.category-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.28s ease;
}

.category-card:hover .category-thumb img {
	transform: scale(1.035);
}

.category-thumb span {
	position: absolute;
	top: 11px;
	left: 10px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 28px;
	max-width: calc(100% - 20px);
	padding: 0 12px;
	overflow: hidden;
	border-radius: 4px;
	background: var(--site-green);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.category-card-body {
	display: grid;
	gap: 12px;
	padding: 19px 18px 17px;
}

.category-card-title {
	display: -webkit-box;
	overflow: hidden;
	color: #f5f5f5;
	font-size: 19px;
	font-weight: 900;
	line-height: 1.28;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.category-card-title:hover {
	color: var(--site-green);
}

.category-card-desc {
	display: -webkit-box;
	min-height: 44px;
	margin: 0;
	overflow: hidden;
	color: #a4a4aa;
	font-size: 14px;
	line-height: 1.58;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.category-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-width: 0;
	padding-top: 7px;
	color: #b6b6bb;
	font-size: 12px;
	font-weight: 800;
}

.category-author,
.category-date {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
}

.category-author {
	max-width: 58%;
	overflow: hidden;
	color: #f0f0f0;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.category-author em {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--site-green);
	color: #fff;
	font-size: 10px;
	font-style: normal;
	font-weight: 900;
	line-height: 1;
}

.category-date {
	flex: 0 0 auto;
	color: #9b9b9f;
}

.category-date i {
	color: #9b9b9f;
	font-size: 13px;
}

.pagination {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	max-width: 100%;
	margin: 42px 0 0;
	padding: 0;
	list-style: none;
}

.pagination li {
	margin: 0;
	padding: 0;
}

.pagination > li > a,
.pagination > li > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 40px;
	border: 1px solid #252525;
	border-radius: 7px;
	background: #111;
	color: #d9d9d9;
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.pagination > li > a:hover,
.pagination li.active span,
.pagination li.active a {
	border-color: var(--site-green);
	background: var(--site-green);
	color: #fff;
}

.pagination li.disabled span {
	border-color: #1b1b1b;
	background: #0d0d0d;
	color: #343434;
}

.article-detail {
	min-width: 0;
	color: var(--site-text);
}

.single-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 520px;
	background-color: var(--site-bg);
	background-position: center;
	background-size: cover;
}

.single-hero.no-cover {
	min-height: auto;
	padding-top: 64px;
	background: var(--site-bg);
}

.single-hero-inner,
.single-wrap {
	width: min(100% - 40px, 880px);
	margin-right: auto;
	margin-left: auto;
}

.single-hero-inner {
	position: relative;
	z-index: 2;
	padding: 0 0 54px;
}

.single-hero.no-cover .single-hero-inner {
	padding-bottom: 44px;
}

.single-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	color: #9b9b9f;
	font-size: 14px;
	font-weight: 700;
}

.single-back:hover,
.single-category:hover {
	color: var(--site-green);
}

.single-category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 28px;
	margin-bottom: 20px;
	padding: 0 12px;
	border-radius: 4px;
	background: var(--site-green);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.single-title {
	max-width: 760px;
	margin: 0;
	color: #f5f5f5;
	font-size: clamp(36px, 4vw, 58px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -0.06em;
}

.single-excerpt {
	max-width: 860px;
	margin: 22px 0 0;
	color: #c6c6cb;
	font-size: 17px;
	line-height: 1.7;
}

.single-meta {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 26px;
	padding-bottom: 28px;
	border-bottom: 1px solid #202020;
	color: #b7b7bd;
	font-size: 13px;
	font-weight: 700;
}

.single-meta > span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.single-author-avatar {
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(86, 197, 47, 0.18);
	color: var(--site-green);
	font-size: 15px;
	font-weight: 900;
}

.single-author {
	align-items: flex-start !important;
	flex-direction: column;
	gap: 2px !important;
	color: #f1f1f1;
}

.single-author strong {
	font-size: 14px;
	line-height: 1.1;
}

.single-author em {
	color: #9b9b9f;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.1;
}

.single-card {
	padding: 52px 0 0;
	background: transparent;
}

.single-main {
	min-width: 0;
}

.single-article {
	color: #c9c9ce;
	font-size: 16px;
	line-height: 1.9;
}

.single-article > *:first-child {
	margin-top: 0;
}

.single-article p {
	margin: 0 0 24px;
}

.single-article h2,
.single-article h3,
.single-article h4 {
	margin: 34px 0 14px;
	color: #f5f5f5;
	font-weight: 900;
	line-height: 1.35;
}

.single-article h2 {
	font-size: 24px;
}

.single-article h3 {
	font-size: 20px;
}

.single-article a {
	color: var(--site-green);
}

.single-article img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

.single-related {
	margin: 64px 0 76px;
	padding-top: 34px;
	border-top: 1px solid #202020;
}

.single-related-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 20px;
}

.single-related-head h2 {
	margin: 0;
	color: #f5f5f5;
	font-size: 26px;
	font-weight: 900;
	letter-spacing: -0.03em;
}

.single-related-head a {
	color: var(--site-green);
	font-size: 14px;
	font-weight: 900;
}

.single-related-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.single-related-card {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	overflow: hidden;
	border: 1px solid #242424;
	border-radius: 12px;
	background: #111;
	transition: border-color 0.18s ease, transform 0.18s ease;
}

.single-related-card:hover {
	border-color: rgba(86, 197, 47, 0.5);
	transform: translateY(-1px);
}

.single-related-thumb {
	display: block;
	min-height: 132px;
	overflow: hidden;
	background: #151515;
}

.single-related-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-related-body {
	display: grid;
	align-content: center;
	gap: 8px;
	min-width: 0;
	padding: 14px;
}

.single-related-title {
	display: -webkit-box;
	overflow: hidden;
	color: #f4f4f4;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.35;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.single-related-title:hover {
	color: var(--site-green);
}

.single-related-body p {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: #9b9b9f;
	font-size: 13px;
	line-height: 1.5;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.single-related-body span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #9b9b9f;
	font-size: 12px;
	font-weight: 800;
}

.schedule-page {
	display: grid;
	gap: 24px;
	min-width: 0;
	padding: 48px 0 64px;
	color: var(--site-text);
}

.schedule-page-title {
	margin: 0;
	color: #f4f4f4;
	font-size: clamp(26px, 2.2vw, 34px);
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.schedule-toolbar,
.ranking-topbar,
.ranking-card,
.schedule-result-card {
	border: 1px solid #222;
	border-radius: 14px;
	background: #111;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.schedule-toolbar,
.ranking-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 18px;
}

.schedule-toolbar-actions {
	position: relative;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 0;
}

.schedule-date-tabs,
.schedule-type-tabs {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.schedule-type-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	padding: 0 18px;
	border: 1px solid #242424;
	border-radius: 8px;
	background: #1c1c1c;
	color: #e9e9e9;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.schedule-type-tab:hover,
.schedule-type-tab.active {
	border-color: rgba(86, 197, 47, 0.58);
	background: #202020;
	color: var(--site-green);
}

.schedule-page .match-lists,
.ranking-table-wrap {
	min-width: 0;
}

.schedule-result-card {
	overflow: hidden;
}

.schedule-result-card + .schedule-result-card {
	margin-top: 18px;
}

.schedule-date-group + .schedule-date-group {
	margin-top: 32px;
}

.schedule-date-title {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
	color: #f4f4f4;
	font-size: 20px;
	font-weight: 900;
}

.schedule-date-title::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: #222;
}

.schedule-date-title span {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	height: 36px;
	padding: 0 14px;
	border: 1px solid rgba(86, 197, 47, 0.22);
	border-radius: 8px;
	background: rgba(86, 197, 47, 0.08);
	color: var(--site-green);
	font-size: 15px;
}

.schedule-match-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.schedule-match-card {
	display: grid;
	grid-template-columns: 34% minmax(0, 1fr);
	min-height: 228px;
	overflow: hidden;
	border: 1px solid #242424;
	border-radius: 16px;
	background: #0f0f0f;
	color: #f2f2f2;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.schedule-match-card:hover,
.schedule-match-card:focus-visible {
	border-color: rgba(86, 197, 47, 0.56);
	box-shadow: 0 0 0 1px rgba(86, 197, 47, 0.24), 0 18px 36px rgba(0, 0, 0, 0.34);
	transform: translateY(-1px);
}

.schedule-match-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	padding: 26px;
	background: radial-gradient(circle at 45% 50%, rgba(255, 255, 255, 0.06), transparent 36%), linear-gradient(90deg, #141414 0%, #0c0c0c 100%);
}

.schedule-match-card__media img {
	max-width: 150px;
	max-height: 82px;
	object-fit: contain;
}

.schedule-match-card__media span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 78px;
	border-radius: 50%;
	background: rgba(86, 197, 47, 0.1);
	color: var(--site-green);
	font-size: 26px;
	font-weight: 900;
}

.schedule-match-card__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 24px 24px 22px;
}

.schedule-match-card__league {
	align-self: center;
	max-width: 100%;
	margin-bottom: 18px;
	padding: 7px 14px;
	overflow: hidden;
	border: 1px solid #272727;
	border-radius: 8px;
	color: #aeb1b8;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.schedule-match-card__teams {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	width: 100%;
}

.schedule-match-card__team {
	display: grid;
	justify-items: center;
	gap: 8px;
	min-width: 0;
	text-align: center;
}

.schedule-match-card__team img {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.08);
}

.schedule-match-card__team strong {
	max-width: 100%;
	overflow: hidden;
	color: #f4f4f4;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.schedule-match-card__vs {
	justify-self: center;
	color: #595b62;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.schedule-match-card__vs.is-score {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: 46px;
	color: var(--site-green);
	font-size: 16px;
	letter-spacing: 0;
}

.schedule-result-head,
.schedule-result-row {
	display: grid;
	grid-template-columns: 132px minmax(150px, 1fr) 92px minmax(150px, 1fr) 88px 88px 88px 88px;
	align-items: center;
	gap: 12px;
	min-width: 980px;
}

.schedule-result-head {
	padding: 18px;
	background: #171717;
	color: #f1f1f1;
	font-size: 20px;
	font-weight: 900;
}

.schedule-result-head strong {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.schedule-result-head-stat {
	justify-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	color: #a8a8ad;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.schedule-result-head-stat.corner {
	position: relative;
	width: 18px;
	min-width: 18px;
	background: linear-gradient(#d7d7d7, #d7d7d7) left 2px top 2px / 2px 18px no-repeat;
}

.schedule-result-head-stat.corner::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 4px;
	width: 13px;
	height: 11px;
	background: var(--site-green);
	clip-path: polygon(0 0, 100% 18%, 0 100%);
}

.schedule-result-head-stat.yellow,
.schedule-result-head-stat.red {
	width: 14px;
	min-width: 14px;
	height: 18px;
	border-radius: 4px;
}

.schedule-result-head-stat.yellow {
	background: #f6d84a;
}

.schedule-result-head-stat.red {
	background: #ef4444;
}

.schedule-result-body {
	overflow-x: auto;
	scrollbar-width: thin;
}

.schedule-result-row {
	min-height: 74px;
	padding: 14px 18px;
	border-top: 1px solid #222;
	color: #d9d9d9;
}

.schedule-result-row:hover {
	background: #151515;
}

.schedule-result-row time {
	justify-self: start;
	min-width: 100px;
	padding: 8px 12px;
	border: 1px solid rgba(86, 197, 47, 0.24);
	border-radius: 999px;
	background: rgba(86, 197, 47, 0.12);
	color: var(--site-green);
	font-size: 13px;
	font-weight: 800;
	text-align: center;
}

.schedule-result-team {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	color: #f0f0f0;
	font-size: 14px;
	font-weight: 800;
}

.schedule-result-team.home {
	justify-content: flex-end;
}

.schedule-result-team.away {
	justify-content: flex-start;
}

.schedule-result-team span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.schedule-result-team img {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.08);
}

.schedule-result-score {
	justify-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-width: 72px;
	padding: 8px 12px;
	border-radius: 6px;
	background: var(--site-green);
	color: #081008;
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
}

.schedule-result-score b {
	min-width: 16px;
	text-align: center;
}

.schedule-result-score.upcoming {
	background: #242424;
	color: #e8e8e8;
}

.schedule-result-score strong {
	font-size: 15px;
	line-height: 1;
}

.schedule-result-pill {
	justify-self: center;
	min-width: 68px;
	padding: 7px 10px;
	border-radius: 999px;
	background: #202020;
	color: #d9d9d9;
	font-size: 13px;
	font-weight: 800;
	text-align: center;
}

.schedule-result-pill.accent {
	color: var(--site-green);
}

.schedule-result-pill.yellow {
	color: #f6d84a;
}

.schedule-result-pill.red {
	color: #ef4444;
}

.schedule-empty-data,
.empty_data {
	padding: 32px 20px;
	border-radius: 12px;
	color: #9ea0a7;
	font-weight: 800;
	text-align: center;
}

.ranking-page {
	gap: 20px;
}

.ranking-topbar {
	position: relative;
	z-index: 8;
}

.ranking-title-block {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.ranking-title-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(86, 197, 47, 0.22);
	border-radius: 10px;
	background: rgba(86, 197, 47, 0.08);
	font-size: 24px;
}

.ranking-title-block h1 {
	margin: 0;
	color: #f4f4f4;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.1;
}

.ranking-current-league {
	margin: 6px 0 0;
	color: #9b9b9f;
	font-size: 14px;
	font-weight: 800;
}

.ranking-card {
	overflow: hidden;
}

.ranking-table-wrap {
	overflow-x: auto;
	padding: 18px;
}

.ranking-table {
	width: 100%;
	min-width: 980px;
	border-collapse: collapse;
	color: #f0f0f0;
	font-size: 13px;
}

.ranking-table th {
	padding: 14px 12px;
	background: #171717;
	color: #a8a8ad;
	font-size: 12px;
	font-weight: 900;
	text-align: center;
	white-space: nowrap;
}

.ranking-table td {
	padding: 13px 12px;
	border-bottom: 1px solid #222;
	text-align: center;
	white-space: nowrap;
}

.ranking-table tbody tr:hover {
	background: #151515;
}

.ranking-group-row td {
	background: #171717;
	color: #f0f0f0;
	font-weight: 900;
	text-align: left;
}

.ranking-pos span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #2a2a2a;
	color: #d7d7d7;
	font-weight: 900;
}

.ranking-row-1 .ranking-pos span,
.ranking-row-2 .ranking-pos span,
.ranking-row-3 .ranking-pos span {
	background: var(--site-green);
	color: #081008;
}

.ranking-team a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #f0f0f0;
}

.ranking-team img {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.08);
}

.ranking-team strong {
	font-weight: 800;
}

.ranking-goal-diff.plus,
.ranking-points {
	color: var(--site-green);
	font-weight: 900;
}

.ranking-goal-diff.minus {
	color: #ef4444;
}

.ranking-form {
	white-space: nowrap;
}

.ranking-form-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	margin: 0 2px;
	border-radius: 50%;
	color: #fff;
	font-size: 11px;
	font-weight: 900;
}

.ranking-form-badge.win {
	background: #16a34a;
}

.ranking-form-badge.draw {
	background: #94a3b8;
}

.ranking-form-badge.loss {
	background: #ef4444;
}

.ranking-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	min-width: 980px;
	margin-top: 16px;
	color: #9b9b9f;
	font-size: 12px;
	font-weight: 700;
}

.ranking-legend-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.ranking-legend-item span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.schedule-league-panel {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-width: 0;
}

.schedule-league-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 178px;
	height: 42px;
	padding: 0 15px;
	border: 1px solid #2a2a2a;
	border-radius: 8px;
	background: #1c1c1c;
	color: #f0f0f0;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
}

.schedule-league-toggle svg {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: var(--site-green);
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.schedule-league-toggle span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.schedule-league-toggle i {
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 0.18s ease;
}

.schedule-league-panel.is-open .schedule-league-toggle {
	border-color: rgba(86, 197, 47, 0.58);
	color: var(--site-green);
}

.schedule-league-panel.is-open .schedule-league-toggle i {
	transform: rotate(-135deg) translate(-2px, -1px);
}

.schedule-league-tabs {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 30;
	display: none;
	width: 100%;
	min-width: 100%;
	max-width: min(360px, calc(100vw - 40px));
	max-height: 320px;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 8px;
	border: 1px solid #242424;
	border-radius: 10px;
	background: #111;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.schedule-league-panel.is-open .schedule-league-tabs {
	display: grid;
	gap: 6px;
}

.schedule-league-tab {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	min-height: 36px;
	padding: 0 12px;
	border: 0;
	border-radius: 7px;
	background: transparent;
	color: #d7d7d7;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-align: left;
	white-space: normal;
	cursor: pointer;
}

.schedule-league-tab.active {
	background: rgba(86, 197, 47, 0.12);
	color: var(--site-green);
}

.schedule-league-tab:focus-visible,
.schedule-league-toggle:focus-visible {
	outline: 2px solid var(--site-green);
	outline-offset: 2px;
}

.schedule-empty-leagues {
	padding: 10px 12px;
	color: #9b9b9f;
	font-size: 14px;
	font-weight: 800;
	white-space: nowrap;
}

.matchinfo-page {
	box-sizing: border-box;
	width: min(100%, 1120px);
	margin: 0 auto;
	padding: 22px 0 58px;
	color: #d9d9dd;
}

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

.matchinfo-page .score-card {
	position: relative;
	min-height: 154px;
	overflow: hidden;
	border: 1px solid #202020;
	border-radius: 8px;
	background: radial-gradient(circle at 50% 20%, rgba(86, 197, 47, 0.08), transparent 34%), #111;
	color: #f6f6f6;
}

.matchinfo-page .score-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0.16));
	pointer-events: none;
}

.matchinfo-page .score-card > * {
	position: relative;
	z-index: 1;
}

.matchinfo-page .back-button {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 1px solid #262626;
	border-radius: 999px;
	background: #151515;
	color: #8e8e95;
	cursor: pointer;
	transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.matchinfo-page .back-button:hover,
.matchinfo-page .back-button:focus-visible {
	border-color: rgba(86, 197, 47, 0.5);
	background: rgba(86, 197, 47, 0.1);
	color: var(--site-green);
}

.matchinfo-page .summary {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 154px;
	padding: 24px 52px 22px;
}

.matchinfo-page .meta {
	order: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-top: 10px;
	color: #9b9b9f;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
}

.matchinfo-page .meta span,
.matchinfo-page .match-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-height: 18px;
	padding: 0;
	color: #a9abb1;
}

.matchinfo-page .match-meta-item strong {
	color: var(--site-green);
	font-weight: 900;
}

.matchinfo-page .score-row {
	order: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
	align-items: center;
	gap: 26px;
	width: 100%;
}

.matchinfo-page .team {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
	text-align: center;
}

.matchinfo-page .home-team {
	justify-self: end;
}

.matchinfo-page .away-team {
	justify-self: start;
}

.matchinfo-page .away-team .team-logo {
	order: -1;
}

.matchinfo-page .team-logo {
	width: 62px;
	height: 62px;
	object-fit: contain;
	filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.matchinfo-page .team-name {
	max-width: 220px;
	margin: 0;
	overflow: hidden;
	color: #f2f2f2;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.matchinfo-page .score-center {
	grid-column: 2;
	grid-row: 1;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-width: 0;
	text-align: center;
}

.matchinfo-page .score-center.live-score,
.matchinfo-page .score-center.vs {
	display: flex !important;
}

.matchinfo-page .score-center.live-score[style*="display: none"],
.matchinfo-page .score-center.vs[style*="display: none"] {
	display: none !important;
}

.matchinfo-page .score-text {
	margin: 0;
	color: var(--site-green);
	font-size: 42px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.05em;
}

.matchinfo-page .score-center.vs .team-name {
	max-width: none;
	color: var(--site-green);
	font-size: 24px;
	letter-spacing: 0.08em;
}

.matchinfo-page .status-wrap {
	margin-top: 8px;
}

.matchinfo-page .status-text {
	margin: 0;
	color: #ff3b45;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.1;
}

.matchinfo-page .live-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 18px;
	align-items: start;
	margin-top: 18px;
}

.matchinfo-page .player-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: visible;
	border: 0;
	background: transparent;
}

.matchinfo-page .stream-tabs {
	order: 2;
	margin-top: 10px;
	padding: 0;
	border: 0;
	background: transparent;
}

.matchinfo-page .stream-buttons {
	display: flex;
	align-items: center;
	gap: 6px;
	overflow-x: auto;
	padding-bottom: 2px;
	scrollbar-width: none;
}

.matchinfo-page .stream-buttons::-webkit-scrollbar,
.matchinfo-page .tabs::-webkit-scrollbar {
	display: none;
}

.matchinfo-page .stream-button {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	height: 24px;
	padding: 0 10px;
	border: 1px solid #242424;
	border-radius: 999px;
	background: #151515;
	color: #cfd0d4;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	white-space: nowrap;
	transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.matchinfo-page .stream-button span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #5f6268;
}

.matchinfo-page .stream-button.is-active {
	border-color: var(--site-green);
	background: var(--site-green);
	color: #061006;
}

.matchinfo-page .stream-button.is-active span {
	background: #061006;
}

.matchinfo-page .player {
	position: relative;
	order: 1;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 1px solid #1d1d1d;
	border-radius: 8px;
	background: #0d0d0d;
}

.matchinfo-page.player-countdown-active .player {
	background: #101010;
}

.matchinfo-page .player iframe,
.matchinfo-page .player video {
	display: block;
	width: 100%;
	height: 100%;
}

.matchinfo-page .player .empty_data {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 12px;
	padding: 20px;
	border-radius: 0;
	color: #bfc1c7;
	font-size: 14px;
	font-weight: 800;
	text-align: center;
}

.matchinfo-page.player-countdown-active .match-countdown {
	overflow: hidden;
	background: linear-gradient(135deg, #171717, #080808);
}

.matchinfo-page .match-countdown-poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.matchinfo-page.player-countdown-active .match-countdown::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.72));
}

.matchinfo-page .match-countdown span,
.matchinfo-page .match-countdown-time {
	position: relative;
	z-index: 2;
}

.matchinfo-page .match-countdown span {
	font-size: 16px;
	font-weight: 900;
}

.matchinfo-page .match-countdown-time {
	color: var(--site-green);
	font-size: 38px;
	font-weight: 900;
	line-height: 1;
}

.matchinfo-page .host-bar {
	order: 3;
	display: flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
	margin-top: 8px;
	padding: 0;
	border: 0;
	background: transparent;
}

.matchinfo-page .host-avatar {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--site-green);
	color: #071007;
	font-size: 12px;
	font-weight: 900;
}

.matchinfo-page .host-info {
	display: flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
}

.matchinfo-page .host-info strong,
.matchinfo-page .host-info span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.matchinfo-page .host-info strong {
	max-width: 140px;
	color: #f0f0f0;
	font-size: 12px;
	font-weight: 900;
}

.matchinfo-page .host-info span {
	max-width: 220px;
	color: #9b9b9f;
	font-size: 11px;
	font-weight: 700;
}

.matchinfo-page .chat-wrapper {
	min-width: 0;
}

.matchinfo-page .main-chat {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 360px;
	overflow: hidden;
	border: 1px solid #202020;
	border-radius: 8px;
	background: #111;
}

.matchinfo-page .chat-title {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	height: 40px;
	padding: 0 14px;
	border-bottom: 1px solid #202020;
	color: #f0f0f0;
	font-size: 13px;
	font-weight: 900;
}

.matchinfo-page #messages {
	flex: 1 1 auto;
	min-height: 0;
	margin: 0;
	padding: 12px;
	overflow-x: hidden;
	overflow-y: auto;
	background: #101010;
	list-style: none;
	scrollbar-width: thin;
}

.matchinfo-page #messages li {
	margin: 0 0 10px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #d9d9dd;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
}

.matchinfo-page #messages .message-container,
.matchinfo-page #messages .comment {
	max-width: 100%;
	min-width: 0;
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.matchinfo-page .nickname {
	color: #f6d84a;
	font-weight: 900;
}

.matchinfo-page .nickname.other {
	color: #38bdf8;
}

.matchinfo-page #comment {
	flex: 0 0 auto;
	display: flex;
	gap: 7px;
	margin: 0;
	padding: 8px;
	border-top: 1px solid #202020;
	background: #111;
}

.matchinfo-page #messageText {
	flex: 1 1 auto;
	min-width: 0;
	min-height: 32px;
	max-height: 76px;
	padding: 7px 10px;
	border: 1px solid #242424;
	border-radius: 5px;
	outline: 0;
	resize: none;
	background: #191919;
	color: #e6e6e9;
	font-size: 12px;
	font-weight: 700;
}

.matchinfo-page #messageText::placeholder {
	color: #696b71;
	opacity: 1;
}

.matchinfo-page #sendChatMessage {
	flex: 0 0 auto;
	min-width: 42px;
	padding: 0 10px;
	border: 0;
	border-radius: 5px;
	background: var(--site-green);
	color: #061006;
	font-size: 12px;
	font-weight: 900;
	cursor: pointer;
}

.matchinfo-page .content-grid {
	margin-top: 22px;
}

.matchinfo-page .detail-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid #202020;
	border-radius: 8px;
	background: #111;
	color: #d9d9dd;
}

.matchinfo-page .tabs {
	display: flex;
	align-items: center;
	gap: 8px;
	overflow-x: auto;
	min-height: 42px;
	padding: 6px 10px;
	border-bottom: 1px solid #202020;
	background: #111;
	scrollbar-width: none;
}

.matchinfo-page .tabs span {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 28px;
	padding: 0 12px;
	border: 1px solid transparent;
	border-radius: 4px;
	color: #a4a4aa;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	white-space: nowrap;
	transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.matchinfo-page .tabs span:hover,
.matchinfo-page .tabs span.active {
	border-color: var(--site-green);
	background: rgba(86, 197, 47, 0.1);
	color: var(--site-green);
}

.matchinfo-page .article {
	padding: 18px;
}

.matchinfo-page .tab-panel {
	display: none;
}

.matchinfo-page .tab-panel.active {
	display: block;
}

.matchinfo-page .panel-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	min-height: 150px;
	padding: 20px;
	border: 1px dashed #2a2a2a;
	border-radius: 8px;
	background: #101010;
	color: #8f9299;
	font-size: 13px;
	font-weight: 800;
	text-align: center;
}

.matchinfo-page .panel-empty i {
	color: var(--site-green);
	font-size: 22px;
}

.matchinfo-page .stats-list,
.matchinfo-page .panel-list {
	display: grid;
	gap: 12px;
}

.matchinfo-page .stat-row,
.matchinfo-page .panel-row,
.matchinfo-page .lineup-side,
.matchinfo-page .standings-block {
	border: 1px solid #202020;
	border-radius: 8px;
	background: #101010;
}

.matchinfo-page .stat-row {
	padding: 13px 18px;
}

.matchinfo-page .stat-values {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr) 76px;
	align-items: center;
	gap: 10px;
	margin-bottom: 9px;
	color: #a4a4aa;
	font-size: 12px;
	font-weight: 900;
}

.matchinfo-page .stat-values span {
	overflow: hidden;
	color: #e6e6e9;
	font-weight: 900;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.matchinfo-page .stat-values strong:first-child {
	color: var(--site-green);
	text-align: left;
}

.matchinfo-page .stat-values strong:last-child {
	color: #f59e0b;
	text-align: right;
}

.matchinfo-page .stat-bar {
	display: flex;
	height: 6px;
	overflow: hidden;
	border-radius: 999px;
	background: #222;
}

.matchinfo-page .stat-bar i,
.matchinfo-page .stat-bar b {
	display: block;
	height: 100%;
}

.matchinfo-page .stat-bar i {
	background: var(--site-green);
}

.matchinfo-page .stat-bar b {
	background: #f59e0b;
}

.matchinfo-page .panel-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 12px;
}

.matchinfo-page .panel-row > span {
	flex: 1 1 180px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 0;
	color: #d9d9dd;
	font-size: 13px;
	font-weight: 700;
}

.matchinfo-page .panel-row > span strong {
	color: #8f9299;
	font-size: 12px;
	font-weight: 900;
}

.matchinfo-page .lineup-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.matchinfo-page .lineup-side,
.matchinfo-page .standings-block {
	padding: 14px;
}

.matchinfo-page .lineup-side h4,
.matchinfo-page .standings-block h4 {
	margin: 0 0 12px;
	color: #f0f0f0;
	font-size: 15px;
	font-weight: 900;
}

.matchinfo-page .lineup-group + .lineup-group {
	margin-top: 14px;
}

.matchinfo-page .lineup-group-title {
	margin-bottom: 8px;
	color: #8f9299;
	font-size: 12px;
	font-weight: 900;
}

.matchinfo-page .lineup-list {
	display: grid;
	gap: 8px;
}

.matchinfo-page .lineup-player {
	display: grid;
	grid-template-columns: 34px 38px minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	padding: 8px;
	border-radius: 7px;
	background: #161616;
	color: #d9d9dd;
	font-size: 13px;
}

.matchinfo-page .lineup-avatar,
.matchinfo-page .history-logo {
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.matchinfo-page .lineup-player strong {
	color: var(--site-green);
}

.matchinfo-page .lineup-player span {
	min-width: 0;
	overflow: hidden;
	color: #f0f0f0;
	font-weight: 900;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.matchinfo-page .lineup-player small {
	margin-left: 6px;
	color: var(--site-green);
}

.matchinfo-page .lineup-player em {
	color: #8f9299;
	font-size: 12px;
	font-style: normal;
}

.matchinfo-page .standings-block + .standings-block {
	margin-top: 16px;
}

.matchinfo-page .standings-table,
.matchinfo-page .history-list {
	overflow-x: auto;
	scrollbar-width: thin;
}

.matchinfo-page .standings-head,
.matchinfo-page .standings-row {
	display: grid;
	grid-template-columns: 44px minmax(140px, 1fr) repeat(7, 64px);
	align-items: center;
	min-width: 720px;
	gap: 8px;
}

.matchinfo-page .standings-head,
.matchinfo-page .history-head {
	padding: 10px 12px;
	border-radius: 7px;
	background: #171717;
	color: #8f9299;
	font-size: 12px;
	font-weight: 900;
}

.matchinfo-page .standings-row {
	margin-top: 8px;
	padding: 10px 12px;
	border-radius: 7px;
	background: #161616;
	color: #d9d9dd;
	font-size: 13px;
}

.matchinfo-page .standings-row strong {
	overflow: hidden;
	color: #f0f0f0;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.matchinfo-page .standings-row b,
.matchinfo-page .history-card b {
	color: var(--site-green);
}

.matchinfo-page .history-head,
.matchinfo-page .history-card {
	display: grid;
	grid-template-columns: 150px minmax(150px, 1fr) minmax(150px, 1fr) repeat(3, 70px);
	align-items: center;
	min-width: 760px;
	gap: 10px;
}

.matchinfo-page .history-card {
	margin-top: 8px;
	padding: 10px 12px;
	border: 1px solid #202020;
	border-radius: 7px;
	background: #161616;
	color: #d9d9dd;
	font-size: 13px;
}

.matchinfo-page .history-card time {
	color: #8f9299;
}

.matchinfo-page .history-team {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.matchinfo-page .history-team strong {
	min-width: 0;
	overflow: hidden;
	color: #f0f0f0;
	text-overflow: ellipsis;
	white-space: nowrap;
}
