body {
     margin: 0;
     font-family: 'IranSans', sans-serif;
	 }
	 	

	.header-nav {
	  background-color: #333;
	  color: #f2f2f2;
	  position: fixed;
	  top: 0;
	  width: 100%;
	  z-index: 100; /* برای اطمینان از نمایش روی سایر عناصر */
	}

	.container-nav {
	  max-width: 1200px; /* تنظیم عرض حداکثر */
	  margin: 0 auto;
	  display: flex;
	  align-items: center;
	  justify-content: flex-start;
	  padding: 10px 20px; /* اضافه کردن padding مناسب */
	}

	.logo img {
	  height: 40px; /* تنظیم ارتفاع لوگو */
	  align-items: right;
	  margin-right: 30px; /* فاصله از لوگو */
	}

	.navbar a {
	  color: #f2f2f2;
	  text-decoration: none;
	  padding: 10px 15px; /* تنظیم padding مناسب */
	  font-size: 16px;
	  transition: background-color 0.3s ease; /* اضافه کردن انیمیشن hover */
	}

	.navbar a:hover {
	  background-color: #555; /* تغییر رنگ پس‌زمینه در hover */
	}
	.live-label {
	  background-color: red;
	  color: white;
	  padding: 5px 10px;
	  border-radius: 5px;
	  font-size: 12px;
	  margin-left: 10px; /* فاصله از لوگو */
	}

	.main {
	  padding: 16px;
	  margin-top: 30px;
	  height: 1500px; /* Used in this example to enable scrolling */
	}
	.ad-ribbon {
		position: absolute;
		top: 20px;
		left: 20px;
		background-color: red;
		color: white;
		padding: 5px 10px;
		font-size: 14px;
		border-radius: 5px;
		z-index: 10;
		display: none;
	}

	.player-container {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100vh;
		flex-direction: row;
	}

	.side-left, .side-right {
		width: 20%;
		height: 100%;
		
	}
	.header {
		flex: 1;
		max-width: 80%;

	}
	.video-wrapper {
		flex: 1;
		max-width: 80%;
		height: auto; /* تغییر ارتفاع video-wrapper به auto */
		position: relative;
	}

	.video-js {
		width: 100%; /* تغییر عرض video-js به 100% */
		height: 50vh;
	}
	#countdown {
    position: absolute;
    bottom: 40px;
		right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 10;
	}

	#skipAd {
		position: absolute;
		bottom: 40px;
		right: 20px;
		background-color: #4CAF50;
		color: white;
		padding: 10px 20px;
		border-radius: 5px;
		cursor: pointer;
		z-index: 10;
	}
.video-title-container {
    position: fixed; /* برای ثابت ماندن در بالای صفحه */
    top: 60px; /* فاصله از بالای صفحه (می‌توانید تنظیم کنید) */
    left: 0;
    width: 100%;
    text-align: center; /* برای نمایش متن در مرکز */
    z-index: 100; /* برای نمایش روی سایر عناصر */
    color: white; /* رنگ متن */
    font-family: 'IranSans'; /* فونت مناسب */
}

#videoTitle {
    margin: 50; /* حذف margin پیش‌فرض */
    font-size: 40px; /* اندازه فونت */
	unicode-bidi: embed;
}


	/* media queries برای دستگاه‌های کوچک‌تر */
	@media (max-width: 768px) {
		.player-container {
			flex-direction: column;
		}

		.side-left, .side-right {
			width: 100%;
			height: 150px;
		}

		.video-wrapper {
			width: 100%;
		}
	}




@font-face {
    font-family: 'IranSans';
    src: url('../assets/fonts/IRANSansWeb.woff') format('woff'),
         url('../assets/fonts/IRANSansWeb.eot') format('eot'),
         url('../assets/fonts/IRANSansWeb.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'IranSans';
    src: url('../assets/fonts/IranSans-Bold.woff') format('woff'),
         url('../assets/fonts/IranSans-Bold.eot') format('eot'),
         url('../assets/fonts/IranSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
