/* ===========================
   SPORTS PAGE
   Reuses the real FMS palette: --blue:#0051A2 / --blue-dark:#003a75 / accent:#6ea8ff
=========================== */
:root {
	--blue: #0051A2;
	--blue-dark: #003a75;
	--accent: #6ea8ff;
	--green: #4E9F3D;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background: linear-gradient(180deg, var(--blue-dark), #001b38 45%, #00142b);
	color: whitesmoke;
	min-height: 100vh;
}

/* NAVBAR — mirrors the homepage navbar exactly */
.navbar {
	max-width: 1200px;
	margin: auto;
	min-height: 75px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 15px 20px 0;
}

.brand img { display: block; }

.menu ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	gap: 35px;
	margin: 0;
	padding: 0;
}

.menu ul li a {
	text-decoration: none;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.3s ease-in-out;
}

.menu ul li a:hover { color: var(--accent); }

.menu ul li a.current {
	color: var(--accent);
	border-bottom: 2px solid var(--accent);
	padding-bottom: 4px;
}

.search { display: flex; }

.srch {
	font-family: 'Times New Roman', serif;
	width: 200px;
	height: 40px;
	background: transparent;
	border: 1px solid white;
	border-right: none;
	color: white;
	font-size: 16px;
	padding: 0 16px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.srch:focus { outline: none; }

::placeholder {
	color: white;
	font-family: Arial, Helvetica, sans-serif;
}

.btn {
	width: 100px;
	height: 40px;
	background: black;
	border: 2px solid var(--blue);
	color: white;
	font-size: 15px;
	cursor: pointer;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.btn:focus { outline: none; }

/* BREADCRUMB */
.breadcrumb {
	max-width: 1200px;
	margin: auto;
	padding: 22px 20px 0;
	font-size: 13px;
	color: rgba(245, 245, 245, 0.55);
}

.breadcrumb a {
	color: rgba(245, 245, 245, 0.75);
	text-decoration: none;
}

.breadcrumb a:hover { color: var(--accent); }

/* HERO */
.hero-text {
	max-width: 1200px;
	margin: auto;
	padding: 22px 20px 10px;
}

.hero-eyebrow {
	font-size: 13px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: bold;
	margin: 0 0 12px;
}

.hero-text h1 {
	font-family: 'Times New Roman', serif;
	font-size: 38px;
	letter-spacing: 1px;
	margin: 0 0 16px;
}

.hero-text h1 span { color: var(--accent); }

.hero-text p {
	max-width: 640px;
	letter-spacing: 0.6px;
	line-height: 1.7;
	color: rgba(245, 245, 245, 0.85);
	margin: 0 0 14px;
}

.hero-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: rgba(245, 245, 245, 0.7);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 7px 14px;
	border-radius: 20px;
}

.hero-status .dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--green);
	display: inline-block;
}

/* SEARCH / FILTER FEEDBACK */
.filter-empty {
	display: none;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	color: rgba(245, 245, 245, 0.65);
	font-size: 14px;
}

.filter-empty.show { display: block; }

.filter-empty a { color: var(--accent); font-weight: bold; text-decoration: none; }

/* SPORTS GRID */
.sports-grid {
	max-width: 1200px;
	margin: auto;
	padding: 30px 20px 70px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.sport-card {
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid var(--blue);
	border-radius: 10px;
	padding: 26px 22px;
	backdrop-filter: blur(4px);
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: transform 0.25s ease, border-color 0.25s ease;
	position: relative;
	opacity: 0;
	animation: card-in 0.45s ease forwards;
}

@keyframes card-in {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.sport-card.live:hover,
.sport-card.soon:hover {
	transform: translateY(-4px);
	border-color: var(--accent);
}

.sport-card.live-link {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.popular-badge {
	position: absolute;
	top: -11px;
	right: 18px;
	background: var(--green);
	color: #04240a;
	font-size: 11px;
	font-weight: bold;
	letter-spacing: 0.5px;
	padding: 5px 10px;
	border-radius: 20px;
	text-transform: uppercase;
}

.sport-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--sport-color, var(--blue));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: white;
}

.sport-card.soon .sport-icon {
	background: color-mix(in srgb, var(--sport-color, var(--blue)) 35%, transparent);
	color: rgba(245, 245, 245, 0.85);
}

.sport-card h3 {
	font-family: 'Times New Roman', serif;
	font-size: 21px;
	margin: 0;
	letter-spacing: 0.5px;
}

.sport-count {
	font-size: 12.5px;
	color: rgba(245, 245, 245, 0.6);
	margin: -8px 0 0;
}

.sport-card p.blurb {
	font-size: 13.5px;
	line-height: 1.55;
	color: rgba(245, 245, 245, 0.75);
	margin: 0;
	flex-grow: 1;
}

.sport-card a.sport-action {
	align-self: flex-start;
	font-size: 13px;
	font-weight: bold;
	background: var(--blue);
	color: white;
	text-decoration: none;
	padding: 9px 16px;
	border-radius: 6px;
	transition: 0.25s ease;
}

.sport-card a.sport-action:hover { background: steelblue; }

.sport-card .soon-tag {
	align-self: flex-start;
	font-size: 12.5px;
	font-weight: bold;
	color: rgba(245, 245, 245, 0.8);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 8px 14px;
	border-radius: 6px;
}

.suggest-link {
	font-size: 12.5px;
	color: var(--accent);
	text-decoration: none;
	font-weight: bold;
}

.suggest-link:hover { text-decoration: underline; }

/* Notify-me mini form */
.notify-form {
	display: flex;
	gap: 8px;
	margin-top: 2px;
}

.notify-form input[type="email"] {
	flex: 1 1 auto;
	min-width: 0;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 6px;
	color: white;
	font-size: 12.5px;
	padding: 8px 10px;
	font-family: Arial, Helvetica, sans-serif;
}

.notify-form input[type="email"]:focus {
	outline: none;
	border-color: var(--accent);
}

.notify-form button {
	background: var(--blue);
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 12px;
	font-weight: bold;
	padding: 0 12px;
	cursor: pointer;
	white-space: nowrap;
}

.notify-form button:hover { background: steelblue; }

.notify-msg {
	font-size: 12px;
	color: var(--green);
	display: none;
}

.notify-msg.show { display: block; }

/* CTA band */
.cta-band {
	max-width: 1200px;
	margin: 0 auto 70px;
	padding: 0 20px;
}

.cta-inner {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	padding: 32px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.cta-inner h3 {
	font-family: 'Times New Roman', serif;
	font-size: 20px;
	margin: 0 0 6px;
}

.cta-inner p {
	margin: 0;
	font-size: 14px;
	color: rgba(245, 245, 245, 0.75);
}

.cta-inner a.sport-action {
	background: var(--blue);
	color: white;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
	padding: 11px 20px;
	border-radius: 8px;
	white-space: nowrap;
}

.cta-inner a.sport-action:hover { background: steelblue; }

/* FOOTER */
.site-footer {
	text-align: center;
	color: rgba(245, 245, 245, 0.65);
	font-size: 13px;
	padding: 26px 20px;
	background: #00142b;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer span { color: var(--accent); font-weight: bold; }

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

@media (max-width: 600px) {
	.navbar { justify-content: center; text-align: center; }
	.search { width: 100%; justify-content: center; }
	.hero-text h1 { font-size: 28px; }
	.sports-grid { grid-template-columns: 1fr; padding-top: 10px; }
	.cta-inner { flex-direction: column; align-items: flex-start; }
}
