/* Shared theme styles. */
:root {
	--content-width: 1320px;
	--space: 1.5rem;
	--header-background: #071010;
	--header-text: #f5f7f6;
	--header-muted: #aab1ae;
	--accent: #6dc900;
}

.ui-title {
	margin: 0;
	font-weight: 750;
	line-height: 1.3;
}

/* Modern footer with replaceable responsible-gambling logo slots. */
.site-footer {
	padding-block: 0;
	color: #aeb8b3;
	background:
		radial-gradient(circle at 10% 0%, rgba(109, 201, 0, 0.08), transparent 24%),
		linear-gradient(180deg, #0a1713 0%, #06100d 100%);
	border-top: 2px solid rgba(109, 201, 0, 0.2);
}

.site-footer__top {
	display: grid;
	grid-template-columns: minmax(280px, 0.95fr) minmax(440px, 1.4fr) minmax(320px, 1.05fr);
	gap: clamp(1.25rem, 2.5vw, 2.5rem);
	align-items: stretch;
	padding-block: 2.5rem 2rem;
}

.site-footer__logo {
	display: inline-flex;
	gap: 0.6rem;
	align-items: center;
	color: #fff;
	font-size: 1.15rem !important;
}

.site-footer__logo svg {
	width: 38px;
	height: 38px;
	color: var(--accent);
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-footer__brand > p {
	max-width: 330px;
	margin-top: 0.8rem;
	color: #84918b;
	font-size: 0.72rem;
	line-height: 1.65;
}

.site-footer__top .ui-title {
	margin: 0 0 0.75rem;
	color: #fff;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.site-footer__top ul {
	gap: 0.45rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer__top nav a {
	color: #9da9a3;
	font-size: 0.72rem;
	text-decoration: none;
	transition: color 150ms ease, transform 150ms ease;
}

.site-footer__top nav a:hover,
.site-footer__top nav a:focus-visible {
	color: var(--accent);
}

.site-footer__responsible {
	display: flex;
	height: 100%;
	gap: 0.9rem;
	align-items: center;
	padding: 1.15rem 1.25rem;
	background:
		linear-gradient(120deg, rgba(109, 201, 0, 0.055), transparent 55%),
		rgba(255, 255, 255, 0.028);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 10px;
}

.site-footer__responsible .ui-title {
	margin-bottom: 0.35rem;
	color: var(--accent);
}

.site-footer__responsible p {
	margin: 0;
	color: #9da8a2;
	font-size: 0.68rem;
	line-height: 1.55;
}

.site-footer__age {
	display: grid;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	place-items: center;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 850;
	border: 2px solid #e15252;
	border-radius: 50%;
}

.footer-certifications {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	justify-content: space-between;
	padding-block: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-certifications__copy > span {
	display: block;
	color: var(--accent);
	font-size: 0.56rem;
	font-weight: 850;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.footer-certifications__copy .ui-title {
	margin: 0.15rem 0 0;
	color: #fff;
	font-size: 0.92rem;
}

.footer-certifications__logos {
	display: flex;
	gap: 0.65rem;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.footer-certifications__logo {
	display: grid;
	width: 126px;
	height: 42px;
	padding: 0.35rem 0.55rem;
	overflow: hidden;
	box-sizing: border-box;
	place-items: center;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 7px;
	text-decoration: none;
	transition: background-color 150ms ease, border-color 150ms ease;
}

.footer-certifications__logo.is-square {
	width: 42px;
	padding: 0.3rem;
}

.footer-certifications__logo img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 28px;
	object-fit: contain;
}

.footer-certifications__logo.is-square img {
	max-height: 30px;
}

a.footer-certifications__logo:hover,
a.footer-certifications__logo:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(109, 201, 0, 0.45);
}

.site-footer__bottom {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	padding-block: 1rem 1.2rem;
}

.site-footer__bottom p {
	margin: 0;
	color: #6f7c75;
	font-size: 0.6rem;
	line-height: 1.5;
}

.site-footer__bottom p:last-child {
	max-width: 440px;
	text-align: right;
}

@media (max-width: 1080px) {
	.site-footer__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2rem;
	}

	.site-footer__responsible {
		grid-column: 1 / -1;
	}

	.site-footer .footer-navigation .footer-menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-certifications {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-certifications__logos {
		justify-content: flex-start;
	}
}

@media (max-width: 620px) {
	.site-footer__top {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		padding-block: 2rem 1.5rem;
	}

	.site-footer__responsible {
		grid-column: auto;
	}

	.site-footer .footer-navigation .footer-menu {
		grid-template-columns: 1fr;
	}

	.site-footer__top > * + * {
		padding-top: 1.25rem;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.footer-certifications__logos {
		display: flex;
		width: 100%;
	}

	.footer-certifications__logo {
		width: min(126px, calc(100% - 52px));
	}

	.footer-certifications__logo.is-square {
		width: 42px;
	}

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

	.site-footer__bottom p:last-child {
		text-align: left;
	}
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: system-ui, sans-serif;
	line-height: 1.6;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
}

.container {
	width: min(100% - 2rem, var(--content-width));
	margin-inline: auto;
}

.site-header__inner,
.section-header,
.layout-with-sidebar,
.prediction-grid,
.footer-widgets {
	display: flex;
	gap: var(--space);
}

.site-header__inner,
.section-header {
	align-items: center;
	justify-content: space-between;
}

.site-footer,
.site-main {
	padding-block: var(--space);
}

.site-header {
	position: relative;
	z-index: 20;
	min-height: 82px;
	padding-block: 0;
	color: var(--header-text);
	background: var(--header-background);
	border-bottom: 3px solid rgba(109, 201, 0, 0.18);
}

.site-header__inner {
	min-height: 79px;
}

.breadcrumbs {
	padding-block: 0.65rem;
	color: #727b76;
	background: #fff;
	border-bottom: 1px solid #e3e9e5;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	align-items: center;
	padding: 0;
	margin-block: 0;
	list-style: none;
	font-size: 0.78rem;
	line-height: 1.4;
}

.breadcrumbs li {
	display: flex;
	gap: 0.35rem;
	align-items: center;
}

.breadcrumbs li + li::before {
	color: #9ba49f;
	content: "›";
}

.breadcrumbs a {
	color: #3d9419;
	font-weight: 700;
	text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
	color: #276e09;
	text-decoration: underline;
}

.site-branding {
	flex: 0 0 auto;
}

.site-logo,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	color: var(--header-text);
	text-decoration: none;
}

.site-logo {
	gap: 0.55rem;
}

.site-logo__mark {
	width: 38px;
	height: 38px;
	color: var(--accent);
}

.site-logo__name {
	font-size: 1.25rem;
	font-weight: 750;
	line-height: 1;
	letter-spacing: -0.035em;
}

.site-logo__name strong {
	color: var(--accent);
}

.site-logo__name small {
	color: var(--header-muted);
	font-size: 0.6em;
	font-weight: 600;
	letter-spacing: 0;
}

.custom-logo {
	width: auto;
	max-height: 44px;
}

.hero-banner {
	position: relative;
	min-height: 520px;
	color: #fff;
	background:
		radial-gradient(circle at 78% 24%, rgba(77, 174, 29, 0.14), transparent 29%),
		radial-gradient(circle at 7% 92%, rgba(109, 201, 0, 0.1), transparent 28%),
		linear-gradient(112deg, #061310 0%, #0a1f17 56%, #071711 100%);
	overflow: hidden;
}

.hero-banner::before {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
	opacity: 0.25;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(90deg, #000, transparent 48%, #000);
}

.hero-banner__field {
	position: absolute;
	top: 50%;
	right: -5%;
	width: min(58vw, 820px);
	aspect-ratio: 1.65 / 1;
	overflow: hidden;
	pointer-events: none;
	border: 1px solid rgba(109, 201, 0, 0.12);
	border-radius: 12px;
	transform: translateY(-50%) rotate(-4deg);
}

.hero-banner__field::before,
.hero-banner__field-line,
.hero-banner__field-circle,
.hero-banner__field-box {
	position: absolute;
	content: "";
}

.hero-banner__field::before {
	inset: 0;
	background: linear-gradient(90deg, rgba(109, 201, 0, 0.025) 50%, transparent 50%);
	background-size: 18% 100%;
}

.hero-banner__field-line {
	top: 0;
	bottom: 0;
	left: 50%;
	border-left: 1px solid rgba(109, 201, 0, 0.13);
}

.hero-banner__field-circle {
	top: 50%;
	left: 50%;
	width: 24%;
	aspect-ratio: 1;
	border: 1px solid rgba(109, 201, 0, 0.14);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.hero-banner__field-circle::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 5px;
	height: 5px;
	content: "";
	background: rgba(109, 201, 0, 0.22);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.hero-banner__field-box {
	top: 23%;
	right: -1px;
	bottom: 23%;
	width: 19%;
	border: 1px solid rgba(109, 201, 0, 0.14);
	border-right: 0;
}

.hero-banner__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.78fr);
	gap: clamp(2rem, 5vw, 5.5rem);
	align-items: center;
	min-height: inherit;
	padding-block: 2.75rem;
}

.hero-banner__content {
	min-width: 0;
}

.hero-banner__title {
	max-width: 590px;
	margin: 0 0 1rem;
	font-size: clamp(2rem, 3vw, 3.15rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.hero-banner__title span {
	display: inline;
	color: var(--accent);
}

.hero-banner__content p {
	max-width: 620px;
	margin: 0 0 0.65rem;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(0.76rem, 0.9vw, 0.9rem);
	line-height: 1.55;
}

.hero-banner__content p:last-child {
	margin-bottom: 0;
}

.hero-benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	max-width: 700px;
	margin-top: 1.7rem;
	padding-top: 1.3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-benefit {
	display: flex;
	gap: 0.65rem;
	align-items: center;
	min-width: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.67rem;
	font-weight: 650;
	line-height: 1.35;
}

.hero-benefit svg {
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	color: var(--accent);
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hero-prediction {
	width: 100%;
	padding: clamp(1.25rem, 2vw, 1.75rem);
	color: #151b18;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 10px;
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(8px);
}

.hero-prediction__label {
	display: flex;
	gap: 0.55rem;
	align-items: center;
	margin-bottom: 0.75rem;
	color: #3a9f0b;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.045em;
	text-transform: uppercase;
}

.hero-prediction__label-icon {
	display: grid;
	width: 25px;
	height: 25px;
	place-items: center;
	color: #fff;
	font-size: 0.72rem;
	background: #48ab15;
	border-radius: 50%;
}

.hero-prediction__title {
	margin: 0 0 0.45rem;
	font-size: clamp(1.4rem, 1.9vw, 1.75rem);
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.hero-prediction__competition {
	display: flex;
	gap: 0.45rem;
	align-items: center;
	padding-bottom: 1rem;
	color: #5f6763;
	font-size: 0.86rem;
	border-bottom: 1px solid #e4e9e6;
}

.prediction-card__competition,
.entry-taxonomies {
	display: flex;
	gap: 0.45rem;
	align-items: center;
}

.prediction-country-flag {
	display: inline-block;
	width: 25px;
	height: 17px;
	flex: 0 0 25px;
	object-fit: cover;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 2px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.hero-prediction__facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.8rem;
	padding-block: 1.05rem;
	border-bottom: 1px solid #e4e9e6;
}

.hero-prediction__fact {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	min-width: 0;
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.25;
}

.hero-prediction__fact svg {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	color: #50b51b;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hero-prediction__fact small {
	display: block;
	margin-bottom: 0.15rem;
	color: #89908c;
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hero-prediction__summary {
	margin-top: 1rem;
	color: #505854;
	font-size: 0.84rem;
	line-height: 1.55;
}

.hero-prediction__link {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: flex-end;
	margin-top: 1rem;
	color: #3c9f11;
	font-size: 0.8rem;
	font-weight: 800;
	text-decoration: none;
}

.hero-prediction__link:hover,
.hero-prediction__link:focus-visible {
	color: #277a04;
}

.prediction-page {
	padding-top: 0;
}

.prediction-page-hero {
	overflow: hidden;
	background: linear-gradient(105deg, #fff 0%, #f6f8f7 58%, #eef2ef 100%);
	border-bottom: 1px solid #e0e6e2;
}

.prediction-page-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
	min-height: 320px;
}

.prediction-page-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	padding: clamp(2rem, 4vw, 3.5rem) 3rem clamp(2rem, 4vw, 3.5rem) 0;
	justify-content: center;
	flex-direction: column;
}

.prediction-page-hero__title {
	max-width: 760px;
	margin: 0;
	color: #141a16;
	font-size: clamp(2rem, 3.1vw, 3.05rem);
	font-weight: 820;
	line-height: 1.1;
	letter-spacing: -0.035em;
}

.prediction-page-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 0;
	align-items: center;
	margin-top: 1.35rem;
}

.prediction-page-hero__meta > div {
	display: flex;
	gap: 0.55rem;
	align-items: center;
	min-height: 25px;
	padding-right: 1.15rem;
	margin-right: 1.15rem;
	color: #4d5651;
	font-size: 0.82rem;
	line-height: 1.3;
	border-right: 1px solid #dce3de;
}

.prediction-page-hero__meta > div:last-child {
	padding-right: 0;
	margin-right: 0;
	border-right: 0;
}

.prediction-page-hero__meta svg {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	color: #4dad20;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.prediction-page-hero__meta .prediction-country-flag {
	width: 24px;
	height: 16px;
	flex-basis: 24px;
}

.prediction-page-hero__meta-value {
	display: flex;
	gap: 0.08rem;
	flex-direction: column;
}

.prediction-page-hero__meta-value small {
	color: #78817c;
	font-size: 0.66rem;
	font-weight: 700;
	line-height: 1.2;
}

.prediction-page-hero__meta-icon {
	font-size: 1rem;
}

.prediction-page-hero__summary {
	max-width: 760px;
	margin-top: 1.4rem;
	color: #59625d;
	font-size: 0.9rem;
	line-height: 1.65;
}

.prediction-page-hero__summary p {
	margin: 0;
}

.prediction-page-hero__image {
	position: relative;
	min-height: 320px;
	margin-right: calc((100vw - min(100vw - 2rem, var(--content-width))) / -2);
	overflow: hidden;
	background: #0b1b12;
}

.prediction-page-hero__image::before {
	position: absolute;
	z-index: 1;
	inset: 0 auto 0 0;
	width: 28%;
	content: "";
	pointer-events: none;
	background: linear-gradient(90deg, #f6f8f7 0%, rgba(246, 248, 247, 0.72) 25%, transparent 100%);
}

.prediction-page-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.prediction-page__body {
	padding-top: 2rem;
}

.prediction-detail-page {
	background: #f7f9f8;
}

.prediction-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 1.25rem;
	align-items: start;
}

.prediction-detail-main,
.tip-summary,
.related-predictions {
	background: #fff;
	border: 1px solid #e0e7e2;
	border-radius: 9px;
	box-shadow: 0 7px 24px rgba(17, 43, 27, 0.05);
}

.prediction-detail-main {
	padding: 1.25rem;
}

.prediction-detail-header {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 1.1rem;
}

.prediction-detail-title {
	margin: 0;
	color: #151b17;
	font-size: clamp(1.75rem, 2.6vw, 2.55rem);
	line-height: 1.12;
	letter-spacing: -0.03em;
}

.prediction-detail-header__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	margin-top: 0.85rem;
	color: #646d68;
	font-size: 0.76rem;
}

.prediction-detail-header__meta span {
	display: inline-flex;
	gap: 0.42rem;
	align-items: center;
}

.prediction-detail-header__meta svg {
	width: 17px;
	height: 17px;
	color: #78827d;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.prediction-detail-header__meta .prediction-country-flag {
	width: 20px;
	height: 13px;
	flex-basis: 20px;
}

.prediction-detail-header__actions {
	display: flex;
	gap: 0.55rem;
	align-items: center;
	flex: 0 0 auto;
}

.prediction-detail-header__actions a,
.prediction-detail-favorite {
	display: inline-flex;
	height: 38px;
	align-items: center;
	justify-content: center;
	color: #4e5852;
	background: #fff;
	border: 1px solid #dce3de;
	border-radius: 6px;
}

.prediction-detail-header__actions a {
	gap: 0.45rem;
	padding-inline: 0.85rem;
	font-size: 0.72rem;
	font-weight: 750;
	text-decoration: none;
}

.prediction-detail-header__actions a span {
	color: #3d9f18;
	font-size: 1.15rem;
}

.prediction-detail-header__actions a:hover,
.prediction-detail-header__actions a:focus-visible {
	color: #3d9f18;
	border-color: #9dcc88;
}

.prediction-detail-favorite {
	width: 38px;
	font-size: 1.25rem;
}

.prediction-match-cover {
	overflow: hidden;
	aspect-ratio: 16 / 5.6;
	background: #0a1b11;
	border-radius: 7px 7px 0 0;
}

.prediction-match-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.prediction-match-facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
	padding: 0.95rem 0;
	border-right: 1px solid #e2e8e4;
	border-bottom: 1px solid #e2e8e4;
	border-left: 1px solid #e2e8e4;
}

.prediction-match-facts > div {
	display: flex;
	gap: 0.55rem;
	align-items: center;
	min-width: 0;
	padding-inline: 0.9rem;
}

.prediction-match-facts > div + div {
	border-left: 1px solid #e5eae7;
}

.prediction-match-facts svg {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	color: #4dad20;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.prediction-match-facts span {
	min-width: 0;
}

.prediction-match-facts small,
.prediction-match-facts strong {
	display: block;
}

.prediction-match-facts small {
	color: #89918d;
	font-size: 0.59rem;
	font-weight: 700;
	text-transform: uppercase;
}

.prediction-match-facts strong {
	overflow: hidden;
	color: #2e3631;
	font-size: 0.7rem;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.prediction-analysis {
	padding: 1.4rem 0.25rem 0.25rem;
}

.prediction-analysis > .ui-title {
	margin: 0 0 0.8rem;
	color: #1c231f;
	font-size: 1.15rem;
}

.prediction-analysis .entry-content {
	color: #505954;
	font-size: 0.88rem;
	line-height: 1.75;
}

.prediction-detail-sidebar {
	display: grid;
	gap: 1rem;
}

.tip-summary,
.related-predictions {
	padding: 1rem;
}

.tip-summary > .ui-title,
.related-predictions > .ui-title {
	padding-bottom: 0.75rem;
	margin: 0;
	color: #202722;
	font-size: 1rem;
	border-bottom: 1px solid #e6ebe8;
}

.tip-summary__pick {
	margin-top: 0.8rem;
	overflow: hidden;
	border: 1px solid #dcebd5;
	border-radius: 6px;
}

.tip-summary__pick small {
	display: block;
	padding: 0.55rem 0.7rem;
	color: #347b17;
	font-size: 0.68rem;
	font-weight: 800;
	background: #eef8e9;
	text-transform: uppercase;
}

.tip-summary__pick strong {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	padding: 0.8rem 0.7rem;
	color: #202722;
	font-size: 0.8rem;
}

.tip-summary__pick strong span {
	display: grid;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	place-items: center;
	color: #fff;
	font-size: 0.6rem;
	background: #3d9f18;
	border-radius: 50%;
}

.tip-summary__row {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	justify-content: space-between;
	padding-block: 0.8rem;
	color: #505954;
	font-size: 0.74rem;
	border-bottom: 1px solid #e8ece9;
}

.tip-summary__row > strong {
	color: #276f0b;
	font-size: 1.05rem;
}

.tip-summary__rating {
	display: flex;
	gap: 0.08rem;
	align-items: center;
	color: #c8cfca;
}

.tip-summary__rating span.is-active {
	color: #f1a611;
}

.tip-summary__rating small {
	margin-left: 0.3rem;
	color: #6b746f;
}

.tip-summary__text {
	margin-top: 0.9rem;
	color: #626b66;
	font-size: 0.74rem;
	line-height: 1.6;
}

.tip-summary__text p {
	margin: 0;
}

.tip-summary__button {
	display: block;
	padding: 0.7rem 1rem;
	margin-top: 1rem;
	color: #fff;
	font-size: 0.76rem;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
	background: #3d9f18;
	border-radius: 5px;
}

.tip-summary__button:hover,
.tip-summary__button:focus-visible {
	background: #2e8310;
}

.prediction-detail-responsible {
	min-height: 155px;
}

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

.related-predictions li + li {
	border-top: 1px solid #e9edea;
}

.related-predictions a {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	justify-content: space-between;
	padding-block: 0.75rem;
	text-decoration: none;
}

.related-predictions a span {
	min-width: 0;
}

.related-predictions a strong,
.related-predictions a small {
	display: block;
}

.related-predictions a strong {
	overflow: hidden;
	color: #2b332e;
	font-size: 0.73rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.related-predictions a small {
	margin-top: 0.18rem;
	color: #858e89;
	font-size: 0.62rem;
}

.related-predictions a b {
	color: #3d9f18;
	font-size: 0.82rem;
}

.related-predictions a:hover strong,
.related-predictions a:focus-visible strong {
	color: #3d9f18;
}

.main-navigation ul,
.footer-navigation ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-navigation ul {
	align-items: stretch;
	gap: clamp(0.85rem, 1.7vw, 1.7rem);
}

.main-navigation li {
	display: flex;
	align-items: stretch;
}

.main-navigation a {
	position: relative;
	display: flex;
	align-items: center;
	padding-block: 1.65rem 1.45rem;
	color: var(--header-text);
	font-size: 0.71rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.main-navigation a::after {
	position: absolute;
	right: 0;
	bottom: 0.7rem;
	left: 0;
	height: 2px;
	content: "";
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 160ms ease;
}

.main-navigation a:hover,
.main-navigation a:focus-visible,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
	color: var(--accent);
}

.main-navigation a:hover::after,
.main-navigation a:focus-visible::after,
.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after {
	transform: scaleX(1);
}

.menu-toggle {
	display: none;
}

.content-area {
	min-width: 0;
	flex: 1 1 70%;
}

.widget-area {
	flex: 0 1 30%;
}

.predictions-dashboard {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 1.25rem;
	align-items: start;
}

.predictions-dashboard__content {
	display: grid;
	min-width: 0;
	gap: 1.25rem;
}

.predictions-panel,
.dashboard-box,
.prediction-stats {
	background: #fff;
	border: 1px solid #e3e9e5;
	border-radius: 9px;
	box-shadow: 0 7px 24px rgba(17, 43, 27, 0.05);
}

.predictions-panel {
	padding: 1.25rem;
}

.predictions-panel__header {
	padding-bottom: 0.9rem;
	border-bottom: 1px solid #e8ece9;
}

.predictions-panel__header .ui-title,
.dashboard-box .ui-title {
	margin: 0;
	color: #171c19;
	font-size: 1.22rem;
	line-height: 1.3;
}

.prediction-toolbar {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	padding-block: 0.8rem;
}

.prediction-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.2rem;
	padding: 0.2rem;
	background: #f8faf8;
	border: 1px solid #e9eeeb;
	border-radius: 8px;
}

.prediction-tabs button {
	padding: 0.48rem 0.85rem;
	color: #59615d;
	font-family: inherit;
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	background: transparent;
	border: 0;
	border-radius: 6px;
	cursor: pointer;
}

.prediction-tabs button:hover,
.prediction-tabs button:focus-visible,
.prediction-tabs button.is-active {
	color: #fff;
	background: #3d9f18;
	box-shadow: 0 3px 8px rgba(61, 159, 24, 0.22);
}

.prediction-league-filter {
	display: flex;
	gap: 0.4rem;
	align-items: center;
}

.prediction-league-filter select,
.prediction-league-filter button {
	height: 34px;
	color: #434b47;
	background: #fff;
	border: 1px solid #dfe5e1;
	border-radius: 7px;
}

.prediction-league-filter select {
	max-width: 145px;
	padding: 0 2.25rem 0 0.7rem;
	font-size: 0.84rem;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='m1 1 5 5 5-5' fill='none' stroke='%23434b47' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.8rem center;
	background-size: 10px 7px;
}

.prediction-league-filter button {
	display: grid;
	width: 34px;
	padding: 0;
	place-items: center;
	cursor: pointer;
}

.prediction-league-filter button:hover,
.prediction-league-filter button:focus-visible {
	color: #3d9f18;
	border-color: #3d9f18;
}

.prediction-league-filter svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
}

.prediction-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.8rem;
}

.prediction-card {
	position: relative;
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	min-width: 0;
	overflow: hidden;
	color: #202622;
	background: #fff;
	border: 1px solid #dfe6e1;
	border-radius: 9px;
	box-shadow: 0 4px 14px rgba(17, 43, 27, 0.05);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.prediction-card:hover {
	border-color: #b9d9aa;
	box-shadow: 0 9px 24px rgba(29, 82, 43, 0.1);
	transform: translateY(-2px);
}

.prediction-card__image {
	position: relative;
	grid-column: 1 / -1;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 6;
	background: #0a1b11;
	border-bottom: 1px solid #dfe6e1;
}

.prediction-card__express-badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	padding: 0.32rem 0.58rem;
	color: #10210f;
	font-size: 0.62rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.09em;
	background: #7de019;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 999px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.prediction-card--express {
	border-color: #c8e5ba;
}

.prediction-card--express .prediction-card__competition {
	color: #328b12;
	font-weight: 800;
}

.prediction-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 250ms ease;
}

.prediction-card:hover .prediction-card__image img {
	transform: scale(1.025);
}

.prediction-single__image {
	overflow: hidden;
	margin-block: 1.25rem;
	background: #0a1b11;
	border-radius: 10px;
}

.prediction-single__image img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
}

.prediction-card__date {
	padding: 1rem 0.55rem;
	text-align: center;
	border-right: 1px solid #e4e9e6;
}

.prediction-card__date strong,
.prediction-card__date span,
.prediction-card__date time {
	display: block;
}

.prediction-card__date strong {
	font-size: 1.5rem;
	line-height: 1.2;
}

.prediction-card__date span {
	width: 100%;
	height: auto;
	min-height: 18px;
	max-height: none;
	padding: 2px 0;
	margin-top: 2px;
	overflow: visible;
	clip: auto;
	clip-path: none;
	color: #626b66;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 18px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.prediction-card__date time {
	margin-top: 0.35rem;
	color: #555e59;
	font-size: 0.76rem;
	line-height: 1.3;
	white-space: nowrap;
}

.prediction-card__content {
	position: relative;
	display: flex;
	min-width: 0;
	padding: 0.95rem 1rem 0.85rem;
	flex-direction: column;
}

.prediction-card__favorite {
	position: absolute;
	top: 0.7rem;
	right: 0.75rem;
	color: #89928d;
	font-size: 1.25rem;
	line-height: 1;
}

.prediction-card__title {
	padding-right: 1.5rem;
	margin: 0 0 0.38rem;
	font-size: 1.12rem;
	line-height: 1.3;
}

.prediction-card__title a {
	text-decoration: none;
}

.prediction-card__title a:hover,
.prediction-card__title a:focus-visible {
	color: #3d9f18;
}

.prediction-card__competition {
	color: #5d6661;
	font-size: 0.82rem;
}

.prediction-card__competition .prediction-country-flag {
	width: 20px;
	height: 13px;
	flex-basis: 20px;
}

.prediction-card__facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin-top: 0.8rem;
	padding-block: 0.75rem;
	border-top: 1px solid #e7ebe8;
	border-bottom: 1px solid #e7ebe8;
}

.prediction-card__facts > div {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	min-width: 0;
}

.prediction-card__facts > div + div {
	padding-left: 0.75rem;
	border-left: 1px solid #e7ebe8;
}

.prediction-card__facts svg {
	width: 23px;
	height: 23px;
	flex: 0 0 23px;
	color: #4cac20;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.prediction-card__facts span {
	min-width: 0;
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1.25;
}

.prediction-card__facts small {
	display: block;
	margin-bottom: 0.12rem;
	color: #8a928e;
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
}

.prediction-card__summary {
	margin-top: 0.7rem;
	color: #555e59;
	font-size: 0.84rem;
	line-height: 1.5;
}

.prediction-card__summary p {
	margin: 0;
}

.prediction-card__link {
	display: flex;
	gap: 0.4rem;
	align-items: center;
	align-self: flex-end;
	margin-top: auto;
	padding-top: 0.7rem;
	color: #3d9f18;
	font-size: 0.82rem;
	font-weight: 800;
	text-decoration: none;
}

.prediction-card__link:hover,
.prediction-card__link:focus-visible {
	color: #277a04;
}

.predictions-sidebar {
	display: grid;
	gap: 1rem;
}

.sport-categories__icon {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	color: #45a71b;
	background: #f0f8ec;
	border: 1px solid #d8ebcf;
	border-radius: 9px;
}

.sport-categories__icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.45;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sports-leagues__group + .sports-leagues__group {
	margin-top: 0.35rem;
	padding-top: 0.35rem;
	border-top: 1px solid #dfe5e1;
}

.sports-leagues__sport {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) auto;
	gap: 0.7rem;
	align-items: center;
	padding-block: 0.7rem 0.55rem;
	color: #28312b;
	text-decoration: none;
}

.sports-leagues__sport > span:nth-child(2) {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.sports-leagues__sport strong {
	font-size: 0.88rem;
	line-height: 1.25;
}

.sports-leagues__sport small {
	margin-top: 0.12rem;
	color: #89928d;
	font-size: 0.64rem;
}

.sports-leagues__sport > span:last-child {
	color: #9aa49e;
	font-size: 0.8rem;
	transition: color 150ms ease, transform 150ms ease;
}

.sports-leagues__sport:hover .sport-categories__icon,
.sports-leagues__sport:focus-visible .sport-categories__icon,
.sports-leagues__group.is-active .sport-categories__icon {
	color: #fff;
	background: #49ae1d;
	border-color: #49ae1d;
}

.sports-leagues__sport:hover > span:last-child,
.sports-leagues__sport:focus-visible > span:last-child {
	color: #3d9f18;
	transform: translateX(2px);
}

.sports-leagues__group ul {
	padding: 0 0 0 0.65rem;
	margin: 0 0 0.2rem 18px;
	list-style: none;
	border-left: 1px solid #e3e9e5;
}

.sports-leagues__group li + li {
	border-top: 1px solid #edf0ee;
}

.sports-leagues__group li > a {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.5rem;
	align-items: center;
	padding: 0.57rem 0 0.57rem 0.45rem;
	color: #69716d;
	font-size: 0.78rem;
	text-decoration: none;
}

.sports-leagues__group li > a:hover strong,
.sports-leagues__group li > a:focus-visible strong {
	color: #3d9f18;
}

.sports-leagues__group li small {
	min-width: 26px;
	padding: 0.12rem 0.35rem;
	color: #3d9f18;
	text-align: center;
	background: #edf8e9;
	border-radius: 999px;
}

.sports-leagues__empty {
	padding: 0.65rem 0.45rem;
	color: #747d78;
	font-size: 0.7rem;
}

.dashboard-box {
	padding: 1rem;
}

.dashboard-box > header {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 0.7rem;
	border-bottom: 1px solid #e7ebe8;
}

.dashboard-box > header a {
	color: #3d9f18;
	font-size: 0.74rem;
	font-weight: 800;
	text-decoration: none;
}

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

.popular-leagues li + li {
	border-top: 1px solid #edf0ee;
}

.popular-leagues li > a {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.5rem;
	align-items: center;
	padding-block: 0.7rem;
	color: #69716d;
	font-size: 0.78rem;
	text-decoration: none;
}

.popular-leagues li > a:hover strong,
.popular-leagues li > a:focus-visible strong {
	color: #3d9f18;
}

.popular-league__name {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	min-width: 0;
}

.popular-league__name strong {
	overflow: hidden;
	color: #252b27;
	font-size: 0.85rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.popular-league__name .prediction-country-flag {
	width: 22px;
	height: 15px;
	flex-basis: 22px;
}

.popular-leagues li small {
	min-width: 26px;
	padding: 0.12rem 0.35rem;
	color: #3d9f18;
	text-align: center;
	background: #edf8e9;
	border-radius: 999px;
}

.popular-leagues__empty {
	padding-block: 0.8rem;
	color: #747d78;
	font-size: 0.7rem;
}

.responsible-banner {
	min-height: 125px;
	padding: 1.1rem;
	color: #fff;
	background:
		radial-gradient(circle at 88% 80%, rgba(109, 201, 0, 0.2), transparent 30%),
		linear-gradient(112deg, #06130e 0%, #0a2117 64%, #0d2a1b 100%);
	border-radius: 8px;
	box-shadow: 0 7px 20px rgba(5, 20, 11, 0.16);
}

.responsible-banner .ui-title {
	margin: 0;
	color: var(--accent);
	font-size: 1.5rem;
	line-height: 1.1;
}

.responsible-banner p {
	max-width: 150px;
	margin: 0.4rem 0 0.75rem;
	font-size: 0.78rem;
	line-height: 1.35;
}

.responsible-banner a {
	display: inline-flex;
	gap: 0.65rem;
	align-items: center;
	padding: 0.5rem 0.7rem;
	color: #fff;
	font-size: 0.73rem;
	font-weight: 700;
	text-decoration: none;
	background: #3d9f18;
	border-radius: 5px;
}

.trust-box > .ui-title {
	padding-bottom: 0.8rem;
}

.trust-box__items {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
}

.trust-box__items > div {
	display: flex;
	gap: 0.4rem;
	align-items: center;
	color: #4d5651;
	font-size: 0.72rem;
	line-height: 1.35;
}

.trust-box__items svg,
.prediction-stats svg {
	width: 27px;
	height: 27px;
	flex: 0 0 27px;
	color: #51b723;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-search {
	padding: 1rem;
	border-top: 3px solid var(--accent);
}

.home-search__header {
	display: flex;
	gap: 0.7rem;
	align-items: center;
}

.home-search__header > span {
	display: grid;
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	place-items: center;
	color: #3d9f18;
	background: #eef8ea;
	border: 1px solid #d9ebd2;
	border-radius: 50%;
}

.home-search__header svg,
.home-search__form svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-search__header .ui-title {
	margin: 0;
	font-size: 1rem;
}

.home-search__header p {
	margin: 0.15rem 0 0;
	color: #77807b;
	font-size: 0.68rem;
	line-height: 1.4;
}

.home-search__form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 42px;
	margin-top: 0.85rem;
	overflow: hidden;
	background: #f7f9f8;
	border: 1px solid #dfe6e1;
	border-radius: 8px;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.home-search__form:focus-within {
	border-color: #72b953;
	box-shadow: 0 0 0 3px rgba(61, 159, 24, 0.1);
}

.home-search__form input[type="search"] {
	min-width: 0;
	height: 42px;
	padding: 0 0.8rem;
	font: inherit;
	font-size: 0.76rem;
	background: transparent;
	border: 0;
	outline: 0;
}

.home-search__form input[type="search"]::placeholder {
	color: #929a95;
}

.home-search__form button {
	display: grid;
	padding: 0;
	place-items: center;
	color: #fff;
	background: linear-gradient(135deg, #3d9f18, #58bb2b);
	border: 0;
	cursor: pointer;
}

.home-search__form button:hover,
.home-search__form button:focus-visible {
	background: linear-gradient(135deg, #2f8510, #45a91c);
}

.prediction-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 1rem;
	padding: 1rem 1.5rem;
}

.prediction-stats > div {
	display: flex;
	gap: 0.8rem;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.prediction-stats > div + div {
	border-left: 1px solid #e5eae7;
}

.prediction-stats svg {
	width: 34px;
	height: 34px;
	flex-basis: 34px;
}

.prediction-stats span {
	color: #59615d;
	font-size: 0.78rem;
	line-height: 1.25;
}

.prediction-stats strong {
	display: block;
	color: #1d231f;
	font-size: 1.08rem;
}

.front-intro {
	margin-top: 1.75rem;
}

.entry-content > .wp-block-heading + .schema-faq {
	margin-top: 1rem;
}

.entry-content .schema-faq {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1rem;
	margin-block: 1.25rem 2rem;
}

.entry-content .schema-faq-section {
	position: relative;
	padding: 1.15rem 1.2rem;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e0e7e2;
	border-radius: 9px;
	box-shadow: 0 6px 20px rgba(17, 43, 27, 0.055);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.entry-content .schema-faq-section::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 3px;
	content: "";
	background: #55b824;
}

.entry-content .schema-faq-section:hover {
	border-color: #b9dbaa;
	box-shadow: 0 10px 26px rgba(29, 82, 43, 0.09);
	transform: translateY(-2px);
}

.entry-content .schema-faq-question {
	position: relative;
	display: block;
	min-height: 28px;
	padding-right: 2.4rem;
	color: #1d241f;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.4;
}

.entry-content .schema-faq-question::after {
	position: absolute;
	top: 0;
	right: 0;
	display: grid;
	width: 27px;
	height: 27px;
	content: "?";
	place-items: center;
	color: #3d9f18;
	font-size: 0.85rem;
	font-weight: 800;
	background: #eff8eb;
	border: 1px solid #cde7c1;
	border-radius: 50%;
}

.entry-content .schema-faq-answer {
	padding-top: 0.8rem;
	margin: 0.8rem 0 0;
	color: #59625d;
	font-size: 0.88rem;
	line-height: 1.7;
	border-top: 1px solid #e8ede9;
}

.entry-content > .wp-block-heading {
	position: relative;
	padding-bottom: 0.65rem;
	margin-bottom: 1rem;
	color: #171d19;
	font-size: clamp(1.45rem, 2.2vw, 1.9rem);
	line-height: 1.25;
}

.entry-content > .wp-block-heading::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 52px;
	height: 3px;
	content: "";
	background: var(--accent);
	border-radius: 999px;
}

.prediction-details > div {
	display: flex;
	gap: 1rem;
}

.prediction-details dt {
	font-weight: 700;
}

.prediction-details dd {
	margin: 0;
}

.error-page {
	padding: 0;
	background: #f4f7f5;
}

.error-404 {
	position: relative;
	display: grid;
	min-height: clamp(560px, calc(100vh - 260px), 720px);
	place-items: center;
	overflow: hidden;
	color: #fff;
	background:
		radial-gradient(circle at 14% 90%, rgba(109, 201, 0, 0.15), transparent 31%),
		radial-gradient(circle at 84% 13%, rgba(109, 201, 0, 0.1), transparent 28%),
		linear-gradient(120deg, #071412 0%, #0c2019 48%, #071311 100%);
}

.error-404::before,
.error-404::after {
	position: absolute;
	content: "";
	pointer-events: none;
}

.error-404::before {
	inset: 0;
	opacity: 0.35;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 38px 38px;
	mask-image: linear-gradient(90deg, #000, transparent 48%, #000);
}

.error-404::after {
	top: 50%;
	left: 50%;
	width: min(62vw, 920px);
	aspect-ratio: 2 / 1;
	border: 1px solid rgba(255, 255, 255, 0.045);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.error-404__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 0.8fr);
	gap: clamp(3rem, 7vw, 7rem);
	align-items: center;
	padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.error-404__visual {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 350px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.error-404__eyebrow {
	margin-bottom: -0.25rem;
	color: var(--accent);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.23em;
	text-transform: uppercase;
}

.error-404__number {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	color: #fff;
	font-size: clamp(8rem, 14vw, 12rem);
	font-weight: 900;
	line-height: 0.9;
	letter-spacing: -0.09em;
	text-shadow: 0 16px 45px rgba(0, 0, 0, 0.38);
}

.error-404__ball {
	display: grid;
	width: clamp(92px, 10vw, 132px);
	height: clamp(92px, 10vw, 132px);
	margin-inline: 0.12em 0.04em;
	place-items: center;
	color: var(--accent);
	filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.38));
	transform: rotate(-9deg);
}

.error-404__ball svg {
	width: 100%;
	height: 100%;
	fill: #f8faf9;
	stroke: currentColor;
	stroke-width: 4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.error-404__pitch {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 58%;
	border: 1px solid rgba(109, 201, 0, 0.2);
	border-radius: 50% 50% 12px 12px / 24% 24% 12px 12px;
	transform: perspective(350px) rotateX(63deg);
	transform-origin: bottom center;
}

.error-404__pitch::before,
.error-404__pitch::after,
.error-404__pitch span {
	position: absolute;
	content: "";
}

.error-404__pitch::before {
	top: 0;
	bottom: 0;
	left: 50%;
	border-left: 1px solid rgba(109, 201, 0, 0.18);
}

.error-404__pitch::after {
	top: 50%;
	left: 50%;
	width: 33%;
	aspect-ratio: 1;
	border: 1px solid rgba(109, 201, 0, 0.18);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.error-404__pitch span {
	right: 25%;
	bottom: 0;
	left: 25%;
	height: 28%;
	border: 1px solid rgba(109, 201, 0, 0.18);
	border-bottom: 0;
}

.error-404__content {
	width: 100%;
	min-width: 0;
	max-width: 560px;
}

.error-404__label {
	display: inline-flex;
	gap: 0.5rem;
	align-items: center;
	padding: 0.4rem 0.7rem;
	color: var(--accent);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	background: rgba(109, 201, 0, 0.08);
	border: 1px solid rgba(109, 201, 0, 0.23);
	border-radius: 999px;
}

.error-404__label svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.error-404__content h1 {
	max-width: 520px;
	margin: 1.1rem 0 0.9rem;
	font-size: clamp(2.25rem, 4vw, 4rem);
	font-weight: 850;
	line-height: 1.04;
	letter-spacing: -0.045em;
}

.error-404__content > p {
	max-width: 510px;
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.95rem;
	line-height: 1.7;
}

.error-404__search {
	display: flex;
	align-items: center;
	max-width: 540px;
	padding: 5px;
	margin-top: 1.65rem;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 9px;
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.23);
}

.error-404__search-icon {
	display: grid;
	width: 42px;
	flex: 0 0 42px;
	place-items: center;
	color: #7d8781;
}

.error-404__search-icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
}

.error-404__search input {
	width: 100%;
	min-width: 0;
	height: 42px;
	padding: 0 0.4rem;
	color: #17201b;
	font: inherit;
	font-size: 0.82rem;
	background: transparent;
	border: 0;
	outline: 0;
}

.error-404__search input::placeholder {
	color: #8a938e;
	opacity: 1;
}

.error-404__search:focus-within {
	outline: 3px solid rgba(109, 201, 0, 0.2);
	border-color: var(--accent);
}

.error-404__search button {
	height: 42px;
	padding-inline: 1.2rem;
	color: #0b160f;
	font: inherit;
	font-size: 0.75rem;
	font-weight: 850;
	background: var(--accent);
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	transition: background 160ms ease, transform 160ms ease;
}

.error-404__search button:hover,
.error-404__search button:focus-visible {
	background: #80df11;
	transform: translateY(-1px);
}

.error-404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.1rem;
}

.error-404__button {
	display: inline-flex;
	gap: 0.55rem;
	align-items: center;
	justify-content: center;
	min-height: 43px;
	padding: 0.65rem 1rem;
	color: #dfe6e2;
	font-size: 0.75rem;
	font-weight: 800;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.19);
	border-radius: 6px;
	transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.error-404__button svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.error-404__button:hover,
.error-404__button:focus-visible {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.38);
	transform: translateY(-1px);
}

.error-404__button--primary {
	color: #fff;
	background: #389c12;
	border-color: #48b81b;
}

.error-404__button--primary:hover,
.error-404__button--primary:focus-visible {
	background: #45ad19;
	border-color: #5cc92b;
}

.error-404__content .error-404__hint {
	display: flex;
	gap: 0.45rem;
	align-items: center;
	margin-top: 1.35rem;
	color: rgba(255, 255, 255, 0.42);
	font-size: 0.68rem;
}

.error-404__hint span {
	color: var(--accent);
	font-size: 0.48rem;
}

.footer-widgets {
	padding-bottom: 1.25rem;
	margin-bottom: 1.25rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__brand a {
	color: #fff;
	font-size: 1rem;
	font-weight: 750;
	line-height: 1;
	text-decoration: none;
	letter-spacing: -0.025em;
}

.site-footer__brand a strong {
	color: var(--accent);
}

.site-footer__brand a small {
	color: #8e9994;
	font-size: 0.62em;
	letter-spacing: 0;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 0.5rem;
	left: 0.5rem;
	width: auto;
	height: auto;
	padding: 0.75rem;
	clip: auto;
}

@media (max-width: 960px) {
	.error-404__inner {
		grid-template-columns: minmax(300px, 0.8fr) minmax(380px, 1fr);
		gap: 2.5rem;
	}

	.error-404__visual {
		min-height: 300px;
	}

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

	.prediction-detail-sidebar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.related-predictions {
		grid-column: 1 / -1;
	}

	.prediction-page-hero__inner {
		grid-template-columns: 1fr;
	}

	.prediction-page-hero__content {
		padding-right: 0;
	}

	.prediction-page-hero__image {
		min-height: 260px;
		margin-inline: -1rem;
	}

	.prediction-page-hero__image::before {
		inset: 0 0 auto;
		width: 100%;
		height: 22%;
		background: linear-gradient(180deg, #f6f8f7 0%, transparent 100%);
	}

	.predictions-dashboard {
		grid-template-columns: 1fr;
	}

	.predictions-sidebar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-search {
		grid-column: 1 / -1;
	}

	.popular-leagues {
		grid-row: span 2;
	}

	.hero-banner__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding-block: 2.5rem;
	}

	.hero-banner__field {
		right: -28%;
		width: 92vw;
		opacity: 0.7;
	}

	.hero-banner__content {
		max-width: 700px;
	}

	.hero-prediction {
		max-width: 600px;
	}

	.site-header__inner {
		position: relative;
		min-height: 72px;
		flex-direction: row;
	}

	.site-header {
		min-height: 75px;
	}

	.menu-toggle {
		position: relative;
		display: grid;
		width: 46px;
		height: 46px;
		padding: 0;
		place-items: center;
		color: var(--header-text);
		font: inherit;
		background: rgba(255, 255, 255, 0.035);
		border: 1px solid rgba(112, 217, 0, 0.42);
		border-radius: 10px;
		cursor: pointer;
		transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
	}

	.menu-toggle:hover,
	.menu-toggle:focus-visible,
	.menu-toggle[aria-expanded="true"] {
		color: var(--accent);
		background: rgba(112, 217, 0, 0.08);
		border-color: rgba(112, 217, 0, 0.75);
	}

	.menu-toggle:focus-visible {
		outline: 2px solid var(--accent);
		outline-offset: 3px;
	}

	.menu-toggle__icon {
		position: relative;
		display: block;
		width: 22px;
		height: 16px;
	}

	.menu-toggle__icon > span {
		position: absolute;
		left: 0;
		display: block;
		width: 100%;
		height: 2px;
		background: currentColor;
		border-radius: 999px;
		transition: top 180ms ease, transform 180ms ease, opacity 140ms ease;
	}

	.menu-toggle__icon > span:nth-child(1) {
		top: 0;
	}

	.menu-toggle__icon > span:nth-child(2) {
		top: 7px;
	}

	.menu-toggle__icon > span:nth-child(3) {
		top: 14px;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__icon > span:nth-child(1) {
		top: 7px;
		transform: rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__icon > span:nth-child(2) {
		opacity: 0;
		transform: scaleX(0.35);
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__icon > span:nth-child(3) {
		top: 7px;
		transform: rotate(-45deg);
	}

	.main-navigation {
		position: absolute;
		top: calc(100% + 3px);
		right: 0;
		left: 0;
		display: block;
		padding: 0.6rem 1rem 0.9rem;
		visibility: hidden;
		opacity: 0;
		background: #061510;
		border: 1px solid rgba(112, 217, 0, 0.18);
		border-top: 0;
		border-radius: 0 0 12px 12px;
		box-shadow: 0 20px 38px rgba(0, 14, 8, 0.3);
		transform: translateY(-8px);
		pointer-events: none;
		transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
	}

	.main-navigation.is-open {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}

	.layout-with-sidebar,
	.footer-widgets {
		align-items: stretch;
		flex-direction: column;
	}

	.main-navigation ul {
		align-items: stretch;
		gap: 0;
		flex-direction: column;
	}

	.main-navigation a {
		padding: 0.9rem 0.25rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	}

	.main-navigation li:last-child > a {
		border-bottom: 0;
	}

	.main-navigation a::after {
		right: auto;
		bottom: 0.5rem;
		width: 2rem;
	}
}

@media (max-width: 700px) {
	.error-404 {
		min-height: 0;
	}

	.error-404__inner {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding-block: 2.75rem 3.5rem;
	}

	.error-404__visual {
		min-height: 210px;
	}

	.error-404__number {
		font-size: clamp(7.5rem, 34vw, 10rem);
	}

	.error-404__ball {
		width: clamp(80px, 22vw, 110px);
		height: clamp(80px, 22vw, 110px);
	}

	.error-404__pitch {
		right: 7%;
		left: 7%;
	}

	.error-404__content {
		max-width: 580px;
		text-align: center;
	}

	.error-404__content h1,
	.error-404__content > p,
	.error-404__search {
		margin-inline: auto;
	}

	.error-404__actions,
	.error-404__content .error-404__hint {
		justify-content: center;
	}

	.prediction-detail-main {
		padding: 0.8rem;
	}

	.prediction-detail-header {
		flex-direction: column;
	}

	.prediction-detail-header__actions {
		width: 100%;
	}

	.prediction-detail-header__actions a {
		flex: 1;
	}

	.prediction-match-cover {
		aspect-ratio: 16 / 8;
	}

	.prediction-match-facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.8rem 0;
	}

	.prediction-match-facts > div:nth-child(odd) {
		border-left: 0;
	}

	.prediction-detail-sidebar {
		grid-template-columns: 1fr;
	}

	.related-predictions {
		grid-column: auto;
	}

	.prediction-page-hero__title {
		font-size: clamp(1.75rem, 8vw, 2.35rem);
	}

	.prediction-page-hero__meta {
		align-items: flex-start;
		flex-direction: column;
	}

	.prediction-page-hero__meta > div,
	.prediction-page-hero__meta > div:last-child {
		padding-right: 0;
		margin-right: 0;
		border-right: 0;
	}

	.prediction-page-hero__image {
		min-height: 210px;
	}

	.site-footer__brand p {
		max-width: 260px;
	}

	.predictions-panel {
		padding: 0.85rem;
	}

	.prediction-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.prediction-tabs {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		text-align: center;
	}

	.prediction-tabs button {
		padding-inline: 0.3rem;
	}

	.prediction-league-filter select {
		width: 100%;
		max-width: none;
	}

	.prediction-league-filter select {
		flex: 1;
	}

	.prediction-grid,
	.predictions-sidebar {
		grid-template-columns: 1fr;
	}

	.popular-leagues {
		grid-row: auto;
	}

	.prediction-stats {
		grid-template-columns: 1fr;
		gap: 0;
		padding-block: 0.35rem;
	}

	.prediction-stats > div {
		justify-content: flex-start;
		min-height: 68px;
		padding: 0.75rem;
	}

	.prediction-stats > div + div,
	.prediction-stats > div:nth-child(3) {
		border-left: 0;
		border-top: 1px solid #e5eae7;
	}

	.hero-banner {
		min-height: 0;
	}

	.hero-banner::before {
		opacity: 0.18;
	}

	.hero-banner__inner {
		padding-block: 2rem;
	}

	.hero-banner__content {
		width: min(100%, 520px);
	}

	.hero-banner__title {
		font-size: clamp(1.8rem, 8vw, 2.5rem);
	}

	.hero-banner__content p {
		font-size: 0.82rem;
	}

	.hero-benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-prediction__facts {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 420px) {
	.error-404__inner {
		padding-top: 2.25rem;
	}

	.error-404__visual {
		min-height: 180px;
	}

	.error-404__number {
		font-size: clamp(6.75rem, 30vw, 8.2rem);
	}

	.error-404__ball {
		width: clamp(72px, 21vw, 90px);
		height: clamp(72px, 21vw, 90px);
	}

	.error-404__content h1 {
		font-size: 2rem;
	}

	.error-404__search-icon {
		width: 38px;
		flex-basis: 38px;
	}

	.error-404__search button {
		padding-inline: 0.9rem;
	}

	.error-404__actions {
		display: grid;
	}

	.prediction-card {
		grid-template-columns: 76px minmax(0, 1fr);
	}

	.prediction-card__date {
		padding-inline: 0.3rem;
	}

	.prediction-card__content {
		padding-inline: 0.75rem;
	}

	.prediction-card__facts {
		grid-template-columns: 1fr;
	}

	.prediction-card__facts > div + div {
		padding-top: 0.6rem;
		padding-left: 0;
		border-top: 1px solid #e7ebe8;
		border-left: 0;
	}

	.hero-benefits {
		grid-template-columns: 1fr;
	}

	.site-logo__mark {
		width: 32px;
		height: 32px;
	}

	.site-logo__name {
		font-size: 1.05rem;
	}
}

.home-guide {
	margin-block: clamp(2rem, 4vw, 3.5rem) clamp(3rem, 6vw, 5rem);
	color: #4f5d53;
	font-size: 0.94rem;
	line-height: 1.78;
}

.home-guide__hero {
	position: relative;
	padding: clamp(2rem, 5vw, 4rem);
	overflow: hidden;
	background:
		radial-gradient(circle at 92% 10%, rgba(109, 201, 0, 0.18), transparent 25%),
		linear-gradient(135deg, #0d2c1b, #164126);
	border-radius: 18px 18px 0 0;
	color: #dbe7df;
}

.home-guide__hero::after {
	position: absolute;
	right: -60px;
	bottom: -120px;
	width: 280px;
	height: 280px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	content: "";
}

.home-guide__eyebrow,
.home-guide__sport-label,
.home-guide__daily-cards article > span {
	display: block;
	margin-bottom: 0.65rem;
	color: #76d33b;
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.home-guide__hero h2 {
	max-width: 780px;
	margin: 0;
	color: #fff;
	font-size: clamp(1.8rem, 4vw, 3.25rem);
	font-weight: 850;
	line-height: 1.08;
	letter-spacing: -0.045em;
}

.home-guide__hero h2 em {
	color: #77d63d;
	font-style: normal;
}

.home-guide__hero p {
	max-width: 900px;
	margin: 1.4rem 0 0;
	font-size: 1rem;
	line-height: 1.85;
}

.home-guide__nav {
	display: flex;
	gap: 0.55rem;
	padding: 0.9rem clamp(1rem, 4vw, 2.5rem);
	overflow-x: auto;
	background: #fff;
	border: 1px solid #dce8d7;
	border-top: 0;
}

.home-guide__nav a {
	flex: 0 0 auto;
	padding: 0.5rem 0.8rem;
	background: #f2f8ef;
	border-radius: 999px;
	color: #276914;
	font-size: 0.76rem;
	font-weight: 750;
}

.home-guide__body {
	padding: clamp(1.25rem, 4vw, 3rem);
	background: #fff;
	border: 1px solid #dce8d7;
	border-top: 0;
	border-radius: 0 0 18px 18px;
	box-shadow: 0 18px 45px rgba(25, 66, 32, 0.07);
}

.home-guide h3 {
	margin: 0 0 0.85rem;
	color: #15231a;
	font-size: clamp(1.2rem, 2vw, 1.55rem);
	line-height: 1.25;
	letter-spacing: -0.025em;
}

.home-guide__section h2,
.home-guide__closing h2 {
	margin: 0 0 0.9rem;
	color: #15231a;
	font-size: clamp(1.45rem, 2.5vw, 1.9rem);
	line-height: 1.2;
	letter-spacing: -0.03em;
}

.home-guide p {
	margin: 0;
}

.home-guide p + p {
	margin-top: 1rem;
}

.home-guide ul,
.home-guide ol {
	padding: 0;
	margin: 1rem 0;
	list-style: none;
}

.home-guide li {
	position: relative;
	padding: 0.38rem 0 0.38rem 1.45rem;
}

.home-guide ul li::before {
	position: absolute;
	top: 0.83rem;
	left: 0;
	width: 7px;
	height: 7px;
	background: #60bd28;
	border-radius: 50%;
	content: "";
}

.home-guide__section {
	padding: clamp(1.4rem, 3vw, 2.3rem) 0;
	border-bottom: 1px solid #e5ece2;
}

.home-guide__section--lead,
.home-guide__section--process,
.home-guide__section--daily {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 1.2rem;
}

.home-guide__number {
	color: #65bf2d;
	font-size: 1.55rem;
	font-weight: 900;
	line-height: 1;
}

.home-guide__sports {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	padding: clamp(1.5rem, 3vw, 2.5rem) 0;
	border-bottom: 1px solid #e5ece2;
}

.home-guide__sport,
.home-guide__daily-cards article {
	padding: clamp(1.2rem, 2.5vw, 1.8rem);
	background: #f7faf6;
	border: 1px solid #e0e9dc;
	border-radius: 12px;
}

.home-guide__sport--football {
	border-top: 3px solid #4fb529;
}

.home-guide__sport--basketball {
	border-top: 3px solid #e59b27;
}

.home-guide__sport--tennis {
	border-top: 3px solid #9bcf32;
}

.home-guide__sport p,
.home-guide__sport li {
	font-size: 0.86rem;
}

.home-guide__section--process ol {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.55rem;
	counter-reset: guide-step;
}

.home-guide__section--process li {
	padding: 0.8rem 0.9rem 0.8rem 2.8rem;
	background: #f5f9f3;
	border-radius: 8px;
	counter-increment: guide-step;
}

.home-guide__section--process li::before {
	position: absolute;
	top: 0.7rem;
	left: 0.8rem;
	color: #4aa91e;
	font-weight: 900;
	content: counter(guide-step, decimal-leading-zero);
}

.home-guide__columns,
.home-guide__daily-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.5rem, 4vw, 3rem);
	border-bottom: 1px solid #e5ece2;
}

.home-guide__columns .home-guide__section {
	border: 0;
}

.home-guide__section--markets ul {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.5rem 1.25rem;
}

.home-guide__daily-cards {
	padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.home-guide__daily-cards article > span {
	color: #4ca820;
}

.home-guide__closing {
	padding: clamp(1.6rem, 4vw, 2.8rem);
	margin-top: clamp(1.5rem, 3vw, 2.5rem);
	background: #f0f7ed;
	border-left: 4px solid #59b82a;
	border-radius: 0 12px 12px 0;
}

.home-guide__closing p:last-child {
	color: #294631;
}

@media (max-width: 900px) {
	.home-guide__sports {
		grid-template-columns: 1fr;
	}

	.home-guide__section--markets ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.home-guide__section--lead,
	.home-guide__section--process,
	.home-guide__section--daily,
	.home-guide__columns,
	.home-guide__daily-cards {
		grid-template-columns: 1fr;
	}

	.home-guide__number {
		font-size: 1rem;
	}

	.home-guide__section--process ol,
	.home-guide__section--markets ul {
		grid-template-columns: 1fr;
	}
}

.site-footer .site-footer__brand,
.site-footer .footer-navigation {
	padding-block: 0.35rem;
}

.site-footer .footer-navigation .footer-menu {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.45rem;
}

.site-footer .footer-navigation .footer-menu a {
	display: flex;
	min-height: 36px;
	align-items: center;
	padding: 0.45rem 0.7rem;
	color: #b6c1bc;
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(255, 255, 255, 0.075);
	border-radius: 7px;
	transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.site-footer .footer-navigation .footer-menu a:hover,
.site-footer .footer-navigation .footer-menu a:focus-visible {
	color: #fff;
	background: rgba(109, 201, 0, 0.08);
	border-color: rgba(109, 201, 0, 0.32);
}
