		* {
			box-sizing: border-box;
		}

		html,
		body {
			margin: 0;
			width: 100%;
			min-height: 100%;
		}

		body {
			background: #0b0b0b;
			color: #fff;
			font-family: Arial, sans-serif;
		}

		header {
			position: sticky;
			top: 0;
			z-index: 10;
			display: flex;
			align-items: center;
			gap: 30px;
			height: 72px;
			padding: 0 35px;
			background: rgba(10, 10, 10, 0.96);
			border-bottom: 1px solid #222;
		}

		header img {
			width: 145px;
			max-height: 45px;
		}

		nav {
			display: flex;
			gap: 24px;
		}

		nav a {
			color: #aaa;
			text-decoration: none;
			font-size: 15px;
			font-weight: bold;
		}

		nav a:hover,
		nav a.active {
			color: #fff;
		}

		main {
			padding: 30px 35px 50px;
			max-width: 1600px;
			margin: auto;
		}

		.hero {
			position: relative;
			min-height: 320px;
			display: flex;
			align-items: flex-end;
			padding: 45px;
			margin-bottom: 45px;
			border-radius: 12px;
			overflow: hidden;
			background:
				linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.35), rgba(0,0,0,.8)),
				url("bgs/bg0.jpg") center/cover;
		}

		.hero-content {
			max-width: 650px;
		}

		.hero h1 {
			font-size: clamp(36px, 5vw, 64px);
			margin: 0 0 10px;
		}

		.hero p {
			margin: 0 0 20px;
			color: #ccc;
			font-size: 18px;
		}

		.button {
			display: inline-block;
			padding: 12px 22px;
			border-radius: 6px;
			background: #fff;
			color: #000;
			text-decoration: none;
			font-weight: bold;
		}

		.section {
			margin-bottom: 45px;
		}

		.section h2 {
			margin: 0 0 18px;
			font-size: 24px;
		}

		.grid {
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
			gap: 18px;
		}

		.card {
			background: #151515;
			border-radius: 8px;
			overflow: hidden;
			cursor: pointer;
			transition: transform .2s, background .2s;
		}

		.card:hover {
			transform: translateY(-4px);
			background: #202020;
		}

		.thumbnail {
			position: relative;
			aspect-ratio: 16 / 9;
			background: #252525;
			overflow: hidden;
		}

		.thumbnail img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			display: block;
		}

		.duration {
			position: absolute;
			right: 7px;
			bottom: 7px;
			padding: 3px 5px;
			background: rgba(0,0,0,.85);
			border-radius: 3px;
			font-size: 12px;
		}

		.live-badge {
			position: absolute;
			left: 7px;
			top: 7px;
			padding: 4px 7px;
			background: #e00000;
			border-radius: 3px;
			font-size: 11px;
			font-weight: bold;
		}

		.card-info {
			padding: 12px;
		}

		.card-title {
			font-size: 16px;
			font-weight: bold;
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;
		}

		.card-meta {
			margin-top: 7px;
			color: #888;
			font-size: 13px;
		}

		.empty {
			color: #777;
			padding: 30px 0;
		}

		#player {
			display: none;
			position: fixed;
			inset: 0;
			z-index: 100;
			background: #000;
		}

		#player .video-js {
			width: 100%;
			height: 100%;
		}

		#closePlayer {
			position: absolute;
			top: 20px;
			right: 25px;
			z-index: 101;
			width: 42px;
			height: 42px;
			border: 0;
			border-radius: 50%;
			background: rgba(0,0,0,.7);
			color: #fff;
			font-size: 25px;
			cursor: pointer;
		}

		.vjs-control-bar {
			z-index: 102;
		}

		@media (max-width: 600px) {
			header {
				padding: 0 18px;
				gap: 20px;
			}

			header img {
				width: 120px;
			}

			nav {
				gap: 14px;
			}

			nav a {
				font-size: 13px;
			}

			main {
				padding: 20px 18px 40px;
			}

			.hero {
				min-height: 280px;
				padding: 25px;
			}

			.grid {
				grid-template-columns: repeat(2, minmax(0, 1fr));
				gap: 12px;
			}
		}