/* ==========================================================================
   MyJuve Predictor — премиальный тёмный Match Center
   Все селекторы начинаются с .myjuve-predictor, чтобы не задевать остальной
   сайт. !important используется точечно — только там, где Newspaper иначе
   перебивает цвет текста (проверено эмпирически на живом сайте).
   ========================================================================== */

.myjuve-predictor {
	--predict-bg: #08090b;
	--predict-surface: #111318;
	--predict-surface-2: #171a20;
	--predict-surface-hover: #1d2027;
	--predict-border: rgba(255,255,255,.08);
	--predict-border-strong: rgba(206,170,73,.34);
	--predict-gold: #d2ad4f;
	--predict-gold-light: #efd47b;
	--predict-text: #f6f6f4;
	--predict-muted: #989ba3;
	--predict-success: #45b879;
	--predict-error: #e46060;

	font-family: inherit;
	color: var(--predict-text) !important;
	background: var(--predict-bg) !important;

	/* full-bleed на всю ширину окна, тот же паттерн, что и на остальных
	   оформленных страницах сайта (juventus-history и т.д.) */
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	overflow: hidden;
	border-top: 3px solid var(--predict-gold);
}

.myjuve-predictor * { box-sizing: border-box; }
.myjuve-predictor p,
.myjuve-predictor span,
.myjuve-predictor h1,
.myjuve-predictor h2,
.myjuve-predictor label { color: var(--predict-text) !important; }

.myjuve-predictor__shell,
.myjuve-predictor > .predictor-topbar,
.myjuve-predictor > .predictor-banner,
.myjuve-predictor > .predictor-hero,
.myjuve-predictor > .predictor-layout {
	max-width: 1180px;
	margin-inline: auto;
	padding-inline: 20px;
}

.predictor-banner {
	margin-top: 20px;
}
.predictor-banner img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

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

/* ===== A. Верхняя панель ===== */
.predictor-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	padding: 28px 0 16px;
	border-bottom: 1px solid var(--predict-border);
}
.predictor-topbar__left {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--predict-muted) !important;
}
.predictor-dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--predict-gold);
	flex-shrink: 0;
}
.predictor-status {
	font-size: 11px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 20px;
	text-transform: none;
	letter-spacing: normal;
}
.predictor-status--open { background: rgba(69,184,121,0.12); color: var(--predict-success) !important; }
.predictor-status--closed { background: rgba(228,96,96,0.12); color: var(--predict-error) !important; }
.predictor-topbar__right {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 13px;
	color: var(--predict-muted) !important;
}
.predictor-topbar__right a { color: var(--predict-gold) !important; text-decoration: none; }
.predictor-topbar__right a:hover { text-decoration: underline; }

.predictor-tour-switch select {
	background: var(--predict-surface);
	color: var(--predict-text) !important;
	border: 1px solid var(--predict-border);
	border-radius: 6px;
	padding: 5px 10px;
	font-family: inherit;
	font-size: 13px;
	cursor: pointer;
}
.predictor-tour-switch select:focus { outline: none; border-color: var(--predict-gold); }

.predictor-match__detail {
	margin-top: 4px;
	font-size: 12px;
}
.predictor-match__detail summary {
	cursor: pointer;
	color: var(--predict-gold) !important;
	font-weight: 600;
	list-style: none;
}
.predictor-match__detail summary::-webkit-details-marker { display: none; }
.predictor-match__detail summary::before { content: '▸ '; }
.predictor-match__detail[open] summary::before { content: '▾ '; }
.predictor-match__detail dl {
	margin: 8px 0 0;
	padding: 10px 12px;
	background: var(--predict-surface-2);
	border-radius: 8px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 4px 10px;
}
.predictor-match__detail dt { color: var(--predict-muted) !important; }
.predictor-match__detail dd { margin: 0; color: var(--predict-text) !important; font-weight: 600; }

/* ===== B. Hero ===== */
.predictor-hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 20px;
	padding: 28px 32px;
	background:
		radial-gradient(circle at 88% 12%, rgba(210,173,79,0.16), transparent 45%),
		radial-gradient(circle at 8% 100%, rgba(210,173,79,0.07), transparent 55%),
		linear-gradient(155deg, #15181f 0%, #0e1013 55%, #121419 100%);
	border: 1px solid var(--predict-border);
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}
.predictor-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
	background-size: 18px 18px;
	opacity: 0.5;
	pointer-events: none;
}
.predictor-hero::after {
	content: '';
	position: absolute;
	top: -60%; right: -10%;
	width: 340px; height: 340px;
	background: radial-gradient(circle, rgba(210,173,79,0.14), transparent 70%);
	pointer-events: none;
}
.predictor-hero__content { position: relative; max-width: 560px; }
.predictor-hero__eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--predict-gold) !important;
	margin: 0 0 8px;
}
.predictor-hero__title {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 10px;
	line-height: 1.2;
}
.predictor-hero__desc {
	font-size: 14px;
	color: var(--predict-muted) !important;
	margin: 0 0 14px;
	line-height: 1.6;
}
.predictor-hero__deadline { font-size: 13px; margin: 0; }
.predictor-hero__deadline b { color: var(--predict-gold) !important; font-weight: 600; }

.predictor-hero__stats {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	min-width: 200px;
}
.predictor-progress__count { font-size: 13px; color: var(--predict-muted) !important; text-align: right; }
.predictor-progress__count span { color: var(--predict-text) !important; font-weight: 700; }
.predictor-progress__bar {
	width: 200px;
	height: 6px;
	border-radius: 4px;
	background: rgba(255,255,255,0.08);
	overflow: hidden;
}
.predictor-progress__fill {
	height: 100%;
	background: var(--predict-gold);
	border-radius: 4px;
	width: 0%;
}
.predictor-hero__status-badge {
	font-size: 12px;
	font-weight: 600;
	padding: 5px 14px;
	border-radius: 20px;
	background: rgba(69,184,121,0.12);
	color: var(--predict-success) !important;
}
.predictor-hero__status-badge.is-closed { background: rgba(228,96,96,0.12); color: var(--predict-error) !important; }

/* ===== C. Основной layout: контент + сайдбар ===== */
.predictor-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 24px;
	margin-top: 24px;
	padding-bottom: 56px;
	align-items: start;
}
@media (max-width: 900px) {
	.predictor-layout { grid-template-columns: 1fr; }
	.predictor-sidebar { position: static !important; }
}

.predictor-section-heading {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 14px;
	color: var(--predict-text) !important;
}

/* сетка карточек — 2 в ряд на десктопе (10 матчей = 5 ровных рядов), 1 на мобильном */
.predictor-matches {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
@media (max-width: 700px) {
	.predictor-matches { grid-template-columns: 1fr; }
}

/* ===== карточка матча ===== */
.predictor-match {
	background: var(--predict-surface);
	border: 1px solid var(--predict-border);
	border-radius: 16px;
	padding: 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: background .15s ease, border-color .15s ease;
}
.predictor-match:hover { background: var(--predict-surface-hover); }
.predictor-match:focus-within { border-color: var(--predict-border-strong); }
.predictor-match.is-locked { opacity: 0.55; pointer-events: none; }

.predictor-match__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 11px;
	color: var(--predict-muted) !important;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.predictor-match__teams {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 10px;
}
.predictor-team {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}
.predictor-team--home { justify-content: flex-end; text-align: right; }
.predictor-team--away { justify-content: flex-start; text-align: left; }
.predictor-team__logo {
	width: 30px; height: 30px;
	flex-shrink: 0;
	display: flex; align-items: center; justify-content: center;
}
.predictor-team__logo img { width: 100%; height: 100%; object-fit: contain; }
.predictor-team__name {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--predict-text) !important;
	overflow-wrap: break-word;
	line-height: 1.25;
	min-width: 0;
}

.predictor-score {
	display: flex;
	align-items: center;
	gap: 8px;
}
.predictor-score__input {
	-moz-appearance: textfield;
	appearance: textfield;
	width: 52px;
	height: 52px;
	background: var(--predict-surface-2);
	border: 1px solid var(--predict-border);
	border-radius: 12px;
	color: var(--predict-text) !important;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	font-family: inherit;
}
.predictor-score__input::-webkit-outer-spin-button,
.predictor-score__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.predictor-score__input:hover { border-color: rgba(255,255,255,0.18); }
.predictor-score__input:focus,
.predictor-score__input:focus-visible {
	outline: none;
	border-color: var(--predict-gold);
	box-shadow: 0 0 0 3px rgba(210,173,79,0.18);
}
.predictor-score__input:disabled { opacity: 0.5; }
.predictor-score__sep { font-size: 16px; color: var(--predict-muted) !important; }

.predictor-match__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--predict-border);
	padding-top: 12px;
}

/* джокер — переключатель вместо стандартного чекбокса */
.predictor-joker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--predict-muted) !important;
	cursor: pointer;
}
.predictor-joker__input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.predictor-joker__track {
	width: 32px; height: 18px;
	border-radius: 20px;
	background: var(--predict-surface-2);
	border: 1px solid var(--predict-border);
	position: relative;
	flex-shrink: 0;
	transition: background .15s ease, border-color .15s ease;
}
.predictor-joker__thumb {
	position: absolute;
	top: 2px; left: 2px;
	width: 12px; height: 12px;
	border-radius: 50%;
	background: var(--predict-muted);
	transition: transform .15s ease, background .15s ease;
}
.predictor-joker.is-active { color: var(--predict-gold-light) !important; }
.predictor-joker.is-active .predictor-joker__track { background: rgba(210,173,79,0.18); border-color: var(--predict-gold); }
.predictor-joker.is-active .predictor-joker__thumb { transform: translateX(14px); background: var(--predict-gold); }
.predictor-joker__input:focus-visible ~ .predictor-joker__track { box-shadow: 0 0 0 3px rgba(210,173,79,0.25); }

.predictor-match__points {
	font-size: 12px;
	font-weight: 700;
	color: var(--predict-success) !important;
}
.predictor-match__saved-note {
	font-size: 11px;
	color: var(--predict-muted) !important;
}

/* ===== D. Панель сохранения ===== */
.predictor-save-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
	padding: 16px 20px;
	background: var(--predict-surface);
	border: 1px solid var(--predict-border);
	border-radius: 14px;
}
.predictor-save-panel__status {
	font-size: 13px;
	color: var(--predict-muted) !important;
}
.predictor-save-panel__status.is-dirty { color: var(--predict-gold-light) !important; }

.predictor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 52px;
	padding: 0 30px;
	background: var(--predict-gold);
	color: #08090b !important;
	border: none;
	border-radius: 12px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	text-decoration: none !important;
	cursor: pointer;
	transition: background .15s ease, transform .1s ease;
}
.predictor-button:hover { background: var(--predict-gold-light); }
.predictor-button:active { transform: scale(0.98); }
.predictor-button:disabled { opacity: 0.6; cursor: default; }
.predictor-button.is-loading { pointer-events: none; }
.predictor-button.is-loading .js-save-button-label::after {
	content: '';
	display: inline-block;
	width: 14px; height: 14px;
	margin-left: 8px;
	border: 2px solid rgba(8,9,11,0.35);
	border-top-color: #08090b;
	border-radius: 50%;
	vertical-align: -3px;
	animation: predictor-spin .7s linear infinite;
}

/* ===== E. Состояния результата/ошибок ===== */
.predictor-alert {
	margin-top: 10px;
	font-size: 13px;
	text-align: right;
	min-height: 1em;
}
.predictor-alert.is-success { color: var(--predict-success) !important; }
.predictor-alert.is-error { color: var(--predict-error) !important; }
.predictor-locked-note { font-size: 13px; color: var(--predict-gold) !important; margin-top: 16px; }

/* ===== Сайдбар ===== */
.predictor-sidebar {
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: sticky;
	top: 90px;
}

.predictor-user-card,
.predictor-progress-card,
.predictor-navigation,
.predictor-telegram-card {
	background: var(--predict-surface);
	border: 1px solid var(--predict-border);
	border-radius: 14px;
	padding: 16px;
}

.predictor-user-card { display: flex; align-items: center; gap: 12px; }
.predictor-user-card__avatar {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--predict-surface-2);
	border: 1px solid var(--predict-border-strong);
	display: flex; align-items: center; justify-content: center;
	font-weight: 700;
	color: var(--predict-gold) !important;
	flex-shrink: 0;
}
.predictor-user-card__name { font-size: 13px; font-weight: 700; margin: 0 0 2px; }
.predictor-user-card__stats { font-size: 12px; color: var(--predict-muted) !important; margin: 0; }

.predictor-progress-card__title { font-size: 13px; font-weight: 600; margin: 0 0 10px; }
.predictor-progress-card__meta { font-size: 11px; color: var(--predict-muted) !important; margin: 10px 0 0; }

.predictor-navigation { display: flex; flex-direction: column; gap: 2px; padding: 6px; }
.predictor-navigation__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 46px;
	padding: 0 10px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--predict-text) !important;
	text-decoration: none !important;
	transition: background .15s ease;
}
.predictor-navigation__item:hover { background: var(--predict-surface-2); }
.predictor-navigation__item span:last-child { color: var(--predict-gold) !important; }

.predictor-telegram-card__text { font-size: 12px; color: var(--predict-muted) !important; margin: 0 0 12px; }
.predictor-telegram-card__text--linked {
	color: var(--predict-success) !important;
	font-weight: 700;
}
.predictor-telegram-card__unlink {
	display: block;
	margin-top: 10px;
	font-size: 11px;
	color: var(--predict-muted) !important;
	text-decoration: underline !important;
}
.predictor-telegram-card__unlink:hover { color: var(--predict-error) !important; }
.predictor-telegram-card__btn {
	display: block;
	text-align: center;
	padding: 10px;
	border-radius: 8px;
	border: 1px solid var(--predict-border-strong);
	color: var(--predict-gold) !important;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none !important;
	transition: background .15s ease, color .15s ease;
}
.predictor-telegram-card__btn:hover { background: var(--predict-gold); color: #08090b !important; }
.predictor-telegram-card__note {
	font-size: 11px;
	color: var(--predict-muted) !important;
	margin: 10px 0 0;
	line-height: 1.5;
}

/* ===== мобильная адаптация ===== */
@media (max-width: 600px) {
	.myjuve-predictor__shell,
	.myjuve-predictor > .predictor-topbar,
	.myjuve-predictor > .predictor-hero,
	.myjuve-predictor > .predictor-layout { padding-inline: 14px; }
	.predictor-hero { flex-direction: column; align-items: flex-start; padding: 22px; }
	.predictor-hero__stats { align-items: flex-start; width: 100%; }
	.predictor-progress__bar { width: 100%; }
	.predictor-score__input { width: 44px; height: 44px; font-size: 17px; }
	.predictor-save-panel { flex-direction: column; align-items: stretch; }
	.predictor-button { width: 100%; }
}

/* ===== reduced motion ===== */
@media (prefers-reduced-motion: no-preference) {
	.predictor-progress__fill { transition: width .4s ease; }
}
@keyframes predictor-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
	.predictor-button.is-loading .js-save-button-label::after { animation: none; }
}

/* ==========================================================================
   [mp_leaderboard] и [mp_telegram_link] — компактные тёмные карточки в потоке
   страницы (без full-bleed).
   ========================================================================== */
.jh-root.mp-leaderboard,
.jh-root.mp-telegram {
	--mp-bg-card: #171717;
	--mp-gold: #c8a84b;
	--mp-gold-dim: #8a7333;
	--mp-text: #eae7df;
	--mp-text-dim: #8f8b82;
	--mp-border: #262626;
	font-family: inherit;
	color: var(--mp-text) !important;
	max-width: 720px;
	margin: 0 auto;
}
.jh-root.mp-leaderboard { max-width: 900px; }

/* тема Newspaper применяет к блокам fade-in при прокрутке — без явного
   отключения анимации/прозрачности контент повисает "полупрозрачным" до
   срабатывания скролл-триггера (та же причина, что чинили на других
   страницах сайта, например juventus-history) */
.jh-root.mp-leaderboard,
.jh-root.mp-leaderboard * {
	opacity: 1 !important;
	filter: none !important;
	transform: none !important;
	animation: none !important;
}

.jh-root.mp-leaderboard p, .jh-root.mp-leaderboard span,
.jh-root.mp-telegram p { color: var(--mp-text) !important; }

.mp-lb-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--mp-gold) !important;
	margin: 0 0 6px;
}
.mp-lb-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--mp-text) !important;
	margin: 0 0 20px;
}
.mp-lb-empty {
	font-size: 14px;
	color: var(--mp-text-dim) !important;
	background: var(--mp-bg-card);
	border: 1px solid var(--mp-border);
	border-radius: 8px;
	padding: 16px 18px;
}

.mp-lb-table {
	border: 1px solid var(--mp-border);
	border-radius: 10px;
	overflow: hidden;
}

.mp-lb-head {
	display: grid;
	grid-template-columns: 40px 1fr 80px 90px 70px;
	align-items: center;
	padding: 12px 18px;
	background: var(--mp-bg-card);
	border-bottom: 1px solid var(--mp-border);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--mp-text-dim) !important;
}
.mp-lb-col-points, .mp-lb-col-acc, .mp-lb-col-tours { text-align: center; }

.mp-lb-row {
	display: grid;
	grid-template-columns: 40px 1fr 80px 90px 70px;
	align-items: center;
	background: #111 !important;
	border-bottom: 1px solid var(--mp-border);
	padding: 14px 18px;
	font-size: 14px;
}
.mp-lb-row:last-child { border-bottom: none; }
.mp-lb-row.mp-you { background: rgba(200,168,75,0.08) !important; box-shadow: inset 3px 0 0 var(--mp-gold); }

.mp-lb-rank { font-weight: 800; font-size: 15px; color: var(--mp-text-dim) !important; }
.mp-lb-row.mp-medal-gold .mp-lb-rank { color: #e6c667 !important; }
.mp-lb-row.mp-medal-silver .mp-lb-rank { color: #cfd4da !important; }
.mp-lb-row.mp-medal-bronze .mp-lb-rank { color: #cd8a5c !important; }

.mp-lb-user { display: flex; align-items: center; gap: 12px; min-width: 0; }
.mp-lb-avatar {
	width: 32px; height: 32px;
	border-radius: 50%;
	background: var(--mp-bg-card);
	border: 1px solid var(--mp-border);
	display: flex; align-items: center; justify-content: center;
	font-size: 13px; font-weight: 700;
	color: var(--mp-gold) !important;
	flex-shrink: 0;
}
.mp-lb-row.mp-medal-gold .mp-lb-avatar { border-color: #e6c667; }
.mp-lb-row.mp-medal-silver .mp-lb-avatar { border-color: #cfd4da; }
.mp-lb-row.mp-medal-bronze .mp-lb-avatar { border-color: #cd8a5c; }
.mp-lb-name { font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--mp-text) !important; }

.mp-lb-points { text-align: center; font-weight: 800; font-size: 16px; color: var(--mp-gold) !important; }
.mp-lb-acc, .mp-lb-tours { text-align: center; color: var(--mp-text-dim) !important; font-size: 13px; }

@media (max-width: 620px) {
	.mp-lb-head, .mp-lb-row { grid-template-columns: 30px 1fr 60px 50px; }
	.mp-lb-col-tours, .mp-lb-tours { display: none; }
}

.mp-submit-row { display: flex; justify-content: flex-end; margin: 20px 0 8px; }
.mp-submit-btn {
	background: var(--mp-gold) !important;
	color: #0a0a0a !important;
	border: none;
	padding: 11px 26px;
	border-radius: 4px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.3px;
	cursor: pointer;
	text-transform: uppercase;
}
.mp-status-msg { font-size: 13px; margin-top: 8px; text-align: right; }
.mp-status-msg.success { color: #4caf6d !important; }
.mp-status-msg.error { color: #b8503f !important; }

.mp-telegram-box {
	background: var(--mp-bg-card) !important;
	border: 1px solid var(--mp-border);
	border-radius: 6px;
	padding: 20px;
	text-align: center;
}
.mp-telegram-link-btn {
	display: inline-block;
	background: var(--mp-gold) !important;
	color: #0a0a0a !important;
	padding: 10px 22px;
	border-radius: 4px;
	text-decoration: none !important;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	margin-top: 10px;
}
.mp-telegram-note {
	font-size: 12px;
	color: var(--mp-text-dim) !important;
	margin-top: 12px;
}

/* ==========================================================================
   [mp_season_predict] — full-bleed тёмная секция, тот же паттерн, что у
   основного блока тура (иначе серый текст на белой странице почти не читается)
   ========================================================================== */
.jh-root.mp-season {
	--predict-bg: #08090b;
	--predict-surface: #111318;
	--predict-surface-2: #171a20;
	--predict-border: rgba(255,255,255,.08);
	--predict-border-strong: rgba(206,170,73,.34);
	--predict-gold: #d2ad4f;
	--predict-gold-light: #efd47b;
	--predict-text: #f6f6f4;
	--predict-muted: #989ba3;

	font-family: inherit;
	color: var(--predict-text) !important;
	background: var(--predict-bg) !important;
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	overflow: hidden;
	border-top: 3px solid var(--predict-gold);
	padding: 44px 20px 56px;
}
.mp-season * { box-sizing: border-box; }
.mp-season p, .mp-season span, .mp-season label, .mp-season h2 { color: var(--predict-text) !important; }

.mp-season-inner { max-width: 640px; margin: 0 auto; }

.mp-season-eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--predict-gold) !important;
	margin: 0 0 8px;
}
.mp-season-title {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 8px;
}
.mp-season-desc {
	font-size: 13px;
	color: var(--predict-muted) !important;
	margin: 0 0 28px;
	line-height: 1.6;
}

.mp-season-picker { margin-bottom: 20px; }
.mp-season-picker label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--predict-muted) !important;
	margin-bottom: 6px;
}
.mp-season-picker select {
	background: var(--predict-surface) !important;
	border: 1px solid var(--predict-border);
	color: var(--predict-text) !important;
	padding: 12px 14px;
	border-radius: 10px;
	font-family: inherit;
	font-size: 14px;
	width: 100%;
	margin-bottom: 16px;
	appearance: auto;
}
.mp-season-picker select:focus {
	outline: none;
	border-color: var(--predict-gold);
	box-shadow: 0 0 0 3px rgba(210,173,79,0.18);
}
.mp-season-picker select:disabled { opacity: 0.5; }

.mp-season .mp-submit-btn {
	background: var(--predict-gold) !important;
	color: #08090b !important;
	height: 52px;
	padding: 0 30px;
	border-radius: 12px;
	font-size: 13px;
}
.mp-season .mp-submit-btn:hover { background: var(--predict-gold-light) !important; }
.mp-season .mp-locked-note {
	font-size: 13px;
	color: var(--predict-gold) !important;
	background: var(--predict-surface);
	border: 1px solid var(--predict-border-strong);
	border-radius: 10px;
	padding: 14px 18px;
	margin-bottom: 20px;
}
