@font-face {
	font-family: 'RTL United Text';
	src: url('/bouncer/RTLUnitedText-Regular.woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'RTL United Text';
	src: url('/bouncer/RTLUnitedText-Bold.woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--typography-interface-title1-bold: 700 46px/52.9px 'RTL United Text', sans-serif;
	--typography-interface-title2-bold: 700 32px/36.8px 'RTL United Text', sans-serif;
	--typography-interface-title3-bold: 700 24px/27.6px 'RTL United Text', sans-serif;
	--typography-interface-callout-title-bold: 700 19px/21.85px 'RTL United Text', sans-serif;
	--typography-interface-body: 400 17px/23.8px 'RTL United Text', sans-serif;
	--typography-interface-body-title: 400 17px/19.55px 'RTL United Text', sans-serif;
	--typography-interface-body-title-bold: 700 17px/19.55px 'RTL United Text', sans-serif;
	--typography-interface-caption: 400 13px/18.2px 'RTL United Text', sans-serif;
	--typography-interface-caption-title: 400 13px/14.95px 'RTL United Text', sans-serif;
	--typography-interface-caption-title-bold: 700 13px/14.95px 'RTL United Text', sans-serif;
	--typography-interface-title3-bold: 700 24px/27.6px 'RTL United Text', sans-serif;
	--typography-interface-button: 400 17px/17px 'RTL United Text', sans-serif;
	--global-page-padding: 16px;
}

@media screen and (min-width: 360px) {
	:root {
		--global-page-padding: 24px;
	}
}

@media screen and (min-width: 568px) {
	:root {
		--global-page-padding: 32px;
	}
}

@media screen and (min-width: 768px) {
	:root {
		--global-page-padding: 48px;
	}
}

@media screen and (min-width: 1024px) {
	:root {
		--global-page-padding: 64px;
	}
}

@media screen and (min-width: 1280px) {
	:root {
		--global-page-padding: 96px;
	}
}

@media screen and (min-width: 1792px) {
	:root {
		--global-page-padding: 0;
	}
}

html,
body {
	margin: 0;
	color: white;
	background-color: black;

	font: var(--typography-interface-caption);
}

header {
	display: flex;
	align-items: center;
	height: 65px;
	box-shadow: inset 0 -1px 0 rgb(34, 35, 37);
	width: 100%;
}

/* header content */
.hc {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 0 var(--global-page-padding);
	margin: auto;
	max-width: 1600px;
}

main {
	display: flex;
	flex-direction: column;
	padding: 24px var(--global-page-padding);
	max-width: 1600px;
	margin: auto;
}

/* content wrapper */
.cw {
	display: flex;
	justify-content: space-between;
	padding-bottom: 48px;
}

h1 {
	margin: 0 0 12px 0;
	font: var(--typography-interface-title2-bold);
}

/* live */
.l {
	margin: 0 0 12px 0;
	color: rgb(132, 138, 149);
	font: var(--typography-interface-caption-title);
}

/* streaming content */
.sc {
	width: 100%;
	min-width: 60%;
	margin-bottom: 24px;
	aspect-ratio: 16 / 9;
}

/* player button */
.pb {
	width: 100%;
	min-width: 60%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	border: none;
}

.pb img {
	width: 100%;
	height: auto;
	opacity: 0.4;
}

.pb svg {
	position: absolute;
	transition: transform 200ms cubic-bezier(0.5, 0, 0, 1);
}

.pb:hover svg {
	transform: scale(1.5);
}

/* action */
.ac {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #222325;
	padding: 16px;
	margin-bottom: 24px;
	gap: 16px;
}

.ac h2 {
	font: var(--typography-interface-title3-bold);
	margin: 0 0 8px 0;
}

/* timer text */
.tt {
	color: rgb(132, 138, 149);
	font: var(--typography-interface-caption-title-bold);
	margin: 0;
}

button {
	background-color: transparent;
	padding: 0 12px;
	min-height: 48px;
	font: var(--typography-interface-button);
	color: rgb(247, 248, 249);
	border: 1px solid rgb(110, 113, 117);
	transition: border-color 200ms cubic-bezier(0.5, 0, 0, 1);
	min-width: max-content;
	display: flex;
	align-items: center;
	justify-content: center;
}

#rbNfl img {
	margin-right: 8px;
}

button:disabled {
	border-color: rgb(66, 68, 71);
	color: rgb(135, 137, 145);
}

button:hover:not(:disabled) {
	border-color: rgb(247, 248, 249);
	cursor: pointer;
}

/* retry button */
.btn {
	display: flex;
	flex-direction: row;
	gap: 12px;
}

.text-content {
	margin-bottom: 48px;
}

@media only screen and (max-width: 1023px) {
	.cw {
		flex-direction: column-reverse;
	}

	.btn {
		flex-direction: column;
		gap: 8px;
	}
}

@media screen and (max-width: 568px) {
	.btn {
		flex-direction: row;
		gap: 8px;
		width: 100%;
	}

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

	.ac button {
		width: 100%;
	}

	.text-content {
		margin-bottom: 24px;
	}
}

@media screen and (max-width: 767px) {
	.ac h2 {
		font: var(--typography-interface-callout-title-bold);
	}
}

@media screen and (max-width: 475px) {
	.btn {
		flex-direction: column;
		gap: 8px;
	}
}

@media only screen and (min-width: 1024px) {
	.btn {
		gap: 12px;
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: 1fr;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		min-width: 370px;
	}

	.side {
		margin-right: 24px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.ac {
		flex-direction: column;
		max-width: 468px;

		button {
			width: 100%;
		}
	}
}

@media only screen and (min-width: 1792px) {
	.cw {
		padding-bottom: 64px;
	}

	.ac {
		padding: 24px;
	}

	.ac h2 {
		font: var(--typography-interface-title2-bold);
	}

	.text-content h1 {
		margin-right: 24px;
	}
}

@media only screen and (min-width: 1280px) {
	html,
	body {
		font: var(--typography-interface-body);
	}

	h1 {
		font: var(--typography-interface-title1-bold);
	}

	.l {
		font: var(--typography-interface-body-title);
		margin-bottom: 16px;
	}

	.tt {
		font: var(--typography-interface-title-bold);
	}

	button {
		padding: 0 24px;
	}

	.btn {
		min-width: 420px;
		width: 100%;
	}
}

footer {
	display: flex;
	flex-wrap: wrap;
	max-width: 1600px;
	margin: auto;
	padding: 94px var(--global-page-padding);
	font: var(--typography-interface-caption-title);
}

a,
.cr {
	color: rgb(132, 138, 149);
	text-decoration: none;
	margin-right: 24px;
	margin-bottom: 8px;
}

.cr {
	flex-grow: 1;
}

#fullscreen-container {
	display: none;
	width: 100%;
	height: auto;
}
