/* ===================== Live Cricket Score — Full Page ===================== */
.lcs-page { background: #f4f5f7; }

.lcs-page__hero {
	background: linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 55%, #c1121f 130%);
	color: #fff;
	padding: 56px 20px 64px;
	text-align: center;
	/* Break out of the theme's centered .sbn-container (opened in header.php)
	   so the hero spans the full viewport width regardless of page layout. */
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
.lcs-page__hero-inner { max-width: 720px; margin: 0 auto; }
.lcs-page__hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 999px;
	padding: 6px 16px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.lcs-page__pulse {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: #ff4d4d;
	display: inline-block;
	animation: lcs-page-pulse 1.4s infinite;
}
@keyframes lcs-page-pulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,77,77,.6); }
	50% { opacity: .4; box-shadow: 0 0 0 6px rgba(255,77,77,0); }
}
.lcs-page__title {
	margin: 0 0 12px;
	font-size: clamp(28px, 5vw, 44px);
	font-weight: 800;
	letter-spacing: -0.02em;
}
.lcs-page__subtitle {
	margin: 0;
	font-size: 16px;
	color: rgba(255,255,255,.78);
	line-height: 1.6;
}
.lcs-page__updated {
	margin: 16px 0 0;
	font-size: 12px;
	color: rgba(255,255,255,.55);
	min-height: 16px;
}

.lcs-page__container {
	max-width: 1080px;
	margin: -32px auto 60px;
	padding: 0 20px;
}

.lcs-page__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	background: #fff;
	border-radius: 14px;
	padding: 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,.08);
	margin-bottom: 24px;
	position: relative;
	z-index: 2;
}
.lcs-page__tab {
	border: 0;
	background: transparent;
	padding: 10px 18px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .3px;
	color: #555;
	cursor: pointer;
	transition: background .15s ease, color .15s ease;
}
.lcs-page__tab:hover { background: #f4f4f6; color: #111; }
.lcs-page__tab.is-active { background: #c1121f; color: #fff; }

.lcs-page__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.lcs-page__loading,
.lcs-page__empty,
.lcs-page__error {
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 20px;
	color: #777;
	font-size: 14px;
	background: #fff;
	border-radius: 14px;
}
.lcs-page__spinner {
	display: inline-block;
	width: 26px; height: 26px;
	border: 3px solid #e5e5e5;
	border-top-color: #c1121f;
	border-radius: 50%;
	margin-bottom: 12px;
	animation: lcs-page-spin .8s linear infinite;
}
@keyframes lcs-page-spin { to { transform: rotate(360deg); } }

/* Match card */
.lcs-card {
	background: #fff;
	border-radius: 14px;
	padding: 20px;
	box-shadow: 0 6px 20px rgba(0,0,0,.05);
	border: 1px solid #ececec;
	transition: transform .15s ease, box-shadow .15s ease;
}
.lcs-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.09); }

.lcs-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}
.lcs-card__name {
	font-size: 12px;
	color: #888;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 70%;
}
.lcs-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .6px;
	padding: 4px 10px;
	border-radius: 999px;
	white-space: nowrap;
}
.lcs-card__badge--live { background: #ffe6e6; color: #c1121f; }
.lcs-card__badge--live .lcs-card__badge-dot {
	width: 6px; height: 6px; border-radius: 50%; background: #c1121f;
	animation: lcs-page-pulse 1.4s infinite;
}
.lcs-card__badge--upcoming { background: #e8f0fe; color: #1a56c4; }
.lcs-card__badge--completed { background: #eee; color: #666; }

.lcs-card__team {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 8px 0;
}
.lcs-card__team-name {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
}
.lcs-card__team-logo {
	width: 26px; height: 26px;
	border-radius: 50%;
	object-fit: cover;
	background: #f0f0f0;
	flex-shrink: 0;
}
.lcs-card__team-score {
	font-size: 15px;
	font-weight: 800;
	color: #c1121f;
	white-space: nowrap;
}
.lcs-card__divider {
	border: 0;
	border-top: 1px dashed #eee;
	margin: 4px 0;
}
.lcs-card__status {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid #f1f1f1;
	font-size: 12.5px;
	color: #555;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.lcs-page__grid { grid-template-columns: 1fr; }
	.lcs-page__hero { padding: 44px 16px 56px; }
	.lcs-page__container { margin-top: -26px; }
	.lcs-page__tabs { overflow-x: auto; flex-wrap: nowrap; }
	.lcs-page__tab { flex: 0 0 auto; }
}
