body.bololo-template {
	background: var(--bololo-bg);
	color: var(--bololo-text);
	font-family: var(--bololo-font-body);
	line-height: 1.55;
	margin: 0;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}

.bololo-template *,
.bololo-template *::before,
.bololo-template *::after {
	box-sizing: border-box;
	letter-spacing: 0;
}

.bololo-template a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

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

.bololo-template img,
.bololo-template iframe,
.bololo-template svg {
	display: block;
	max-width: 100%;
}

.bololo-svg-sprite {
	height: 0;
	overflow: hidden;
	position: absolute;
	width: 0;
}

.bololo-icon-svg {
	color: currentColor;
	display: block;
	fill: none;
	height: 1em;
	stroke: currentColor;
	width: 1em;
}

.bololo-icon-svg use {
	color: inherit;
}

.b-ico {
	color: currentColor;
	display: inline-block;
	fill: none;
	flex: 0 0 auto;
	height: 1em;
	stroke: currentColor;
	vertical-align: -0.15em;
	width: 1em;
}

.b-ico use {
	color: inherit;
}

.bololo-template :focus-visible {
	outline: 3px solid var(--bololo-cyan);
	outline-offset: 3px;
}

@property --bololo-neon-angle {
	syntax: "<angle>";
	inherits: false;
	initial-value: 0deg;
}

.bololo-lang-text[data-bololo-lang-copy="en"] {
	display: none;
}

html[data-bololo-lang="en"] .bololo-lang-text[data-bololo-lang-copy="es"] {
	display: none;
}

html[data-bololo-lang="en"] .bololo-lang-text[data-bololo-lang-copy="en"] {
	display: inline;
}

.bololo-skip-link {
	background: var(--bololo-cyan);
	border-radius: 0 0 var(--bololo-radius) var(--bololo-radius);
	color: #031016;
	font-weight: 900;
	left: 1rem;
	padding: 0.75rem 1rem;
	position: fixed;
	top: -8rem;
	z-index: 1000;
}

.bololo-skip-link:focus {
	top: 0;
}

.bololo-page {
	background:
		radial-gradient(ellipse at 50% 0%, rgba(17, 199, 230, 0.08), transparent 38rem),
		var(--bololo-bg);
	min-height: 100vh;
	overflow: hidden;
	width: 100%;
}

.bololo-section-inner,
.bololo-header-inner,
.bololo-footer-inner {
	margin-inline: auto;
	max-width: var(--bololo-container);
	padding-inline: 1.25rem;
	width: 100%;
}

.bololo-site-header {
	background:
		linear-gradient(90deg, rgba(17, 199, 230, 0.08), transparent 24%, rgba(240, 71, 166, 0.08) 100%),
		var(--bololo-header-bg);
	border-bottom: 1px solid var(--bololo-border);
	color: var(--bololo-text);
	inset: 0 0 auto;
	position: fixed;
	z-index: 120;
}

@supports ((backdrop-filter: blur(22px)) or (-webkit-backdrop-filter: blur(22px))) {
	.bololo-site-header {
		-webkit-backdrop-filter: blur(22px);
		backdrop-filter: blur(22px);
	}
}

.bololo-site-header.is-scrolled {
	box-shadow: 0 14px 48px rgba(0, 0, 0, 0.24);
}

body.admin-bar .bololo-site-header {
	top: 32px;
}

.bololo-header-inner {
	align-items: center;
	display: grid;
	gap: 1rem;
	grid-template-columns: auto minmax(0, 1fr) auto auto;
	min-height: var(--bololo-header-height);
}

.bololo-brand {
	align-items: center;
	display: inline-flex;
	gap: 0.65rem;
	text-decoration: none;
}

.bololo-brand img {
	height: auto;
	max-height: 3.7rem;
	object-fit: contain;
	width: 11.2rem;
}

html[data-bololo-theme="light"] .bololo-brand img {
	filter: invert(1);
}

.bololo-brand span {
	font-size: 0.78rem;
	font-weight: 950;
	text-transform: uppercase;
	white-space: nowrap;
}

.bololo-nav {
	align-items: center;
	display: flex;
	gap: 0.2rem;
	justify-content: center;
	min-width: 0;
}

.bololo-nav-group {
	position: relative;
}

.bololo-nav-trigger,
.bololo-nav a,
.bololo-footer-nav a {
	background: transparent;
	border: 0;
	border-radius: var(--bololo-radius);
	color: inherit;
	cursor: pointer;
	font: inherit;
	font-size: 0.88rem;
	font-weight: 730;
	padding: 0.72rem 0.78rem;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
}

.bololo-nav-trigger::after {
	border: solid currentColor;
	border-width: 0 2px 2px 0;
	content: "";
	display: block;
	height: 0.36rem;
	left: 50%;
	margin: 0;
	opacity: 0;
	position: absolute;
	top: calc(100% - 0.34rem);
	transform: translate(-50%, -0.22rem) rotate(45deg) scale(0.82);
	transition: opacity 180ms ease, transform 180ms ease;
	width: 0.36rem;
}

.bololo-nav-trigger:hover::after,
.bololo-nav-group.is-open > .bololo-nav-trigger::after,
.bololo-nav-group:focus-within > .bololo-nav-trigger::after {
	opacity: 1;
	transform: translate(-50%, 0.08rem) rotate(45deg) scale(1);
}

.bololo-nav-trigger:hover,
.bololo-nav-group.is-open > .bololo-nav-trigger,
.bololo-nav-group:focus-within > .bololo-nav-trigger,
.bololo-footer-nav a:hover {
	background:
		linear-gradient(135deg, rgba(17, 199, 230, 0.12), rgba(240, 71, 166, 0.09)),
		var(--bololo-surface-strong);
	box-shadow: inset 0 0 0 1px rgba(17, 199, 230, 0.16);
	color: var(--bololo-cyan);
}

.bololo-mega-panel {
	background:
		radial-gradient(circle at 12% 16%, rgba(17, 199, 230, 0.12), transparent 34%),
		radial-gradient(circle at 88% 82%, rgba(240, 71, 166, 0.1), transparent 32%),
		color-mix(in srgb, var(--bololo-bg-alt) 92%, transparent);
	border: 1px solid var(--bololo-border);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow), 0 0 34px rgba(17, 199, 230, 0.08);
	display: grid;
	gap: 0.65rem;
	left: 50%;
	min-width: min(26rem, calc(100vw - 2rem));
	opacity: 0;
	padding: 0.7rem;
	pointer-events: none;
	position: absolute;
	top: calc(100% + 0.9rem);
	transform: translateX(-50%) translateY(0.5rem);
	transition: opacity 160ms ease, transform 160ms ease;
	visibility: hidden;
}

@supports ((backdrop-filter: blur(18px)) or (-webkit-backdrop-filter: blur(18px))) {
	.bololo-mega-panel {
		-webkit-backdrop-filter: blur(18px);
		backdrop-filter: blur(18px);
	}
}

.bololo-nav-group.is-open .bololo-mega-panel,
.bololo-nav-group:hover .bololo-mega-panel,
.bololo-nav-group:focus-within .bololo-mega-panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
	visibility: visible;
}

.bololo-mega-link {
	border-radius: var(--bololo-radius);
	display: grid;
	gap: 0.75rem;
	grid-template-columns: 2.55rem minmax(0, 1fr);
	padding: 0.9rem;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bololo-mega-link:hover {
	background: var(--bololo-surface);
	box-shadow: inset 0 0 0 1px rgba(17, 199, 230, 0.16), 0 0 24px rgba(240, 71, 166, 0.1);
	transform: translateY(-0.08rem);
}

.bololo-mega-icon,
.bololo-footer-link-icon {
	align-items: center;
	color: var(--bololo-cyan);
	display: inline-flex;
	flex: 0 0 auto;
	justify-content: center;
}

.bololo-mega-icon {
	background: rgba(17, 199, 230, 0.1);
	border: 1px solid rgba(17, 199, 230, 0.28);
	border-radius: 999px;
	height: 2.55rem;
	width: 2.55rem;
}

.bololo-mega-icon svg,
.bololo-footer-link-icon svg {
	height: 1.35rem;
	width: 1.35rem;
}

.bololo-mega-copy {
	display: grid;
	gap: 0.18rem;
}

.bololo-mega-copy strong {
	color: var(--bololo-text);
	font-size: 0.95rem;
	font-weight: 760;
	line-height: 1.15;
}

.bololo-mega-copy > span {
	color: var(--bololo-text-muted);
	font-size: 0.84rem;
	font-weight: 640;
}

.bololo-header-controls {
	align-items: center;
	display: flex;
	gap: 0.55rem;
	justify-content: flex-end;
}

.bololo-site-search {
	align-items: center;
	background: color-mix(in srgb, var(--bololo-surface) 86%, transparent);
	border: 1px solid var(--bololo-border);
	border-radius: 999px;
	display: inline-flex;
	min-height: 2.6rem;
	overflow: hidden;
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.bololo-site-search:focus-within,
.bololo-site-search:hover {
	background: var(--bololo-surface);
	border-color: rgba(17, 199, 230, 0.5);
	box-shadow: 0 0 22px rgba(17, 199, 230, 0.14);
}

.bololo-site-search input {
	appearance: none;
	background: transparent;
	border: 0;
	color: var(--bololo-text);
	font: inherit;
	font-size: 0.82rem;
	font-weight: 650;
	min-width: 0;
	outline: 0;
	padding: 0.68rem 0 0.68rem 0.9rem;
	width: 10.2rem;
}

.bololo-site-search input::placeholder {
	color: var(--bololo-text-muted);
}

.bololo-site-search button {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--bololo-cyan);
	cursor: pointer;
	display: inline-flex;
	height: 2.4rem;
	justify-content: center;
	padding: 0;
	width: 2.45rem;
}

.bololo-site-search button svg {
	height: 1.05rem;
	width: 1.05rem;
}

.bololo-nav-search {
	display: none;
}

.bololo-lang-switch {
	align-items: center;
	background: var(--bololo-surface);
	border: 1px solid var(--bololo-border);
	border-radius: 999px;
	display: inline-flex;
	padding: 0.18rem;
}

.bololo-lang-switch button,
.bololo-theme-toggle,
.bololo-menu-toggle {
	align-items: center;
	background: transparent;
	border: 0;
	color: inherit;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	justify-content: center;
}

.bololo-lang-switch button {
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 800;
	height: 1.82rem;
	width: 2.1rem;
}

.bololo-lang-switch button.is-active {
	background: var(--bololo-cyan);
	color: #05070b;
}

.bololo-theme-toggle,
.bololo-menu-toggle {
	background: var(--bololo-surface);
	border: 1px solid var(--bololo-border);
	border-radius: var(--bololo-radius);
	height: 2.6rem;
	width: 2.6rem;
}

.bololo-theme-toggle .bololo-theme-icon {
	color: currentColor;
	display: none;
	height: 1.25rem;
	width: 1.25rem;
}

.bololo-theme-toggle svg {
	height: 100%;
	width: 100%;
}

.bololo-theme-toggle circle,
.bololo-theme-toggle path {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

html[data-bololo-theme="dark"] .bololo-theme-moon,
html[data-bololo-theme="light"] .bololo-theme-sun {
	display: block;
}

.bololo-button,
.bololo-header-cta,
.bololo-social-link,
.bololo-text-link {
	align-items: center;
	border-radius: var(--bololo-radius);
	display: inline-flex;
	font-weight: 760;
	justify-content: center;
	line-height: 1.1;
	min-height: 2.9rem;
	text-decoration: none;
	transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.bololo-button,
.bololo-header-cta {
	gap: 0.58rem;
	padding: 0.88rem 1.05rem;
}

.bololo-button,
.bololo-header-cta,
.bololo-social-link {
	isolation: isolate;
	overflow: hidden;
	position: relative;
}

.bololo-button > *,
.bololo-header-cta > *,
.bololo-social-link > * {
	position: relative;
	z-index: 2;
}

.bololo-button-icon {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	height: 1.2rem;
	justify-content: center;
	width: 1.2rem;
}

.bololo-button-icon svg {
	height: 100%;
	width: 100%;
}

.bololo-button-primary,
.bololo-header-cta {
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--bololo-magenta) 92%, #fff 8%), var(--bololo-magenta-deep));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.22),
		var(--bololo-glow-magenta),
		0 16px 32px rgba(0, 0, 0, 0.18);
	color: #fff;
}

.bololo-button-secondary {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
	border: 1px solid var(--bololo-border);
	color: var(--bololo-text);
}

.bololo-button::before,
.bololo-header-cta::before,
.bololo-social-link::before {
	background:
		conic-gradient(
			from var(--bololo-neon-angle),
			rgba(17, 199, 230, 0) 0deg,
			rgba(17, 199, 230, 0.22) 34deg,
			rgba(17, 199, 230, 0.95) 66deg,
			rgba(255, 255, 255, 0.96) 86deg,
			rgba(240, 71, 166, 0.92) 116deg,
			rgba(240, 71, 166, 0.18) 154deg,
			rgba(17, 199, 230, 0) 220deg,
			rgba(17, 199, 230, 0) 360deg
		);
	content: "";
	inset: 0;
	padding: 2px;
	pointer-events: none;
	position: absolute;
	z-index: 1;
	border-radius: inherit;
	opacity: 0.82;
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	mask-composite: exclude;
	animation: bololo-neon-border 3.8s linear infinite;
	transition: opacity 220ms ease, filter 220ms ease;
}

.bololo-button::after,
.bololo-header-cta::after {
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
	content: "";
	inset: -40% auto -40% -70%;
	position: absolute;
	transform: skewX(-18deg);
	transition: left 440ms ease;
	width: 44%;
	z-index: 1;
}

.bololo-button:hover,
.bololo-header-cta:hover,
.bololo-social-link:hover,
.bololo-text-link:hover {
	transform: translateY(-2px);
}

.bololo-button:hover,
.bololo-header-cta:hover,
.bololo-social-link:hover {
	border-color: rgba(17, 199, 230, 0.58);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.22),
		0 0 0 1px rgba(17, 199, 230, 0.16),
		0 0 34px rgba(17, 199, 230, 0.28),
		0 22px 54px rgba(0, 0, 0, 0.28);
}

.bololo-button:hover::before,
.bololo-header-cta:hover::before,
.bololo-social-link:hover::before {
	filter: drop-shadow(0 0 10px rgba(17, 199, 230, 0.62));
	opacity: 1;
}

.bololo-button:hover::after,
.bololo-header-cta:hover::after {
	left: 125%;
}

.bololo-menu-toggle {
	display: none;
	position: relative;
}

.bololo-menu-toggle span,
.bololo-menu-toggle span::before,
.bololo-menu-toggle span::after {
	background: currentColor;
	border-radius: 999px;
	content: "";
	display: block;
	height: 2px;
	position: absolute;
	width: 1.25rem;
}

.bololo-menu-toggle span::before {
	transform: translateY(-0.42rem);
}

.bololo-menu-toggle span::after {
	transform: translateY(0.42rem);
}

.bololo-nav-open .bololo-menu-toggle span {
	background: transparent;
}

.bololo-nav-open .bololo-menu-toggle span::before {
	transform: rotate(45deg);
}

.bololo-nav-open .bololo-menu-toggle span::after {
	transform: rotate(-45deg);
}

.bololo-topo,
.bololo-video-hero,
.bololo-section-dark,
.bololo-footer {
	position: relative;
}

.bololo-topo::before,
.bololo-video-hero::before,
.bololo-section-dark::before,
.bololo-footer::before {
	background:
		repeating-radial-gradient(ellipse at 18% 20%, transparent 0 16px, rgba(17, 199, 230, 0.1) 17px 18px, transparent 19px 36px),
		repeating-radial-gradient(ellipse at 82% 65%, transparent 0 18px, rgba(240, 71, 166, 0.09) 19px 20px, transparent 21px 42px);
	content: "";
	inset: 0;
	opacity: 0.55;
	pointer-events: none;
	position: absolute;
}

.bololo-video-hero {
	background: #030406;
	color: #fff;
	min-height: 100svh;
	overflow: hidden;
	padding: var(--bololo-header-height) 0 0;
}

.bololo-hero-media {
	inset: 0;
	overflow: hidden;
	position: absolute;
}

.bololo-hero-media iframe {
	border: 0;
	height: 56.25vw;
	left: 50%;
	min-height: 100%;
	min-width: 177.78vh;
	opacity: 0.84;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100vw;
}

.bololo-hero-overlay {
	background:
		linear-gradient(90deg, rgba(3, 4, 6, 0.74) 0%, rgba(3, 4, 6, 0.38) 44%, rgba(3, 4, 6, 0.1) 100%),
		linear-gradient(0deg, rgba(3, 4, 6, 0.78), transparent 50%, rgba(3, 4, 6, 0.1));
	inset: 0;
	position: absolute;
}

.bololo-hero-grid,
.bololo-page-hero-grid {
	align-items: center;
	display: grid;
	gap: clamp(2rem, 5vw, 3rem);
	grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
	margin-inline: auto;
	max-width: var(--bololo-container);
	padding-inline: 1.25rem;
	position: relative;
	z-index: 1;
}

.bololo-video-hero .bololo-hero-grid {
	align-items: end;
	grid-template-columns: minmax(0, 44rem);
	min-height: calc(100svh - var(--bololo-header-height));
	padding-bottom: clamp(3.5rem, 7vh, 5.5rem);
	padding-top: clamp(4.25rem, 10vh, 7rem);
}

.bololo-eyebrow,
.bololo-section-kicker {
	color: var(--bololo-cyan);
	font-size: 0.84rem;
	font-weight: 950;
	margin: 0 0 0.8rem;
	text-transform: uppercase;
}

.bololo-hero-status {
	background: #fff;
	color: #030406;
	display: inline-flex;
	font-size: 0.9rem;
	font-weight: 950;
	margin: 0 0 1rem;
	padding: 0.62rem 0.9rem;
	text-transform: uppercase;
}

.bololo-hero-copy {
	max-width: 44rem;
}

.bololo-hero-title,
.bololo-section-title,
.bololo-page-title,
.bololo-template h1,
.bololo-template h2,
.bololo-template h3 {
	font-family: var(--bololo-font-display);
	font-weight: 400;
	line-height: 0.98;
	margin: 0;
	text-transform: uppercase;
	text-wrap: balance;
}

.bololo-hero-title {
	font-size: clamp(3rem, 5.8vw, 5.35rem);
	max-width: 11.5ch;
	text-shadow: 0 18px 44px rgba(0, 0, 0, 0.65);
}

.bololo-hero-place {
	color: #fff;
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 850;
	margin: 1rem 0 0;
}

.bololo-page-title,
.bololo-section-title {
	font-size: clamp(2.25rem, 5vw, 4.25rem);
	max-width: 13ch;
}

.bololo-title-lines,
.bololo-title-lines > span {
	display: block;
}

.bololo-hero-lede,
.bololo-section-copy {
	color: var(--bololo-text-soft);
	font-size: clamp(1rem, 2vw, 1.18rem);
	margin: 1.15rem 0 0;
	max-width: 46rem;
}

.bololo-community-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.4rem;
}

.bololo-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.55rem;
}

.bololo-race-mark {
	background: rgba(3, 4, 6, 0.48);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow), var(--bololo-glow-cyan);
	display: grid;
	gap: 1rem;
	justify-items: center;
	padding: 1rem;
}

.bololo-race-mark img {
	filter: drop-shadow(0 18px 34px rgba(17, 199, 230, 0.26));
	width: min(100%, 23rem);
}

.bololo-price-badge,
.bololo-countdown,
.bololo-route-card,
.bololo-register-card,
.bololo-price-card,
.bololo-feature-card,
.bololo-media-card,
.bololo-post-card,
.bololo-legal-card {
	border-radius: var(--bololo-radius);
}

.bololo-price-badge,
.bololo-countdown {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	padding: 1rem;
	width: 100%;
}

.bololo-price-badge span,
.bololo-price-card p,
.bololo-register-card span {
	color: var(--bololo-cyan);
	display: block;
	font-size: 0.8rem;
	font-weight: 950;
	margin: 0;
	text-transform: uppercase;
}

.bololo-price-badge strong,
.bololo-register-card strong,
.bololo-price-card strong {
	color: var(--bololo-text);
	display: block;
	font-family: var(--bololo-font-display);
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	line-height: 1;
	margin-top: 0.35rem;
}

.bololo-price-badge small,
.bololo-register-card small,
.bololo-price-card span,
.bololo-countdown span {
	color: var(--bololo-text-muted);
	display: block;
	font-weight: 750;
	margin-top: 0.35rem;
}

.bololo-countdown {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 1rem;
	margin-top: 1.05rem;
	max-width: 31rem;
}

.bololo-countdown strong {
	color: var(--bololo-magenta);
}

.bololo-presale-alert {
	align-items: center;
	background:
		linear-gradient(135deg, rgba(3, 4, 6, 0.9), rgba(11, 20, 30, 0.82)),
		radial-gradient(circle at 14% 18%, rgba(17, 199, 230, 0.2), transparent 34%),
		radial-gradient(circle at 88% 78%, rgba(240, 71, 166, 0.28), transparent 38%);
	border: 1px solid rgba(240, 71, 166, 0.44);
	box-shadow:
		0 22px 72px rgba(0, 0, 0, 0.45),
		0 0 0 1px rgba(17, 199, 230, 0.18) inset,
		0 0 34px rgba(240, 71, 166, 0.22);
	display: grid;
	gap: 0.95rem 1.05rem;
	grid-template-columns: auto minmax(0, 1fr) auto;
	isolation: isolate;
	margin-top: 1.25rem;
	max-width: min(100%, 43rem);
	overflow: hidden;
	padding: clamp(1rem, 2vw, 1.25rem);
	position: relative;
}

.bololo-presale-alert::before {
	animation: bololo-gradient-flow 9s ease-in-out infinite;
	background:
		linear-gradient(90deg, transparent, rgba(17, 199, 230, 0.16), transparent),
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%);
	background-size: 180% 180%;
	content: "";
	inset: 0;
	opacity: 0.9;
	pointer-events: none;
	position: absolute;
	z-index: -1;
}

.bololo-presale-alert::after {
	background: linear-gradient(90deg, var(--bololo-cyan), var(--bololo-magenta), var(--bololo-cyan));
	border-radius: 999px;
	bottom: 0;
	content: "";
	height: 3px;
	inset-inline: 1rem;
	position: absolute;
}

.bololo-presale-icon {
	align-items: center;
	background:
		radial-gradient(circle at 35% 32%, rgba(255, 255, 255, 0.18), transparent 34%),
		rgba(240, 71, 166, 0.14);
	border: 1px solid rgba(240, 71, 166, 0.56);
	border-radius: 999px;
	box-shadow:
		0 0 24px rgba(240, 71, 166, 0.24),
		0 0 18px rgba(17, 199, 230, 0.16) inset;
	color: #fff;
	display: inline-flex;
	height: clamp(3rem, 6vw, 4.15rem);
	justify-content: center;
	width: clamp(3rem, 6vw, 4.15rem);
}

.bololo-presale-icon svg {
	height: 1.55rem;
	width: 1.55rem;
}

.bololo-presale-copy,
.bololo-presale-price {
	display: grid;
	gap: 0.16rem;
}

.bololo-presale-kicker,
.bololo-presale-price small {
	color: rgba(255, 255, 255, 0.72);
	font-size: clamp(0.76rem, 1vw, 0.86rem);
	font-weight: 900;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.bololo-presale-days {
	color: #fff !important;
	display: block;
	font-size: clamp(2.05rem, 4.8vw, 3.45rem);
	letter-spacing: 0;
	line-height: 0.98;
	text-wrap: balance;
	text-shadow: 0 0 26px rgba(240, 71, 166, 0.36);
}

.bololo-presale-copy small {
	color: rgba(255, 255, 255, 0.72);
	font-size: clamp(0.84rem, 1.1vw, 0.94rem);
	font-weight: 620;
	line-height: 1.35;
	max-width: 30rem;
}

.bololo-presale-price {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 18px;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
	min-width: 10.4rem;
	padding: 0.82rem 0.95rem;
}

.bololo-presale-price strong {
	color: var(--bololo-magenta) !important;
	font-family: var(--bololo-font-display);
	font-size: clamp(1.18rem, 1.8vw, 1.56rem);
	line-height: 1;
}

.bololo-race-strip {
	background: var(--bololo-bg-alt);
	border-block: 1px solid var(--bololo-border);
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.bololo-race-strip-track {
	animation: bololo-marquee 26s linear infinite;
	display: flex;
	gap: 3.6rem;
	padding: 1rem 1.25rem;
	width: max-content;
}

.bololo-race-strip span {
	align-items: center;
	color: var(--bololo-text-muted);
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 950;
	gap: 1.1rem;
	text-transform: uppercase;
	white-space: nowrap;
}

.bololo-race-strip span::after {
	border-block-start: 0.28rem solid transparent;
	border-block-end: 0.28rem solid transparent;
	border-inline-start: 0.48rem solid var(--bololo-magenta);
	content: "";
	filter: drop-shadow(0 0 8px rgba(240, 71, 166, 0.65));
	height: 0;
	width: 0;
}

.bololo-facts {
	background: var(--bololo-card);
	border-block: 1px solid var(--bololo-border);
	position: relative;
	z-index: 2;
}

.bololo-facts .bololo-section-inner {
	display: block;
	width: 100%;
}

.bololo-facts dl {
	display: grid;
	gap: 0;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
	width: 100%;
}

.bololo-facts dl > div {
	align-items: center;
	border-inline-end: 1px solid var(--bololo-border);
	display: grid;
	gap: 0.22rem 0.92rem;
	grid-template-columns: 3.25rem minmax(0, 1fr);
	min-width: 0;
	padding: 1.55rem clamp(1.1rem, 2vw, 1.9rem);
}

.bololo-facts dl > div:last-child {
	border-inline-end: 0;
}

.bololo-facts dt {
	color: var(--bololo-text-muted);
	font-size: 0.76rem;
	font-weight: 950;
	grid-column: 2;
	grid-row: 1;
	margin: 0 0 0.45rem;
	text-transform: uppercase;
}

.bololo-facts dd {
	color: var(--bololo-text);
	font-size: 1.05rem;
	font-weight: 950;
	grid-column: 2;
	grid-row: 2;
	line-height: 1.2;
	margin: 0;
}

.bololo-fact-icon {
	align-items: center;
	background: rgba(240, 71, 166, 0.12);
	border: 1px solid rgba(240, 71, 166, 0.42);
	border-radius: 999px;
	box-shadow: 0 0 24px rgba(240, 71, 166, 0.16);
	color: var(--bololo-cyan);
	display: inline-flex;
	flex: 0 0 auto;
	grid-row: 1 / span 2;
	height: 3.1rem;
	justify-content: center;
	width: 3.1rem;
}

.bololo-fact-icon svg {
	height: 1.55rem;
	width: 1.55rem;
}

.bololo-fact-icon path {
	stroke-dasharray: 90;
	stroke-dashoffset: 0;
	animation: bololo-icon-draw 4s ease-in-out infinite;
}

.bololo-facts dl > div {
	transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.bololo-facts dl > div:hover {
	background:
		radial-gradient(circle at 0 0, rgba(17, 199, 230, 0.12), transparent 46%),
		radial-gradient(circle at 100% 100%, rgba(240, 71, 166, 0.1), transparent 44%),
		var(--bololo-card);
	box-shadow: inset 0 0 28px rgba(17, 199, 230, 0.06);
	transform: translateY(-0.12rem);
}


.bololo-section {
	background: var(--bololo-bg);
	padding: clamp(4rem, 8vw, 7rem) 0;
	position: relative;
}

.bololo-section-alt {
	background: var(--bololo-bg-alt);
}

.bololo-section-dark {
	background:
		linear-gradient(125deg, rgba(17, 199, 230, 0.09), transparent 28%),
		linear-gradient(280deg, rgba(240, 71, 166, 0.11), transparent 30%),
		var(--bololo-gradient-night);
	color: #fff;
	overflow: hidden;
}

.bololo-section-dark .bololo-section-inner,
.bololo-topo .bololo-section-inner,
.bololo-footer-inner {
	position: relative;
	z-index: 1;
}

.bololo-section-head {
	align-items: end;
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.bololo-text-link {
	color: var(--bololo-cyan);
	min-height: 2.4rem;
}

.bololo-split,
.bololo-page-hero-grid,
.bololo-timeline,
.bololo-form-layout {
	display: grid;
	gap: clamp(2rem, 6vw, 4rem);
	grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 1.08fr);
}

.bololo-split {
	align-items: center;
}

.bololo-split-reverse {
	grid-template-columns: minmax(20rem, 1.08fr) minmax(0, 0.92fr);
}

.bololo-photo-panel,
.bololo-wide-image,
.bololo-media-card,
.bololo-music-logo,
.bololo-gallery-grid figure {
	margin: 0;
}

.bololo-photo-panel,
.bololo-wide-image,
.bololo-media-card {
	background: #030406;
	border: 1px solid var(--bololo-border);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow);
	overflow: hidden;
}

.bololo-photo-panel {
	aspect-ratio: 4 / 5;
}

.bololo-wide-image {
	aspect-ratio: 16 / 9;
}

.bololo-photo-panel img,
.bololo-wide-image img,
.bololo-media-card img,
.bololo-gallery-grid img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.bololo-stat-row {
	display: grid;
	gap: 0.8rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 2rem;
}

.bololo-experience-stats {
	margin-bottom: 2rem;
	max-width: 52rem;
}

#experiencia .bololo-section-inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	text-align: center;
}

#experiencia .bololo-section-title {
	max-width: 12ch;
}

#experiencia .bololo-section-copy {
	margin-inline: auto;
	max-width: 52rem;
}

#experiencia .bololo-experience-stats {
	margin-inline: auto;
	width: 100%;
}

#experiencia .bololo-feature-grid {
	text-align: left;
	width: 100%;
}

.bololo-community-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 1.4rem;
}

.bololo-community-pills span {
	align-items: center;
	background: var(--bololo-surface);
	border: 1px solid var(--bololo-border);
	border-radius: 999px;
	color: var(--bololo-text);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 950;
	gap: 0.45rem;
	padding: 0.58rem 0.78rem;
	text-transform: uppercase;
}

.bololo-community-pills svg {
	color: var(--bololo-cyan);
	height: 1.05rem;
	width: 1.05rem;
}

.bololo-stat-row div,
.bololo-mini-card,
.bololo-feature-card,
.bololo-price-card,
.bololo-legal-card,
.bololo-post-card {
	background: var(--bololo-card);
	border: 1px solid var(--bololo-border);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
	padding: 1.15rem;
}

.bololo-stat-row strong {
	color: var(--bololo-magenta);
	display: block;
	font-family: var(--bololo-font-display);
	font-size: 2.2rem;
	line-height: 1;
}

.bololo-stat-row span,
.bololo-mini-card span,
.bololo-feature-card p,
.bololo-post-card p,
.bololo-legal-card p,
.bololo-check-list li {
	color: var(--bololo-text-soft);
}

.bololo-feature-grid,
.bololo-mini-grid,
.bololo-pricing-grid,
.bololo-step-grid,
.bololo-blog-grid,
.bololo-social-grid,
.bololo-legal-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 2rem;
}

.bololo-register-2026 .bololo-pricing-grid {
	align-items: stretch;
}

.bololo-animated-card,
.bololo-register-2026 .bololo-price-card,
.bololo-register-2026 .bololo-step-grid li,
.bololo-kit-card {
	isolation: isolate;
	overflow: hidden;
	position: relative;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.bololo-animated-card::before,
.bololo-register-2026 .bololo-step-grid li::after,
.bololo-kit-card::before {
	background:
		radial-gradient(circle at 16% 18%, rgba(17, 199, 230, 0.2), transparent 34%),
		radial-gradient(circle at 84% 80%, rgba(240, 71, 166, 0.18), transparent 32%);
	content: "";
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transition: opacity 220ms ease;
	z-index: -1;
}

.bololo-animated-card:hover,
.bololo-animated-card:focus-within,
.bololo-register-2026 .bololo-step-grid li:hover,
.bololo-register-2026 .bololo-step-grid li:focus-within,
.bololo-kit-card:hover,
.bololo-kit-card:focus-within {
	border-color: rgba(240, 71, 166, 0.62);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26), 0 0 34px rgba(240, 71, 166, 0.16), 0 0 24px rgba(17, 199, 230, 0.1);
	transform: translateY(-0.28rem);
}

.bololo-animated-card:hover::before,
.bololo-animated-card:focus-within::before,
.bololo-register-2026 .bololo-step-grid li:hover::after,
.bololo-register-2026 .bololo-step-grid li:focus-within::after,
.bololo-kit-card:hover::before,
.bololo-kit-card:focus-within::before {
	opacity: 1;
}

.bololo-price-icon {
	align-items: center;
	background: rgba(17, 199, 230, 0.1);
	border: 1px solid rgba(17, 199, 230, 0.42);
	border-radius: 999px;
	box-shadow: 0 0 24px rgba(17, 199, 230, 0.14);
	color: var(--bololo-cyan);
	display: inline-flex;
	height: 3rem;
	justify-content: center;
	margin-bottom: 1.1rem;
	width: 3rem;
}

.bololo-price-icon svg {
	height: 1.65rem;
	width: 1.65rem;
}

.bololo-price-icon path,
.bololo-step-icon path,
.bololo-kit-card .bololo-icon path {
	stroke-dasharray: 120;
	stroke-dashoffset: 120;
	animation: bololo-icon-draw 4s ease-in-out infinite;
}

.bololo-feature-card {
	display: grid;
	min-height: 21rem;
	overflow: hidden;
	padding: 0;
	position: relative;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.bololo-feature-card:hover,
.bololo-feature-card:focus-within {
	border-color: rgba(240, 71, 166, 0.62);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28), 0 0 34px rgba(240, 71, 166, 0.18);
	transform: translateY(-0.28rem);
}

.bololo-feature-photo {
	aspect-ratio: 16 / 10;
	background: #030406;
	margin: 0;
	overflow: hidden;
}

.bololo-feature-photo img {
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease, filter 300ms ease;
	width: 100%;
}

.bololo-feature-card:hover .bololo-feature-photo img,
.bololo-feature-card:focus-within .bololo-feature-photo img {
	filter: saturate(1.12) contrast(1.08);
	transform: scale(1.055);
}

.bololo-feature-card .bololo-icon,
.bololo-mini-card .bololo-icon {
	color: var(--bololo-cyan);
	display: flex;
	height: 3rem;
	margin-bottom: 1rem;
	width: 3rem;
}

.bololo-feature-card .bololo-icon {
	align-items: center;
	background: rgba(3, 4, 6, 0.9);
	border: 1px solid rgba(17, 199, 230, 0.5);
	border-radius: 999px;
	box-shadow: 0 0 26px rgba(17, 199, 230, 0.22);
	justify-content: center;
	margin: -1.55rem 1.15rem 0.75rem;
	position: relative;
	z-index: 1;
}

.bololo-feature-card .bololo-icon svg,
.bololo-mini-card .bololo-icon svg {
	height: 100%;
	width: 100%;
}

.bololo-feature-card .bololo-icon path,
.bololo-mini-card .bololo-icon path {
	stroke-dasharray: 120;
	stroke-dashoffset: 120;
	animation: bololo-icon-draw 4s ease-in-out infinite;
}

.bololo-feature-card h3,
.bololo-mini-card strong,
.bololo-post-card h2,
.bololo-post-card h3,
.bololo-legal-card h2,
.bololo-social-card h2 {
	color: var(--bololo-text);
	font-size: 1.12rem;
	line-height: 1.18;
	margin: 0;
}

.bololo-feature-card h3 {
	padding-inline: 1.15rem;
}

.bololo-feature-card p {
	margin: 0.75rem 0 0;
	padding: 0 1.15rem 1.15rem;
}

.bololo-check-list {
	display: grid;
	gap: 0.75rem;
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
}

.bololo-check-list li {
	background: var(--bololo-surface);
	border: 1px solid var(--bololo-border);
	border-radius: var(--bololo-radius);
	font-weight: 850;
	padding: 0.85rem 1rem;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bololo-check-list li:hover {
	border-color: rgba(240, 71, 166, 0.6);
	box-shadow: 0 0 22px rgba(240, 71, 166, 0.12);
	transform: translateX(0.18rem);
}

.bololo-event-teaser-grid {
	align-items: center;
	display: grid;
	gap: clamp(2rem, 6vw, 4rem);
	grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
}

.bololo-event-teaser-copy .bololo-section-title {
	max-width: 10ch;
}

.bololo-event-teaser-cards {
	display: grid;
	gap: 0.9rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bololo-event-teaser-card {
	background: rgba(255, 255, 255, 0.075);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--bololo-radius);
	color: #fff;
	display: grid;
	gap: 0.72rem;
	min-height: 17rem;
	padding: 1.2rem;
	text-decoration: none;
}

.bololo-event-teaser-card .bololo-icon,
.bololo-social-card .bololo-icon {
	align-items: center;
	background: rgba(17, 199, 230, 0.1);
	border: 1px solid rgba(17, 199, 230, 0.38);
	border-radius: 999px;
	box-shadow: 0 0 24px rgba(17, 199, 230, 0.16);
	color: var(--bololo-cyan);
	display: inline-flex;
	height: 3rem;
	justify-content: center;
	width: 3rem;
}

.bololo-event-teaser-card .bololo-icon svg,
.bololo-social-card .bololo-icon svg {
	height: 1.65rem;
	width: 1.65rem;
}

.bololo-event-teaser-card strong {
	color: #fff;
	font-family: var(--bololo-font-display);
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	line-height: 0.95;
	text-transform: uppercase;
}

.bololo-event-teaser-card > span:last-child {
	color: rgba(255, 255, 255, 0.72);
	font-weight: 750;
}

.bololo-jersey-gallery {
	display: grid;
	gap: 1rem;
}

.bololo-jersey-banner-section {
	background:
		radial-gradient(circle at 16% 18%, rgba(17, 199, 230, 0.12), transparent 32%),
		radial-gradient(circle at 84% 78%, rgba(240, 71, 166, 0.14), transparent 34%),
		var(--bololo-bg);
	color: var(--bololo-text);
	overflow: hidden;
}

.bololo-jersey-banner {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
		radial-gradient(circle at 50% 0%, rgba(17, 199, 230, 0.12), transparent 42%);
	border: 1px solid var(--bololo-border);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow), 0 0 42px rgba(240, 71, 166, 0.12);
	display: grid;
	gap: clamp(1.5rem, 4vw, 3rem);
	grid-template-columns: minmax(0, 0.72fr) minmax(20rem, 1.28fr);
	overflow: hidden;
	padding: clamp(1.3rem, 4vw, 2.4rem);
	position: relative;
}

.bololo-jersey-banner::before {
	animation: bololo-gradient-flow 14s ease-in-out infinite;
	background:
		linear-gradient(115deg, rgba(17, 199, 230, 0.16), transparent 34%),
		linear-gradient(290deg, rgba(240, 71, 166, 0.18), transparent 38%);
	background-size: 180% 180%;
	content: "";
	inset: 0;
	opacity: 0.7;
	pointer-events: none;
	position: absolute;
}

.bololo-jersey-banner-copy,
.bololo-jersey-products,
.bololo-jersey-switcher {
	position: relative;
	z-index: 1;
}

.bololo-jersey-products {
	align-items: stretch;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bololo-jersey-card {
	background:
		radial-gradient(circle at 24% 20%, rgba(17, 199, 230, 0.14), transparent 28%),
		radial-gradient(circle at 76% 70%, rgba(240, 71, 166, 0.16), transparent 32%),
		#030406;
	border: 1px solid var(--bololo-border);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow);
	margin: 0;
	overflow: hidden;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.bololo-jersey-card:hover,
.bololo-jersey-card:focus-within {
	border-color: rgba(17, 199, 230, 0.58);
	box-shadow: var(--bololo-shadow), 0 0 36px rgba(17, 199, 230, 0.22);
	transform: translateY(-0.3rem);
}

.bololo-jersey-card img {
	aspect-ratio: 16 / 8.5;
	height: auto;
	object-fit: contain;
	padding: 0.75rem;
	transition: transform 240ms ease;
	width: 100%;
}

.bololo-jersey-card:hover img,
.bololo-jersey-card:focus-within img {
	transform: scale(1.025);
}

.bololo-jersey-card figcaption {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	font-weight: 950;
	padding: 0.85rem 1rem;
	text-transform: uppercase;
}

.bololo-jersey-switcher {
	display: grid;
	gap: 1rem;
}

.bololo-jersey-radio {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.bololo-jersey-tabs {
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	display: grid;
	gap: 0.35rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	padding: 0.35rem;
}

.bololo-jersey-tabs label {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.76);
	cursor: pointer;
	display: inline-flex;
	font-size: clamp(0.74rem, 1vw, 0.86rem);
	font-weight: 760;
	justify-content: center;
	min-height: 2.55rem;
	padding: 0.62rem 0.75rem;
	text-align: center;
	text-transform: uppercase;
	transition: background 200ms ease, border-color 200ms ease, color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.bololo-jersey-tabs label:hover {
	color: #fff;
	transform: translateY(-0.06rem);
}

#bololo-home-jersey-short:checked ~ .bololo-jersey-tabs label[for="bololo-home-jersey-short"],
#bololo-home-jersey-long:checked ~ .bololo-jersey-tabs label[for="bololo-home-jersey-long"],
#bololo-home-jersey-zipper:checked ~ .bololo-jersey-tabs label[for="bololo-home-jersey-zipper"] {
	background: linear-gradient(135deg, rgba(240, 71, 166, 0.92), rgba(17, 199, 230, 0.72));
	border-color: rgba(255, 255, 255, 0.32);
	box-shadow: 0 0 24px rgba(240, 71, 166, 0.24);
	color: #fff;
}

#bololo-home-jersey-short:focus-visible ~ .bololo-jersey-tabs label[for="bololo-home-jersey-short"],
#bololo-home-jersey-long:focus-visible ~ .bololo-jersey-tabs label[for="bololo-home-jersey-long"],
#bololo-home-jersey-zipper:focus-visible ~ .bololo-jersey-tabs label[for="bololo-home-jersey-zipper"] {
	outline: 3px solid var(--bololo-cyan);
	outline-offset: 3px;
}

.bololo-jersey-stage {
	background:
		radial-gradient(circle at 28% 16%, rgba(17, 199, 230, 0.13), transparent 35%),
		radial-gradient(circle at 82% 82%, rgba(240, 71, 166, 0.15), transparent 36%),
		rgba(3, 4, 6, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow);
	overflow: hidden;
}

.bololo-jersey-panel {
	display: none;
	margin: 0;
}

.bololo-jersey-panel img {
	aspect-ratio: 16 / 10.5;
	display: block;
	height: auto;
	object-fit: contain;
	padding: clamp(0.8rem, 2vw, 1.25rem);
	width: 100%;
}

.bololo-jersey-panel figcaption {
	background: rgba(255, 255, 255, 0.07);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
	font-weight: 620;
	line-height: 1.35;
	padding: 0.95rem 1.1rem;
}

#bololo-home-jersey-short:checked ~ .bololo-jersey-stage .bololo-jersey-panel-short,
#bololo-home-jersey-long:checked ~ .bololo-jersey-stage .bololo-jersey-panel-long,
#bololo-home-jersey-zipper:checked ~ .bololo-jersey-stage .bololo-jersey-panel-zipper {
	display: block;
}

.bololo-register-kit-section {
	background:
		linear-gradient(135deg, rgba(17, 199, 230, 0.08), transparent 32%),
		linear-gradient(315deg, rgba(240, 71, 166, 0.1), transparent 36%),
		var(--bololo-gradient-night);
	color: #fff;
	overflow: hidden;
}

.bololo-register-kit-section::after {
	animation: bololo-gradient-flow 12s ease-in-out infinite;
	background:
		radial-gradient(circle at 18% 20%, rgba(17, 199, 230, 0.16), transparent 30%),
		radial-gradient(circle at 78% 72%, rgba(240, 71, 166, 0.14), transparent 34%);
	background-size: 170% 170%;
	content: "";
	inset: 0;
	opacity: 0.6;
	pointer-events: none;
	position: absolute;
}

.bololo-register-kit-section .bololo-section-inner {
	position: relative;
	z-index: 1;
}

.bololo-kit-showcase {
	align-items: stretch;
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
	margin-top: 2.4rem;
	text-align: left;
	width: 100%;
}

.bololo-kit-photo {
	background: #030406;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow), 0 0 36px rgba(17, 199, 230, 0.14);
	margin: 0;
	overflow: hidden;
	position: relative;
}

.bololo-kit-photo img {
	aspect-ratio: 16 / 5.5;
	height: auto;
	object-fit: cover;
	object-position: 50% 42%;
	width: 100%;
}

.bololo-kit-photo figcaption {
	background: linear-gradient(180deg, transparent, rgba(3, 4, 6, 0.88));
	bottom: 0;
	color: #fff;
	font-weight: 950;
	left: 0;
	padding: 3rem 1rem 1rem;
	position: absolute;
	right: 0;
	text-transform: uppercase;
}

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

.bololo-kit-card {
	background: rgba(255, 255, 255, 0.075);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--bololo-radius);
	display: grid;
	min-height: 0;
	overflow: hidden;
	padding: 0;
}

.bololo-kit-card-media {
	background: rgba(3, 4, 6, 0.84);
	margin: 0;
	overflow: hidden;
	position: relative;
}

.bololo-kit-card-media::after {
	background: linear-gradient(180deg, transparent 38%, rgba(3, 4, 6, 0.5));
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.bololo-kit-card-media img {
	aspect-ratio: 16 / 9.5;
	display: block;
	height: auto;
	object-fit: cover;
	transition: transform 240ms ease, filter 240ms ease;
	width: 100%;
}

.bololo-kit-card:hover .bololo-kit-card-media img,
.bololo-kit-card:focus-within .bololo-kit-card-media img {
	filter: saturate(1.08) contrast(1.04);
	transform: scale(1.045);
}

.bololo-kit-card-body {
	display: grid;
	padding: 1rem;
}

.bololo-kit-card .bololo-icon {
	align-items: center;
	background: rgba(17, 199, 230, 0.1);
	border: 1px solid rgba(17, 199, 230, 0.42);
	border-radius: 999px;
	box-shadow: 0 0 22px rgba(17, 199, 230, 0.16);
	color: var(--bololo-cyan);
	display: flex;
	height: 2.65rem;
	justify-content: center;
	margin: -2.2rem 0 0.8rem;
	position: relative;
	width: 2.65rem;
	z-index: 1;
}

.bololo-kit-card .bololo-icon svg {
	height: 1.5rem;
	width: 1.5rem;
}

.bololo-kit-card h3 {
	color: #fff;
	font-size: 1.1rem;
	line-height: 1.15;
	margin: 0;
	text-transform: uppercase;
}

.bololo-kit-card p {
	color: rgba(255, 255, 255, 0.72);
	margin: 0.65rem 0 0;
}

.bololo-register-jersey-section {
	background:
		linear-gradient(135deg, rgba(17, 199, 230, 0.09), transparent 38%),
		linear-gradient(315deg, rgba(240, 71, 166, 0.12), transparent 42%),
		radial-gradient(circle at 50% 20%, rgba(17, 199, 230, 0.12), transparent 38%),
		radial-gradient(circle at 50% 88%, rgba(240, 71, 166, 0.15), transparent 34%),
		var(--bololo-bg);
	color: #fff;
	overflow: hidden;
}

.bololo-register-jersey-section.bololo-topo::before {
	opacity: 0.22;
}

.bololo-register-jersey-section::after {
	animation: bololo-gradient-flow 13s ease-in-out infinite;
	background:
		linear-gradient(90deg, transparent, rgba(17, 199, 230, 0.1), transparent),
		repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px);
	background-size: 180% 180%, auto;
	content: "";
	inset: 0;
	opacity: 0.44;
	pointer-events: none;
	position: absolute;
}

.bololo-register-jersey-section .bololo-section-inner {
	position: relative;
	z-index: 1;
}

.bololo-register-jersey-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 2.4rem 0 1.6rem;
	text-align: left;
	width: 100%;
}

.bololo-register-jersey-section .bololo-jersey-card img {
	aspect-ratio: 4 / 3.1;
	padding: clamp(0.6rem, 1.5vw, 1.05rem);
}

.bololo-register-jersey-product {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow), inset 0 0 24px rgba(17, 199, 230, 0.04);
	display: grid;
	overflow: hidden;
	padding: 0.75rem;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.bololo-register-jersey-product:hover,
.bololo-register-jersey-product:focus-within {
	border-color: rgba(240, 71, 166, 0.48);
	box-shadow: var(--bololo-shadow), 0 0 34px rgba(240, 71, 166, 0.14);
	transform: translateY(-0.25rem);
}

.bololo-register-jersey-product-featured {
	border-color: rgba(240, 71, 166, 0.36);
}

.bololo-register-jersey-product .bololo-jersey-card {
	box-shadow: none;
}

.bololo-register-jersey-product > div {
	display: grid;
	gap: 0.65rem;
	padding: 1rem 0.25rem 0.25rem;
}

.bololo-register-jersey-product h3 {
	color: #fff;
	font-size: clamp(1.15rem, 1.7vw, 1.45rem);
	line-height: 1.05;
	margin: 0;
	text-transform: uppercase;
}

.bololo-register-jersey-product p {
	color: rgba(255, 255, 255, 0.74);
	font-weight: 720;
	margin: 0;
}

.bololo-atlantico-section {
	background:
		linear-gradient(135deg, rgba(17, 199, 230, 0.12), transparent 32%),
		linear-gradient(310deg, rgba(240, 71, 166, 0.14), transparent 34%),
		#061018;
	color: #fff;
	overflow: hidden;
}

.bololo-route-experience {
	display: grid;
	gap: clamp(1.5rem, 4vw, 2.7rem);
}

.bololo-route-lead {
	align-items: end;
	display: grid;
	gap: 1.1rem clamp(1.5rem, 4vw, 3rem);
	grid-template-columns: minmax(0, 0.82fr) minmax(18rem, 1fr);
}

.bololo-route-lead .bololo-section-kicker {
	grid-column: 1 / -1;
}

.bololo-route-lead .bololo-section-title {
	max-width: 15ch;
}

.bololo-route-lead .bololo-section-copy {
	align-self: center;
	font-size: clamp(1.05rem, 1.35vw, 1.2rem);
	line-height: 1.55;
	margin-top: 0;
	max-width: 45rem;
}

.bololo-route-signal-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	grid-column: 1 / -1;
}

.bololo-route-signal-row span {
	align-items: center;
	background: rgba(255, 255, 255, 0.075);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 840;
	gap: 0.48rem;
	padding: 0.55rem 0.72rem;
	text-transform: uppercase;
}

.bololo-route-signal-row svg {
	color: var(--bololo-cyan);
	height: 1.05rem;
	width: 1.05rem;
}

.bololo-route-story-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.98fr);
}

.bololo-route-map-card {
	aspect-ratio: 16 / 10.4;
	background: #030406;
	border: 1px solid rgba(17, 199, 230, 0.34);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow), 0 0 44px rgba(17, 199, 230, 0.16);
	margin: 0;
	overflow: hidden;
	position: relative;
}

.bololo-route-map-card::after {
	background:
		linear-gradient(180deg, rgba(3, 4, 6, 0.02), rgba(3, 4, 6, 0.64)),
		linear-gradient(90deg, rgba(3, 4, 6, 0.28), transparent 48%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.bololo-route-map-card img {
	height: 100%;
	object-fit: cover;
	object-position: 50% 48%;
	width: 100%;
}

.bololo-route-map-card figcaption {
	background: rgba(3, 4, 6, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--bololo-radius);
	bottom: 1rem;
	color: #fff;
	display: grid;
	gap: 0.18rem;
	left: 1rem;
	padding: 0.76rem 0.9rem;
	position: absolute;
	z-index: 1;
}

.bololo-route-map-card figcaption strong {
	color: var(--bololo-cyan);
	font-family: var(--bololo-font-display);
	font-size: 1.3rem;
	line-height: 1;
	text-transform: uppercase;
}

.bololo-route-map-card figcaption span {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.84rem;
	font-weight: 650;
}

.bololo-route-status-grid {
	display: grid;
	gap: 1rem;
}

.bololo-route-status-grid article {
	background: rgba(255, 255, 255, 0.065);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--bololo-radius);
	box-shadow: inset 0 0 28px rgba(17, 199, 230, 0.035);
	display: grid;
	gap: 0.75rem;
	padding: clamp(1rem, 2vw, 1.25rem);
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.bololo-route-status-grid article:hover {
	border-color: rgba(240, 71, 166, 0.48);
	box-shadow: var(--bololo-shadow), 0 0 30px rgba(240, 71, 166, 0.12);
	transform: translateY(-0.16rem);
}

.bololo-route-status-icon {
	align-items: center;
	background: rgba(17, 199, 230, 0.1);
	border: 1px solid rgba(17, 199, 230, 0.42);
	border-radius: 999px;
	color: var(--bololo-cyan);
	display: inline-flex;
	height: 2.65rem;
	justify-content: center;
	width: 2.65rem;
}

.bololo-route-status-icon svg {
	height: 1.35rem;
	width: 1.35rem;
}

.bololo-route-status-grid h3 {
	color: #fff;
	font-family: var(--bololo-font-display);
	font-size: clamp(1.45rem, 2vw, 1.9rem);
	line-height: 1;
	margin: 0;
	text-transform: uppercase;
}

.bololo-route-status-grid ul {
	display: grid;
	gap: 0.55rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bololo-route-status-grid li {
	color: rgba(255, 255, 255, 0.76);
	font-weight: 560;
	line-height: 1.34;
	padding-left: 1.05rem;
	position: relative;
}

.bololo-route-status-grid li::before {
	background: var(--bololo-cyan);
	border-radius: 999px;
	content: "";
	height: 0.42rem;
	left: 0;
	position: absolute;
	top: 0.52rem;
	width: 0.42rem;
}

.bololo-atlantico-grid {
	grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
}

.bololo-atlantico-section .bololo-section-title {
	max-width: 15ch;
}

.bololo-atlantico-section .bololo-section-copy {
	max-width: 42rem;
}

.bololo-atlantico-visual {
	display: grid;
	gap: 0.85rem;
}

.bololo-atlantico-visual .bololo-wide-image {
	aspect-ratio: 16 / 10;
	border-color: rgba(17, 199, 230, 0.38);
	box-shadow: var(--bololo-shadow), 0 0 44px rgba(17, 199, 230, 0.18);
}

.bololo-location-tags {
	display: grid;
	gap: 0.65rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bololo-location-tags span {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--bololo-radius);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 950;
	padding: 0.75rem;
	text-align: center;
	text-transform: uppercase;
}

.bololo-gallery-grid,
.bololo-media-grid {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bololo-gallery-grid figure,
.bololo-media-card {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	position: relative;
}

.bololo-gallery-feature,
.bololo-media-card:nth-child(1),
.bololo-media-card:nth-child(6) {
	grid-column: span 2;
	grid-row: span 2;
}

.bololo-media-card figcaption {
	background: linear-gradient(0deg, rgba(3, 4, 6, 0.86), transparent);
	bottom: 0;
	color: #fff;
	font-weight: 900;
	inset-inline: 0;
	padding: 3rem 1rem 1rem;
	position: absolute;
	transform: translateY(100%);
	transition: transform 200ms ease;
}

.bololo-media-card:hover img,
.bololo-gallery-grid figure:hover img {
	transform: scale(1.05);
}

.bololo-media-card:hover figcaption,
.bololo-media-card:focus-within figcaption {
	transform: translateY(0);
}

.bololo-media-card img,
.bololo-gallery-grid img {
	transition: transform 260ms ease;
}

.bololo-social-hub-grid {
	align-items: stretch;
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
}

.bololo-music-panel {
	background:
		radial-gradient(circle at 20% 16%, rgba(17, 199, 230, 0.18), transparent 32%),
		radial-gradient(circle at 86% 82%, rgba(240, 71, 166, 0.18), transparent 34%),
		rgba(255, 255, 255, 0.075);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow), 0 0 38px rgba(17, 199, 230, 0.1);
	display: grid;
	align-content: center;
	min-height: 28rem;
	padding: clamp(1.3rem, 4vw, 2.2rem);
}

.bololo-music-panel .bololo-section-title {
	max-width: 9ch;
}

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

.bololo-social-card-grid .bololo-social-card {
	align-content: start;
	background: rgba(255, 255, 255, 0.075);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--bololo-radius);
	color: #fff;
	display: grid;
	gap: 0.75rem;
	min-height: 13rem;
	padding: 1.15rem;
	text-decoration: none;
}

.bololo-social-card h3 {
	color: #fff;
	font-size: 1.15rem;
	margin: 0;
}

.bololo-social-card p {
	color: rgba(255, 255, 255, 0.72);
	margin: 0;
}

.bololo-blog-feature {
	align-items: center;
	background:
		radial-gradient(circle at 16% 16%, rgba(17, 199, 230, 0.12), transparent 30%),
		radial-gradient(circle at 86% 82%, rgba(240, 71, 166, 0.12), transparent 30%),
		var(--bololo-card);
	border: 1px solid var(--bololo-border);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow);
	display: grid;
	gap: clamp(1.5rem, 4vw, 3rem);
	grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 1.08fr);
	margin-bottom: 2rem;
	padding: clamp(1.2rem, 4vw, 2rem);
}

.bololo-blog-feature .bololo-section-title {
	max-width: 12ch;
}

.bololo-blog-feature p {
	color: var(--bololo-text-soft);
}

.bololo-post-card-featured {
	border-color: rgba(17, 199, 230, 0.34);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12), 0 0 28px rgba(17, 199, 230, 0.08);
}

.bololo-partners-section {
	background: #030406;
	color: #fff;
	overflow: hidden;
}

.bololo-partners-section .bololo-section-inner {
	text-align: center;
}

.bololo-partners-section .bololo-section-title,
.bololo-partners-section .bololo-section-kicker {
	margin-inline: auto;
}

.bololo-partners-section .bololo-section-title {
	max-width: 23ch;
}

.bololo-logo-marquee {
	border-block: 1px solid rgba(255, 255, 255, 0.14);
	margin-top: 2.5rem;
	overflow: hidden;
	position: relative;
}

.bololo-logo-track {
	align-items: center;
	animation: bololo-marquee 32s linear infinite;
	display: flex;
	gap: 5rem;
	padding: 2.3rem 2rem;
	width: max-content;
}

.bololo-logo-track.is-paused {
	animation-play-state: paused;
}

.bololo-logo-track img {
	filter: grayscale(1) brightness(1.65);
	max-height: 4.4rem;
	object-fit: contain;
	opacity: 0.72;
	width: auto;
}

.bololo-logo-track img:hover {
	filter: none;
	opacity: 1;
}

.bololo-marquee-pause {
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: none;
	font-weight: 950;
	height: 2.7rem;
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 4.4rem;
	z-index: 2;
}

.bololo-page-hero {
	background:
		linear-gradient(130deg, rgba(17, 199, 230, 0.1), transparent 34%),
		linear-gradient(310deg, rgba(240, 71, 166, 0.12), transparent 38%),
		var(--bololo-gradient-night);
	color: #fff;
	overflow: hidden;
	padding: 9rem 0 5rem;
	position: relative;
}

.bololo-page-hero .bololo-section-inner {
	position: relative;
	z-index: 1;
}

.bololo-route-card,
.bololo-register-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: var(--bololo-shadow);
	padding: 1.2rem;
}

.bololo-register-2026 .bololo-page-hero {
	min-height: min(880px, calc(100svh - var(--bololo-header-height) + 4rem));
	padding: clamp(7rem, 12vh, 9rem) 0 clamp(4rem, 8vh, 6rem);
}

.bololo-register-2026 .bololo-page-hero-grid {
	align-items: center;
	grid-template-columns: minmax(0, 0.88fr) minmax(20rem, 0.82fr);
}

.bololo-register-hero-copy {
	max-width: 41rem;
}

.bololo-register-hero .bololo-page-title {
	font-size: clamp(3.2rem, 7vw, 6.2rem);
	max-width: 10ch;
	text-shadow: 0 22px 56px rgba(0, 0, 0, 0.62);
}

.bololo-register-hero .bololo-hero-lede {
	max-width: 39rem;
}

.bololo-register-hero-note {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--bololo-radius);
	box-shadow: 0 0 28px rgba(240, 71, 166, 0.12);
	display: inline-grid;
	gap: 0.15rem;
	margin-top: 1.1rem;
	min-width: min(100%, 25rem);
	padding: 0.95rem 1.1rem;
}

.bololo-register-hero-note span {
	color: var(--bololo-cyan);
	font-size: 0.78rem;
	font-weight: 950;
	text-transform: uppercase;
}

.bololo-register-hero-note strong {
	color: var(--bololo-magenta);
	font-size: 1.05rem;
}

.bololo-register-hero-visual {
	aspect-ratio: 4 / 5;
	border: 1px solid rgba(255, 255, 255, 0.19);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow), 0 0 42px rgba(17, 199, 230, 0.18);
	isolation: isolate;
	overflow: hidden;
	position: relative;
}

.bololo-register-hero-visual::before {
	background:
		linear-gradient(180deg, transparent 28%, rgba(3, 4, 6, 0.74) 100%),
		radial-gradient(circle at 20% 18%, rgba(17, 199, 230, 0.22), transparent 34%),
		radial-gradient(circle at 78% 78%, rgba(240, 71, 166, 0.2), transparent 34%);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.bololo-register-hero-visual img {
	height: 100%;
	object-fit: cover;
	object-position: 48% 42%;
	transform: scale(1.02);
	width: 100%;
}

.bololo-register-hero-visual .bololo-register-card {
	backdrop-filter: blur(16px);
	bottom: 1rem;
	left: 1rem;
	position: absolute;
	right: 1rem;
	z-index: 2;
}

.bololo-centered-head {
	align-items: center;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.bololo-centered-head > .bololo-section-title {
	margin-inline: auto;
	max-width: 12ch;
}

.bololo-centered-head > .bololo-section-copy {
	margin-inline: auto;
	max-width: 50rem;
}

.bololo-route-card > strong {
	color: #fff;
	display: block;
	font-family: var(--bololo-font-display);
	font-size: 2.1rem;
	line-height: 1;
}

.bololo-route-card > span,
.bololo-route-card dd,
.bololo-timeline-list span,
.bololo-step-grid span {
	color: rgba(255, 255, 255, 0.74);
}

.bololo-route-card dl {
	display: grid;
	gap: 0.7rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 1.4rem 0 0;
}

.bololo-route-card dl div {
	background: rgba(3, 4, 6, 0.38);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--bololo-radius);
	padding: 0.8rem;
}

.bololo-route-card dt {
	color: var(--bololo-cyan);
	font-size: 0.76rem;
	font-weight: 950;
	text-transform: uppercase;
}

.bololo-route-card dd {
	font-weight: 900;
	margin: 0.2rem 0 0;
}

.bololo-timeline-list,
.bololo-step-grid {
	counter-reset: bololo-step;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bololo-timeline-list {
	display: grid;
	gap: 0.85rem;
}

.bololo-step-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bololo-timeline-list li,
.bololo-step-grid li {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: var(--bololo-radius);
	counter-increment: bololo-step;
	padding: 1rem 1rem 1rem 4rem;
	position: relative;
}

.bololo-timeline-list li::before,
.bololo-step-grid li::before {
	align-items: center;
	background: var(--bololo-cyan);
	border-radius: var(--bololo-radius);
	color: #030406;
	content: counter(bololo-step);
	display: flex;
	font-weight: 950;
	height: 2.3rem;
	justify-content: center;
	left: 1rem;
	position: absolute;
	top: 1rem;
	width: 2.3rem;
}

.bololo-register-2026 .bololo-step-grid {
	width: 100%;
}

.bololo-register-2026 .bololo-step-grid li {
	padding: 1.25rem 1.2rem 1.25rem 5rem;
	text-align: left;
}

.bololo-register-2026 .bololo-step-grid li::before {
	background: var(--bololo-magenta);
	box-shadow: 0 0 24px rgba(240, 71, 166, 0.24);
	color: #fff;
}

.bololo-step-icon {
	align-items: center;
	color: var(--bololo-cyan);
	display: inline-flex;
	height: 2.25rem;
	justify-content: center;
	left: 1rem;
	position: absolute;
	top: 3.8rem;
	width: 2.25rem;
}

.bololo-step-icon svg {
	height: 100%;
	width: 100%;
}

.bololo-timeline-list strong,
.bololo-step-grid strong {
	color: #fff;
	display: block;
	font-size: 1.1rem;
	line-height: 1.2;
}

.bololo-register-card {
	align-self: center;
	display: grid;
	gap: 1rem;
	justify-items: center;
	text-align: center;
}

.bololo-register-card img {
	width: min(100%, 18rem);
}

.bololo-form-embed {
	background: #fff;
	border: 1px solid var(--bololo-border);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow);
	min-height: 42rem;
	overflow: hidden;
	padding: 0.5rem;
}

.bololo-faq-grid {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 2rem;
}

.bololo-faq-grid details {
	background: var(--bololo-card);
	border: 1px solid var(--bololo-border);
	border-radius: var(--bololo-radius);
	padding: 1rem;
	transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.bololo-faq-grid summary {
	align-items: center;
	cursor: pointer;
	display: grid;
	gap: 0.8rem;
	grid-template-columns: 1.9rem minmax(0, 1fr);
	font-weight: 950;
	list-style: none;
	text-align: left;
}

.bololo-faq-grid summary::-webkit-details-marker {
	display: none;
}

.bololo-faq-grid summary::before {
	align-items: center;
	background: rgba(240, 71, 166, 0.12);
	border: 1px solid rgba(240, 71, 166, 0.42);
	border-radius: 999px;
	color: var(--bololo-magenta);
	content: "+";
	display: inline-flex;
	font-size: 1.15rem;
	height: 1.9rem;
	justify-content: center;
	line-height: 1;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
	width: 1.9rem;
}

.bololo-faq-grid details[open] summary::before {
	background: var(--bololo-cyan);
	color: #030406;
	content: "-";
	transform: rotate(180deg);
}

.bololo-faq-grid details:hover,
.bololo-faq-grid details:focus-within {
	border-color: rgba(17, 199, 230, 0.48);
	box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18), 0 0 22px rgba(17, 199, 230, 0.1);
	transform: translateY(-0.14rem);
}

.bololo-faq-grid p {
	color: var(--bololo-text-soft);
	grid-column: 2;
	margin: 0.75rem 0 0;
	text-align: left;
}

.bololo-register-2026 #faq .bololo-button {
	margin-top: 1.4rem;
}

.bololo-video-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 2rem;
}

.bololo-video-card {
	aspect-ratio: 16 / 10;
	background: #030406;
	border: 1px solid var(--bololo-border);
	border-radius: var(--bololo-radius);
	overflow: hidden;
}

.bololo-video-card iframe {
	border: 0;
	height: 100%;
	width: 100%;
}

.bololo-music-logo {
	align-self: center;
	justify-self: center;
	max-width: 18rem;
}

.bololo-music-logo img {
	filter: drop-shadow(0 22px 52px rgba(240, 71, 166, 0.3));
}

.bololo-post-card {
	display: grid;
	gap: 0.9rem;
	min-height: 13rem;
}

.bololo-post-card time {
	color: var(--bololo-cyan);
	font-size: 0.78rem;
	font-weight: 950;
	text-transform: uppercase;
}

.bololo-post-card a {
	text-decoration: none;
}

.bololo-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 2rem;
}

.bololo-pagination .page-numbers {
	align-items: center;
	background: var(--bololo-card);
	border: 1px solid var(--bololo-border);
	border-radius: var(--bololo-radius);
	display: inline-flex;
	font-weight: 950;
	justify-content: center;
	min-height: 2.6rem;
	min-width: 2.6rem;
	padding: 0.55rem 0.75rem;
	text-decoration: none;
}

.bololo-pagination .current {
	background: var(--bololo-cyan);
	color: #030406;
}

.bololo-social-card {
	background: var(--bololo-card);
	border: 1px solid var(--bololo-border);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow);
	display: grid;
	gap: 0.8rem;
	min-height: 12rem;
	padding: 1.15rem;
	text-decoration: none;
}

.bololo-social-card span {
	color: var(--bololo-text-muted);
}

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

.bololo-legal-card {
	display: grid;
	gap: 0.75rem;
}

.bololo-legal-card ul,
.bololo-legal-card ol {
	color: var(--bololo-text-soft);
	margin: 0;
	padding-left: 1.2rem;
}

.bololo-final-cta {
	background: var(--bololo-bg-alt);
}

.bololo-cta-panel {
	align-items: center;
	background:
		linear-gradient(110deg, rgba(17, 199, 230, 0.08), rgba(240, 71, 166, 0.08)),
		var(--bololo-card);
	border: 1px solid var(--bololo-border);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow);
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 1.35rem;
}

.bololo-cta-panel strong {
	display: block;
	font-size: 1.35rem;
	line-height: 1.2;
}

.bololo-cta-panel p {
	color: var(--bololo-text-soft);
	margin: 0.35rem 0 0;
}

.bololo-footer {
	background:
		linear-gradient(120deg, rgba(17, 199, 230, 0.1), transparent 30%),
		linear-gradient(260deg, rgba(240, 71, 166, 0.12), transparent 36%),
		#030406;
	color: #fff;
	overflow: hidden;
	padding: clamp(3rem, 6vw, 4.8rem) 0 1.4rem;
}

.bololo-footer-inner {
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(18rem, 1.1fr) minmax(14rem, 0.75fr) minmax(16rem, 0.9fr) minmax(14rem, 0.72fr);
	min-height: auto;
}

.bololo-footer-brand,
.bololo-footer-card,
.bololo-footer-event {
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--bololo-radius);
	box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16);
	min-height: 100%;
	padding: 1.15rem;
}

.bololo-footer-logo {
	filter: drop-shadow(0 18px 40px rgba(17, 199, 230, 0.22));
	height: auto;
	width: min(12rem, 100%);
}

.bololo-footer h2 {
	color: #fff;
	font-size: 0.82rem;
	font-weight: 950;
	margin: 1rem 0 0;
	text-transform: uppercase;
}

.bololo-footer-card h2,
.bololo-footer-event h2 {
	margin-top: 0;
}

.bololo-footer p,
.bololo-footer address {
	color: rgba(255, 255, 255, 0.75);
	font-style: normal;
	margin: 0.85rem 0 0;
}

.bololo-footer-brand-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 1rem;
}

.bololo-footer-brand-tags span {
	background: rgba(17, 199, 230, 0.11);
	border: 1px solid rgba(17, 199, 230, 0.22);
	border-radius: 999px;
	color: var(--bololo-cyan);
	font-size: 0.72rem;
	font-weight: 950;
	padding: 0.42rem 0.58rem;
	text-transform: uppercase;
}

.bololo-footer-nav,
.bololo-socials,
.bololo-footer-legal,
.bololo-footer-contact {
	display: grid;
	gap: 0.55rem;
}

.bololo-socials {
	margin-top: 0.8rem;
}

.bololo-footer-nav a,
.bololo-footer-contact a,
.bololo-footer-legal a,
.bololo-social-link {
	align-items: center;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--bololo-radius);
	color: #fff;
	display: inline-flex;
	gap: 0.55rem;
	min-height: 2.65rem;
	padding: 0.66rem 0.78rem;
	text-decoration: none;
}

.bololo-dmca-badge {
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--bololo-radius);
	gap: 0.5rem;
	padding: 0.66rem 0.78rem;
}

.bololo-dmca-badge span {
	color: var(--bololo-cyan);
	font-weight: 950;
}

.bololo-footer-event {
	align-content: start;
	display: grid;
	gap: 0.75rem;
	justify-items: start;
	text-align: center;
}

.bololo-footer-event img {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--bololo-radius);
	height: auto;
	justify-self: center;
	object-fit: contain;
	padding: 0.72rem;
	width: min(10rem, 100%);
}

.bololo-footer-event p {
	font-size: 0.9rem;
	margin: 0;
	text-align: left;
}

.bololo-footer-legal {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	grid-column: 1 / -1;
	grid-template-columns: repeat(4, max-content);
	justify-content: space-between;
	padding-top: 1rem;
}

.bololo-footer-bottom {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.9rem;
	grid-column: 1 / -1;
	padding-top: 0.2rem;
}

.bololo-modal-open {
	overflow: hidden;
}

.bololo-presale-modal {
	align-items: center;
	display: grid;
	inset: 0;
	justify-items: center;
	padding: 1.25rem;
	position: fixed;
	z-index: 400;
}

.bololo-presale-backdrop {
	background: rgba(3, 4, 6, 0.68);
	inset: 0;
	position: absolute;
}

@supports ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
	.bololo-presale-backdrop {
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}
}

.bololo-presale-dialog {
	background:
		radial-gradient(circle at 8% 12%, rgba(17, 199, 230, 0.16), transparent 30%),
		radial-gradient(circle at 100% 100%, rgba(240, 71, 166, 0.2), transparent 35%),
		color-mix(in srgb, var(--bololo-bg-alt) 94%, transparent);
	border: 1px solid rgba(17, 199, 230, 0.42);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow), 0 0 54px rgba(17, 199, 230, 0.18);
	color: var(--bololo-text);
	display: grid;
	grid-template-columns: minmax(16rem, 0.82fr) minmax(0, 1.18fr);
	max-height: calc(100svh - 2.5rem);
	max-width: min(62rem, calc(100vw - 2.5rem));
	overflow: auto;
	padding: 0.45rem;
	position: relative;
	width: 100%;
	z-index: 1;
}

.bololo-presale-visual {
	border-radius: calc(var(--bololo-radius) - 0.35rem);
	margin: 0;
	min-height: 32rem;
	overflow: hidden;
	position: relative;
}

.bololo-presale-visual::after {
	background:
		linear-gradient(180deg, rgba(3, 4, 6, 0.08), rgba(3, 4, 6, 0.74)),
		linear-gradient(135deg, rgba(17, 199, 230, 0.08), rgba(240, 71, 166, 0.16));
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.bololo-presale-visual img {
	height: 100%;
	object-fit: cover;
	object-position: 50% 36%;
	width: 100%;
}

.bololo-presale-visual figcaption,
.bololo-presale-discount {
	position: absolute;
	z-index: 1;
}

.bololo-presale-visual figcaption {
	bottom: 1rem;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 780;
	inset-inline: 1rem;
	text-transform: uppercase;
}

.bololo-presale-discount {
	background: var(--bololo-magenta);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	box-shadow: 0 0 28px rgba(240, 71, 166, 0.36);
	color: #fff;
	font-size: 0.86rem;
	font-weight: 850;
	inset-inline-start: 1rem;
	padding: 0.5rem 0.72rem;
	top: 1rem;
}

.bololo-presale-content {
	align-self: center;
	padding: clamp(1.4rem, 3vw, 2.5rem);
}

.bololo-presale-dialog h2 {
	font-size: clamp(2.6rem, 5vw, 4.35rem);
	line-height: 0.96;
	margin-top: 0.55rem;
	max-width: 10.5ch;
	text-wrap: balance;
}

.bololo-presale-content > p:not(.bololo-section-kicker) {
	color: var(--bololo-text-soft);
	font-size: clamp(0.95rem, 1.4vw, 1.08rem);
	line-height: 1.55;
	margin: 1rem 0 0;
	max-width: 38rem;
}

.bololo-floating-close {
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--bololo-border);
	border-radius: 999px;
	color: var(--bololo-text);
	cursor: pointer;
	display: inline-flex;
	height: 2.4rem;
	justify-content: center;
	padding: 0;
	position: absolute;
	right: 1rem;
	top: 0.85rem;
	width: 2.4rem;
	z-index: 4;
}

.bololo-floating-close svg {
	height: 1.1rem;
	width: 1.1rem;
}

.bololo-presale-meta {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 0;
	margin-top: 1.15rem;
}

.bololo-presale-meta > div {
	align-items: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--bololo-border);
	border-radius: 14px;
	display: grid;
	gap: 0.1rem 0.65rem;
	grid-template-columns: auto minmax(0, 1fr);
	padding: 0.78rem;
}

.bololo-presale-meta-icon {
	align-items: center;
	background: rgba(17, 199, 230, 0.11);
	border: 1px solid rgba(17, 199, 230, 0.28);
	border-radius: 999px;
	color: var(--bololo-cyan);
	display: inline-flex;
	grid-row: 1 / 3;
	height: 2.25rem;
	justify-content: center;
	width: 2.25rem;
}

.bololo-presale-meta-icon svg {
	height: 1.1rem;
	width: 1.1rem;
}

.bololo-presale-meta dt {
	color: var(--bololo-text-muted);
	font-size: 0.68rem;
	font-weight: 760;
	line-height: 1.2;
	text-transform: uppercase;
}

.bololo-presale-meta dd {
	color: var(--bololo-cyan);
	font-size: clamp(0.92rem, 1.4vw, 1.05rem);
	font-weight: 820;
	line-height: 1.15;
	margin: 0;
}

.bololo-presale-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.35rem;
}

.bololo-presale-actions .bololo-button {
	font-size: 0.88rem;
	min-height: 2.9rem;
	padding: 0.72rem 1rem;
}

.bololo-cookie-banner {
	align-items: center;
	background:
		linear-gradient(135deg, rgba(17, 199, 230, 0.12), rgba(240, 71, 166, 0.1)),
		color-mix(in srgb, var(--bololo-bg-alt) 95%, transparent);
	border: 1px solid var(--bololo-border);
	border-radius: var(--bololo-radius);
	bottom: 1rem;
	box-shadow: var(--bololo-shadow);
	color: var(--bololo-text);
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 1fr) auto;
	left: 50%;
	max-width: min(68rem, calc(100vw - 2rem));
	padding: 1rem;
	position: fixed;
	transform: translateX(-50%);
	width: 100%;
	z-index: 360;
}

@supports ((backdrop-filter: blur(16px)) or (-webkit-backdrop-filter: blur(16px))) {
	.bololo-cookie-banner {
		-webkit-backdrop-filter: blur(16px);
		backdrop-filter: blur(16px);
	}
}

.bololo-cookie-banner strong {
	display: block;
	font-size: 0.92rem;
	margin-bottom: 0.2rem;
	text-transform: uppercase;
}

.bololo-cookie-banner p {
	color: var(--bololo-text-muted);
	font-size: 0.86rem;
	margin: 0;
	max-width: 50rem;
}

.bololo-cookie-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: flex-end;
}

.bololo-cookie-actions .bololo-button {
	min-height: 2.45rem;
	padding: 0.72rem 0.88rem;
}

.bololo-presale-modal[hidden],
.bololo-cookie-banner[hidden] {
	display: none;
}

.bololo-section-inner,
.bololo-header-inner,
.bololo-footer-inner {
	max-width: 1180px;
}

.bololo-readable-section.bololo-topo::before,
.bololo-community-visual-section.bololo-topo::before {
	opacity: 0.18;
}

.bololo-community-visual-section {
	background:
		linear-gradient(135deg, rgba(17, 199, 230, 0.07), transparent 34%),
		linear-gradient(315deg, rgba(240, 71, 166, 0.08), transparent 36%),
		var(--bololo-bg-alt);
	overflow: hidden;
	padding-block: clamp(4.5rem, 8vw, 6.5rem);
}

.bololo-community-visual {
	align-items: start;
	display: grid;
	gap: clamp(2rem, 5vw, 3.5rem);
	grid-template-columns: minmax(0, 0.92fr) minmax(26rem, 1.08fr);
}

.bololo-community-copy .bololo-section-title {
	font-size: clamp(3.2rem, 5.2vw, 5rem);
	max-width: 14.5ch;
	text-wrap: balance;
}

.bololo-community-copy .bololo-section-title > span,
.bololo-community-copy .bololo-section-title .bololo-lang-text {
	white-space: nowrap;
}

.bololo-community-stat-grid {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0.95rem 0 0;
}

.bololo-community-stat-grid div {
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid var(--bololo-border);
	box-shadow: inset 0 0 28px rgba(17, 199, 230, 0.04);
	min-height: 0;
	padding: 0.82rem;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.bololo-community-stat-grid div:hover {
	border-color: rgba(240, 71, 166, 0.58);
	box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18), 0 0 28px rgba(240, 71, 166, 0.12);
	transform: translateY(-0.18rem);
}

.bololo-community-stat-grid strong {
	color: var(--bololo-magenta);
	display: grid;
	gap: 0.25rem;
	font-family: var(--bololo-font-display);
	line-height: 0.92;
	text-transform: uppercase;
	white-space: normal;
}

.bololo-community-stat-number {
	color: var(--bololo-magenta);
	display: block;
	font-size: clamp(1.9rem, 2.8vw, 2.7rem);
	line-height: 0.86;
}

.bololo-community-stat-unit {
	color: #fff;
	display: block;
	font-size: clamp(0.9rem, 1.15vw, 1.12rem);
	line-height: 0.98;
}

.bololo-community-stat-unit .bololo-lang-text {
	display: inline;
}

.bololo-community-stat-grid > div > span {
	color: var(--bololo-text-soft);
	display: block;
	font-size: 0.86rem;
	font-weight: 680;
	line-height: 1.25;
	margin-top: 0.48rem;
}

.bololo-community-text {
	display: grid;
	gap: 0.85rem;
	max-width: 46rem;
}

.bololo-community-text p {
	color: var(--bololo-text-soft);
	font-size: clamp(1.02rem, 1.35vw, 1.15rem);
	margin: 0;
}

.bololo-community-actions,
.bololo-jersey-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.6rem;
}

.bololo-community-media {
	display: grid;
	gap: 0.95rem;
}

.bololo-community-photo-frame {
	align-self: start;
	aspect-ratio: 16 / 12.2;
	background: #030406;
	border: 1px solid rgba(17, 199, 230, 0.28);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow), 0 0 44px rgba(17, 199, 230, 0.16);
	margin: 0;
	max-height: 34rem;
	overflow: hidden;
	position: relative;
}

.bololo-community-photo-frame::after {
	background:
		linear-gradient(180deg, rgba(3, 4, 6, 0.08), rgba(3, 4, 6, 0.52)),
		linear-gradient(90deg, rgba(3, 4, 6, 0.18), transparent 40%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.bololo-community-photo-frame img {
	height: 100%;
	object-fit: cover;
	object-position: 50% 45%;
	width: 100%;
}

.bololo-community-photo-frame figcaption {
	background: rgba(3, 4, 6, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	bottom: 1rem;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 900;
	left: 1rem;
	padding: 0.58rem 0.75rem;
	position: absolute;
	text-transform: uppercase;
	z-index: 1;
}

.bololo-event-teaser-grid {
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.bololo-event-teaser-copy .bololo-section-title {
	max-width: 14ch;
}

.bololo-quick-data-bar {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	display: grid;
	gap: 0;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin: 1.6rem 0;
}

.bololo-quick-data-bar div {
	border-inline-end: 1px solid rgba(255, 255, 255, 0.12);
	display: grid;
	gap: 0.34rem;
	min-height: 9rem;
	padding: 1rem;
}

.bololo-quick-data-bar div:last-child {
	border-inline-end: 0;
}

.bololo-quick-data-icon {
	align-items: center;
	color: var(--bololo-cyan);
	display: inline-flex;
	height: 2rem;
	width: 2rem;
}

.bololo-quick-data-icon svg {
	height: 100%;
	width: 100%;
}

.bololo-quick-data-bar small {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
}

.bololo-quick-data-bar strong {
	color: #fff;
	font-size: 0.92rem;
	line-height: 1.2;
}

.bololo-event-teaser-cards {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bololo-event-teaser-card {
	min-height: 16rem;
}

.bololo-card-badge,
.bololo-kit-badge {
	background: rgba(240, 71, 166, 0.14);
	border: 1px solid rgba(240, 71, 166, 0.46);
	border-radius: 999px;
	color: var(--bololo-magenta);
	display: inline-flex;
	font-size: 0.74rem;
	font-weight: 900;
	justify-self: start;
	padding: 0.42rem 0.62rem;
	text-transform: uppercase;
}

.bololo-event-teaser-card strong {
	font-size: clamp(1.35rem, 2.4vw, 2.05rem);
}

.bololo-event-teaser {
	padding-block: clamp(4.75rem, 7vw, 6.5rem);
}

.bololo-event-teaser-grid {
	align-items: start;
	gap: clamp(2rem, 4.2vw, 3.25rem);
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.bololo-event-teaser-copy {
	max-width: 40rem;
}

.bololo-event-teaser-copy .bololo-section-kicker {
	margin-bottom: 0.95rem;
}

.bololo-event-teaser-copy .bololo-section-title {
	font-size: clamp(3.05rem, 4.6vw, 4.45rem);
	max-width: 16ch;
}

.bololo-event-title-lines .bololo-title-lines > span {
	display: block;
}

.bololo-event-teaser-copy .bololo-section-copy {
	font-size: clamp(1.03rem, 1.45vw, 1.2rem);
	line-height: 1.52;
	margin-top: 1.15rem;
	max-width: 36rem;
}

.bololo-event-teaser .bololo-hero-actions {
	margin-top: 1.25rem;
}

.bololo-quick-data-bar {
	background: transparent;
	border: 0;
	gap: 0.7rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 1.35rem 0 0;
	max-width: 38rem;
}

.bololo-quick-data-bar div {
	align-items: start;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 14px;
	box-shadow: inset 0 0 22px rgba(17, 199, 230, 0.035);
	display: grid;
	gap: 0.22rem 0.72rem;
	grid-template-columns: 2rem minmax(0, 1fr);
	min-height: 0;
	padding: 0.78rem 0.82rem;
	transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.bololo-quick-data-bar div:hover {
	border-color: rgba(17, 199, 230, 0.5);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16), 0 0 24px rgba(17, 199, 230, 0.12);
	transform: translateY(-0.12rem);
}

.bololo-quick-data-bar div:nth-child(3) {
	grid-column: 1 / -1;
}

.bololo-quick-data-icon {
	grid-row: 1 / span 2;
	height: 1.6rem;
	margin-top: 0.12rem;
	width: 1.6rem;
}

.bololo-quick-data-bar small {
	font-size: 0.66rem;
	letter-spacing: 0.02em;
	line-height: 1.05;
}

.bololo-quick-data-bar strong {
	font-size: clamp(0.84rem, 1.05vw, 0.96rem);
	font-weight: 820;
	line-height: 1.18;
}

.bololo-event-teaser-cards {
	align-content: start;
	display: grid;
	gap: 0.82rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bololo-event-teaser-card {
	border-radius: 16px;
	gap: 0.58rem;
	min-height: 0;
	padding: 0;
}

.bololo-event-teaser-card .bololo-icon {
	height: 2.45rem;
	width: 2.45rem;
}

.bololo-event-teaser-card .bololo-icon svg {
	height: 1.35rem;
	width: 1.35rem;
}

.bololo-card-badge {
	font-size: 0.66rem;
	padding: 0.34rem 0.54rem;
}

.bololo-event-teaser-card strong {
	font-size: clamp(1.22rem, 1.75vw, 1.55rem);
	line-height: 1;
}

.bololo-event-card-body > span:last-child {
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.95rem;
	font-weight: 540;
	line-height: 1.36;
}

.bololo-event-card-media {
	aspect-ratio: 16 / 9.4;
	background: #030406;
	margin: 0;
	overflow: hidden;
	position: relative;
}

.bololo-event-card-media::after {
	background:
		linear-gradient(180deg, rgba(3, 4, 6, 0.02), rgba(3, 4, 6, 0.62)),
		radial-gradient(circle at 75% 24%, rgba(240, 71, 166, 0.22), transparent 34%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.bololo-event-card-media img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: filter 240ms ease, transform 240ms ease;
	width: 100%;
}

.bololo-event-teaser-card:hover .bololo-event-card-media img,
.bololo-event-teaser-card:focus-within .bololo-event-card-media img {
	filter: saturate(1.08) contrast(1.04);
	transform: scale(1.045);
}

.bololo-event-card-body {
	display: grid;
	gap: 0.58rem;
	padding: 1rem;
}

.bololo-route-preview .bololo-section-title {
	max-width: 13ch;
}

.bololo-route-columns {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 1.5rem;
}

.bololo-route-columns h3 {
	color: #fff;
	font-size: 0.92rem;
	margin: 0 0 0.85rem;
	text-transform: uppercase;
}

.bololo-check-list-muted li {
	opacity: 0.82;
}

.bololo-route-image {
	position: relative;
}

.bololo-route-image::after {
	background: linear-gradient(180deg, transparent 35%, rgba(3, 4, 6, 0.72));
	content: "";
	inset: 0;
	position: absolute;
}

.bololo-route-image figcaption {
	bottom: 1rem;
	color: #fff;
	font-weight: 900;
	left: 1rem;
	position: absolute;
	text-transform: uppercase;
	z-index: 1;
}

.bololo-editorial-grid,
.bololo-blog-editorial {
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
}

.bololo-editorial-list {
	display: grid;
	gap: 1rem;
}

.bololo-editorial-feature,
.bololo-editorial-card {
	background: #030406;
	border: 1px solid var(--bololo-border);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow);
	margin: 0;
	overflow: hidden;
	position: relative;
}

.bololo-editorial-feature a,
.bololo-editorial-card a {
	color: #fff;
	display: grid;
	min-height: 100%;
	position: relative;
	text-decoration: none;
}

.bololo-editorial-feature img,
.bololo-editorial-card img {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	transition: transform 280ms ease, filter 280ms ease;
	width: 100%;
}

.bololo-editorial-feature:hover img,
.bololo-editorial-card:hover img {
	filter: saturate(1.08) contrast(1.05);
	transform: scale(1.04);
}

.bololo-editorial-feature a {
	min-height: 32rem;
}

.bololo-editorial-card a {
	min-height: 12rem;
}

.bololo-editorial-overlay {
	background:
		linear-gradient(180deg, rgba(3, 4, 6, 0.08), rgba(3, 4, 6, 0.9)),
		linear-gradient(90deg, rgba(3, 4, 6, 0.58), transparent 72%);
	inset: 0;
	position: absolute;
}

.bololo-editorial-feature div,
.bololo-editorial-card div {
	align-self: end;
	display: grid;
	gap: 0.38rem;
	padding: 1rem;
	position: relative;
	z-index: 1;
}

.bololo-editorial-feature div {
	padding: clamp(1.2rem, 4vw, 2rem);
}

.bololo-editorial-feature time,
.bololo-editorial-card time,
.bololo-editorial-feature p,
.bololo-editorial-card p {
	color: var(--bololo-cyan);
	font-size: 0.75rem;
	font-weight: 900;
	margin: 0;
	text-transform: uppercase;
}

.bololo-editorial-feature h2,
.bololo-editorial-feature h3,
.bololo-editorial-card h3 {
	color: #fff;
	font-size: clamp(1.28rem, 3vw, 3rem);
	line-height: 1;
	margin: 0;
	text-transform: uppercase;
}

.bololo-editorial-card h3 {
	font-size: 1.15rem;
	line-height: 1.12;
}

.bololo-editorial-card span {
	color: rgba(255, 255, 255, 0.8);
	display: -webkit-box;
	font-size: 0.92rem;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.bololo-editorial-card strong,
.bololo-editorial-feature strong {
	color: var(--bololo-magenta);
	font-size: 0.8rem;
	text-transform: uppercase;
}

.bololo-blog-archive-grid {
	margin-top: 1rem;
}

.bololo-media-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-bottom: 1.25rem;
}

.bololo-filter-button {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--bololo-border);
	border-radius: 999px;
	color: var(--bololo-text);
	cursor: pointer;
	font: inherit;
	font-size: 0.82rem;
	font-weight: 800;
	min-height: 2.45rem;
	padding: 0.58rem 0.8rem;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.bololo-filter-button:hover,
.bololo-filter-button.is-active {
	background: var(--bololo-cyan);
	border-color: var(--bololo-cyan);
	color: #031016;
	transform: translateY(-0.08rem);
}

.bololo-gallery-count {
	color: var(--bololo-text-soft);
	font-weight: 820;
	margin: 0.65rem 0 0;
}

.bololo-masonry-grid {
	align-items: start;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-flow: dense;
}

.bololo-masonry-grid .bololo-media-card {
	aspect-ratio: auto;
}

.bololo-masonry-grid .bololo-media-card:nth-child(3n + 1) {
	grid-row: span 2;
}

.bololo-masonry-grid .bololo-media-card button {
	background: transparent;
	border: 0;
	color: inherit;
	cursor: zoom-in;
	display: block;
	height: 100%;
	min-height: 16rem;
	padding: 0;
	position: relative;
	text-align: left;
	width: 100%;
}

.bololo-masonry-grid .bololo-media-card:nth-child(3n + 1) button {
	min-height: 26rem;
}

.bololo-media-card button span {
	background: linear-gradient(180deg, transparent, rgba(3, 4, 6, 0.88));
	bottom: 0;
	color: #fff;
	font-weight: 900;
	inset-inline: 0;
	padding: 3rem 1rem 1rem;
	position: absolute;
	text-transform: uppercase;
	transform: translateY(0);
}

.bololo-media-card.is-hidden {
	display: none;
}

.bololo-lightbox {
	align-items: center;
	display: grid;
	inset: 0;
	justify-items: center;
	padding: 1rem;
	position: fixed;
	z-index: 430;
}

.bololo-lightbox[hidden] {
	display: none;
}

.bololo-lightbox-backdrop {
	background: rgba(3, 4, 6, 0.78);
	border: 0;
	cursor: zoom-out;
	inset: 0;
	position: absolute;
}

.bololo-lightbox-dialog {
	background: #030406;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--bololo-radius);
	box-shadow: var(--bololo-shadow);
	margin: 0;
	max-height: calc(100svh - 2rem);
	max-width: min(76rem, calc(100vw - 2rem));
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.bololo-lightbox-dialog img {
	max-height: calc(100svh - 7rem);
	object-fit: contain;
	width: 100%;
}

.bololo-lightbox-dialog figcaption {
	color: #fff;
	font-weight: 850;
	padding: 0.85rem 1rem;
}

.bololo-jersey-tabs {
	margin: 2rem 0 1.25rem;
	width: min(100%, 58rem);
}

.bololo-jersey-tab-list {
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid var(--bololo-border);
	border-radius: 999px;
	display: inline-flex;
	gap: 0.35rem;
	margin-bottom: 1rem;
	padding: 0.35rem;
}

.bololo-jersey-tab-list button {
	background: transparent;
	border: 0;
	border-radius: 999px;
	color: var(--bololo-text);
	cursor: pointer;
	font: inherit;
	font-size: 0.82rem;
	font-weight: 850;
	min-height: 2.55rem;
	padding: 0.58rem 0.9rem;
	text-transform: uppercase;
}

.bololo-jersey-tab-list button.is-active {
	background: var(--bololo-magenta);
	color: #fff;
}

.bololo-jersey-panel[hidden] {
	display: none;
}

.bololo-jersey-panel .bololo-jersey-card {
	margin-inline: auto;
	max-width: 52rem;
}

.bololo-footer {
	padding: clamp(3rem, 6vw, 4.5rem) 0 1.1rem;
}

.bololo-footer-clean {
	gap: clamp(1.4rem, 3vw, 2.4rem);
	grid-template-columns: minmax(18rem, 1.05fr) minmax(10rem, 0.7fr) minmax(14rem, 0.85fr) minmax(14rem, 0.8fr);
}

.bololo-footer-brand,
.bololo-footer-card,
.bololo-footer-event {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
}

.bololo-footer-logo {
	width: min(10rem, 100%);
}

.bololo-footer h2 {
	font-size: 0.78rem;
	margin: 0.9rem 0 0;
}

.bololo-footer-card h2,
.bololo-footer-event h2 {
	margin-top: 0;
}

.bololo-footer p,
.bololo-footer address {
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.94rem;
	line-height: 1.55;
}

.bololo-footer-nav a,
.bololo-footer-contact a,
.bololo-social-link {
	background: transparent;
	border: 0;
	border-radius: 0;
	color: rgba(255, 255, 255, 0.78);
	min-height: 2rem;
	padding: 0;
}

.bololo-footer-nav a:hover,
.bololo-footer-contact a:hover,
.bololo-social-link:hover {
	background: transparent;
	box-shadow: none;
	color: var(--bololo-cyan);
}

.bololo-footer-link-icon {
	color: var(--bololo-cyan);
	height: 1.1rem;
	width: 1.1rem;
}

.bololo-footer-event {
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--bololo-radius);
	padding: 1rem;
	text-align: left;
}

.bololo-footer-event img {
	padding: 0.45rem;
	width: 5.4rem;
}

.bololo-footer-mini-cta {
	color: var(--bololo-magenta);
	font-size: 0.82rem;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
}

.bololo-footer-bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	display: flex;
	gap: 1rem;
	grid-column: 1 / -1;
	justify-content: space-between;
	padding-top: 1rem;
}

.bololo-footer-legal {
	border-top: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	grid-column: auto;
	padding-top: 0;
}

.bololo-footer-legal a,
.bololo-dmca-badge {
	background: transparent;
	border: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.78rem;
	min-height: 0;
	padding: 0;
	text-decoration: none;
}

.bololo-dmca-badge span {
	color: rgba(255, 255, 255, 0.62);
	font-weight: 800;
}

.bololo-mobile-sticky-cta {
	align-items: center;
	background: linear-gradient(135deg, var(--bololo-magenta), #c23692);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	bottom: 0.85rem;
	box-shadow: 0 16px 46px rgba(240, 71, 166, 0.36);
	color: #fff;
	display: none;
	font-weight: 850;
	gap: 0.55rem;
	inset-inline: 1rem;
	justify-content: center;
	min-height: 3.25rem;
	position: fixed;
	text-decoration: none;
	z-index: 250;
}

@keyframes bololo-gradient-flow {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@keyframes bololo-neon-border {
	to { --bololo-neon-angle: 360deg; }
}

@keyframes bololo-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes bololo-icon-draw {
	0% { stroke-dashoffset: 120; }
	35%, 100% { stroke-dashoffset: 0; }
}

@media (max-width: 1100px) {
	.bololo-header-inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
	}

	.bololo-menu-toggle {
		display: inline-flex;
		grid-column: 3;
		grid-row: 1;
	}

	.bololo-header-controls {
		grid-column: 2;
		grid-row: 1;
	}

	.bololo-nav {
		align-items: stretch;
		background: color-mix(in srgb, var(--bololo-bg-alt) 94%, transparent);
		border: 1px solid var(--bololo-border);
		border-radius: var(--bololo-radius);
		box-shadow: var(--bololo-shadow);
		display: none;
		flex-direction: column;
		grid-column: 1 / -1;
		grid-row: 2;
		justify-content: start;
		margin-bottom: 1rem;
		max-height: calc(100svh - var(--bololo-header-height) - 2rem);
		overflow: auto;
		padding: 0.6rem;
	}

	.bololo-nav-open .bololo-nav {
		display: flex;
	}

	.bololo-header-search {
		display: none;
	}

	.bololo-nav-search {
		display: flex;
		width: 100%;
	}

	.bololo-nav-search input {
		width: 100%;
	}

	.bololo-nav-trigger {
		text-align: left;
		width: 100%;
	}

	.bololo-mega-panel {
		background: var(--bololo-surface);
		box-shadow: none;
		display: none;
		left: auto;
		min-width: 0;
		opacity: 1;
		pointer-events: auto;
		position: static;
		transform: none;
		visibility: visible;
	}

	.bololo-nav-group.is-open .bololo-mega-panel,
	.bololo-nav-group:hover .bololo-mega-panel,
	.bololo-nav-group:focus-within .bololo-mega-panel {
		display: grid;
		transform: none;
	}

	.bololo-hero-grid,
	.bololo-page-hero-grid,
	.bololo-split,
	.bololo-split-reverse,
	.bololo-community-visual,
	.bololo-atlantico-grid,
	.bololo-route-lead,
	.bololo-route-story-grid,
	.bololo-kit-showcase,
	.bololo-timeline,
	.bololo-form-layout,
	.bololo-event-teaser-grid,
	.bololo-jersey-banner,
	.bololo-social-hub-grid,
	.bololo-blog-feature,
	.bololo-editorial-grid,
	.bololo-blog-editorial {
		grid-template-columns: 1fr;
	}

	.bololo-feature-grid,
	.bololo-mini-grid,
	.bololo-pricing-grid,
	.bololo-step-grid,
	.bololo-kit-grid,
	.bololo-register-jersey-grid,
	.bololo-blog-grid,
	.bololo-social-grid,
	.bololo-video-grid,
	.bololo-logo-grid,
	.bololo-event-teaser-cards,
	.bololo-jersey-products,
	.bololo-social-card-grid,
	.bololo-community-stat-grid,
	.bololo-quick-data-bar,
	.bololo-masonry-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bololo-community-photo-frame {
		aspect-ratio: 16 / 10.5;
		max-height: none;
	}

	.bololo-community-media {
		order: -1;
	}

	.bololo-community-copy .bololo-section-title {
		max-width: 13.5ch;
	}

	.bololo-quick-data-bar div:nth-child(2n) {
		border-inline-end: 0;
	}

	.bololo-register-2026 .bololo-page-hero {
		min-height: 0;
	}

	.bololo-register-hero-copy {
		max-width: 100%;
	}

	.bololo-register-hero-visual {
		aspect-ratio: 16 / 11;
	}

	.bololo-register-hero-visual img {
		object-position: 50% 34%;
	}

	.bololo-footer-inner {
		grid-template-columns: 1fr;
	}

	.bololo-footer-event {
		justify-self: stretch;
	}

	.bololo-footer-legal {
		justify-content: stretch;
	}
}

@media (max-width: 720px) {
	:root {
		--bololo-header-height: 72px;
	}

	body.admin-bar .bololo-site-header {
		top: 46px;
	}

	.bololo-section-inner,
	.bololo-header-inner,
	.bololo-hero-grid {
		padding-inline: 1rem;
	}

	.bololo-brand img {
		max-height: 3rem;
		width: 8.8rem;
	}

	.bololo-header-controls {
		gap: 0.35rem;
	}

	.bololo-header-cta {
		display: none;
	}

	.bololo-lang-switch button {
		width: 1.9rem;
	}

	.bololo-video-hero {
		min-height: 92svh;
		padding-top: var(--bololo-header-height);
	}

	.bololo-hero-media iframe {
		opacity: 0.64;
	}

	.bololo-hero-title {
		font-size: clamp(3rem, 15vw, 4.6rem);
	}

	.bololo-video-hero .bololo-hero-grid {
		min-height: calc(92svh - var(--bololo-header-height));
		padding-bottom: 3rem;
		padding-top: 4rem;
	}

	.bololo-hero-actions,
	.bololo-section-head,
	.bololo-countdown {
		align-items: stretch;
		flex-direction: column;
	}

	.bololo-presale-alert {
		grid-template-columns: auto minmax(0, 1fr);
		max-width: 100%;
	}

	.bololo-presale-price {
		grid-column: 1 / -1;
	}

	.bololo-button,
	.bololo-header-cta {
		width: 100%;
	}

	.bololo-facts dl,
	.bololo-feature-grid,
	.bololo-mini-grid,
	.bololo-pricing-grid,
	.bololo-step-grid,
	.bololo-kit-grid,
	.bololo-register-jersey-grid,
	.bololo-blog-grid,
	.bololo-social-grid,
	.bololo-legal-grid,
	.bololo-video-grid,
	.bololo-faq-grid,
	.bololo-stat-row,
	.bololo-location-tags,
	.bololo-event-teaser-cards,
	.bololo-jersey-products,
	.bololo-social-card-grid,
	.bololo-footer-legal,
	.bololo-community-stat-grid,
	.bololo-quick-data-bar,
	.bololo-route-columns,
	.bololo-masonry-grid {
		grid-template-columns: 1fr;
	}

	.bololo-community-copy .bololo-section-title,
	.bololo-event-teaser-copy .bololo-section-title,
	.bololo-route-preview .bololo-section-title,
	.bololo-jersey-banner-copy .bololo-section-title {
		font-size: clamp(2.7rem, 14vw, 4rem);
		max-width: 11ch;
	}

	.bololo-community-copy .bololo-section-title > span,
	.bololo-community-copy .bololo-section-title .bololo-lang-text {
		white-space: normal;
	}

	.bololo-community-stat-grid div,
	.bololo-quick-data-bar div {
		min-height: auto;
	}

	.bololo-jersey-banner {
		grid-template-columns: 1fr;
	}

	.bololo-route-lead .bololo-section-copy {
		margin-top: 0.5rem;
	}

	.bololo-route-status-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bololo-community-stat-grid div {
		align-items: center;
		display: grid;
		gap: 0.2rem 1rem;
		grid-template-columns: minmax(4.8rem, auto) minmax(0, 1fr);
	}

	.bololo-community-stat-grid > div > span {
		margin-top: 0;
	}

	.bololo-community-photo-frame {
		aspect-ratio: 4 / 4.7;
	}

	.bololo-jersey-tabs {
		border-radius: var(--bololo-radius);
		grid-template-columns: 1fr;
	}

	.bololo-jersey-panel img {
		aspect-ratio: 4 / 3.2;
	}

	.bololo-route-signal-row {
		align-items: stretch;
		flex-direction: column;
	}

	.bololo-route-map-card {
		aspect-ratio: 4 / 3.3;
	}

	.bololo-route-status-grid {
		grid-template-columns: 1fr;
	}

	.bololo-quick-data-bar div,
	.bololo-quick-data-bar div:nth-child(2n) {
		border-block-end: 1px solid rgba(255, 255, 255, 0.12);
		border-inline-end: 0;
	}

	.bololo-quick-data-bar div:last-child {
		border-block-end: 0;
	}

	.bololo-editorial-feature a {
		min-height: 25rem;
	}

	.bololo-editorial-card a {
		min-height: 13rem;
	}

	.bololo-masonry-grid .bololo-media-card:nth-child(3n + 1) {
		grid-row: span 1;
	}

	.bololo-masonry-grid .bololo-media-card button,
	.bololo-masonry-grid .bololo-media-card:nth-child(3n + 1) button {
		min-height: 20rem;
	}

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

	.bololo-mobile-sticky-cta {
		display: inline-flex;
	}

	.bololo-cookie-banner {
		bottom: 4.8rem;
	}

	.bololo-presale-meta,
	.bololo-cookie-banner {
		grid-template-columns: 1fr;
	}

	.bololo-presale-actions,
	.bololo-cookie-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.bololo-presale-dialog {
		grid-template-columns: 1fr;
		max-height: calc(100svh - 1rem);
		max-width: calc(100vw - 1rem);
		padding: 0.35rem;
	}

	.bololo-presale-visual {
		min-height: 12.5rem;
	}

	.bololo-presale-visual img {
		object-position: 50% 31%;
	}

	.bololo-presale-content {
		padding: 1.15rem 0.85rem 1.1rem;
	}

	.bololo-presale-dialog h2 {
		font-size: clamp(2.2rem, 11vw, 3.2rem);
		max-width: 11ch;
	}

	.bololo-presale-content > p:not(.bololo-section-kicker) {
		font-size: 0.92rem;
		line-height: 1.45;
	}

	.bololo-presale-meta {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bololo-presale-meta > div {
		gap: 0.15rem;
		grid-template-columns: 1fr;
		padding: 0.65rem;
	}

	.bololo-presale-meta-icon {
		grid-row: auto;
		height: 1.9rem;
		margin-bottom: 0.25rem;
		width: 1.9rem;
	}

	.bololo-presale-actions .bololo-button {
		width: 100%;
	}

	.bololo-cookie-actions {
		justify-content: stretch;
	}

	.bololo-facts dl > div {
		border-block-end: 1px solid var(--bololo-border);
		border-inline-end: 0;
	}

	.bololo-facts dl > div:last-child {
		border-block-end: 0;
	}

	.bololo-register-2026 .bololo-page-title {
		font-size: clamp(3.6rem, 17vw, 5rem);
		max-width: 9.5ch;
	}

	.bololo-centered-head > .bololo-section-title,
	.bololo-register-2026 .bololo-section-title {
		font-size: clamp(2.75rem, 14vw, 4rem);
		max-width: 11ch;
	}

	.bololo-register-hero-visual {
		aspect-ratio: auto;
		display: grid;
	}

	.bololo-register-hero-visual img {
		aspect-ratio: 4 / 4.6;
		height: auto;
	}

	.bololo-register-hero-visual .bololo-register-card {
		bottom: auto;
		left: auto;
		position: relative;
		right: auto;
	}

	.bololo-register-hero-visual::before {
		background: linear-gradient(180deg, rgba(3, 4, 6, 0.08), rgba(3, 4, 6, 0.5));
		height: auto;
	}

	.bololo-kit-photo img {
		aspect-ratio: 4 / 4.4;
	}

	.bololo-register-2026 .bololo-step-grid li {
		padding-inline-end: 1rem;
	}

	.bololo-gallery-grid,
	.bololo-media-grid {
		grid-template-columns: 1fr;
	}

	.bololo-gallery-feature,
	.bololo-media-card:nth-child(1),
	.bololo-media-card:nth-child(6) {
		grid-column: span 1;
		grid-row: span 1;
	}

	.bololo-media-card figcaption {
		transform: translateY(0);
	}

	.bololo-cta-panel {
		grid-template-columns: 1fr;
	}

	.bololo-form-embed {
		min-height: 36rem;
	}
}

@media (max-width: 1100px) {
	.bololo-event-teaser-grid {
		gap: clamp(1.75rem, 5vw, 2.75rem);
	}

	.bololo-event-teaser-copy,
	.bololo-quick-data-bar {
		max-width: none;
	}

	.bololo-event-teaser-copy .bololo-section-title {
		max-width: 16ch;
	}
}

@media (max-width: 720px) {
	.bololo-event-teaser {
		padding-block: clamp(3.8rem, 14vw, 5rem);
	}

	.bololo-event-teaser-copy .bololo-section-title {
		font-size: clamp(2.75rem, 13vw, 3.85rem);
		max-width: 13ch;
	}

	.bololo-event-teaser-copy .bololo-section-copy {
		font-size: 1rem;
	}

	.bololo-quick-data-bar,
	.bololo-event-teaser-cards {
		grid-template-columns: 1fr;
	}

	.bololo-quick-data-bar div:nth-child(3) {
		grid-column: auto;
	}

	.bololo-event-teaser-card {
		min-height: 0;
	}
}

/* Home narrative teaser and event story page. */
.bololo-event-teaser-lede {
	color: #fff;
	font-size: clamp(1.2rem, 1.8vw, 1.55rem);
	font-weight: 680;
	line-height: 1.35;
	margin: 1rem 0 0;
	max-width: 34rem;
}

.bololo-route-journey,
.bololo-story-route-line {
	align-items: center;
	display: grid;
	grid-template-columns: auto minmax(1rem, 1fr) auto minmax(1rem, 1fr) auto minmax(1rem, 1fr) auto;
	margin-top: 1.4rem;
	max-width: 34rem;
}

.bololo-route-journey > span,
.bololo-story-route-line > span {
	align-items: center;
	color: var(--bololo-cyan);
	display: grid;
	gap: 0.35rem;
	justify-items: center;
}

.bololo-route-journey svg,
.bololo-story-route-line svg {
	height: 1.65rem;
	width: 1.65rem;
}

.bololo-route-journey small {
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.66rem;
	font-weight: 760;
	text-transform: uppercase;
}

.bololo-route-journey > i,
.bololo-story-route-line > i {
	background: linear-gradient(90deg, rgba(17, 199, 230, 0.2), var(--bololo-cyan), var(--bololo-magenta));
	height: 1px;
}

.bololo-event-microcopy {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.8rem;
	font-weight: 640;
	margin: 0.75rem 0 0;
}

.bololo-meaning-track .bololo-icon,
.bololo-moment-card .bololo-icon,
.bololo-story-facts-grid .bololo-icon {
	align-items: center;
	color: var(--bololo-cyan);
	display: inline-flex;
	flex: 0 0 auto;
	height: 2.75rem;
	justify-content: center;
	width: 2.75rem;
}

.bololo-meaning-track .bololo-icon svg,
.bololo-moment-card .bololo-icon svg,
.bololo-story-facts-grid .bololo-icon svg {
	display: block;
	height: 100%;
	width: 100%;
}

.bololo-event-story-card {
	background: rgba(8, 12, 18, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	color: #fff;
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: minmax(0, 1.12fr) minmax(14rem, 0.88fr);
	overflow: hidden;
	text-decoration: none;
	transition: border-color 240ms cubic-bezier(.22, 1, .36, 1), box-shadow 240ms cubic-bezier(.22, 1, .36, 1), transform 240ms cubic-bezier(.22, 1, .36, 1);
}

.bololo-event-story-card:hover,
.bololo-event-story-card:focus-visible {
	border-color: rgba(17, 199, 230, 0.58);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28), 0 0 28px rgba(17, 199, 230, 0.1);
	transform: translateY(-0.2rem);
}

.bololo-event-story-card:focus-visible {
	outline: 3px solid var(--bololo-cyan);
	outline-offset: 3px;
}

.bololo-event-story-card figure {
	margin: 0;
	min-height: 19rem;
	overflow: hidden;
}

.bololo-event-story-card img {
	height: 100%;
	object-fit: cover;
	transition: transform 280ms cubic-bezier(.22, 1, .36, 1);
	width: 100%;
}

.bololo-event-story-card:hover img {
	transform: scale(1.035);
}

.bololo-event-story-card > div {
	align-content: center;
	display: grid;
	gap: 0.8rem;
	padding: clamp(1.25rem, 2.4vw, 2rem);
}

.bololo-event-story-card strong {
	font-family: var(--bololo-font-display);
	font-size: clamp(2rem, 3.2vw, 3.2rem);
	font-weight: 760;
	line-height: 0.95;
	text-transform: uppercase;
}

.bololo-event-story-card p {
	color: rgba(255, 255, 255, 0.76);
	line-height: 1.5;
	margin: 0;
}

.bololo-story-page {
	background: var(--bololo-black);
	color: #fff;
}

.bololo-story-page section[id] {
	scroll-margin-top: 7.5rem;
}

.bololo-register-2026 .bololo-story-nav .bololo-section-inner {
	display: flex;
	gap: 0.35rem;
	overflow-x: auto;
	padding-block: 0.6rem;
	scrollbar-width: none;
}

.bololo-register-2026 .bololo-story-nav .bololo-section-inner::-webkit-scrollbar {
	display: none;
}

.bololo-register-2026 .bololo-story-nav a {
	border-radius: 6px;
	color: rgba(255, 255, 255, 0.76);
	flex: 0 0 auto;
	font-size: 0.78rem;
	font-weight: 650;
	padding: 0.65rem 0.8rem;
	text-decoration: none;
	transition: background-color 200ms cubic-bezier(.22, 1, .36, 1), color 200ms cubic-bezier(.22, 1, .36, 1);
}

.bololo-register-2026 .bololo-story-nav a:hover,
.bololo-register-2026 .bololo-story-nav a:focus-visible {
	background: rgba(17, 199, 230, 0.12);
	color: #fff;
}

.bololo-register-2026 .bololo-story-intro-grid,
.bololo-register-2026 .bololo-community-story-grid {
	align-items: center;
}

.bololo-register-2026 .bololo-community-story-grid > div {
	display: grid;
	gap: 1rem;
}

.bololo-story-hero {
	display: grid;
	isolation: isolate;
	min-height: clamp(42rem, 82vh, 58rem);
	overflow: hidden;
	position: relative;
}

.bololo-story-hero-media,
.bololo-story-hero-overlay,
.bololo-story-hero-grid {
	grid-area: 1 / 1;
}

.bololo-story-hero-media {
	height: 100%;
	object-fit: cover;
	width: 100%;
	z-index: -3;
}

.bololo-story-hero-overlay {
	background: linear-gradient(90deg, rgba(3, 6, 9, 0.94) 0%, rgba(3, 6, 9, 0.74) 48%, rgba(3, 6, 9, 0.34) 100%), linear-gradient(0deg, rgba(3, 6, 9, 0.82), transparent 55%);
	z-index: -2;
}

.bololo-story-hero-grid {
	align-items: end;
	display: grid;
	gap: clamp(2rem, 6vw, 5rem);
	grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.62fr);
	padding-block: clamp(7.5rem, 12vw, 10rem) clamp(4rem, 8vw, 6rem);
}

.bololo-story-hero-copy {
	max-width: 44rem;
}

.bololo-story-title {
	font-family: var(--bololo-font-display);
	font-size: clamp(4.8rem, 9.4vw, 9.5rem);
	font-weight: 760;
	letter-spacing: 0;
	line-height: 0.82;
	margin: 0;
	text-transform: uppercase;
}

.bololo-story-title .bololo-title-lines > span {
	display: block;
}

.bololo-story-hero-lede {
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(1.08rem, 1.7vw, 1.35rem);
	line-height: 1.55;
	margin: 1.4rem 0 0;
	max-width: 39rem;
}

.bololo-story-hero-card {
	background: rgba(8, 13, 20, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
	display: grid;
	gap: 1rem;
	padding: clamp(1.25rem, 2.4vw, 2rem);
}

.bololo-story-hero-card > strong {
	font-size: clamp(1.25rem, 2.1vw, 1.75rem);
	line-height: 1.25;
}

.bololo-story-hero-card small {
	color: rgba(255, 255, 255, 0.68);
	font-weight: 650;
}

.bololo-story-route-line {
	margin-top: 0.25rem;
}

.bololo-story-nav {
	background: rgba(3, 6, 9, 0.94);
	border-block: 1px solid rgba(255, 255, 255, 0.1);
	position: sticky;
	top: var(--bololo-header-height, 5.25rem);
	z-index: 20;
}

.bololo-story-nav .bololo-section-inner {
	display: flex;
	gap: 1.35rem;
	overflow-x: auto;
	padding-block: 0.8rem;
	scrollbar-width: none;
}

.bololo-story-nav a {
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.78rem;
	font-weight: 720;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.bololo-story-nav a:hover,
.bololo-story-nav a:focus-visible {
	color: var(--bololo-cyan);
}

.bololo-story-intro-grid,
.bololo-presale-story-grid,
.bololo-kit-story-grid,
.bololo-jersey-story-grid,
.bololo-community-story-grid {
	align-items: center;
	display: grid;
	gap: clamp(2rem, 6vw, 5.5rem);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bololo-story-section-head .bololo-section-title,
.bololo-story-prose,
.bololo-community-story-grid .bololo-section-title {
	max-width: 14ch;
}

.bololo-story-prose {
	display: grid;
	gap: 1rem;
}

.bololo-story-prose p {
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(1rem, 1.35vw, 1.15rem);
	line-height: 1.65;
	margin: 0;
}

.bololo-story-prose strong {
	color: var(--bololo-cyan);
	font-size: 1.05rem;
	line-height: 1.5;
}

.bololo-story-quote {
	border-left: 3px solid var(--bololo-magenta);
	color: #fff;
	font-size: clamp(1.05rem, 1.65vw, 1.35rem);
	font-weight: 720;
	line-height: 1.4;
	margin: 1.4rem 0 0;
	max-width: 28rem;
	padding-left: 1rem;
}

.bololo-meaning-section,
.bololo-event-facts-section,
.bololo-jersey-story {
	background-color: #060a10;
}

.bololo-meaning-track {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 2.5rem;
}

.bololo-meaning-track article {
	background: rgba(10, 15, 23, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.11);
	display: grid;
	gap: 0.7rem;
	min-height: 16rem;
	padding: clamp(1.2rem, 2.3vw, 2rem);
}

.bololo-meaning-track article:first-child { border-radius: 16px 0 0 16px; }
.bololo-meaning-track article:last-child { border-radius: 0 16px 16px 0; }
.bololo-meaning-track small { color: var(--bololo-magenta); font-weight: 800; }
.bololo-meaning-track h3 { font-family: var(--bololo-font-display); font-size: 2rem; margin: auto 0 0; text-transform: uppercase; }
.bololo-meaning-track p { color: rgba(255, 255, 255, 0.72); line-height: 1.5; margin: 0; }

.bololo-moment-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 2.5rem;
}

.bololo-moment-card {
	background: #0a0f17;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	overflow: hidden;
}

.bololo-moment-card figure { margin: 0; min-height: 22rem; overflow: hidden; }
.bololo-moment-card img { height: 100%; object-fit: cover; transition: transform 260ms cubic-bezier(.22, 1, .36, 1); width: 100%; }
.bololo-moment-card:hover img { transform: scale(1.035); }
.bololo-moment-card > div { align-content: center; display: grid; gap: 0.8rem; padding: clamp(1.2rem, 2.5vw, 2rem); }
.bololo-moment-number { color: var(--bololo-magenta); font-family: var(--bololo-font-display); font-size: 2.4rem; }
.bololo-moment-card h3 { font-family: var(--bololo-font-display); font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 0.95; margin: 0; text-transform: uppercase; }
.bololo-moment-card p { color: rgba(255, 255, 255, 0.74); line-height: 1.5; margin: 0; }

.bololo-story-facts-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	margin-top: 2.5rem;
}

.bololo-story-facts-grid article {
	background: rgba(10, 15, 23, 0.84);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 14px;
	display: grid;
	gap: 0.7rem;
	grid-column: span 2;
	min-height: 15rem;
	padding: 1.35rem;
}

.bololo-story-facts-grid article:nth-child(4),
.bololo-story-facts-grid article:nth-child(5) { grid-column: span 3; }
.bololo-story-facts-grid h3 { font-size: 0.78rem; margin: auto 0 0; text-transform: uppercase; }
.bololo-story-facts-grid strong { color: #fff; font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.2; }
.bololo-story-facts-grid p { color: rgba(255, 255, 255, 0.7); line-height: 1.45; margin: 0; }

.bololo-presale-story-price {
	background: linear-gradient(135deg, rgba(17, 199, 230, 0.1), rgba(240, 71, 166, 0.1)), #0a0f17;
	border: 1px solid rgba(240, 71, 166, 0.42);
	border-radius: 16px;
	display: grid;
	gap: 0.7rem;
	padding: clamp(1.5rem, 4vw, 3rem);
}

.bololo-presale-story-price small { color: rgba(255, 255, 255, 0.7); font-weight: 760; text-transform: uppercase; }
.bololo-presale-story-price > strong { color: var(--bololo-magenta); font-family: var(--bololo-font-display); font-size: clamp(3rem, 6vw, 5.5rem); line-height: 0.9; }
.bololo-presale-story-price p { color: rgba(255, 255, 255, 0.74); margin: 0; }

.bololo-kit-story-list {
	display: grid;
	gap: 0.65rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 1.5rem;
}

.bololo-kit-story-list > span {
	align-items: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	display: flex;
	font-weight: 680;
	gap: 0.65rem;
	min-height: 3.25rem;
	padding: 0.7rem 0.85rem;
}

.bololo-kit-story-list i { color: var(--bololo-cyan); display: inline-flex; height: 1.35rem; width: 1.35rem; }
.bololo-kit-story-photo,
.bololo-community-story-grid figure { border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 16px; margin: 0; overflow: hidden; position: relative; }
.bololo-kit-story-photo img,
.bololo-community-story-grid img { aspect-ratio: 4 / 3.6; display: block; object-fit: cover; width: 100%; }
.bololo-kit-story-photo figcaption,
.bololo-community-story-grid figcaption { background: rgba(3, 6, 9, 0.86); bottom: 0.75rem; color: #fff; font-size: 0.78rem; font-weight: 720; left: 0.75rem; padding: 0.55rem 0.7rem; position: absolute; text-transform: uppercase; }

.bololo-jersey-story-grid { align-items: center; }
.bololo-story-page #bololo-story-jersey-short:checked ~ .bololo-jersey-tabs label[for="bololo-story-jersey-short"],
.bololo-story-page #bololo-story-jersey-long:checked ~ .bololo-jersey-tabs label[for="bololo-story-jersey-long"],
.bololo-story-page #bololo-story-jersey-zipper:checked ~ .bololo-jersey-tabs label[for="bololo-story-jersey-zipper"] { background: var(--bololo-magenta); border-color: rgba(255, 255, 255, 0.28); color: #fff; }
.bololo-story-page #bololo-story-jersey-short:checked ~ .bololo-jersey-stage .bololo-jersey-panel-short,
.bololo-story-page #bololo-story-jersey-long:checked ~ .bololo-jersey-stage .bololo-jersey-panel-long,
.bololo-story-page #bololo-story-jersey-zipper:checked ~ .bololo-jersey-stage .bololo-jersey-panel-zipper { display: block; }
.bololo-story-page #bololo-story-jersey-short:focus-visible ~ .bololo-jersey-tabs label[for="bololo-story-jersey-short"],
.bololo-story-page #bololo-story-jersey-long:focus-visible ~ .bololo-jersey-tabs label[for="bololo-story-jersey-long"],
.bololo-story-page #bololo-story-jersey-zipper:focus-visible ~ .bololo-jersey-tabs label[for="bololo-story-jersey-zipper"] { outline: 3px solid var(--bololo-cyan); outline-offset: 3px; }

.bololo-safety-row {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin-top: 2.25rem;
}

.bololo-safety-row article {
	align-items: center;
	background: #0a0f17;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 12px;
	display: flex;
	gap: 0.75rem;
	min-height: 5rem;
	padding: 1rem;
}

.bololo-safety-row strong { font-size: 0.9rem; }
.bololo-community-story { background: #060a10; }
.bololo-community-story-grid img { aspect-ratio: 4 / 3; }

.bololo-story-final {
	background: linear-gradient(120deg, rgba(17, 199, 230, 0.13), rgba(240, 71, 166, 0.12)), #070b11;
	text-align: center;
}

.bololo-story-final .bololo-section-inner { align-items: center; display: flex; flex-direction: column; }
.bololo-story-final h2 { font-family: var(--bololo-font-display); font-size: clamp(3rem, 7vw, 6.5rem); line-height: 0.9; margin: 0; max-width: 13ch; text-transform: uppercase; }

.bololo-event-teaser .bololo-quick-data-bar div:nth-child(3) {
	grid-column: auto;
}

.bololo-event-teaser .bololo-quick-data-bar div:last-child {
	grid-column: 1 / -1;
}
.bololo-story-final p { color: rgba(255, 255, 255, 0.78); font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.55; max-width: 44rem; }
.bololo-story-final small { color: rgba(255, 255, 255, 0.62); margin-top: 1rem; }

@media (max-width: 980px) {
	.bololo-story-hero-grid,
	.bololo-story-intro-grid,
	.bololo-presale-story-grid,
	.bololo-kit-story-grid,
	.bololo-jersey-story-grid,
	.bololo-community-story-grid { grid-template-columns: 1fr; }
	.bololo-story-hero-card { max-width: 34rem; }
	.bololo-meaning-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bololo-meaning-track article:first-child,
	.bololo-meaning-track article:last-child { border-radius: 0; }
	.bololo-moment-card { grid-template-columns: 1fr; }
	.bololo-moment-card figure { min-height: 18rem; }
	.bololo-safety-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
	.bololo-event-story-card { grid-template-columns: 1fr; }
	.bololo-event-story-card figure { min-height: 13rem; }
	.bololo-route-journey { margin-inline: auto; }
	.bololo-story-hero { min-height: 44rem; }
	.bololo-story-hero-overlay { background: linear-gradient(0deg, rgba(3, 6, 9, 0.95) 0%, rgba(3, 6, 9, 0.68) 70%, rgba(3, 6, 9, 0.34) 100%); }
	.bololo-story-hero-grid { align-content: end; padding-block: 7.5rem 3.25rem; }
	.bololo-story-title { font-size: clamp(4rem, 19vw, 6rem); max-width: 8ch; }
	.bololo-story-hero-card { display: none; }
	.bololo-story-nav { top: 4.5rem; }
	.bololo-meaning-track,
	.bololo-moment-grid,
	.bololo-story-facts-grid,
	.bololo-kit-story-list,
	.bololo-safety-row { grid-template-columns: 1fr; }
	.bololo-meaning-track article { min-height: 12rem; }
	.bololo-story-facts-grid article,
	.bololo-story-facts-grid article:nth-child(4),
	.bololo-story-facts-grid article:nth-child(5) { grid-column: auto; min-height: 0; }
	.bololo-moment-card figure { min-height: 15rem; }
	.bololo-jersey-tabs { border-radius: 12px; grid-template-columns: 1fr; }
	.bololo-jersey-tabs label { border-radius: 8px; }
	.bololo-story-final h2 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
	.bololo-event-teaser .bololo-quick-data-bar div:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
	.bololo-template *,
	.bololo-template *::before,
	.bololo-template *::after {
		animation-duration: 0.01ms !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.bololo-hero-media iframe {
		display: none;
	}

	.bololo-button:hover,
	.bololo-header-cta:hover,
	.bololo-social-link:hover,
	.bololo-text-link:hover {
		transform: none;
	}
}

/* Register / experience cleanup requested for the public landing. */
.bololo-register-2026 .bololo-story-intro-grid {
	align-items: center;
	gap: clamp(2rem, 5vw, 4rem);
	grid-template-columns: minmax(20rem, 0.86fr) minmax(0, 1.14fr);
}

.bololo-register-2026 .bololo-story-section-head .bololo-section-title {
	max-width: 12ch;
}

.bololo-register-2026 .bololo-story-prose {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(17, 199, 230, 0.035));
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
	gap: 1.15rem;
	max-width: 46rem;
	padding: clamp(1.25rem, 3vw, 2rem);
}

.bololo-register-2026 .bololo-story-prose p {
	font-size: clamp(1rem, 1.18vw, 1.14rem);
	line-height: 1.62;
}

.bololo-register-2026 .bololo-story-prose strong {
	background: rgba(17, 199, 230, 0.1);
	border: 1px solid rgba(17, 199, 230, 0.28);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 0.9rem;
	font-weight: 760;
	justify-self: start;
	line-height: 1.3;
	padding: 0.68rem 0.9rem;
	text-transform: uppercase;
}

.bololo-register-2026 .bololo-meaning-section .bololo-centered-head {
	margin-inline: auto;
	max-width: 48rem;
}

.bololo-register-2026 .bololo-moment-grid {
	margin-top: clamp(1.75rem, 4vw, 3rem);
}

.bololo-register-2026 .bololo-step-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: clamp(1.5rem, 4vw, 2.4rem);
}

.bololo-register-2026 .bololo-step-grid li {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(17, 199, 230, 0.04)),
		rgba(8, 13, 20, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 18px;
	box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
	display: grid;
	gap: 0.72rem;
	min-height: 12.5rem;
	padding: 1.35rem;
	text-align: left;
	transition: border-color 220ms cubic-bezier(.22, 1, .36, 1), box-shadow 220ms cubic-bezier(.22, 1, .36, 1), transform 220ms cubic-bezier(.22, 1, .36, 1);
}

.bololo-register-2026 .bololo-step-grid li:hover,
.bololo-register-2026 .bololo-step-grid li:focus-within {
	border-color: rgba(17, 199, 230, 0.46);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24), 0 0 26px rgba(17, 199, 230, 0.12);
	transform: translateY(-0.16rem);
}

.bololo-register-2026 .bololo-step-grid li::before {
	align-items: center;
	background: var(--bololo-magenta);
	border-radius: 999px;
	box-shadow: 0 0 24px rgba(240, 71, 166, 0.26);
	color: #fff;
	display: inline-flex;
	font-size: 0.92rem;
	height: 2.25rem;
	left: 1.25rem;
	top: 1.25rem;
	width: 2.25rem;
}

.bololo-register-2026 .bololo-step-icon {
	background: rgba(17, 199, 230, 0.1);
	border: 1px solid rgba(17, 199, 230, 0.32);
	border-radius: 999px;
	height: 2.5rem;
	left: auto;
	margin: 0 0 0 auto;
	position: relative;
	top: auto;
	width: 2.5rem;
}

.bololo-register-2026 .bololo-step-grid strong {
	font-size: clamp(1.04rem, 1.25vw, 1.22rem);
	margin-top: 1.6rem;
}

.bololo-register-2026 .bololo-step-grid li > span:last-child {
	color: rgba(255, 255, 255, 0.76);
	font-weight: 520;
	line-height: 1.48;
}

.bololo-register-2026 .bololo-register-jersey-grid {
	align-items: stretch;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 1180px;
}

.bololo-register-2026 .bololo-register-jersey-product {
	background: rgba(10, 15, 23, 0.82);
	border-radius: 18px;
	padding: 0.85rem;
}

.bololo-register-2026 .bololo-register-jersey-product .bololo-jersey-card {
	background: radial-gradient(circle at 50% 36%, rgba(17, 199, 230, 0.08), transparent 52%), rgba(255, 255, 255, 0.03);
	border-radius: 14px;
	display: grid;
	place-items: center;
}

.bololo-register-2026 .bololo-register-jersey-section .bololo-jersey-card img {
	aspect-ratio: 16 / 10.5;
	max-height: 24rem;
	object-fit: contain;
	padding: clamp(0.6rem, 1.4vw, 1rem);
}

.bololo-register-2026 .bololo-register-jersey-product > div {
	padding: 1rem 0.25rem 0.35rem;
}

.bololo-register-2026 .bololo-register-jersey-product p {
	color: rgba(255, 255, 255, 0.76);
	font-weight: 520;
	line-height: 1.46;
}

.bololo-register-2026 .bololo-faq-grid {
	align-items: start;
	margin-inline: auto;
	max-width: 68rem;
}

.bololo-register-2026 .bololo-faq-grid details {
	align-self: start;
	padding: 1rem;
}

.bololo-register-2026 .bololo-faq-grid summary {
	font-weight: 760;
	line-height: 1.25;
}

.bololo-register-2026 .bololo-faq-grid p {
	color: rgba(255, 255, 255, 0.78);
	font-weight: 480;
	grid-column: auto;
	line-height: 1.55;
	margin: 0.9rem 0 0 2.7rem;
	max-width: 58ch;
}

.bololo-register-2026 #faq .bololo-section-title {
	margin-inline: auto;
	max-width: 13ch;
	text-align: center;
}

@media (max-width: 980px) {
	.bololo-register-2026 .bololo-story-intro-grid,
	.bololo-register-2026 .bololo-register-jersey-grid,
	.bololo-register-2026 .bololo-step-grid {
		grid-template-columns: 1fr;
	}

	.bololo-register-2026 .bololo-register-jersey-product {
		grid-template-columns: minmax(12rem, 0.8fr) minmax(0, 1fr);
		align-items: center;
	}
}

@media (max-width: 720px) {
	.bololo-register-2026 .bololo-story-intro-grid {
		gap: 1.5rem;
	}

	.bololo-register-2026 .bololo-story-section-head .bololo-section-title,
	.bololo-register-2026 #faq .bololo-section-title {
		max-width: 11ch;
	}

	.bololo-register-2026 .bololo-story-prose {
		padding: 1rem;
	}

	.bololo-register-2026 .bololo-step-grid li {
		min-height: auto;
	}

	.bololo-register-2026 .bololo-register-jersey-product {
		grid-template-columns: 1fr;
	}

	.bololo-register-2026 .bololo-faq-grid p {
		margin-left: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bololo-register-2026 .bololo-step-grid li,
	.bololo-register-2026 .bololo-register-jersey-product,
	.bololo-register-2026 .bololo-faq-grid details {
		transition-duration: 0.01ms !important;
	}

	.bololo-register-2026 .bololo-step-grid li:hover,
	.bololo-register-2026 .bololo-step-grid li:focus-within,
	.bololo-register-2026 .bololo-register-jersey-product:hover,
	.bololo-register-2026 .bololo-register-jersey-product:focus-within {
		transform: none;
	}
}

.bololo-register-2026 #jersey-oficial .bololo-section-title {
	margin-inline: auto;
	max-width: min(100%, 60rem);
}

@media (min-width: 721px) {
	.bololo-register-2026 #jersey-oficial .bololo-section-title {
		font-size: clamp(4.25rem, 7.2vw, 7.5rem);
		line-height: 0.92;
	}

	.bololo-register-2026 #jersey-oficial .bololo-section-title > span,
	.bololo-register-2026 #jersey-oficial .bololo-section-title .bololo-lang-text {
		white-space: nowrap;
	}
}

@media (max-width: 720px) {
	.bololo-register-2026 #jersey-oficial .bololo-section-title {
		font-size: clamp(3rem, 13.5vw, 4.6rem);
		line-height: 0.94;
		max-width: 10.8ch;
	}
}
