* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
	font-family: Arial, sans-serif;
	background-color: #f9f9f9;
}
a { text-decoration: none; }
h1 { margin-bottom: 20px; }
.lazyload, .lazyloading { opacity: 0; }
.lazyloaded {
	opacity: 1;
	transition: opacity 300ms;
	background: transparent url(../images/loader.gif) no-repeat center;
}
.dark { background-color: #222; color: #fff; }
.dark .video-card { background-color: #333; }
.dark a { color: wheat; }
.dark .video-card .video-info p { color: #d5d5d5; }
.container {
  text-align: center;
  background: transparent;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 20px;
}
.video-container {
	position: relative;
	width: 90%;
	max-width: 800px;
	aspect-ratio: 16 / 9;
	background: #000;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	margin: 20px auto;
}
video {
	width: 100%;
	height: 100%;
}
.gallery-container {
	max-width: 1200px;
	margin: 20px auto;
	padding: 10px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}
.video-card {
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background-image: url(../images/loader.gif);
	background-repeat: no-repeat;
	background-position: top;
}
.video-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.video-card img {
	width: 100%;
	height: auto;
	display: block;
}
.video-card .video-info { padding: 15px; text-align: center; }
.video-card .video-info h3 {
	margin: 0 0 10px;
	font-size: 18px;
	color: #333;
}
.video-card .video-info p {
	margin: 0;
	font-size: 12px;
	color: #666;
}
.video-card h2 { font-size: 16px; }
#streamV {
  text-align: center;
  padding-top: 20px;
}
@media (max-width: 600px) { .gallery-container { grid-template-columns: 1fr; } }
.header {
	position: relative;
	width: 100%;
	height: auto;
	background-color: #333;
	display: flex;
	align-items: center;
}
.scroll-container {
	display: flex;
	overflow-x: auto;
	scroll-behavior: smooth;
	white-space: nowrap;
	width: calc(100% - 100px);
	margin: 0 auto;
	padding-bottom: 12px;
}
.menu-item {
	display: inline-block;
	padding: 20px;
	text-align: center;
	background-color: #444;
	min-width: 100px;
	border-left: 0.5px solid #222;
	cursor: pointer;
}
.menu-item, .menu-item a { color: #FFF; }
.menu-item:hover { color: #ccc; background-color: #555; }
.menu-item.active { background-color: #666; cursor: default; }
.scroll-button {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background-color: #444;
	color: white;
	border: none;
	cursor: pointer;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.scroll-button:hover { background-color: #555; }
.scroll-left { left: 0px; }
.scroll-right { right: 0px; }
.pagination {
  display: flex;
  list-style-type: none;
  padding: 0;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.pagination li {
  margin: 5px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  cursor: pointer;
}
.pagination li.active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}
.pagination li.disabled { color: #ccc; cursor: not-allowed; }
.pagination li:hover { background-color: #0002; }
.content { margin-bottom: 20px; }
.multiline, .multiline-ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  position: relative;
  line-height: 1.5em;
  max-height: 3em;
}
.multiline-ellipsis::after {
  content: '...';
  position: absolute;
  bottom: 0;
  right: 0;
  background: transparent;
  padding-left: 4px; 
}
.btn {
  position: absolute;
  top: 1%;
  right: 0.5%;
  padding: 2px 5px;
}
#myBtn:hover { color:red; background-color: white;border:1px solid red;}
#myBtn {
	display: none;
	position: fixed;
	bottom: 60px;
	right: 20px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	background-color: red;
	color: white;
	cursor: pointer;
	padding: 12px 15px;
	border-radius: 4px;
}
.footer {
	background-color: #333;
	color: #fff;
	text-align: center;
	padding: 20px;
}
#footer-link { margin-top: 20px; }
.footer-link {
	font-size: 14px;
	color: #7e7e7e;
	margin: 0 6px;
	text-decoration: none;
	transition: color 0.3s ease;
}
.footer-link:hover { color: #ccc; }
.footer-link:nth-child(1):hover { color: #e1306c; }
