/*!
 * Theme Name: HTML5 Blank
 * Theme URI: http://html5blank.com
 * Description: HTML5 Blank WordPress Starter Theme
 * Version: 1.5.1
 * Author: Gabriel Ron
 * Author URI: https://konvertti.com
 * Tags: HTML5, CSS3, starter, framework
 *
 * License: MIT
 * License URI: http://opensource.org/licenses/mit-license.php
 */

/*
 * Custom component CSS (not Tailwind).
 * Tailwind utilities live in the Alcastromol plugin stylesheet.
 */

html.menu-is-open,
html.menu-is-open body {
	overflow: hidden;
}

body { background:#000; }

/* ReBet-inspired primary header. Layout utilities come from Tailwind CSS 3. */
.rebet-header {
	/* --header-bg: #09090c;*/
	font-family: "Sora", sans-serif;
	background: var(--header-bg);
	transition: background-color 180ms ease, box-shadow 180ms ease;
}

.rebet-header.is-scrolled,
.rebet-header.is-menu-open {
	background: rgba(0, 0, 0, 0.50);
	box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

.rebet-header__inner {
	position: relative;
	height: 96px;
	max-width: 1702px;
}

.rebet-header__brand {
	position: relative;
	z-index: 2;
	width: 157px;
}

.rebet-header__brand:focus-visible,
.rebet-header__toggle:focus-visible,
.rebet-header__menu a:focus-visible,
.rebet-header__cta:focus-visible {
	outline: 2px solid #fca732;
	outline-offset: 4px;
}

.rebet-header__nav {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.rebet-header__menu {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rebet-header__menu li {
	margin: 0;
	padding: 0;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 9999px;
	background: rgba(9, 9, 12, 0.4);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.rebet-header__menu a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 14px;
	color: #fff;
	font-size: 12.25px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: color 160ms ease, background-color 160ms ease;
}

.rebet-header__menu a:hover {
	color: #fca732;
}

.rebet-header__cta {
	position: relative;
	z-index: 2;
	display: flex;
	width: 140px;
	height: 56px;
	padding: 1px;
	border-radius: 8px;
	background: linear-gradient(90deg, rgba(252, 70, 50, 0.5) 0.29%, #ffee92 50.03%, rgba(252, 70, 50, 0.5) 100%);
	color: #09090c;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 10px 35px rgba(252, 105, 49, 0.18);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.rebet-header__cta span {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	border-radius: 7px;
	background: linear-gradient(10deg, #fc4632 7.59%, #fca732 92.05%);
}

.rebet-header__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 38px rgba(252, 105, 49, 0.32);
}

.rebet-header__toggle {
	display: none;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
}

.rebet-header__toggle-lines,
.rebet-header__toggle-lines span {
	display: block;
	width: 30px;
}

.rebet-header__toggle-lines span {
	height: 3px;
	margin: 5px 0;
	border-radius: 9999px;
	background: currentColor;
	transition: transform 200ms ease, opacity 200ms ease;
}

[data-menu-toggle][aria-expanded="true"] .rebet-header__toggle-lines span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

[data-menu-toggle][aria-expanded="true"] .rebet-header__toggle-lines span:nth-child(2) {
	opacity: 0;
}

[data-menu-toggle][aria-expanded="true"] .rebet-header__toggle-lines span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}


@media (max-width: 768px) {
	.rebet-header__menu a { padding-left:0px; padding-right:0px }
}


@media (max-width: 767px) {
	/* Overflow locking changes the sticky containing block on mobile Safari.
	   Keep the open header attached to the viewport instead. */
	.rebet-header.is-menu-open {
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
	}

	.rebet-header.is-sticky-entering {
		animation: rebet-header-slide-down 300ms cubic-bezier(0.22, 1, 0.36, 1) both;
	}

	.rebet-header__inner {
		height: 76px;
	}

	.rebet-header__brand {
		position: absolute;
		left: 50%;
		width: 120px;
		transform: translateX(-50%);
	}

	.rebet-header__toggle {
		position: relative;
		z-index: 2;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 44px;
	}

	.rebet-header__nav {
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
		max-height: calc(100vh - 76px);
		max-height: calc(100dvh - 76px);
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		transform: none;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 180ms ease, visibility 180ms ease;
	}

	.rebet-header__nav.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.rebet-header__menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 14px 16px 22px;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		background: #000;
		box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
	}

	.rebet-header__menu li {
		border: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 0;
		background: transparent;
	}

	.rebet-header__menu a {
		justify-content: flex-start;
		min-height: 54px;
		padding: 12px 4px;
		font-size: 15px;
	}

	.rebet-header__cta {
		width: 104px;
		height: 44px;
		font-size: 12px;
	}
}

@keyframes rebet-header-slide-down {
	from { transform: translateY(-100%); }
	to { transform: translateY(0); }
}

@media (max-width: 479px) {
	.rebet-header__inner {
		padding-right: 12px;
		padding-left: 12px;
	}

	.rebet-header__brand {
		width: 105px;
	}

	.rebet-header__cta {
		width: 88px;
		height: 40px;
		font-size: 11px;
	}
}

@media (max-width: 380px) {
	.rebet-header__brand {
		width: 92px;
	}

	.rebet-header__toggle-lines,
	.rebet-header__toggle-lines span {
		width: 26px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rebet-header,
	.rebet-header__nav,
	.rebet-header__cta,
	.rebet-header__toggle-lines span {
		transition: none;
	}

	.rebet-header.is-sticky-entering {
		animation: none;
	}
}

.header-menu-link {
	display: flex;
	align-items: center;
	min-height: 80px;
	color: inherit;
	text-decoration: none;
	transition: color 180ms ease;
}

.header-menu-link:hover,
.header-menu-link:focus-visible {
	color: #f8ba30;
}

.header-submenu {
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.header-menu-parent:hover > .header-submenu,
.header-menu-parent:focus-within > .header-submenu,
.header-menu-parent.is-open > .header-submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.header-submenu a {
	display: block;
	padding: 12px 20px;
	line-height: 1.35;
	transition: background-color 180ms ease, color 180ms ease;
}

.header-submenu a:hover,
.header-submenu a:focus-visible {
	background: #f3f3f3;
	color: #E5323B;
}

.header-toggle-lines,
.header-toggle-lines span {
	display: block;
	width: 25px;
}

.header-toggle-lines span {
	height: 2px;
	margin: 5px 0;
	background: currentColor;
	transition: transform 200ms ease, opacity 200ms ease;
}

[data-menu-toggle][aria-expanded="true"] .header-toggle-lines span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

[data-menu-toggle][aria-expanded="true"] .header-toggle-lines span:nth-child(2) {
	opacity: 0;
}

[data-menu-toggle][aria-expanded="true"] .header-toggle-lines span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
	.header-navigation {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-12px);
		transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
	}

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

	.header-menu-link {
		min-height: 58px;
	}

	.header-submenu {
		max-height: 0;
		overflow: hidden;
		opacity: 1;
		visibility: visible;
		transform: none;
		pointer-events: auto;
		transition: max-height 250ms ease;
	}

	.header-menu-parent:not(.is-open) > .header-submenu {
		max-height: 0;
	}

	.header-menu-parent.is-open > .header-submenu {
		max-height: 340px;
	}

	.header-menu-parent.is-open [data-submenu-toggle] svg {
		transform: rotate(180deg);
	}

	.header-submenu a {
		padding: 11px 16px;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.header-submenu a:hover,
	.header-submenu a:focus-visible {
		background: rgba(255, 255, 255, 0.08);
		color: #f8ba30;
	}
}

@media (prefers-reduced-motion: reduce) {
	.header-navigation,
	.header-submenu,
	.header-toggle-lines span {
		transition: none;
	}
}

/* ReBet-inspired footer. Breakpoints mirror the max-width Tailwind config. */
.rebet-footer {
	position: relative;
	isolation: isolate;
	min-height: 540px;
	padding: 80px 0 64px;
	border-top: 1px solid;
	border-image-source: linear-gradient(90deg, rgba(252, 70, 50, 0) 0.29%, #ffee92 50.03%, rgba(252, 70, 50, 0) 100%);
	border-image-slice: 1;
	background: #09090c;
	color: #fff;
	font-family: "Sora", sans-serif;
}

.rebet-footer .rebet-footer__main,
.rebet-footer .rebet-footer__bottom {
	position: relative;
	z-index: 1;
	max-width: 1702px;
	padding-right: 30px;
	padding-left: 30px;
}

.rebet-footer .rebet-footer__main {
	display: grid;
	grid-template-columns: minmax(200px, 1fr) 229px minmax(200px, 1fr);
	align-items: start;
}

.rebet-footer__brand {
	width: 158px;
	color: inherit;
}

.rebet-footer__brand:focus-visible,
.rebet-footer__menu a:focus-visible,
.rebet-footer__cta:focus-visible {
	outline: 2px solid #fca732;
	outline-offset: 4px;
}

.rebet-footer__nav {
	width: 245px;
}

.rebet-footer__menu {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rebet-footer__menu li {
	margin: 0;
	padding: 6px 16px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 9999px;
	background: rgba(9, 9, 12, 0.4);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.rebet-footer__menu a {
	display: block;
	color: #fff;
	font-size: 12.25px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: color 160ms ease;
}

.rebet-footer__menu a:hover {
	color: #fca732;
}

.rebet-footer__action {
	display: flex;
	justify-content: flex-end;
}

.rebet-footer__cta {
	display: flex;
	width: 156px;
	height: 56px;
	padding: 1px;
	border-radius: 8px;
	background: linear-gradient(90deg, rgba(252, 70, 50, 0.5) 0.29%, #ffee92 50.03%, rgba(252, 70, 50, 0.5) 100%);
	color: #09090c;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 10px 35px rgba(252, 105, 49, 0.18);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.rebet-footer__cta span {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	border-radius: 7px;
	background: linear-gradient(10deg, #fc4632 7.59%, #fca732 92.05%);
}

.rebet-footer__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 38px rgba(252, 105, 49, 0.32);
}

.rebet-footer__bottom {
	margin-top: 48px;
	padding-top: 0;
	padding-bottom: 48px;
}

.rebet-footer__bottom p {
	margin: 0;
	font-size: 14px;
	line-height: 1.4;
}

.rebet-footer__glow {
	position: absolute;
	z-index: -1;
	left: 50%;
	bottom: 0;
	display: block;
	width: 100%;
	max-width: none;
	height: auto;
	transform: translateX(-50%);
	pointer-events: none;
}

@media (max-width: 767px) {
	.rebet-footer {
		min-height: 0;
		padding: 80px 0 0;
	}

	.rebet-footer .rebet-footer__main,
	.rebet-footer .rebet-footer__bottom {
		padding-right: 30px;
		padding-left: 30px;
	}

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

	.rebet-footer__brand {
		width: 158px;
		margin-bottom: 24px;
	}

	.rebet-footer__nav {
		width: auto;
		margin-left: 17px;
	}

	.rebet-footer__menu li {
		padding: 6px 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	.rebet-footer__action {
		width: 200px;
		margin-top: 22px;
	}

	.rebet-footer__cta {
		width: 200px;
	}

	.rebet-footer__bottom {
		margin-top: 48px;
		padding-bottom: 128px;
	}

	.rebet-footer__glow {
		width: auto;
		min-width: 100%;
		height: 420px;
		object-fit: cover;
		object-position: center bottom;
	}
}

@media (max-width: 479px) {
	.rebet-footer .rebet-footer__main,
	.rebet-footer .rebet-footer__bottom {
		padding-right: 30px;
		padding-left: 30px;
	}

	.rebet-footer__bottom p {
		font-size: 13px;
		/*white-space: nowrap;*/
	}
}

@media (max-width: 380px) {
	.rebet-footer .rebet-footer__main,
	.rebet-footer .rebet-footer__bottom {
		padding-right: 20px;
		padding-left: 20px;
	}

	.rebet-footer__nav {
		margin-left: 10px;
	}

	.rebet-footer__bottom p {
		font-size: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rebet-footer__menu a,
	.rebet-footer__cta {
		transition: none;
	}
}

/* Home hero. The video and supporting image are WordPress media attachments. */
.home {
	background: #09090c;
}

.home .rebet-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}

.home .rebet-header:not(.is-scrolled):not(.is-menu-open) {
	background: transparent;
	box-shadow: none;
}

.rebet-home-main {
	overflow: hidden;
	background: #09090c;
	font-family: "Sora", sans-serif;
}

.rebet-home-main .rebet-hero {
	position: relative;
	isolation: isolate;
	max-width: 1702px;
	margin: 0 auto 20px;
	padding: 12.5rem 30px 0;
	background: #09090c;
	color: #fff;
	text-align: center;
}

.rebet-hero__intro,
.rebet-hero__secondary {
	position: relative;
	z-index: 2;
	margin-right: auto;
	margin-left: auto;
}

.rebet-hero__intro {
	max-width: 800px;
	min-height: 306.6875px;
	margin-bottom: 400px;
}

.rebet-hero__title {
	margin: 0;
	color: #fff;
	font-size: 70px;
	font-weight: 700;
	line-height: 65px;
	letter-spacing: -0.025em;
}

.rebet-hero__lead {
	margin: 20px 0;
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
}

.rebet-hero__cta {
	display: inline-flex;
	padding: 1px;
	border-radius: 8px;
	background: linear-gradient(90deg, rgba(252, 70, 50, 0.5) 0.29%, #ffee92 50.03%, rgba(252, 70, 50, 0.5) 100%);
	color: #09090c;
	text-decoration: none;
	box-shadow: 0 10px 35px rgba(252, 105, 49, 0.18);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.rebet-hero__cta span {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 31px;
	border-radius: 7px;
	background: linear-gradient(10deg, #fc4632 7.59%, #fca732 92.05%);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	white-space: nowrap;
}

.rebet-hero__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 38px rgba(252, 105, 49, 0.32);
}

.rebet-hero__cta:focus-visible {
	outline: 2px solid #fca732;
	outline-offset: 4px;
}

.rebet-hero__note {
	margin: 14px 0;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 19.6px;
}

.rebet-hero__secondary {
	display: flow-root;
	max-width: 512px;
}

.rebet-hero__secondary h2 {
	margin: 28.37px 0;
	color: #fff;
	font-size: 34.18px;
	font-weight: 700;
	line-height: 41.02px;
	letter-spacing: -0.02em;
}

.rebet-hero__secondary p {
	margin: 20px 0;
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
}

.rebet-hero__badge {
	position: absolute;
	top: -6%;
	left: 7%;
	display: block;
	width: 108px;
	height: auto;
}

.rebet-hero__video {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 50%;
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	transform: translateX(-50%);
	pointer-events: none;
}

@media (max-width: 1119px) {
	.rebet-hero__intro {
		margin-bottom: 200px;
	}

	.rebet-hero__badge {
		top: 10%;
	}
}

@media (max-width: 1024px) {
	.rebet-hero__intro {
		margin-bottom: 42%;
	}

	.rebet-hero__video {
		top: 17%;
	}

	.rebet-hero__badge {
		left: 11%;
		width: 90px;
	}
}

@media (max-width: 767px) {
	.rebet-home-main .rebet-hero {
		padding: 112px 30px 48px;
	}

	.rebet-hero__intro {
		max-width: 100%;
		min-height: 325.6875px;
		margin-bottom: 42%;
	}

	.rebet-hero__title {
		font-size: 45px;
		line-height: 45px;
		letter-spacing: -0.025em;
	}

	.rebet-hero__lead {
		font-size: 20px;
		line-height: 28px;
	}

	.rebet-hero__cta span {
		/*padding: 8px 3px;*/
	}

	.rebet-hero__secondary {
		max-width: 100%;
	}

	.rebet-hero__secondary h2 {
		font-size: 34.18px;
		line-height: 41.02px;
	}

	.rebet-hero__badge {
		left: 0;
	}

	.rebet-hero__video {
		top: 32%;
		width: 500px;
		max-width: 500px;
	}
}

@media (max-width: 479px) {
	.rebet-hero__badge {
		left: -11%;
	}
}

@media (max-width: 380px) {
	.rebet-home-main .rebet-hero {
		padding-right: 20px;
		padding-left: 20px;
	}

	.rebet-hero__title {
		font-size: 40px;
		line-height: 41px;
	}

	.rebet-hero__lead,
	.rebet-hero__secondary p {
		font-size: 18px;
		line-height: 26px;
	}

	.rebet-hero__secondary h2 {
		font-size: 31px;
		line-height: 38px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rebet-hero__cta {
		transition: none;
	}
}

/* Feature carousel. One responsive slide structure is shared by desktop and mobile. */
.rebet-home-main .rebet-features {
	position: relative;
	isolation: isolate;
	max-width: 1702px;
	margin: 0 auto;
	padding: 0 30px 24px;
	background: #09090c;
	color: #fff;
}

.rebet-features .rebet-carousel {
	position: relative;
	isolation: isolate;
	width: 100%;
}

.rebet-features .rebet-carousel__ambient {
	position: absolute;
	z-index: -1;
	top: -390px;
	right: -30px;
	display: block;
	width: min(52vw, 721px);
	height: auto;
	opacity: 0.52;
	pointer-events: none;
}

.rebet-features .rebet-carousel__viewport {
	position: relative;
	overflow: hidden;
	width: 100%;
	touch-action: pan-y;
}

.rebet-features .rebet-carousel__track {
	position: relative;
	width: 100%;
	min-height: 570px;
}

.rebet-features .rebet-carousel__slide {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 32px;
	width: calc(100% - 60px);
	min-height: 481px;
	margin: 10px 30px 0;
	padding: 0;
	border: 1px solid transparent;
	border-radius: 24px;
	background:
		linear-gradient(#09090c, #09090c) padding-box,
		linear-gradient(115deg, rgba(252, 70, 50, 0.58), rgba(252, 167, 50, 0.08) 42%, rgba(255, 255, 255, 0.07) 72%, rgba(252, 70, 50, 0.35)) border-box;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	will-change: opacity;
	transition:
		opacity 650ms cubic-bezier(0.4, 0, 0.2, 1),
		visibility 0s linear 650ms;
	padding: 30px;
}

.rebet-features .rebet-carousel__slide.is-active {
	z-index: 1;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0s;
}

.rebet-features .rebet-carousel__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 50px 0 50px;
}

.rebet-features .rebet-carousel__copy h2 {
	margin: 0;
	color: #fff;
	font-size: 50px;
	font-weight: 700;
	line-height: 55px;
	letter-spacing: -0.025em;
}

.rebet-features .rebet-carousel__copy h2 span {
	background: linear-gradient(90deg, #fc4632 4%, #fca732 96%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.rebet-features .rebet-carousel__copy p {
	max-width: 520px;
	margin: 18px 0;
	color: #f3f3f5;
	font-size: 18px;
	font-weight: 200;
	line-height: 28px;
}

.rebet-features .rebet-carousel__inline-icon,
.rebet-features .rebet-carousel__inline-logo,
.rebet-features .rebet-carousel__avatars {
	display: inline-block;
	max-width: none;
	height: auto;
	margin: 0 2px;
	vertical-align: -6px;
}

.rebet-features .rebet-carousel__inline-icon {
	width: 24px;
}

.rebet-features .rebet-carousel__inline-logo {
	width: 90px;
	vertical-align: -3px;
}

.rebet-features .rebet-carousel__avatars {
	width: 70px;
	vertical-align: -9px;
}

.rebet-features .rebet-carousel__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	height: 479px;
	overflow: hidden;
	border-radius: 0 23px 23px 0;
}

.rebet-features .rebet-carousel__media video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.rebet-features .rebet-carousel__media--lottie {
	background: transparent;
}

.rebet-features .rebet-carousel__lottie {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.rebet-features .rebet-carousel__lottie svg {
	display: block;
	width: 100% !important;
	height: 100% !important;
}

.rebet-features [data-lottie-data] {
	display: none;
}

.rebet-features .rebet-carousel__media--graphic {
	background:
		radial-gradient(circle at 62% 44%, rgba(252, 111, 39, 0.27), transparent 43%),
		linear-gradient(140deg, rgba(26, 25, 31, 0.82), rgba(8, 8, 11, 0.15));
}

.rebet-features .rebet-carousel__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-height: 20px;
	margin-top: 8px;
}

.rebet-features .rebet-carousel__bullet {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.rebet-features .rebet-carousel__bullet::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #55545d;
	content: "";
	transform: translate(-50%, -50%);
	transition: width 160ms ease, border-radius 160ms ease, background-color 160ms ease;
}

.rebet-features .rebet-carousel__bullet.is-active::after {
	width: 20px;
	border-radius: 10px;
	background: #fc4632;
}

.rebet-features .rebet-carousel__bullet:focus-visible {
	outline: 2px solid #fca732;
	outline-offset: 2px;
}

.rebet-features .rebet-carousel__toggle {
	position: relative;
	display: inline-block;
	width: 39px;
	height: 22px;
	margin: 0 3px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 99px;
	background: linear-gradient(90deg, #fc4632, #fca732);
	vertical-align: -5px;
}

.rebet-features .rebet-carousel__toggle i {
	position: absolute;
	top: 3px;
	right: 3px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
}

/* CSS-native artwork used for the non-video feature slides. */
.rebet-challenge-card,
.rebet-reward-card,
.rebet-lines-card {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(20, 19, 25, 0.93);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 0 60px rgba(252, 93, 43, 0.12);
}

.rebet-challenge-card {
	width: min(72%, 330px);
	border-radius: 22px;
}

.rebet-challenge-card--back {
	top: 86px;
	left: 10%;
	display: flex;
	justify-content: space-between;
	padding: 28px;
	color: #9b9aa4;
	transform: rotate(-10deg);
}

.rebet-challenge-card--back strong {
	color: #fca732;
}

.rebet-challenge-card--front {
	top: 92px;
	right: 8%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px 24px;
	text-align: center;
	transform: rotate(5deg);
}

.rebet-challenge-card--front small,
.rebet-reward-card small {
	color: #97959e;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.rebet-challenge-card__avatars {
	width: 120px;
	margin: 25px 0 18px;
}

.rebet-challenge-card--front strong {
	font-size: 22px;
}

.rebet-challenge-card--front span {
	margin-top: 8px;
	color: #aaa9b0;
	font-size: 12px;
}

.rebet-reward-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(72%, 330px);
	padding: 36px 28px 28px;
	border-radius: 28px;
	text-align: center;
}

.rebet-reward-card__coin {
	display: grid;
	place-items: center;
	width: 82px;
	height: 82px;
	margin-bottom: 24px;
	border: 2px solid #ffba53;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 28%, #ffd078, #fc6833 58%, #a82d20);
	color: #fff;
	font-size: 36px;
	font-weight: 800;
	box-shadow: 0 0 35px rgba(252, 118, 43, 0.42);
}

.rebet-reward-card strong {
	margin-top: 10px;
	font-size: 42px;
	line-height: 1.1;
}

.rebet-reward-card > span {
	margin-top: 4px;
	color: #b5b3bc;
	font-size: 14px;
}

.rebet-reward-card__switch {
	width: 150px;
	height: auto;
	margin-top: 24px;
}

.rebet-lines-card {
	width: min(82%, 380px);
	padding: 22px;
	border-radius: 24px;
}

.rebet-lines-card__head,
.rebet-lines-card__team {
	display: flex;
	align-items: center;
}

.rebet-lines-card__head {
	justify-content: space-between;
	padding: 0 2px 18px;
}

.rebet-lines-card__head b {
	font-size: 19px;
}

.rebet-lines-card__head span {
	padding: 4px 8px;
	border-radius: 6px;
	background: rgba(252, 70, 50, 0.14);
	color: #fc6d47;
	font-size: 10px;
	font-weight: 700;
}

.rebet-lines-card__team {
	gap: 13px;
	margin-top: 10px;
	padding: 13px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 13px;
	background: #0f0f13;
}

.rebet-lines-card__team i {
	display: grid;
	place-items: center;
	width: 39px;
	height: 39px;
	border-radius: 50%;
	background: #26252c;
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
}

.rebet-lines-card__team strong {
	flex: 1;
	font-size: 14px;
}

.rebet-lines-card__team > span {
	padding: 9px 12px;
	border-radius: 9px;
	background: linear-gradient(120deg, #fc4632, #fca732);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

@media (max-width: 767px) {
	.rebet-home-main .rebet-features {
		padding-right: 30px;
		padding-bottom: 28px;
		padding-left: 30px;
	}

	.rebet-features .rebet-carousel__ambient {
		top: 180px;
		right: -30px;
		width: 360px;
	}

	.rebet-features .rebet-carousel__slide {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
		width: calc(100% - 30px);
		min-height: 516px;
		margin: 10px 15px 0;
		padding: 0;
	}

	.rebet-features .rebet-carousel__track {
		min-height: 560px;
	}

	.rebet-features .rebet-carousel__copy {
		min-height: 228px;
		padding: 0;
	}

	.rebet-features .rebet-carousel__copy h2 {
		font-size: 38px;
		line-height: 40px;
	}

	.rebet-features .rebet-carousel__copy p {
		margin: 18px 0 0;
		font-size: 18px;
		line-height: 28px;
	}

	.rebet-features .rebet-carousel__media {
		height: 254px;
		border-radius: 0 0 23px 23px;
	}

	.rebet-challenge-card--back {
		top: 43px;
	}

	.rebet-challenge-card--front {
		top: 30px;
		padding: 20px 18px;
	}

	.rebet-challenge-card__avatars {
		width: 90px;
		margin: 15px 0 10px;
	}

	.rebet-reward-card {
		width: 78%;
		padding: 18px 20px 14px;
	}

	.rebet-reward-card__coin {
		width: 54px;
		height: 54px;
		margin-bottom: 10px;
		font-size: 25px;
	}

	.rebet-reward-card strong {
		font-size: 30px;
	}

	.rebet-reward-card__switch {
		width: 112px;
		margin-top: 12px;
	}

	.rebet-lines-card {
		padding: 14px;
	}

	.rebet-lines-card__head {
		padding-bottom: 8px;
	}

	.rebet-lines-card__team {
		margin-top: 7px;
		padding: 8px;
	}
}

@media (max-width: 380px) {
	.rebet-home-main .rebet-features {
		padding-right: 20px;
		padding-left: 20px;
	}

	.rebet-features .rebet-carousel__slide {
		width: calc(100% - 20px);
		margin-right: 10px;
		margin-left: 10px;
		padding: 30px;
	}

	.rebet-features .rebet-carousel__copy h2 {
		font-size: 34px;
		line-height: 37px;
	}

	.rebet-features .rebet-carousel__copy p {
		font-size: 16px;
		line-height: 25px;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.rebet-carousel__slide.is-active .rebet-challenge-card--front,
	.rebet-carousel__slide.is-active .rebet-reward-card,
	.rebet-carousel__slide.is-active .rebet-lines-card {
		animation: rebet-card-float 4.6s ease-in-out infinite;
	}

	@keyframes rebet-card-float {
		0%, 100% { translate: 0 0; }
		50% { translate: 0 -8px; }
	}
}

@media (prefers-reduced-motion: reduce) {
	.rebet-features .rebet-carousel__slide,
	.rebet-features .rebet-carousel__bullet::after {
		transition: none;
	}
}

/* Reviews masonry. Spacing and one-pixel gradient borders mirror the reference. */
.rebet-home-main .rebet-reviews {
	position: relative;
	isolation: isolate;
	max-width: 1702px;
	margin: 0 auto;
	padding: 48px 30px;
	background: #09090c;
	color: #fff;
}

.rebet-reviews .rebet-reviews__background {
	position: absolute;
	z-index: -2;
	top: -394px;
	left: 30px;
	display: block;
	width: 100vw;
	max-width: none;
	height: auto;
	pointer-events: none;
}

.rebet-reviews .rebet-reviews__grid {
	position: relative;
	display: flex;
	align-items: stretch;
	gap: 32px;
	width: 100%;
}

.rebet-reviews .rebet-reviews__column {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	min-width: 0;
}

.rebet-reviews .rebet-reviews__edge-card {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 385 / 175;
	margin: 0 0 20px;
}

.rebet-reviews .rebet-review-card {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	width: 100%;
	margin: 0 0 20px;
	padding: 32px;
	border-radius: 24px;
	/*background: rgba(9, 9, 12, 0.76);*/
	color: #fff;
}

.rebet-reviews .rebet-review-card::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	padding: 1px;
	border-radius: inherit;
	background: linear-gradient(90deg, rgba(252, 66, 51, 0.5) 0.29%, #ffee92 50.03%, rgba(252, 66, 51, 0.5) 100%);
	content: "";
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.rebet-reviews .rebet-review-card::after {
  position: absolute;
  z-index: -2;

  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);

  width: 80%;
  height: 230px;
  border-radius: 50%;

  background: rgba(252, 91, 42, 0.2);
  filter: blur(58px);

  content: "";
  pointer-events: none;
}

.rebet-reviews .rebet-review-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 24px;
	margin-bottom: 32px;
}

.rebet-reviews .rebet-review-card__stars {
	display: flex;
	align-items: center;
	gap: 0;
	font-size: 0;
}

.rebet-reviews .rebet-review-card__stars img {
	display: block;
	width: 24px;
	height: 24px;
}

.rebet-reviews .rebet-review-card time {
	font-size: 14px;
	font-weight: 400;
	line-height: 19.6px;
	white-space: nowrap;
}

.rebet-reviews .rebet-review-card h3 {
	width: 100%;
	margin: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 21.6px;
}

.rebet-reviews .rebet-review-card p {
	margin: 14px 0;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 19.6px;
}

.rebet-reviews .rebet-review-card__author {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 36px;
}

.rebet-reviews .rebet-review-card__author img {
	display: block;
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
}

.rebet-reviews .rebet-review-card__author span {
	font-size: 14px;
	font-weight: 400;
	line-height: 19.6px;
}

.rebet-reviews .rebet-review-highlight {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 320px;
	margin: 96px 0 20px;
	padding: 32px;
	border-radius: 24px;
	background: linear-gradient(182deg, #fc4233 1.95%, #fca732 98.06%);
	box-shadow: 0 20px 140px rgba(253, 111, 39, 0.5);
	color: #09090c;
}

.rebet-reviews .rebet-review-highlight::after {
	position: absolute;
	right: -46px;
	bottom: -54px;
	width: 180px;
	height: 180px;
	border: 1px solid rgba(255, 238, 146, 0.34);
	border-radius: 50%;
	content: "";
}

.rebet-reviews .rebet-review-highlight h3 {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #09090c;
	font-size: 27.34px;
	font-weight: 400;
	line-height: 32.81px;
}

.rebet-reviews .rebet-review-highlight__rating {
	position: relative;
	z-index: 1;
	font-size: 60px;
	font-weight: 700;
	line-height: 80px;
	white-space: nowrap;
}

.rebet-reviews .rebet-review-highlight__rating span {
	font-size: 62px;
}

.rebet-reviews .rebet-review-highlight__rating small {
	font-size: 48px;
	font-weight: 700;
}

.rebet-reviews .rebet-review-highlight__stores {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.rebet-reviews .rebet-review-highlight__stores a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	padding: 16px;
	border-radius: 12px;
}

.rebet-reviews .rebet-review-highlight__stores a:focus-visible {
	outline: 2px solid #09090c;
	outline-offset: -5px;
}

.rebet-reviews .rebet-review-highlight__stores img {
	display: block;
	width: 100%;
	max-width: 118px;
	height: auto;
}

.rebet-reviews .rebet-reviews__heading {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 288.8px;
	text-align: right;
}

.rebet-reviews .rebet-reviews__heading h2 {
	width: 100%;
	margin: 0;
	color: #fff;
	font-size: 70px;
	font-weight: 700;
	line-height: 65px;
	letter-spacing: -0.025em;
}

.rebet-reviews .rebet-reviews__heading h2 span {
	background: linear-gradient(90deg, #fc4632 4%, #fca732 96%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

@media (max-width: 1024px) {
	.rebet-reviews .rebet-reviews__grid {
		flex-direction: column;
		gap: 8px;
	}

	.rebet-reviews .rebet-reviews__edge-card {
		display: none;
	}

	.rebet-reviews .rebet-review-highlight {
		height: 384px;
	}

	.rebet-reviews .rebet-review-highlight h3 {
		position: absolute;
		top: 120px;
		left: 32px;
		width: calc(100% - 64px);
	}

	.rebet-reviews .rebet-review-highlight__rating {
		position: absolute;
		top: 189px;
		left: 32px;
		width: calc(100% - 64px);
	}

	.rebet-reviews .rebet-review-highlight__stores {
		position: absolute;
		right: 32px;
		bottom: 16px;
		left: 32px;
	}

	.rebet-reviews .rebet-review-card__top {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		row-gap: 8px;
		min-height: 52px;
	}

	.rebet-reviews .rebet-review-card time {
		justify-self: end;
	}

	.rebet-reviews .rebet-reviews__heading {
		min-height: 150.3px;
	}

	.rebet-reviews .rebet-reviews__heading h2 {
		font-size: 45px;
		line-height: 45px;
	}
}

@media (max-width: 767px) {
	.rebet-home-main .rebet-reviews {
		padding: 48px 30px;
	}

	.rebet-reviews .rebet-reviews__background {
		top: -180px;
		left: 0;
		width: 720px;
	}
}

@media (max-width: 380px) {
	.rebet-home-main .rebet-reviews {
		padding-right: 20px;
		padding-left: 20px;
	}

	.rebet-reviews .rebet-review-card,
	.rebet-reviews .rebet-review-highlight {
		padding: 28px;
	}

	.rebet-reviews .rebet-review-highlight__rating {
		font-size: 54px;
		left: 28px;
		width: calc(100% - 56px);
	}

	.rebet-reviews .rebet-review-highlight__rating span {
		font-size: 56px;
	}

	.rebet-reviews .rebet-review-highlight__rating small {
		font-size: 42px;
	}

	.rebet-reviews .rebet-review-highlight__stores a {
		padding: 10px;
	}

	.rebet-reviews .rebet-review-highlight h3,
	.rebet-reviews .rebet-review-highlight__stores {
		right: 28px;
		left: 28px;
		width: auto;
	}
}

/* FAQ accordion. The desktop grid uses the same 350 / 838 px split as the source. */
.rebet-home-main .rebet-faq {
	position: relative;
	isolation: isolate;
	max-width: 1702px;
	margin: 0 auto;
	padding: 0 30px;
	background: #09090c;
	color: #fff;
}

.rebet-faq .rebet-faq__ambient {
	position: absolute;
	z-index: -1;
	top: -118px;
	left: -200%;
	display: block;
	width: 721px;
	height: auto;
	pointer-events: none;
}

.rebet-faq .rebet-faq__layout {
	display: grid;
	grid-template-columns: 350px minmax(0, 1fr);
	grid-template-rows: auto auto;
	column-gap: 32px;
	width: 100%;
}

.rebet-faq .rebet-faq__heading {
	display: flex;
	grid-column: 1;
	grid-row: 1;
	align-items: center;
	min-height: 288.8px;
}

.rebet-faq .rebet-faq__heading h2 {
	width: max-content;
	margin: 46.9px 0;
	color: #fff;
	font-size: 70px;
	font-weight: 700;
	line-height: 65px;
	letter-spacing: normal;
}

.rebet-faq .rebet-faq__heading h2 span {
	background: linear-gradient(90deg, #fc4632 4%, #fca732 96%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.rebet-faq .rebet-faq__accordion {
	grid-column: 2;
	grid-row: 2;
	min-width: 0;
}

.rebet-faq .rebet-faq__item {
	border-width: 0 0 1px;
	border-style: solid;
	border-color: transparent;
	border-image: linear-gradient(90deg, #010207 0%, #3e4460 51.04%, #010207 100%) 1;
}

.rebet-faq .rebet-faq__item.is-open {
	border-width: 1px 0;
	border-image: linear-gradient(90deg, rgba(252, 66, 51, 0.5) 0.29%, #ffee92 50.03%, rgba(252, 66, 51, 0.5) 100%) 1;
}

.rebet-faq .rebet-faq__item h3 {
	margin: 0;
}

.rebet-faq .rebet-faq__button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	margin: 0;
	padding: 16px;
	border: 0;
	background: transparent;
	color: #fff;
	font-family: "Sora", sans-serif;
	text-align: left;
	cursor: pointer;
}

.rebet-faq .rebet-faq__button::after {
	position: absolute;
	z-index: 0;
	top: 50%;
	right: 11px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: linear-gradient(62deg, #fe8e2c 0%, #fc4533 100%);
	content: "";
	transform: translateY(-50%);
}

.rebet-faq .rebet-faq__question {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 25px;
	font-weight: 400;
	line-height: 28.75px;
	transition: color 180ms ease;
}

.rebet-faq .rebet-faq__icon {
	position: relative;
	z-index: 1;
	display: block;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
}

.rebet-faq .rebet-faq__icon::before,
.rebet-faq .rebet-faq__icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 19px;
	height: 3px;
	border-radius: 2px;
	background: #09090c;
	content: "";
	transform: translate(-50%, -50%);
}

.rebet-faq .rebet-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.rebet-faq .rebet-faq__button:hover .rebet-faq__question,
.rebet-faq .rebet-faq__item.is-open .rebet-faq__question {
	color: #f7a172;
}

.rebet-faq .rebet-faq__button:focus-visible {
	outline: 2px solid #fca732;
	outline-offset: -4px;
}

.rebet-faq .rebet-faq__panel {
	overflow: hidden;
	height: 0;
	transition: height 260ms ease;
}

.rebet-faq .rebet-faq__panel[hidden] {
	display: none;
}

.rebet-faq .rebet-faq__answer {
	display: flex;
	padding: 16px;
}

.rebet-faq .rebet-faq__answer p {
	margin: 0;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 19.6px;
}

@media (max-width: 1024px) {
	.rebet-faq .rebet-faq__layout {
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: auto auto;
		column-gap: 0;
	}

	.rebet-faq .rebet-faq__heading {
		grid-column: 1;
		grid-row: 1;
		align-items: flex-start;
		min-height: 227.3px;
	}

	.rebet-faq .rebet-faq__heading h2 {
		margin: 30.15px 0;
		font-size: 45px;
		line-height: 45px;
	}

	.rebet-faq .rebet-faq__accordion {
		grid-column: 1;
		grid-row: 2;
	}
}

@media (max-width: 767px) {
	.rebet-home-main .rebet-faq {
		padding-right: 30px;
		padding-left: 30px;
	}

	.rebet-faq .rebet-faq__ambient {
		top: -167px;
		width: 390px;
	}
}

@media (max-width: 380px) {
	.rebet-home-main .rebet-faq {
		padding-right: 20px;
		padding-left: 20px;
	}

	.rebet-faq .rebet-faq__heading h2 {
		font-size: 41px;
		line-height: 42px;
	}

	.rebet-faq .rebet-faq__question {
		font-size: 23px;
		line-height: 27px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rebet-faq .rebet-faq__question,
	.rebet-faq .rebet-faq__panel {
		transition: none;
	}
}

/* Oversized social message between the FAQ and footer. */
.rebet-social-marquee {
	position: relative;
	width: 100%;
	max-width: 100%;
	padding: 48px 0;
	overflow: hidden;
	background: #09090c;
	color: #fff;
}

.rebet-social-marquee__track {
	display: flex;
	width: 3500px;
	animation: rebet-social-scroll 40s linear infinite;
	will-change: transform;
}

.rebet-social-marquee h2 {
	width: max-content;
	margin: 0;
	font-family: "Sora", sans-serif;
	font-size: 200px;
	font-weight: 700;
	line-height: 240px;
	white-space: nowrap;
}

.rebet-social-marquee h2 span {
	background: linear-gradient(20deg, #e7806b 12.17%, #fc4632 31.15%, #fca732 62.13%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.rebet-social-marquee__mobile {
	display: none;
}

@keyframes rebet-social-scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-1750px);
	}
}

@media (max-width: 767px) {
	.rebet-social-marquee {
		height: 312px;
		padding: 48px 30px;
	}

	.rebet-social-marquee__track {
		display: block;
		width: 100%;
		animation: none;
		transform: none;
		will-change: auto;
	}

	.rebet-social-marquee h2 {
		width: 100%;
		font-size: 72px;
		line-height: 72px;
		white-space: normal;
	}

	.rebet-social-marquee__desktop {
		display: none;
	}

	.rebet-social-marquee__mobile {
		display: inline;
	}
}

@media (max-width: 380px) {
	.rebet-social-marquee {
		padding-right: 20px;
		padding-left: 20px;
	}

	.rebet-social-marquee h2 {
		font-size: 64px;
		line-height: 66px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rebet-social-marquee__track {
		animation: none;
		transform: none;
	}
}

/* Get Involved page hero. */
.rebet-get-involved-main {
	margin-top: -96px;
	background: #09090c;
}

.get-involved .rebet-header:not(.is-scrolled):not(.is-menu-open) {
	background: transparent;
}

.rebet-get-involved-main .rebet-get-involved-hero {
	position: relative;
	isolation: isolate;
	max-width: 1702px;
	margin: 0 auto;
	padding: 192px 30px;
	color: #fff;
	background: #09090c;
	font-family: "Sora", sans-serif;
}

.rebet-get-involved-hero__glow {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 50%;
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	transform: translateX(-50%);
	pointer-events: none;
}

.rebet-get-involved-hero__layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 50px;
	width: 100%;
}

.rebet-get-involved-hero__intro,
.rebet-get-involved-hero__content {
	display: flex;
	flex-direction: column;
}

.rebet-get-involved-hero__intro {
	align-items: flex-start;
	justify-content: center;
}

.rebet-get-involved-hero__intro h1 {
	width: 100%;
	margin: 46.9px 0;
	font-size: 90px;
	font-style: italic;
	font-weight: 700;
	line-height: 85px;
}

.rebet-get-involved-hero__intro h1 > span {
	display: inline-block;
	padding: 0.1em 0.12em;
	margin: -0.1em -0.12em;
	background: linear-gradient(20deg, #e7806b 12.17%, #fc4632 31.15%, #fca732 62.13%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.rebet-get-involved-hero__intro .rebet-get-involved-hero__wide-letter {
	letter-spacing: 12px;
}

.rebet-get-involved-hero__intro p {
	margin: 0;
	font-size: 30px;
	font-weight: 400;
	line-height: 36px;
}

.rebet-get-involved-hero__intro strong {
	font-weight: 700;
}

.rebet-get-involved-hero__content {
	align-items: flex-end;
}

.rebet-get-involved-hero__content > p {
	width: 100%;
	margin: 36px 0;
	font-size: 36px;
	font-weight: 400;
	line-height: 40px;
	text-align: right;
}

.rebet-get-involved-hero__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1px;
	border-radius: 8px;
	background: linear-gradient(90deg, rgba(252, 66, 51, 0.5) 0.29%, #ffee92 50.03%, rgba(252, 66, 51, 0.5) 100%);
	color: #09090c;
	text-decoration: none;
	box-shadow: 0 12px 32px rgba(252, 167, 50, 0.12), 0 24px 48px rgba(252, 77, 51, 0.24);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.rebet-get-involved-hero__cta span {
	display: block;
	padding: 15px 31px;
	border-radius: 5px;
	background: linear-gradient(10deg, #fc4632 7.59%, #fca732 92.05%);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
}

.rebet-get-involved-hero__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(252, 167, 50, 0.2), 0 28px 52px rgba(252, 77, 51, 0.3);
}

.rebet-get-involved-hero__cta:focus-visible {
	outline: 2px solid #ffee92;
	outline-offset: 4px;
}


@media (min-width: 1024px) and (max-width: 1410px) {
  .rebet-get-involved-hero__intro h1 {
    font-size: 70px !important;
    line-height: 70px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rebet-get-involved-hero__intro h1 {
    font-size: 50px !important;
    line-height: 50px;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
	.rebet-get-involved-hero__intro p {
		font-size: 18px;
		line-height: 28px;
	}

	.rebet-get-involved-hero__content > p {
		font-size: 24px;
		line-height: 32px;
	}
}

@media (max-width: 767px) {
	.rebet-get-involved-main {
		margin-top: -76px;
	}

	.rebet-get-involved-main .rebet-get-involved-hero {
		padding: 192px 30px;
	}

	.rebet-get-involved-hero__layout {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 30px;
	}

	.rebet-get-involved-hero__intro {
		align-items: center;
	}

	.rebet-get-involved-hero__intro h1 {
		margin: 30.15px 0;
		font-size: 45px;
		line-height: 45px;
		text-align: center;
	}

	.rebet-get-involved-hero__intro p {
		font-size: 18px;
		line-height: 28px;
	}

	.rebet-get-involved-hero__content {
		align-items: center;
	}

	.rebet-get-involved-hero__content > p {
		margin: 24px 0;
		font-size: 24px;
		line-height: 32px;
		text-align: center;
	}

	.rebet-get-involved-hero__cta span {
		/*padding: 8px 3px;*/
	}
}

@media (prefers-reduced-motion: reduce) {
	.rebet-get-involved-hero__cta {
		transition: none;
	}
}

/* Standalone FAQ page. */
.rebet-faq-page-main {
	margin-top: -96px;
	background: #09090c;
}

.faq .rebet-header:not(.is-scrolled):not(.is-menu-open) {
	background: transparent;
}

.rebet-faq-page-main .rebet-faq-page {
	position: relative;
	isolation: isolate;
	max-width: 1702px;
	margin: 0 auto;
	padding: 192px 30px;
	background: #09090c;
	color: #fff;
	font-family: "Sora", sans-serif;
}

.rebet-faq-page__glow {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 50%;
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	transform: translateX(-50%);
	pointer-events: none;
}

.rebet-faq-page__title {
	width: 100%;
	margin: 0 0 32px;
	background: linear-gradient(20deg, #e7806b 12.17%, #fc4632 31.15%, #fca732 62.13%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-size: 90px;
	font-style: italic;
	font-weight: 700;
	line-height: 85px;
	text-align: center;
}

.rebet-faq-page__item {
	width: 100%;
	margin-top: 40px;
}

.rebet-faq-page__item h2 {
	margin: 0 0 20px;
	color: #fff;
	font-size: 34.1797px;
	font-style: normal;
	font-weight: 700;
	line-height: 41.0156px;
}

.rebet-faq-page__item p {
	margin: 14px 0;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 19.6px;
}

.rebet-faq-page__item a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.rebet-faq-page__item a:hover {
	color: #fca732;
}

.rebet-faq-page__item a:focus-visible {
	outline: 2px solid #fca732;
	outline-offset: 3px;
}

@media (max-width: 1024px) {
	.rebet-faq-page__title {
		font-size: 60px;
		line-height: 60px;
	}
}

@media (max-width: 767px) {
	.rebet-faq-page-main {
		margin-top: -76px;
	}

	.rebet-faq-page-main .rebet-faq-page {
		padding: 192px 30px;
	}

	.rebet-faq-page__title {
		font-size: 45px;
		line-height: 45px;
	}

	.rebet-faq-page__item h2 {
		font-size: 25px;
		line-height: 30px;
	}
}

/* Contact page and Contact Form 7 layout. */
.rebet-contact-main {
	margin-top: -96px;
	background: #09090c;
}

.page-template-page-contact-us-php .rebet-header:not(.is-scrolled):not(.is-menu-open) {
	background: transparent;
}

.rebet-contact-main .rebet-contact-page {
	position: relative;
	isolation: isolate;
	max-width: 1702px;
	margin: 0 auto;
	padding: 192px 30px;
	background: #09090c;
	color: #fff;
	font-family: "Sora", sans-serif;
}

.rebet-contact-page__glow {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 50%;
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	transform: translateX(-50%);
	pointer-events: none;
}

.rebet-contact-page__title {
	width: 100%;
	margin: 0 0 32px;
	background: linear-gradient(20deg, #e7806b 12.17%, #fc4632 31.15%, #fca732 62.13%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-size: 90px;
	font-style: italic;
	font-weight: 700;
	line-height: 85px;
	text-align: center;
}

.rebet-contact-page__form,
.rebet-contact-page__form .wpcf7 {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}

.rebet-contact-page__form .wpcf7-form {
	margin: 0;
}

.rebet-contact-page .form-general {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
}

.rebet-contact-page .form-general > p {
	min-width: 0;
	margin: 0;
	padding: 0;
}

.rebet-contact-page .form-general > p:nth-child(5),
.rebet-contact-page .form-general > p:nth-child(6) {
	grid-column: 1 / -1;
}

.rebet-contact-page .form-general label {
	display: block;
	margin: 0;
	color: #fff;
	font-family: "Sora", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 14px;
	text-transform: capitalize;
}

.rebet-contact-page .form-general label br {
	display: none;
}

.rebet-contact-page .form-general__required {
	display: inline-block;
	padding-left: 4px;
	color: #b91c1c;
	font-size: 14px;
	font-weight: 500;
	line-height: 14px;
	vertical-align: baseline;
}

.rebet-contact-page .form-general .wpcf7-form-control-wrap {
	display: block;
	margin-top: 8px;
}

.rebet-contact-page .form-general input:not([type="submit"]),
.rebet-contact-page .form-general textarea {
	display: block;
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 12px 16px;
	border: 1px solid #d1d5db;
	border-radius: 3px;
	outline: 0;
	background: #fff;
	color: #000;
	font-family: "Sora", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.rebet-contact-page .form-general input:not([type="submit"]) {
	height: 43.5px;
}

.rebet-contact-page .form-general textarea {
	height: 100px;
	min-height: 100px;
	line-height: 19.6px;
	resize: vertical;
}

.rebet-contact-page .form-general input:not([type="submit"]):focus,
.rebet-contact-page .form-general textarea:focus {
	border-color: #fc5332;
	box-shadow: 0 0 0 2px rgba(252, 83, 50, 0.2);
}

.rebet-contact-page .form-general .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: auto;
	min-width: 102px;
	height: 44px;
	margin: 0;
	padding: 14px 24px;
	border: 1px solid transparent;
	border-radius: 9999px;
	background: #fc5332;
	color: #fff;
	font-family: "Sora", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 14px;
	cursor: pointer;
	transition: background-color 180ms ease, transform 180ms ease;
}

.rebet-contact-page .form-general .wpcf7-submit:hover {
	background: #fc5332;
	transform: translateY(-1px);
}

.rebet-contact-page .form-general .wpcf7-submit:focus-visible {
	outline: 2px solid #fca732;
	outline-offset: 3px;
}

.rebet-contact-page .form-general .wpcf7-submit:disabled {
	cursor: not-allowed;
	opacity: 0.65;
}

.rebet-contact-page .form-general .wpcf7-spinner {
	margin: 0 0 0 12px;
	vertical-align: middle;
}

.rebet-contact-page .form-general .wpcf7-not-valid-tip {
	margin-top: 6px;
	color: #fc5332;
	font-size: 12px;
	font-weight: 400;
	line-height: 17px;
	text-transform: none;
}

.rebet-contact-page__form .wpcf7-response-output {
	box-sizing: border-box;
	margin: 18px 0 0;
	padding: 12px 16px;
	border-color: #fc5332;
	border-radius: 3px;
	color: #fff;
	font-size: 14px;
	line-height: 20px;
}

@media (max-width: 1119px) {
	.rebet-contact-page__title {
		font-size: 60px;
		line-height: 60px;
	}
}

@media (max-width: 1024px) {
	.rebet-contact-page__title {
		font-size: 50px;
		line-height: 50px;
	}
}

@media (max-width: 767px) {
	.rebet-contact-main {
		margin-top: -76px;
	}

	.rebet-contact-main .rebet-contact-page {
		padding: 192px 30px;
	}

	.rebet-contact-page__title {
		font-size: 45px;
		line-height: 45px;
	}

	.rebet-contact-page .form-general {
		grid-template-columns: minmax(0, 1fr);
	}

	.rebet-contact-page .form-general > p:nth-child(5),
	.rebet-contact-page .form-general > p:nth-child(6) {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rebet-contact-page .form-general input:not([type="submit"]),
	.rebet-contact-page .form-general textarea,
	.rebet-contact-page .form-general .wpcf7-submit {
		transition: none;
	}
}

/* Dynamic Blog results page. */
.rebet-blog-main {
	margin-top: -96px;
	background: #09090c;
}

.page-template-page-blog-php .rebet-header:not(.is-scrolled):not(.is-menu-open) {
	background: transparent;
}

.rebet-blog-page {
	position: relative;
	isolation: isolate;
	width: 100%;
	max-width: 940px;
	margin: 0 auto;
	padding: 192px 48px;
	color: #fff;
	font-family: "Sora", sans-serif;
}

.rebet-blog-page__glow {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 50%;
	display: block;
	width: 100vw;
	max-width: none;
	height: auto;
	transform: translateX(-50%);
	pointer-events: none;
}

.rebet-blog-page__title {
	width: 100%;
	margin: 0 0 32px;
	background: linear-gradient(20deg, #e7806b 12.17%, #fc4632 31.15%, #fca732 62.13%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-size: 50px;
	font-style: italic;
	font-weight: 700;
	line-height: 55px;
}

.rebet-blog-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	width: 100%;
}

.rebet-blog-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid #fff;
	border-radius: 15px;
	background: transparent;
	color: #fff;
	font-size: 14px;
	line-height: 19.6px;
}

.rebet-blog-card__image-link {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 5px;
	color: #fff;
	text-decoration: none;
}

.rebet-blog-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rebet-blog-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 48px;
	background:
		radial-gradient(circle at 50% 34%, rgba(252, 167, 50, 0.2), transparent 44%),
		#0d0d11;
}

.rebet-blog-card__placeholder-logo {
	display: block;
	width: min(58%, 210px);
	height: auto;
}

.rebet-blog-card__content {
	display: block;
	padding: 32px;
	border-radius: 5px;
	color: #fff;
	font-size: 14px;
	line-height: 19.6px;
	text-decoration: none;
}

.rebet-blog-card__content h2 {
	margin: 0.83em 0;
	color: #fff;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

.rebet-blog-card__content p {
	margin: 14px 0;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 19.6px;
}

.rebet-blog-card__button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 1px;
	overflow: hidden;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(90deg, rgba(252, 66, 51, 0.5) 0.29%, #ffee92 50.03%, rgba(252, 66, 51, 0.5) 100%);
	color: #09090c;
	font-size: 14px;
	line-height: 19.6px;
	text-decoration: none;
	box-shadow: 0 12px 32px rgba(252, 167, 50, 0.12), 0 24px 48px rgba(252, 77, 51, 0.24);
}

.rebet-blog-card__button span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 15px 31px;
	background: linear-gradient(10deg, #fc4233 7.59%, #fca732 92.05%);
	color: #09090c;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
}

.rebet-blog-card__image-link:focus-visible,
.rebet-blog-card__content:focus-visible,
.rebet-blog-card__button:focus-visible,
.rebet-blog-pagination a:focus-visible {
	outline: 2px solid #fca732;
	outline-offset: -3px;
}

.rebet-blog-pagination {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	width: 100%;
	margin-top: 24px;
	color: #fff;
	font-size: 16px;
	line-height: 22.4px;
}

.rebet-blog-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin: 16px 0;
	padding: 0;
	list-style: none;
}

.rebet-blog-pagination li {
	margin: 0;
	padding: 0;
}

.rebet-blog-pagination a {
	color: inherit;
	text-decoration: none;
}

.rebet-blog-pagination a:hover {
	color: #fca732;
}

.rebet-blog-pagination a.is-active {
	color: #3b82f6;
}

.rebet-blog-pagination__direction {
	min-height: 0;
}

.rebet-blog-empty {
	padding: 48px 32px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 15px;
	text-align: center;
}

.rebet-blog-empty h2 {
	margin: 0;
	font-size: 28px;
	line-height: 34px;
}

.rebet-blog-empty p {
	margin: 14px 0 0;
	font-size: 14px;
	line-height: 19.6px;
}

@media (max-width: 767px) {
	.rebet-blog-main {
		margin-top: -76px;
	}

	.rebet-blog-page {
		padding: 192px 20px;
	}

	.rebet-blog-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.rebet-blog-card__button span {
		padding: 10px 15px;
	}
}

@media (max-width: 479px) {
	.rebet-blog-page__title {
		font-size: 38px;
		line-height: 40px;
	}

	.rebet-blog-card__button span {
		padding: 8px 3px;
	}
}

/* Dynamic blog post detail. */
.rebet-single-main {
	margin-top: -96px;
	background: #09090c;
}

.single-post .rebet-header:not(.is-scrolled):not(.is-menu-open) {
	background: transparent;
}

.rebet-single {
	position: relative;
	isolation: isolate;
	width: 100%;
	max-width: 780px;
	margin: 0 auto;
	padding: 192px 48px 0;
	color: #fff;
	font-family: "Sora", sans-serif;
}

.rebet-single__glow {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 50%;
	display: block;
	width: 100vw;
	max-width: none;
	height: auto;
	transform: translateX(-50%);
	pointer-events: none;
}

.rebet-single__title {
	width: 100%;
	margin: 0 0 32px;
	background: linear-gradient(20deg, #e7806b 12.17%, #fc4632 31.15%, #fca732 62.13%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-size: 50px;
	font-style: italic;
	font-weight: 700;
	line-height: 55px;
	text-transform: uppercase;
}

.rebet-single__featured {
	display: block;
	width: 100%;
	margin: 0 0 14px;
}

.rebet-single__featured-image {
	display: block;
	width: 100%;
	height: auto;
}

.rebet-single__content {
	width: 100%;
	padding: 0 0 14px;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 19.6px;
}

.rebet-single__content p,
.rebet-single__content > ul,
.rebet-single__content > ol {
	margin-top: 14px;
	margin-bottom: 14px;
}

.rebet-single__content h2 {
	margin: 28.3691px 0;
	color: #fff;
	font-size: 34.1797px;
	font-style: normal;
	font-weight: 700;
	line-height: 41.0156px;
}

.rebet-single__content h3 {
	margin: 27.3438px 0;
	color: #fff;
	font-size: 27.3438px;
	font-style: normal;
	font-weight: 700;
	line-height: 32.8125px;
}

.rebet-single__content h4 {
	margin: 20px 0 16px;
	color: #fff;
	font-size: 21.875px;
	font-style: normal;
	font-weight: 700;
	line-height: 26.25px;
}

.rebet-single__content h5 {
	margin: 20px 0 12px;
	color: #fff;
	font-size: 17.5px;
	font-style: normal;
	font-weight: 700;
	line-height: 21px;
}

.rebet-single__content h6 {
	margin: 14px 0;
	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 19.6px;
}

.rebet-single__content ul,
.rebet-single__content ol {
	padding-left: 40px;
}

.rebet-single__content ul {
	list-style: disc;
}

.rebet-single__content ol {
	list-style: decimal;
}

.rebet-single__content li::marker {
	color: #ff9c59;
}

.rebet-single__content a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.rebet-single__content a:hover {
	color: #fca732;
}

.rebet-single__content a:focus-visible,
.rebet-single__page-links a:focus-visible {
	outline: 2px solid #fca732;
	outline-offset: 3px;
}

.rebet-single__content img,
.rebet-single__content video,
.rebet-single__content iframe {
	max-width: 100%;
	height: auto;
}

.rebet-single__content figure,
.rebet-single__content .wp-block-image,
.rebet-single__content .wp-block-video,
.rebet-single__content .wp-block-embed {
	max-width: 100%;
	margin-right: 0;
	margin-left: 0;
}

.rebet-single__content .wp-block-table {
	max-width: 100%;
	overflow-x: auto;
}

.rebet-single__content table {
	width: 100%;
	border-collapse: collapse;
	color: #fff;
	table-layout: fixed;
}

.rebet-single__content th,
.rebet-single__content td {
	padding: 7px;
	border: 1px solid #fff;
	vertical-align: top;
	text-align: left;
	overflow-wrap: break-word;
}

.rebet-single__page-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 28px 0 14px;
}

.rebet-single-recent {
	width: 100%;
	max-width: 940px;
	margin: 0 auto;
	padding: 48px 0;
	color: #fff;
	font-family: "Sora", sans-serif;
}

.rebet-single-recent__title {
	width: 100%;
	margin: 29.0938px 0;
	color: #fd6f27;
	font-size: 21.875px;
	font-style: normal;
	font-weight: 700;
	line-height: 26.25px;
}

.rebet-single-recent__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 15px;
	width: 100%;
}

.rebet-single-recent__card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
	height: 100%;
	overflow: hidden;
	border: 1px solid #fff;
	border-radius: 15px;
	background: transparent;
}

.rebet-single-recent__image-link {
	display: block;
	width: 100%;
	overflow: hidden;
	color: #fff;
	text-decoration: none;
}

.rebet-single-recent__image {
	display: block;
	width: 100%;
	height: auto;
}

.rebet-single-recent__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 16 / 9;
	background:
		radial-gradient(circle at 50% 34%, rgba(252, 167, 50, 0.2), transparent 44%),
		#0d0d11;
}

.rebet-single-recent__placeholder-logo {
	display: block;
	width: min(52%, 150px);
	height: auto;
}

.rebet-single-recent__content {
	display: block;
	flex: 1 1 auto;
	padding: 32px;
	border-radius: 5px;
	color: #fd6f27;
	text-decoration: none;
}

.rebet-single-recent__content h3 {
	margin: 14px 0;
	color: inherit;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
}

.rebet-single-recent__button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 1px;
	border-radius: 8px;
	background: linear-gradient(90deg, rgba(252, 66, 51, 0.5) 0.29%, #ffee92 50.03%, rgba(252, 66, 51, 0.5) 100%);
	color: #09090c;
	text-decoration: none;
	box-shadow: 0 12px 32px rgba(252, 167, 50, 0.12), 0 24px 48px rgba(252, 77, 51, 0.24);
}

.rebet-single-recent__button span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 15px 31px;
	border-radius: 5px;
	background: linear-gradient(10deg, #fc4233 7.59%, #fca732 92.05%);
	color: #09090c;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
}

.rebet-single-recent__image-link:focus-visible,
.rebet-single-recent__content:focus-visible,
.rebet-single-recent__button:focus-visible {
	outline: 2px solid #fca732;
	outline-offset: -3px;
}

@media (max-width: 767px) {
	.rebet-single-main {
		margin-top: -76px;
	}

	.rebet-single {
		padding-right: 20px;
		padding-left: 20px;
	}

	.rebet-single__content h2 {
		margin-top: 20.75px;
		margin-bottom: 20.75px;
		font-size: 25px;
		line-height: 30px;
	}

	.rebet-single-recent {
		padding: 48px 20px;
	}

	.rebet-single-recent__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 479px) {
	.rebet-single__title {
		font-size: 38px;
		line-height: 40px;
	}
}

/* Shared layout for Privacy Policy and the remaining legal pages. */
.rebet-legal-main {
	margin-top: -96px;
	background: #09090c;
}

.privacy-policy .rebet-header:not(.is-scrolled):not(.is-menu-open),
.terms-of-use .rebet-header:not(.is-scrolled):not(.is-menu-open),
.fantasy-terms-of-use .rebet-header:not(.is-scrolled):not(.is-menu-open),
.rebet-fantasy-terms-of-use .rebet-header:not(.is-scrolled):not(.is-menu-open) {
	background: transparent;
}

.sweeps-rules .rebet-header:not(.is-scrolled):not(.is-menu-open) {
	background: transparent;
}

.responsible-social-gameplay .rebet-header:not(.is-scrolled):not(.is-menu-open) {
	background: transparent;
}

.social-sportsbook .rebet-header:not(.is-scrolled):not(.is-menu-open),
.social-sportsbooks .rebet-header:not(.is-scrolled):not(.is-menu-open) {
	background: transparent;
}

.sports-game-rules .rebet-header:not(.is-scrolled):not(.is-menu-open),
.sports-prediction-rules .rebet-header:not(.is-scrolled):not(.is-menu-open) {
	background: transparent;
}

.rebet-legal-main .rebet-legal-page {
	position: relative;
	isolation: isolate;
	max-width: 1702px;
	margin: 0 auto;
	padding: 192px 30px;
	background: #09090c;
	color: #fff;
	font-family: "Sora", sans-serif;
}

.rebet-legal-page__glow {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 50%;
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	transform: translateX(-50%);
	pointer-events: none;
}

.rebet-legal-page__title {
	width: 100%;
	margin: 0 0 32px;
	background: linear-gradient(20deg, #e7806b 12.17%, #fc4632 31.15%, #fca732 62.13%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-size: 90px;
	font-style: italic;
	font-weight: 700;
	line-height: 115%;
	text-align: center;
}

.rebet-legal-page__content {
	width: 100%;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 19.6px;
}

.rebet-legal-page__content h2 {
	margin: 28.3691px 0;
	color: #fff;
	font-size: 34.1797px;
	font-style: normal;
	font-weight: 700;
	line-height: 41.0156px;
}

.rebet-legal-page__content h3 {
	margin: 27.3438px 0;
	color: #fff;
	font-size: 27.3438px;
	font-style: normal;
	font-weight: 700;
	line-height: 32.8125px;
}

.rebet-legal-page__content h6 {
	margin: 32.62px 0;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 16.8px;
}

.rebet-legal-page__content p,
.rebet-legal-page__content > ol,
.rebet-legal-page__content > ul {
	margin-top: 14px;
	margin-bottom: 14px;
}

.rebet-legal-page__content p,
.rebet-legal-page__content ol,
.rebet-legal-page__content ul {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 19.6px;
}

.rebet-legal-page__content ol ol,
.rebet-legal-page__content ol ul,
.rebet-legal-page__content ul ol,
.rebet-legal-page__content ul ul {
	margin-top: 0;
	margin-bottom: 0;
}

.rebet-legal-page__content ol,
.rebet-legal-page__content ul {
	padding-left: 40px;
}

.rebet-legal-page__content ol {
	list-style: decimal;
}

.rebet-legal-page__content ul {
	list-style: disc;
}

.rebet-legal-page__content li {
	margin: 0;
	padding: 0;
}

.rebet-legal-page__content a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.rebet-legal-page__content a:hover {
	color: #fca732;
}

.rebet-legal-page__content a:focus-visible {
	outline: 2px solid #fca732;
	outline-offset: 3px;
}

.rebet-legal-page__content hr {
	height: 2px;
	margin: 7px 0;
	border: 0;
	border-top: 2px solid gray;
}

.rebet-legal-page__content figure,
.rebet-legal-page__content .wp-block-table {
	max-width: 100%;
	margin: 0;
	overflow-x: auto;
}

.rebet-legal-page__content table {
	width: 100%;
	border-collapse: collapse;
	color: #fff;
	font-size: 14px;
	line-height: 19.6px;
	table-layout: fixed;
}

.rebet-legal-page__content td,
.rebet-legal-page__content th {
	padding: 7px;
	border: 1px solid #fff;
	vertical-align: top;
	text-align: left;
	word-break: normal;
	overflow-wrap: break-word;
}

@media (max-width: 1024px) {
	.rebet-legal-page__title {
		font-size: 60px;
		line-height: 60px;
	}
}

@media (max-width: 767px) {
	.rebet-legal-main {
		margin-top: -76px;
	}

	.rebet-legal-main .rebet-legal-page {
		padding: 192px 30px;
	}

	.rebet-legal-page__title {
		font-size: 45px;
		line-height: 45px;
	}

	.rebet-legal-page__content h2 {
		margin-top: 20.75px;
		margin-bottom: 20.75px;
		font-size: 25px;
		line-height: 30px;
	}
}

/* Numbered hierarchy used by the Sweepstakes Official Rules document. */
.rebet-sweeps-rules__content .oxy-text-90-101 {
	font-weight: 700;
}

.rebet-sweeps-rules__content .oxy-rich-text-90-102,
.rebet-sweeps-rules__content .oxy-rich-text-90-102 p {
	font-weight: 200;
}

.rebet-sweeps-rules__content .content-box.mt-10 {
	margin-top: 40px;
}

.rebet-sweeps-rules__content ol {
	list-style: none;
}

.rebet-sweeps-rules__content .nested-subnumb_ol {
	margin: 14px 0;
	padding-left: 0;
	counter-reset: sweep-section;
}

.rebet-sweeps-rules__content .nested-subnumb_ol > li {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	column-gap: 8px;
	margin: 0 0 20px;
	counter-increment: sweep-section;
}

.rebet-sweeps-rules__content .nested-subnumb_ol > li.mt-10 {
	margin-top: 40px;
}

.rebet-sweeps-rules__content .nested-subnumb_ol > li::before {
	display: block;
	width: auto;
	margin-top: 28.3691px;
	content: counter(sweep-section) ". ";
	font-size: 34.1797px;
	font-weight: 700;
	line-height: 41.0156px;
}

.rebet-sweeps-rules__content .nested-subnumb_ol > li > h2 {
	font-style: normal;
}

.rebet-sweeps-rules__content .nested-subnumb_ol > li > ol {
	grid-column: 1 / -1;
	width: 100%;
	margin: 16px 0 0;
	padding-left: 28px;
	counter-reset: sweep-subsection;
}

.rebet-sweeps-rules__content .nested-subnumb_ol > li > ol > li {
	margin: 0;
	counter-increment: sweep-subsection;
}

.rebet-sweeps-rules__content .nested-subnumb_ol > li > ol > li::before,
.rebet-sweeps-rules__content .list_items > li::before {
	margin-right: 4.2px;
	content: counter(sweep-section) "." counter(sweep-subsection) " ";
	color: #fca732;
}

.rebet-sweeps-rules__content .nested-subnumb_ol > li > ol > li.mb-3,
.rebet-sweeps-rules__content .list_items > li.mb-3 {
	margin-bottom: 12px;
}

.rebet-sweeps-rules__content .list_items {
	margin: 12px 0 0;
	padding-left: 28px;
	counter-reset: sweep-list-item;
}

.rebet-sweeps-rules__content .list_items > li {
	counter-increment: sweep-list-item;
}

.rebet-sweeps-rules__content .list_items > li::before {
	content: counter(sweep-section) "." counter(sweep-list-item) " ";
}

.rebet-sweeps-rules__content .nested-subnumb_ol > li > ol > li.h2 {
	height: 65px;
	margin-top: 40px;
	margin-bottom: 20px;
	font-size: 70px;
	font-weight: 700;
	line-height: 65px;
}

.rebet-sweeps-rules__content address {
	margin: 0;
	font-style: italic;
}

@media (max-width: 767px) {
	.rebet-sweeps-rules__content .nested-subnumb_ol > li::before {
		margin-top: 20.75px;
		font-size: 25px;
		line-height: 30px;
	}
}

/* Responsible Social Gameplay uses aligned section headings and orange subnumbers. */
.rebet-responsible-gameplay__content .content-box.mt-10 {
	margin-top: 40px;
}

.rebet-responsible-gameplay__content ol {
	list-style: none;
}

.rebet-responsible-gameplay__content .nested-subnumb_ol {
	margin: 14px 0;
	padding-left: 0;
	counter-reset: responsible-section;
}

.rebet-responsible-gameplay__content .nested-subnumb_ol > li {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	column-gap: 8px;
	margin: 0 0 20px;
	color: #fff;
	font-size: 34.1797px;
	font-style: normal;
	font-weight: 700;
	line-height: 41.0156px;
	counter-increment: responsible-section;
}

.rebet-responsible-gameplay__content .nested-subnumb_ol > li.mt-10 {
	margin-top: 40px;
}

.rebet-responsible-gameplay__content .nested-subnumb_ol > li::before {
	content: counter(responsible-section) ".";
	font: inherit;
}

.rebet-responsible-gameplay__content .nested-subnumb_ol > li > ol {
	grid-column: 1 / -1;
	width: 100%;
	margin: 16px 0 0;
	padding-left: 28px;
	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 19.6px;
	counter-reset: responsible-subsection;
}

.rebet-responsible-gameplay__content .nested-subnumb_ol > li > ol > li {
	margin: 0;
	counter-increment: responsible-subsection;
}

.rebet-responsible-gameplay__content .nested-subnumb_ol > li > ol > li::before,
.rebet-responsible-gameplay__content .list_items > li::before {
	margin-right: 4.2px;
	content: counter(responsible-section) "." counter(responsible-subsection) " ";
	color: #fca732;
}

.rebet-responsible-gameplay__content .nested-subnumb_ol > li > ol > li.mb-3,
.rebet-responsible-gameplay__content .list_items > li.mb-3 {
	margin-bottom: 12px;
}

.rebet-responsible-gameplay__content .list_items {
	margin: 12px 0 0;
	padding-left: 28px;
	counter-reset: responsible-list-item;
}

.rebet-responsible-gameplay__content .list_items > li {
	counter-increment: responsible-list-item;
}

.rebet-responsible-gameplay__content .list_items > li::before {
	content: counter(responsible-section) "." counter(responsible-list-item) " ";
}

.rebet-responsible-gameplay__content .text-orange {
	color: #fca732;
}

.rebet-responsible-gameplay__content p.mt-4 {
	margin-top: 16px;
}

@media (max-width: 767px) {
	.rebet-responsible-gameplay__content .nested-subnumb_ol > li {
		font-size: 25px;
		line-height: 30px;
	}
}

/* Long-form Social Sportsbooks article. */
.rebet-social-sportsbooks__content .content-box.mt-10 {
	margin-top: 40px;
}

.rebet-social-sportsbooks__content h2 {
	margin-top: 28.3691px;
	margin-bottom: 20px;
	font-style: normal;
}

.rebet-social-sportsbooks__content h4 {
	margin: 20px 0 16px;
	color: #fff;
	font-size: 21.875px;
	font-style: normal;
	font-weight: 700;
	line-height: 26.25px;
}

@media (max-width: 767px) {
	.rebet-social-sportsbooks__content h2 {
		margin-top: 20.75px;
		margin-bottom: 20px;
	}
}

/* Sports Prediction Rules: long-form sections, lists and data tables. */
.rebet-sports-prediction-rules__content .content-box.mt-10 {
	margin-top: 40px;
}

.rebet-sports-prediction-rules__content h2 {
	margin-top: 28.3691px;
	margin-bottom: 20px;
	font-style: normal;
}

.rebet-sports-prediction-rules__content h4 {
	margin: 20px 0 16px;
	color: #fff;
	font-size: 21.875px;
	font-style: normal;
	font-weight: 700;
	line-height: 26.25px;
}

.rebet-sports-prediction-rules__content h4.mt-lg-10.mb-0 {
	margin-top: 29.0938px;
	margin-bottom: 0;
}

.rebet-sports-prediction-rules__content h5 {
	margin: 20px 0 12px;
	color: #fff;
	font-size: 17.5px;
	font-style: normal;
	font-weight: 700;
	line-height: 21px;
}

.rebet-sports-prediction-rules__content .mt-5 {
	margin-top: 20px;
}

.rebet-sports-prediction-rules__content ul,
.rebet-sports-prediction-rules__content ol {
	margin-top: 14px;
	margin-bottom: 14px;
}

.rebet-sports-prediction-rules__content .my-5 {
	margin-top: 20px;
	margin-bottom: 20px;
}

.rebet-sports-prediction-rules__content .mb-5 {
	margin-bottom: 20px;
}

.rebet-sports-prediction-rules__content .mb-4 {
	margin-bottom: 16px;
}

.rebet-sports-prediction-rules__content .mt-3 {
	margin-top: 12px;
}

.rebet-sports-prediction-rules__content .my-3 {
	margin-top: 12px;
	margin-bottom: 12px;
}

.rebet-sports-prediction-rules__content li.mb-3 {
	margin-bottom: 12px;
}

.rebet-sports-prediction-rules__content .table-responsive {
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.rebet-sports-prediction-rules__content table {
	width: auto;
	max-width: 100%;
	border-collapse: separate;
	border-spacing: 2px;
	table-layout: auto;
}

.rebet-sports-prediction-rules__content table,
.rebet-sports-prediction-rules__content th,
.rebet-sports-prediction-rules__content td {
	padding: 5px !important;
	border: 0;
	text-align: left !important;
}

@media (max-width: 767px) {
	.rebet-sports-prediction-rules__content h2 {
		margin-top: 20.75px;
		margin-bottom: 20px;
	}
}
