


html {
  font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: 0;
}

body {
	background-color: #000;
	background-image: url('https://apwcdn.b-cdn.net/cdn/hyl/hayal-bg.jpg');
	width: 100%;
	height: 100%;
	font-family: 'Roboto', serif;
	font-weight: 400;
}

.ultimate-wrapper {
	max-width: 1400px;
	width: 100%;
	margin: auto;
	position: relative;
	z-index: 0;
	

}

a {
	text-decoration: none;
	color: inherit;
}

.left-images {
	
	position: absolute;
	top: 0;
	display: flex;
	flex-direction: column;
	z-index: -1;
	animation: fade-in 1s ease-out forwards; 

}


.right-images {
	position: absolute;
	top: 0;
	display: flex;
	flex-direction: column;
	z-index: -1;
	right: 0;
	animation: fade-in 1s ease-out forwards; 

}



.container {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

.video-banner {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.video-link {
	font-size: 0;
}

.player {
	display: flex;
	width: 100%;
	aspect-ratio: 16 / 9;
}

#videojs {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.channels-container {
	width: 100%;
	background-color: #000;
	padding: 0.5rem 0.5rem;
	padding-bottom: 0.8rem;
	overflow: auto;
}

.channels-ul {
	width: 100%;
	list-style-type: none;
	color: white;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.5rem;
}

.channels-li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.5rem;
}

.channels-href {
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Cuprum", serif;
  padding: 0.5rem 0.2rem;
  background-color: red;
  border-radius: 5px;
  opacity: 0;
  animation: fade-in 1s ease-out forwards; 
	min-width: 80px;
  text-align: center; 
}

.channels-href:hover {
	text-decoration: underline;
	text-underline-offset: 5px;
	text-decoration-thickness: 2px;
}

.channels-href.selected{
	text-decoration: underline;
	text-underline-offset: 5px;
	text-decoration-thickness: 2px;
}

.mobile-banners {
	width: 100%;
	animation: fade-in 1s ease-out forwards;
	display: none;
}

.mobile-banners a {
	font-size: 0;
}

.mobile-small {
	width: 25%;
	font-size: 0;
	vertical-align: top;
}

.events-container {
	width: 100%;
	background-color: #000;
}

.events-ul {
	width: 100%;
	display: flex;
	justify-content: center;
	list-style-type: none;
	align-items: center;
}

.events-li {
	display: flex;
	justify-content: center;
	flex-grow: 1;
	align-items: center;
}

.events-href {
	font-size: 1.1rem;
	font-family: 'Cuprum', serif;
	color: #fff;
	padding: 0.4rem;
	justify-content: center;
	align-items: center;
	text-align: center;
	display: flex;
	flex-grow: 1;
	background-color: #0b2671;
}

.events-href:hover {
	background-color: #000;
}

.event-img {
	width: 20px;
	height: auto;
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
	margin-right: 5px;
}

.match-ul {
	width: 100%;
	background-color: #f2f2f2;
	display: flex;
	flex-direction: column;
	padding-top: 0.3rem;
}

.match-li {
	width: 100%;
	display: flex;
	align-items: center;
	text-align: center;
	animation: fade-in 1s ease-out forwards; 
}

.match-href {
	font-weight: 300;
	font-size: 0.9rem;
	display: flex;
	width: 100%;
	padding: 0.4rem 0.5rem;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	gap: 1.2rem;
}

.event-teams {
	flex-grow: 1;
	display: flex;

}


.match-href:hover .event-teams {
	text-decoration: underline;
	text-underline-offset: 10px;
	text-decoration-thickness: 2px;
	text-decoration-color: red;
}





@keyframes fade-in {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1; 
	}
}


@media (max-width: 1000px) {
  
	.mobile-banners {
		display: block;
	}

	.blg-bx-small {
		display: none;

	}

	.blg-bx {
		display: none;
	}

	.mobile-banners {
		display: 'block'
	}

	

}


@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

	.channels-href {
		min-width: 75px;
	}

	.events-li.basketball {
		display: none;
	}

	.event-league {
		display: none;
	}

	

}

@media (orientation: landscape) and (max-height: 600px) {
	html {
    font-size: 14px;
  }
	.container {
		max-width: 600px;
	}

	.blg-bx {
		display: block;
		width: 75px;
		height: auto;
	}

	.blg-bx-small {
		display: block;
		width: 75px;
	}

	.mobile-banners {
		display: none;
	}


	.ultimate-wrapper {
		width: 100%;
		max-width: 750px;
	}
}