:root {
	--bg: #030506;
	--text: #f7f8f8;
	--muted: rgba(247, 248, 248, 0.72);
	--line: rgba(247, 248, 248, 0.24);
	--red: #f03b4d;
	--green: #45e28a;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--text);
	background: var(--bg);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	overflow-x: hidden;
}

body[data-theme="light"] {
	--bg: #f4f1ea;
	--text: #111417;
	--muted: rgba(17, 20, 23, 0.68);
	--line: rgba(17, 20, 23, 0.18);
	--red: #d93445;
	--green: #188f56;
}

body[data-theme="sport"] {
	--bg: #ffffff;
	--text: #070707;
	--muted: rgba(7, 7, 7, 0.66);
	--line: rgba(7, 7, 7, 0.18);
	--red: #e30613;
	--green: #070707;
}

a,
button {
	color: inherit;
	font: inherit;
}

a {
	text-decoration: none;
}

button {
	border: 0;
	background: none;
	cursor: pointer;
}

[hidden] {
	display: none !important;
}

.page {
	position: relative;
	min-height: 100vh;
	padding: 30px 44px 24px;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.12) 65%, rgba(0, 0, 0, 0.95)),
		linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.86) 100%),
		url("assets/court.png") center / cover no-repeat;
}

body[data-theme="light"] .page {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.34) 34%, rgba(255, 255, 255, 0.32) 66%, rgba(255, 255, 255, 0.84)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.52) 56%, #f4f1ea 100%),
		url("assets/court.png") center / cover no-repeat;
}

body[data-theme="sport"] .page {
	background:
		linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 24%, rgba(255, 255, 255, 0.74) 50%, #ffffff 100%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.86), #ffffff 72%),
		url("assets/court.png") center / cover no-repeat;
}

.page::after {
	position: absolute;
	inset: auto 0 0;
	height: 28vh;
	pointer-events: none;
	content: "";
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
}

body[data-theme="light"] .page::after {
	background: linear-gradient(180deg, transparent, rgba(244, 241, 234, 0.78));
}

body[data-theme="sport"] .page::after {
	background: linear-gradient(180deg, transparent, #ffffff);
}

.site-header,
.hero,
.feature-strip,
.club-story,
.image-card-grid,
.details-band,
.alt-service-strip,
.booking-location,
.bottom-cta,
.footer {
	position: relative;
	z-index: 1;
	width: min(100%, 1250px);
	margin: 0 auto;
}

.site-header {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-areas:
		"brand nav"
		"theme nav";
	align-items: start;
	column-gap: 38px;
	row-gap: 10px;
}

.brand {
	grid-area: brand;
	display: grid;
	line-height: 0.9;
	text-transform: uppercase;
}

.brand strong {
	display: block;
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: 44px;
	font-weight: 900;
}

.brand span {
	display: block;
	font-size: 30px;
	font-weight: 300;
	text-transform: none;
}

.menu-toggle {
	display: none;
}

.theme-switch {
	grid-area: theme;
	display: inline-flex;
	width: max-content;
	gap: 4px;
	padding: 4px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(12px);
}

.theme-switch button {
	min-height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 900;
}

.theme-switch button[aria-pressed="true"] {
	color: #060708;
	background: var(--text);
}

body[data-theme="light"] .theme-switch {
	background: rgba(255, 255, 255, 0.72);
}

body[data-theme="light"] .theme-switch button[aria-pressed="true"] {
	color: #ffffff;
	background: var(--text);
}

body[data-theme="sport"] .theme-switch {
	border-color: rgba(7, 7, 7, 0.18);
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(7, 7, 7, 0.08);
}

body[data-theme="sport"] .theme-switch button[aria-pressed="true"] {
	color: #ffffff;
	background: var(--red);
}

.main-nav {
	grid-area: nav;
	display: flex;
	justify-content: flex-end;
	gap: 34px;
	padding-top: 16px;
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	text-transform: uppercase;
}

.main-nav a,
.main-nav button {
	font-size: 27px;
	line-height: 1;
	white-space: nowrap;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
	transition: color 160ms ease, transform 160ms ease;
}

body[data-theme="light"] .main-nav a,
body[data-theme="light"] .main-nav button {
	text-shadow: none;
}

body[data-theme="sport"] .main-nav a,
body[data-theme="sport"] .main-nav button {
	text-shadow: none;
}

.main-nav a:hover,
.main-nav button:hover {
	color: var(--red);
	transform: translateY(-1px);
}

.hero {
	display: grid;
	place-items: center;
	min-height: calc(100vh - 280px);
	padding: 72px 0 44px;
	text-align: center;
}

.hero-copy {
	display: grid;
	justify-items: center;
	max-width: 890px;
}

.hero-collage {
	display: none;
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--red);
	font-size: 20px;
	font-weight: 900;
	text-transform: uppercase;
}

h1 {
	max-width: 930px;
	margin: 0;
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: 64px;
	font-weight: 900;
	line-height: 1.05;
	text-transform: uppercase;
	text-shadow: 0 4px 18px rgba(0, 0, 0, 0.64);
}

body[data-theme="light"] h1 {
	text-shadow: 0 2px 12px rgba(255, 255, 255, 0.8);
}

body[data-theme="sport"] h1 {
	text-shadow: none;
}

body[data-theme="sport"] .eyebrow {
	color: var(--red);
}

h1 span {
	color: var(--red);
}

.lead {
	max-width: 660px;
	margin: 20px 0 0;
	color: var(--muted);
	font-size: 20px;
	line-height: 1.45;
}

.status {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 30px;
	padding: 10px 16px;
	border: 1px solid rgba(69, 226, 138, 0.28);
	border-radius: 999px;
	color: #e8fff0;
	background: rgba(0, 0, 0, 0.32);
	font-size: 17px;
	font-weight: 700;
	backdrop-filter: blur(12px);
}

body[data-theme="light"] .status {
	color: #0d4f31;
	background: rgba(255, 255, 255, 0.72);
}

body[data-theme="sport"] .status {
	border-color: rgba(227, 6, 19, 0.24);
	color: #070707;
	background: #ffffff;
	box-shadow: 0 12px 30px rgba(7, 7, 7, 0.08);
}

body[data-theme="sport"] .status span {
	border-color: rgba(7, 7, 7, 0.16);
	border-top-color: var(--red);
	box-shadow: none;
}

.status span {
	width: 18px;
	height: 18px;
	border: 3px solid rgba(255, 255, 255, 0.35);
	border-top-color: var(--green);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: 34px;
}

.cta-button,
.submit-button,
.game-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 64px;
	padding: 0 42px;
	border-radius: 999px;
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: 30px;
	line-height: 1;
	text-transform: uppercase;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
	transition: transform 160ms ease, background 160ms ease;
}

.cta-button,
.submit-button {
	color: #060708;
	background: var(--text);
}

body[data-theme="light"] .cta-button,
body[data-theme="light"] .submit-button {
	color: #ffffff;
	background: var(--text);
}

body[data-theme="sport"] .cta-button,
body[data-theme="sport"] .submit-button {
	color: #ffffff;
	background: var(--red);
	box-shadow: 0 18px 42px rgba(227, 6, 19, 0.22);
}

.game-button {
	border: 1px solid rgba(255, 255, 255, 0.72);
	color: var(--text);
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(12px);
}

body[data-theme="light"] .game-button {
	border-color: rgba(17, 20, 23, 0.22);
	background: rgba(255, 255, 255, 0.74);
}

body[data-theme="sport"] .game-button {
	border: 2px solid #070707;
	color: #070707;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(7, 7, 7, 0.1);
}

.cta-button:hover,
.submit-button:hover,
.game-button:hover {
	background: #ffffff;
	color: #060708;
	transform: translateY(-2px);
}

body[data-theme="light"] .cta-button:hover,
body[data-theme="light"] .submit-button:hover,
body[data-theme="light"] .game-button:hover {
	background: #ffffff;
	color: #060708;
}

body[data-theme="sport"] .cta-button:hover,
body[data-theme="sport"] .submit-button:hover {
	background: #070707;
	color: #ffffff;
}

body[data-theme="sport"] .game-button:hover {
	background: #070707;
	color: #ffffff;
}

.feature-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.5);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
	backdrop-filter: blur(14px);
}

body[data-theme="light"] .feature-strip {
	border-color: rgba(17, 20, 23, 0.22);
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 24px 60px rgba(54, 45, 32, 0.16);
}

body[data-theme="sport"] .feature-strip {
	border: 2px solid #070707;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 24px 60px rgba(7, 7, 7, 0.12);
}

.feature-strip article {
	display: grid;
	grid-template-columns: 72px 1fr;
	align-items: center;
	gap: 16px;
	min-height: 104px;
	padding: 18px 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.42);
}

body[data-theme="light"] .feature-strip article {
	border-right-color: rgba(17, 20, 23, 0.16);
}

body[data-theme="sport"] .feature-strip article {
	border-right: 2px solid #070707;
}

.feature-strip article:last-child {
	border-right: 0;
}

.feature-strip strong {
	display: inline-grid;
	place-items: center;
	width: 64px;
	height: 64px;
	border: 2px solid rgba(255, 255, 255, 0.82);
	border-radius: 8px;
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: 25px;
	line-height: 1;
}

body[data-theme="light"] .feature-strip strong {
	border-color: rgba(17, 20, 23, 0.28);
	background: rgba(255, 255, 255, 0.58);
}

body[data-theme="sport"] .feature-strip strong {
	border-color: var(--red);
	color: #ffffff;
	background: var(--red);
}

.feature-strip h2 {
	margin: 0 0 4px;
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: 22px;
	line-height: 1;
	text-transform: uppercase;
}

.feature-strip p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.25;
}

.footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-top: 22px;
	color: var(--muted);
	font-size: 15px;
}

.footer p {
	margin: 0;
}

.footer div {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 18px;
}

.footer a,
.footer button {
	color: var(--text);
	font-weight: 700;
}

.footer a:hover,
.footer button:hover {
	color: var(--red);
}

.footer a,
.footer button,
.location a {
	transition: color 160ms ease;
}

.club-story {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
	gap: 34px;
	align-items: center;
	padding: 72px 0 28px;
}

.section-copy h2,
.details-band h2,
.bottom-cta h2 {
	margin: 0;
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: 48px;
	line-height: 1;
	text-transform: uppercase;
}

.section-copy p:not(.eyebrow),
.bottom-cta p {
	max-width: 580px;
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.5;
}

.inline-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.inline-actions button,
.inline-actions a,
.bottom-cta button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 999px;
	font-weight: 900;
}

.inline-actions button,
.bottom-cta button {
	color: #060708;
	background: var(--text);
}

.inline-actions a {
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.08);
}

.story-image {
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.story-image img,
.image-card-grid img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-image img {
	aspect-ratio: 16 / 9;
}

.image-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	padding: 20px 0 34px;
}

.image-card-grid article {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
}

.image-card-grid img {
	aspect-ratio: 1 / 0.82;
}

.image-card-grid div {
	padding: 18px;
}

.image-card-grid span {
	color: var(--red);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.image-card-grid h2 {
	margin: 8px 0 8px;
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: 28px;
	line-height: 1;
	text-transform: uppercase;
}

.image-card-grid p {
	margin: 0;
	color: var(--muted);
	line-height: 1.45;
}

.details-band {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 34px;
	align-items: start;
	padding: 34px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.detail-list {
	display: grid;
	gap: 14px;
}

.detail-list article {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	grid-template-areas:
		"number title"
		"number text";
	gap: 6px 16px;
	min-height: 0;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.42);
	backdrop-filter: blur(16px);
}

.detail-list strong {
	grid-area: number;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	color: var(--red);
	background: rgba(240, 59, 77, 0.12);
	font-weight: 900;
	line-height: 1;
}

.detail-list h3 {
	grid-area: title;
	margin: 0 0 4px;
	font-size: 18px;
	line-height: 1.18;
}

.detail-list p {
	grid-area: text;
	max-width: 620px;
	margin: 0;
	color: var(--muted);
	line-height: 1.4;
}

.bottom-cta {
	display: grid;
	justify-items: center;
	text-align: center;
	padding: 68px 0 42px;
}

.bottom-cta h2 {
	max-width: 760px;
}

.bottom-cta button {
	margin-top: 26px;
}

.alt-service-strip,
.booking-location {
	display: none;
	gap: 14px;
	padding: 34px 0;
}

.alt-service-strip {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.alt-service-strip article {
	display: grid;
	gap: 10px;
	justify-items: center;
	text-align: center;
	padding: 20px 14px;
	border-right: 1px solid var(--line);
}

.alt-service-strip article:last-child {
	border-right: 0;
}

.alt-service-strip span {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--red);
	font-weight: 900;
}

.alt-service-strip h2 {
	margin: 0;
	font-size: 20px;
	line-height: 1.1;
}

.alt-service-strip p {
	margin: 0;
	color: var(--muted);
	line-height: 1.35;
}

.booking-location {
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
	align-items: stretch;
}

.price-panel,
.location-panel {
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
}

.price-panel h2,
.location-panel h2 {
	margin: 0;
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: 44px;
	line-height: 1;
	text-transform: uppercase;
}

.panel-intro {
	margin: 16px 0 0;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.45;
}

.price-list {
	display: grid;
	gap: 12px;
	margin-top: 28px;
}

.price-list div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 58px;
	padding: 0 18px;
	border: 1px solid var(--line);
	border-radius: 999px;
}

.price-list span {
	color: var(--muted);
	font-weight: 800;
}

.price-list strong {
	color: var(--text);
	font-size: 24px;
}

.panel-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.panel-actions button,
.panel-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 999px;
	font-weight: 900;
}

.panel-actions button:first-child,
.panel-actions a:first-child {
	color: #060708;
	background: var(--text);
}

.panel-actions button:last-child,
.panel-actions a:last-child {
	border: 1px solid var(--line);
	color: var(--text);
	background: transparent;
}

.map-preview {
	position: relative;
	min-height: 330px;
	margin-top: 28px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background:
		linear-gradient(28deg, transparent 0 45%, rgba(239, 51, 72, 0.18) 45% 49%, transparent 49% 100%),
		linear-gradient(110deg, transparent 0 35%, rgba(16, 16, 16, 0.14) 35% 40%, transparent 40% 100%),
		linear-gradient(0deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.62)),
		linear-gradient(90deg, rgba(16, 16, 16, 0.08) 1px, transparent 1px),
		linear-gradient(0deg, rgba(16, 16, 16, 0.08) 1px, transparent 1px);
	background-size: auto, auto, auto, 62px 62px, 62px 62px;
}

.map-route {
	position: absolute;
	inset: 58px 90px 78px 110px;
	border-left: 8px solid var(--red);
	border-bottom: 8px solid var(--red);
	transform: skew(-12deg);
}

.map-pin {
	position: absolute;
	left: 48%;
	top: 55%;
	padding: 10px 14px;
	border-radius: 999px;
	color: #ffffff;
	background: var(--red);
	font-weight: 900;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.content-page {
	position: relative;
	z-index: 1;
	width: min(100%, 980px);
	margin: 0 auto;
	padding: 92px 0 56px;
}

.legal-shell {
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.56);
	backdrop-filter: blur(18px);
}

body[data-theme="light"] .legal-shell {
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 24px 60px rgba(54, 45, 32, 0.12);
}

body[data-theme="dark"] .details-band {
	border-color: rgba(247, 248, 248, 0.18);
}

body[data-theme="dark"] .detail-list article {
	background: rgba(3, 5, 6, 0.72);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

body[data-theme="light"] .details-band {
	border-color: rgba(17, 20, 23, 0.14);
}

body[data-theme="light"] .story-image,
body[data-theme="light"] .image-card-grid article {
	background: rgba(255, 255, 255, 0.64);
	box-shadow: 0 18px 42px rgba(54, 45, 32, 0.12);
}

body[data-theme="light"] .detail-list article {
	border-color: rgba(17, 20, 23, 0.1);
	background: rgba(255, 255, 255, 0.84);
	box-shadow: 0 18px 42px rgba(54, 45, 32, 0.1);
}

body[data-theme="light"] .detail-list strong {
	color: #ffffff;
	background: var(--red);
}

body[data-theme="light"] .inline-actions button,
body[data-theme="light"] .bottom-cta button {
	color: #ffffff;
	background: var(--text);
}

body[data-theme="light"] .inline-actions a {
	background: rgba(255, 255, 255, 0.64);
}

body[data-theme="sport"] .legal-shell {
	border: 2px solid #070707;
	background: #ffffff;
	box-shadow: 0 24px 60px rgba(7, 7, 7, 0.1);
}

.legal-shell h1 {
	max-width: none;
	margin-bottom: 18px;
	font-size: 56px;
	line-height: 1;
}

.legal-shell h2 {
	margin: 34px 0 10px;
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: 28px;
	line-height: 1;
	text-transform: uppercase;
}

.legal-shell p,
.legal-shell li {
	color: var(--muted);
	line-height: 1.55;
}

.legal-shell p {
	margin: 0 0 14px;
}

.legal-shell ul {
	margin: 0;
	padding-left: 20px;
}

.legal-note {
	display: inline-flex;
	margin-bottom: 22px;
	padding: 8px 12px;
	border: 1px solid rgba(240, 59, 77, 0.34);
	border-radius: 999px;
	color: #ffdce1 !important;
	background: rgba(240, 59, 77, 0.12);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

body[data-theme="light"] .legal-note {
	color: #8d1825 !important;
	background: rgba(217, 52, 69, 0.1);
}

body[data-theme="sport"] .legal-note {
	border-color: var(--red);
	color: #ffffff !important;
	background: var(--red);
}

.signup-dialog,
.game-dialog {
	width: min(92vw, 520px);
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--text);
	background: transparent;
	box-shadow: 0 32px 90px rgba(0, 0, 0, 0.62);
}

.game-dialog {
	width: min(94vw, 1050px);
}

.signup-dialog::backdrop,
.game-dialog::backdrop {
	background: rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(8px);
}

.dialog-shell,
.game-shell {
	position: relative;
	padding: 30px;
	background:
		linear-gradient(180deg, rgba(18, 24, 28, 0.96), rgba(5, 7, 9, 0.98)),
		var(--bg);
}

body[data-theme="light"] .dialog-shell,
body[data-theme="light"] .game-shell {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 241, 234, 0.98)),
		var(--bg);
}

body[data-theme="sport"] .dialog-shell,
body[data-theme="sport"] .game-shell {
	background: #ffffff;
}

body[data-theme="sport"] .signup-dialog,
body[data-theme="sport"] .game-dialog {
	border: 2px solid #070707;
	box-shadow: 0 32px 90px rgba(7, 7, 7, 0.24);
}

.dialog-close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--text);
	font-size: 24px;
	line-height: 1;
}

.dialog-kicker {
	margin: 0 0 8px;
	color: var(--red);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.dialog-shell h2,
.game-shell h2 {
	margin: 0;
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: 42px;
	line-height: 1;
	text-transform: uppercase;
}

.dialog-intro,
.form-note,
.success-message {
	color: var(--muted);
	line-height: 1.45;
}

.dialog-intro {
	margin: 14px 0 22px;
}

.signup-form {
	display: grid;
	gap: 14px;
}

.signup-form label {
	display: grid;
	gap: 7px;
	color: rgba(247, 248, 248, 0.86);
	font-size: 14px;
	font-weight: 800;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="tel"] {
	width: 100%;
	min-height: 46px;
	padding: 0 13px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	color: var(--text);
	background: rgba(255, 255, 255, 0.08);
	font: inherit;
	outline: none;
}

body[data-theme="light"] .signup-form input[type="text"],
body[data-theme="light"] .signup-form input[type="email"],
body[data-theme="light"] .signup-form input[type="tel"] {
	color: var(--text);
	background: rgba(255, 255, 255, 0.82);
	border-color: rgba(17, 20, 23, 0.18);
}

body[data-theme="sport"] .signup-form input[type="text"],
body[data-theme="sport"] .signup-form input[type="email"],
body[data-theme="sport"] .signup-form input[type="tel"] {
	color: #070707;
	background: #ffffff;
	border: 2px solid rgba(7, 7, 7, 0.18);
}

.signup-form input:focus {
	border-color: rgba(240, 59, 77, 0.78);
	box-shadow: 0 0 0 3px rgba(240, 59, 77, 0.18);
}

.check-row {
	display: grid;
	grid-template-columns: 20px 1fr;
	align-items: start;
	gap: 10px;
	font-weight: 600;
	line-height: 1.35;
}

.check-row input {
	width: 18px;
	height: 18px;
	margin: 1px 0 0;
	accent-color: var(--red);
}

.consent {
	color: var(--muted);
	font-size: 13px;
	font-weight: 500;
}

.submit-button {
	width: 100%;
	min-height: 54px;
	margin-top: 4px;
	font-size: 24px;
}

.form-note {
	margin: 16px 0 0;
	font-size: 13px;
}

.success-message {
	margin: 12px 0 0;
	color: #dfffea;
	font-weight: 800;
}

.game-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding-right: 44px;
}

.lesson-progress {
	display: flex;
	gap: 8px;
	padding-top: 10px;
}

.lesson-progress button {
	width: 13px;
	height: 13px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
}

.lesson-progress button.is-active {
	border-color: var(--red);
	background: var(--red);
}

.lesson-progress button.is-complete {
	border-color: var(--green);
	background: var(--green);
}

.game-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	gap: 20px;
	margin-top: 24px;
}

.court-panel,
.rule-card {
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
}

body[data-theme="light"] .court-panel,
body[data-theme="light"] .rule-card {
	border-color: rgba(17, 20, 23, 0.14);
	background: rgba(255, 255, 255, 0.72);
}

body[data-theme="sport"] .court-panel,
body[data-theme="sport"] .rule-card {
	border: 2px solid #070707;
	background: #ffffff;
}

.court-panel {
	overflow: hidden;
}

#padelGame {
	display: block;
	width: 100%;
	aspect-ratio: 12 / 7;
	background: #0a1417;
	touch-action: none;
}

.game-controls {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(0, 0, 0, 0.28);
}

body[data-theme="light"] .game-controls {
	border-top-color: rgba(17, 20, 23, 0.12);
	background: rgba(255, 255, 255, 0.68);
}

body[data-theme="sport"] .game-controls {
	border-top: 2px solid #070707;
	background: #ffffff;
}

.game-controls button {
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	color: var(--text);
	background: rgba(255, 255, 255, 0.08);
	font-size: 14px;
	font-weight: 800;
}

body[data-theme="light"] .game-controls button {
	border-color: rgba(17, 20, 23, 0.18);
	background: rgba(255, 255, 255, 0.76);
}

body[data-theme="sport"] .game-controls button {
	border: 2px solid #070707;
	background: #ffffff;
}

body[data-theme="sport"] .game-controls button:hover {
	border-color: var(--red);
	color: var(--red);
	background: #ffffff;
}

.game-controls button:hover {
	border-color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.14);
}

.rule-card {
	display: grid;
	align-content: start;
	gap: 14px;
	padding: 20px;
}

.rule-step {
	margin: 0;
	color: var(--red);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.rule-card h3 {
	margin: 0;
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: 34px;
	line-height: 0.98;
	text-transform: uppercase;
}

.rule-card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.45;
}

.mission,
.score-row {
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.22);
}

body[data-theme="light"] .mission,
body[data-theme="light"] .score-row {
	border-color: rgba(17, 20, 23, 0.12);
	background: rgba(244, 241, 234, 0.7);
}

body[data-theme="sport"] .mission,
body[data-theme="sport"] .score-row {
	border: 2px solid rgba(7, 7, 7, 0.16);
	background: #ffffff;
}

.mission {
	display: grid;
	gap: 6px;
	padding: 14px;
}

.mission strong,
.score-row span {
	color: var(--text);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.mission span {
	color: var(--muted);
	line-height: 1.35;
}

.score-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 14px;
}

.score-row strong {
	color: var(--green);
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: 32px;
	line-height: 1;
}

.game-message {
	min-height: 44px;
	padding-top: 2px;
	color: #e8fff0 !important;
	font-weight: 800;
}

body[data-theme="light"] .game-message {
	color: #0d4f31 !important;
}

body[data-theme="sport"] .game-message {
	color: #070707 !important;
}

.game-newsletter {
	display: grid;
	gap: 10px;
	padding: 16px;
	border: 1px solid rgba(69, 226, 138, 0.28);
	border-radius: 8px;
	background: rgba(69, 226, 138, 0.1);
}

body[data-theme="light"] .game-newsletter {
	background: rgba(24, 143, 86, 0.08);
}

body[data-theme="sport"] .game-newsletter {
	border-color: var(--red);
	background: rgba(227, 6, 19, 0.06);
}

.game-newsletter strong {
	color: #e8fff0;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

body[data-theme="light"] .game-newsletter strong {
	color: #0d4f31;
}

body[data-theme="sport"] .game-newsletter strong {
	color: var(--red);
}

.game-newsletter p {
	color: var(--muted);
}

.game-newsletter button {
	min-height: 44px;
	border-radius: 999px;
	color: #060708;
	background: var(--text);
	font-weight: 900;
}

body[data-theme="light"] .game-newsletter button {
	color: #ffffff;
}

body[data-theme="sport"] .game-newsletter button {
	color: #ffffff;
	background: var(--red);
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

@media (min-width: 1200px) {
	h1 {
		font-size: 70px;
	}
}

@media (max-width: 1080px) {
	.page {
		padding: 24px 24px 20px;
	}

	.site-header {
		gap: 26px;
	}

	.main-nav {
		gap: 20px;
	}

	.main-nav a,
	.main-nav button {
		font-size: 22px;
	}

	h1 {
		font-size: 54px;
	}

	.feature-strip {
		grid-template-columns: repeat(2, 1fr);
		border-radius: 8px;
	}

	.feature-strip article:nth-child(2) {
		border-right: 0;
	}

	.feature-strip article:nth-child(-n+2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.42);
	}

	.club-story,
	.details-band {
		grid-template-columns: 1fr;
	}

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

	.alt-service-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.booking-location {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.page {
		min-height: 100svh;
		padding: 18px 16px;
		background-position: center top;
	}

	.site-header {
		grid-template-columns: 1fr auto;
		grid-template-areas:
			"brand menu"
			"theme theme"
			"nav nav";
		align-items: center;
		gap: 18px;
	}

	.brand strong {
		font-size: 36px;
	}

	.brand span {
		font-size: 25px;
	}

	.theme-switch {
		width: 100%;
	}

	.theme-switch button {
		flex: 1;
	}

	.menu-toggle {
		grid-area: menu;
		display: inline-grid;
		align-content: center;
		gap: 5px;
		width: 46px;
		height: 46px;
		padding: 0 11px;
		border: 1px solid var(--line);
		border-radius: 50%;
		background: rgba(0, 0, 0, 0.32);
		backdrop-filter: blur(12px);
	}

	body[data-theme="light"] .menu-toggle {
		background: rgba(255, 255, 255, 0.72);
	}

	body[data-theme="sport"] .menu-toggle {
		border: 2px solid #070707;
		background: #ffffff;
	}

	.menu-toggle span {
		display: block;
		width: 22px;
		height: 2px;
		border-radius: 999px;
		background: var(--text);
		transition: transform 160ms ease, opacity 160ms ease;
	}

	.site-header.is-menu-open .menu-toggle span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.site-header.is-menu-open .menu-toggle span:nth-child(2) {
		opacity: 0;
	}

	.site-header.is-menu-open .menu-toggle span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.main-nav {
		display: none;
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 12px;
		border: 1px solid var(--line);
		border-radius: 8px;
		background: rgba(0, 0, 0, 0.54);
		backdrop-filter: blur(16px);
	}

	body[data-theme="light"] .main-nav {
		background: rgba(255, 255, 255, 0.84);
	}

	body[data-theme="sport"] .main-nav {
		border: 2px solid #070707;
		background: #ffffff;
	}

	.site-header.is-menu-open .main-nav {
		display: grid;
	}

	.main-nav a,
	.main-nav button {
		width: 100%;
		padding: 13px 12px;
		border: 1px solid var(--line);
		border-radius: 8px;
		background: rgba(0, 0, 0, 0.28);
		font-family: Inter, ui-sans-serif, system-ui, sans-serif;
		font-size: 15px;
		font-weight: 800;
		text-transform: none;
		text-align: left;
	}

	body[data-theme="light"] .main-nav a,
	body[data-theme="light"] .main-nav button {
		background: rgba(255, 255, 255, 0.74);
	}

	body[data-theme="sport"] .main-nav a,
	body[data-theme="sport"] .main-nav button {
		border: 2px solid #070707;
		background: #ffffff;
	}

	.hero {
		min-height: auto;
		padding: 64px 0 34px;
	}

	.eyebrow {
		font-size: 14px;
		line-height: 1.35;
	}

	h1 {
		font-size: 40px;
		line-height: 1.02;
	}

	.lead {
		font-size: 17px;
	}

	.status {
		font-size: 15px;
	}

	.hero-actions {
		width: 100%;
		margin-top: 28px;
	}

	.cta-button {
		width: 100%;
		min-height: 58px;
		padding: 0 20px;
		font-size: 25px;
	}

	.game-button {
		width: 100%;
		min-height: 54px;
		padding: 0 18px;
		font-size: 22px;
	}

	.feature-strip {
		grid-template-columns: 1fr;
	}

	.feature-strip article,
	.feature-strip article:nth-child(2) {
		grid-template-columns: 58px 1fr;
		min-height: 92px;
		padding: 16px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.32);
	}

	body[data-theme="sport"] .feature-strip article,
	body[data-theme="sport"] .feature-strip article:nth-child(2) {
		border-right: 0;
		border-bottom: 2px solid #070707;
	}

	.feature-strip article:last-child {
		border-bottom: 0;
	}

	.club-story {
		padding: 48px 0 20px;
	}

	.section-copy h2,
	.details-band h2,
	.bottom-cta h2 {
		font-size: 34px;
	}

	.image-card-grid {
		grid-template-columns: 1fr;
	}

	.details-band {
		padding: 28px 0;
	}

	.detail-list article {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.alt-service-strip {
		grid-template-columns: 1fr;
		padding: 24px 0;
	}

	.alt-service-strip article {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.alt-service-strip article:last-child {
		border-bottom: 0;
	}

	.booking-location {
		grid-template-columns: 1fr;
		padding: 28px 0;
	}

	.price-panel,
	.location-panel {
		padding: 22px;
	}

	.price-panel h2,
	.location-panel h2 {
		font-size: 34px;
	}

	.price-list div {
		min-height: 0;
		padding: 14px 16px;
	}

	.map-preview {
		min-height: 250px;
	}

	.bottom-cta {
		padding: 46px 18px 34px;
	}

	.feature-strip strong {
		width: 52px;
		height: 52px;
		font-size: 20px;
	}

	.feature-strip h2 {
		font-size: 19px;
	}

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

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

	.content-page {
		padding: 48px 0 28px;
	}

	.legal-shell {
		padding: 22px 18px;
	}

	.legal-shell h1 {
		font-size: 36px;
	}

	.legal-shell h2 {
		font-size: 24px;
	}

	.dialog-shell {
		padding: 24px 18px;
	}

	.game-shell {
		padding: 22px 14px 14px;
	}

	.game-header {
		display: grid;
		gap: 14px;
		padding-right: 42px;
	}

	.game-shell h2 {
		font-size: 34px;
	}

	.game-layout {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.rule-card {
		padding: 16px;
	}

	.rule-card h3 {
		font-size: 28px;
	}

	.game-controls button {
		flex: 1 1 120px;
	}
}

@media (max-width: 420px) {
	h1 {
		font-size: 34px;
	}

	.dialog-shell h2 {
		font-size: 34px;
	}
}

/* Alternative theme: clean white, black type, strong action accents. */
body[data-theme="sport"] {
	--bg: #fbfaf8;
	--text: #101010;
	--muted: rgba(16, 16, 16, 0.66);
	--line: rgba(16, 16, 16, 0.12);
	--red: #ef3348;
	--green: #101010;
	background: #fbfaf8;
}

body[data-theme="sport"] .page {
	background:
		linear-gradient(90deg, #fbfaf8 0%, rgba(251, 250, 248, 0.96) 38%, rgba(251, 250, 248, 0.82) 66%, #fbfaf8 100%),
		linear-gradient(180deg, rgba(251, 250, 248, 0.9), #fbfaf8 76%),
		url("assets/court.png") right center / min(760px, 58vw) auto no-repeat;
}

body[data-theme="sport"] .page::after {
	background: linear-gradient(180deg, transparent, #fbfaf8 88%);
}

body[data-theme="sport"] .site-header {
	align-items: start;
}

body[data-theme="sport"] .brand strong {
	color: #101010;
}

body[data-theme="sport"] .brand span {
	color: rgba(16, 16, 16, 0.72);
}

body[data-theme="sport"] .theme-switch {
	border: 1px solid rgba(16, 16, 16, 0.1);
	background: #ffffff;
	box-shadow: 0 12px 28px rgba(16, 16, 16, 0.08);
}

body[data-theme="sport"] .theme-switch button[aria-pressed="true"] {
	color: #ffffff;
	background: #101010;
}

body[data-theme="sport"] .main-nav a,
body[data-theme="sport"] .main-nav button {
	color: #101010;
	text-shadow: none;
}

body[data-theme="sport"] .main-nav a:hover,
body[data-theme="sport"] .main-nav button:hover {
	color: var(--red);
}

body[data-theme="sport"] .hero {
	grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.88fr);
	gap: 48px;
	place-items: center;
	text-align: left;
}

body[data-theme="sport"] .hero-copy {
	justify-items: start;
	max-width: 760px;
}

body[data-theme="sport"] .hero-collage {
	position: relative;
	display: block;
	width: min(100%, 520px);
	height: 470px;
	justify-self: end;
}

body[data-theme="sport"] .collage-card {
	position: absolute;
	margin: 0;
	overflow: hidden;
	border: 10px solid #ffffff;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 22px 55px rgba(16, 16, 16, 0.18);
}

body[data-theme="sport"] .collage-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body[data-theme="sport"] .collage-main {
	inset: 34px auto auto 22px;
	width: 370px;
	height: 430px;
	z-index: 2;
}

body[data-theme="sport"] .collage-top {
	top: 0;
	right: 0;
	width: 255px;
	height: 178px;
	z-index: 3;
	transform: rotate(2.5deg);
}

body[data-theme="sport"] .collage-bottom {
	right: 16px;
	bottom: 16px;
	width: 305px;
	height: 205px;
	z-index: 4;
	transform: rotate(-2deg);
}

body[data-theme="sport"] .eyebrow {
	margin-bottom: 16px;
	padding: 7px 11px;
	border: 1px solid rgba(239, 51, 72, 0.22);
	border-radius: 999px;
	color: var(--red);
	background: rgba(239, 51, 72, 0.08);
	font-size: 13px;
	letter-spacing: 0;
}

body[data-theme="sport"] h1 {
	max-width: 760px;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 76px;
	font-weight: 900;
	line-height: 0.98;
	text-transform: none;
	text-shadow: none;
}

body[data-theme="sport"] h1 span {
	color: var(--red);
}

body[data-theme="sport"] .lead {
	max-width: 610px;
	color: rgba(16, 16, 16, 0.7);
}

body[data-theme="sport"] .status {
	border: 1px solid rgba(16, 16, 16, 0.1);
	color: #101010;
	background: #ffffff;
	box-shadow: 0 16px 34px rgba(16, 16, 16, 0.08);
}

body[data-theme="sport"] .status span {
	width: 9px;
	height: 9px;
	border: 0;
	background: var(--red);
	box-shadow: 0 0 0 6px rgba(239, 51, 72, 0.14);
	animation: none;
}

body[data-theme="sport"] .hero-actions {
	justify-content: flex-start;
}

body[data-theme="sport"] .cta-button,
body[data-theme="sport"] .submit-button {
	color: #ffffff;
	background: var(--red);
	box-shadow: 0 16px 34px rgba(239, 51, 72, 0.22);
}

body[data-theme="sport"] .game-button {
	border: 1px solid #101010;
	color: #101010;
	background: #ffffff;
	box-shadow: none;
}

body[data-theme="sport"] .cta-button:hover,
body[data-theme="sport"] .submit-button:hover,
body[data-theme="sport"] .game-button:hover {
	color: #ffffff;
	background: #101010;
}

body[data-theme="sport"] .feature-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

body[data-theme="sport"] .feature-strip article,
body[data-theme="sport"] .feature-strip article:nth-child(2) {
	display: grid;
	grid-template-columns: 58px 1fr;
	min-height: 118px;
	padding: 20px;
	border: 1px solid rgba(16, 16, 16, 0.1);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 16px 34px rgba(16, 16, 16, 0.08);
}

body[data-theme="sport"] .feature-strip article:last-child {
	border: 1px solid rgba(16, 16, 16, 0.1);
}

body[data-theme="sport"] .feature-strip strong {
	width: 50px;
	height: 50px;
	border: 0;
	border-radius: 8px;
	color: #ffffff;
	background: #101010;
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 16px;
	font-weight: 900;
}

body[data-theme="sport"] .feature-strip h2 {
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0;
}

body[data-theme="sport"] .feature-strip p {
	color: rgba(16, 16, 16, 0.62);
}

body[data-theme="sport"] .alt-service-strip {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	padding: 48px 0;
	border-color: rgba(16, 16, 16, 0.12);
	background: rgba(255, 255, 255, 0.72);
}

body[data-theme="sport"] .alt-service-strip article {
	padding: 28px 18px;
	border-right: 1px solid rgba(16, 16, 16, 0.1);
}

body[data-theme="sport"] .alt-service-strip span {
	width: 52px;
	height: 52px;
	border-color: rgba(16, 16, 16, 0.12);
	color: var(--red);
	background: #ffffff;
}

body[data-theme="sport"] .alt-service-strip h2 {
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: 24px;
	line-height: 1;
}

body[data-theme="sport"] .alt-service-strip p {
	max-width: 190px;
	color: rgba(16, 16, 16, 0.58);
	font-weight: 800;
}

body[data-theme="sport"] .club-story {
	grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
	padding-top: 92px;
}

body[data-theme="sport"] .section-copy h2,
body[data-theme="sport"] .details-band h2,
body[data-theme="sport"] .bottom-cta h2 {
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 54px;
	font-weight: 900;
	line-height: 0.98;
	text-transform: none;
}

body[data-theme="sport"] .section-copy p:not(.eyebrow),
body[data-theme="sport"] .bottom-cta p {
	color: rgba(16, 16, 16, 0.68);
}

body[data-theme="sport"] .inline-actions button,
body[data-theme="sport"] .bottom-cta button {
	color: #ffffff;
	background: var(--red);
}

body[data-theme="sport"] .inline-actions a {
	border: 1px solid rgba(16, 16, 16, 0.14);
	color: #101010;
	background: #ffffff;
}

body[data-theme="sport"] .story-image {
	border: 0;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 22px 50px rgba(16, 16, 16, 0.12);
}

body[data-theme="sport"] .image-card-grid {
	gap: 18px;
}

body[data-theme="sport"] .image-card-grid article {
	border: 0;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(16, 16, 16, 0.09);
	backdrop-filter: none;
}

body[data-theme="sport"] .image-card-grid img {
	aspect-ratio: 1 / 0.92;
	filter: saturate(1.03) contrast(1.02);
}

body[data-theme="sport"] .image-card-grid span {
	color: var(--red);
}

body[data-theme="sport"] .image-card-grid h2 {
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 24px;
	font-weight: 900;
	text-transform: none;
}

body[data-theme="sport"] .details-band {
	display: grid;
	grid-template-columns: 0.9fr 1.35fr;
	gap: 52px;
	align-items: start;
	border-color: rgba(16, 16, 16, 0.1);
}

body[data-theme="sport"] .detail-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

body[data-theme="sport"] .detail-list article {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	align-items: start;
	min-height: 0;
	padding: 22px 24px;
	border: 0;
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(16, 16, 16, 0.08);
}

body[data-theme="sport"] .detail-list strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	color: #ffffff;
	background: var(--red);
	font-size: 16px;
	line-height: 1;
}

body[data-theme="sport"] .detail-list h3 {
	margin: 0 0 8px;
	font-size: 22px;
	line-height: 1.15;
}

body[data-theme="sport"] .detail-list p {
	max-width: 620px;
	font-size: 17px;
	line-height: 1.45;
}

body[data-theme="sport"] .booking-location {
	display: grid;
	grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.24fr);
	gap: 22px;
	padding: 48px 0;
}

body[data-theme="sport"] .price-panel,
body[data-theme="sport"] .location-panel {
	padding: 34px;
	border: 1px solid rgba(16, 16, 16, 0.12);
	border-radius: 28px;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(16, 16, 16, 0.08);
}

body[data-theme="sport"] .price-panel h2,
body[data-theme="sport"] .location-panel h2 {
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: 72px;
	line-height: 0.92;
	text-transform: none;
	color: var(--red);
}

body[data-theme="sport"] .panel-intro {
	max-width: 760px;
	color: rgba(16, 16, 16, 0.62);
	font-weight: 800;
}

body[data-theme="sport"] .price-list div {
	min-height: 76px;
	padding: 0 28px;
	border-color: rgba(16, 16, 16, 0.12);
	background: #ffffff;
}

body[data-theme="sport"] .price-list span {
	color: rgba(16, 16, 16, 0.58);
	font-size: 18px;
}

body[data-theme="sport"] .price-list strong {
	font-size: 34px;
}

body[data-theme="sport"] .panel-actions button:first-child,
body[data-theme="sport"] .panel-actions a:first-child {
	color: #ffffff;
	background: var(--red);
}

body[data-theme="sport"] .panel-actions button:last-child,
body[data-theme="sport"] .panel-actions a:last-child {
	border-color: rgba(16, 16, 16, 0.12);
	color: #101010;
	background: #ffffff;
}

body[data-theme="sport"] .map-preview {
	min-height: 335px;
	border-color: rgba(16, 16, 16, 0.12);
	background:
		linear-gradient(28deg, transparent 0 45%, rgba(239, 51, 72, 0.22) 45% 49%, transparent 49% 100%),
		linear-gradient(110deg, transparent 0 35%, rgba(16, 16, 16, 0.16) 35% 40%, transparent 40% 100%),
		linear-gradient(0deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
		linear-gradient(90deg, rgba(16, 16, 16, 0.08) 1px, transparent 1px),
		linear-gradient(0deg, rgba(16, 16, 16, 0.08) 1px, transparent 1px);
	background-size: auto, auto, auto, 62px 62px, 62px 62px;
}

body[data-theme="sport"] .map-route {
	border-color: var(--red);
}

body[data-theme="sport"] .map-pin {
	background: var(--red);
}

body[data-theme="sport"] .bottom-cta {
	margin-top: 30px;
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(16, 16, 16, 0.86), rgba(16, 16, 16, 0.56)),
		url("assets/court-wide.png") center / cover no-repeat;
}

body[data-theme="sport"] .bottom-cta h2,
body[data-theme="sport"] .bottom-cta p {
	color: #ffffff;
}

body[data-theme="sport"] .footer {
	margin-top: 20px;
	border-top: 1px solid rgba(16, 16, 16, 0.12);
	color: rgba(16, 16, 16, 0.62);
}

body[data-theme="sport"] .footer a,
body[data-theme="sport"] .footer button {
	color: #101010;
}

body[data-theme="sport"] .footer a:hover,
body[data-theme="sport"] .footer button:hover {
	color: var(--red);
}

body[data-theme="sport"] .legal-shell,
body[data-theme="sport"] .dialog-shell,
body[data-theme="sport"] .game-shell,
body[data-theme="sport"] .court-panel,
body[data-theme="sport"] .rule-card {
	border: 1px solid rgba(16, 16, 16, 0.1);
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(16, 16, 16, 0.08);
}

body[data-theme="sport"] .signup-dialog,
body[data-theme="sport"] .game-dialog {
	border: 0;
	box-shadow: 0 32px 90px rgba(16, 16, 16, 0.22);
}

body[data-theme="sport"] .legal-note {
	border: 0;
	color: #ffffff !important;
	background: var(--red);
}

body[data-theme="sport"] .game-controls,
body[data-theme="sport"] .mission,
body[data-theme="sport"] .score-row,
body[data-theme="sport"] .game-newsletter {
	border-color: rgba(16, 16, 16, 0.1);
	background: #fbfaf8;
}

body[data-theme="sport"] .game-newsletter strong,
body[data-theme="sport"] .game-message {
	color: var(--red) !important;
}

body[data-theme="sport"] .game-controls button,
body[data-theme="sport"] .game-newsletter button {
	border: 1px solid #101010;
	color: #101010;
	background: #ffffff;
}

body[data-theme="sport"] .game-newsletter button {
	color: #ffffff;
	border-color: var(--red);
	background: var(--red);
}

@media (min-width: 1200px) {
	body[data-theme="sport"] h1 {
		font-size: 82px;
	}
}

@media (max-width: 1080px) {
	body[data-theme="sport"] h1 {
		font-size: 58px;
	}

	body[data-theme="sport"] .hero {
		grid-template-columns: 1fr;
	}

	body[data-theme="sport"] .hero-collage {
		width: min(100%, 650px);
		height: 360px;
		justify-self: start;
		margin-top: 12px;
	}

	body[data-theme="sport"] .collage-main {
		left: 0;
		width: 360px;
		height: 320px;
	}

	body[data-theme="sport"] .collage-top {
		width: 245px;
		height: 160px;
	}

	body[data-theme="sport"] .collage-bottom {
		width: 300px;
		height: 185px;
	}

	body[data-theme="sport"] .feature-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body[data-theme="sport"] .details-band {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	body[data-theme="sport"] .alt-service-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		border: 1px solid rgba(16, 16, 16, 0.12);
	}

	body[data-theme="sport"] .alt-service-strip article:nth-child(2n) {
		border-right: 0;
	}

	body[data-theme="sport"] .booking-location {
		grid-template-columns: 1fr;
	}

	body[data-theme="sport"] .price-panel h2,
	body[data-theme="sport"] .location-panel h2 {
		font-size: 56px;
	}
}

@media (max-width: 760px) {
	body[data-theme="sport"] .page {
		background:
			linear-gradient(180deg, rgba(251, 250, 248, 0.9), #fbfaf8 70%),
			url("assets/court.png") center top / 980px auto no-repeat;
	}

	body[data-theme="sport"] .menu-toggle,
	body[data-theme="sport"] .main-nav {
		border: 1px solid rgba(16, 16, 16, 0.12);
		background: #ffffff;
	}

	body[data-theme="sport"] .main-nav a,
	body[data-theme="sport"] .main-nav button {
		border: 1px solid rgba(16, 16, 16, 0.1);
		background: #ffffff;
	}

	body[data-theme="sport"] .hero {
		text-align: left;
	}

	body[data-theme="sport"] h1 {
		font-size: 43px;
	}

	body[data-theme="sport"] .hero-collage {
		width: 100%;
		height: 320px;
	}

	body[data-theme="sport"] .collage-card {
		border-width: 7px;
	}

	body[data-theme="sport"] .collage-main {
		top: 28px;
		left: 0;
		width: 72%;
		height: 260px;
	}

	body[data-theme="sport"] .collage-top {
		top: 0;
		right: 0;
		width: 46%;
		height: 124px;
	}

	body[data-theme="sport"] .collage-bottom {
		right: 4px;
		bottom: 12px;
		width: 58%;
		height: 146px;
	}

	body[data-theme="sport"] .hero-actions {
		justify-content: stretch;
	}

	body[data-theme="sport"] .feature-strip {
		grid-template-columns: 1fr;
	}

	body[data-theme="sport"] .feature-strip article,
	body[data-theme="sport"] .feature-strip article:nth-child(2),
	body[data-theme="sport"] .feature-strip article:last-child {
		border: 1px solid rgba(16, 16, 16, 0.1);
	}

	body[data-theme="sport"] .alt-service-strip {
		grid-template-columns: 1fr;
		padding: 28px 0;
		border-left: 0;
		border-right: 0;
	}

	body[data-theme="sport"] .alt-service-strip article,
	body[data-theme="sport"] .alt-service-strip article:nth-child(2n) {
		border-right: 0;
		border-bottom: 1px solid rgba(16, 16, 16, 0.1);
	}

	body[data-theme="sport"] .alt-service-strip article:last-child {
		border-bottom: 0;
	}

	body[data-theme="sport"] .price-panel,
	body[data-theme="sport"] .location-panel {
		padding: 24px;
		border-radius: 20px;
	}

	body[data-theme="sport"] .price-panel h2,
	body[data-theme="sport"] .location-panel h2 {
		font-size: 42px;
	}

	body[data-theme="sport"] .price-list div {
		min-height: 64px;
		padding: 0 18px;
	}

	body[data-theme="sport"] .price-list strong {
		font-size: 26px;
	}

	body[data-theme="sport"] .map-preview {
		min-height: 250px;
	}

	body[data-theme="sport"] .detail-list article {
		grid-template-columns: auto minmax(0, 1fr);
		gap: 12px;
		padding: 20px;
	}
}
