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

body {
	background-color: #000;
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	min-height: 100vh;
}

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

/* Header */
.header {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-inner {
	width: 100%;
	max-width: 1200px;
	padding: 0 20px;
	display: flex;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 8px;
}

.logo-icon {
	width: 166px;
	height: 38px;
}

.logo-text {
	font-family: Inter, -apple-system, sans-serif;
	font-size: 20px;
	font-weight: 900;
	color: rgba(255, 255, 255, 1);
}

/* Hero */
.hero {
	width: 100%;
	height: 600px;
	background-image: url("../images/hero_bg.png");
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.hero-content {
	width: 100%;
	height: 128px;
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
	justify-content: center;
}
.hero-content-main {
	width: 100%;
	max-width: 1200px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
	margin: 0 auto;
	/* padding: 0 20px 80px; */
}

.hero-title {
	font-size: 40px;
	font-weight: 700;
	color: rgba(255, 255, 255, 1);
	margin-bottom: 8px;
}

.hero-subtitle {
	font-size: 16px;
	font-weight: 400;
	color: rgba(156, 163, 175, 1);
}

/* Featured / Now Streaming */
.featured {
	padding: 64px 0 80px;
	display: flex;
	justify-content: center;
}

.featured-inner {
	width: 100%;
	max-width: 1200px;
	padding: 0 20px;
}

.featured-title {
	font-size: 32px;
	font-weight: 700;
	color: rgba(255, 255, 255, 1);
	margin-bottom: 24px;
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 25px;
	row-gap: 48px;
}

.card {
	display: flex;
	flex-direction: column;
}

.card-cover {
	width: 100%;
	aspect-ratio: 220 / 293;
	border-radius: 12px;
	object-fit: cover;
}

.card-title {
	margin-top: 16px;
	font-size: 15px;
	font-weight: 510;
	color: rgba(255, 255, 255, 1);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Footer */
.footer {
	background-color: rgba(18, 18, 18, 1);
	padding: 88px 0 88px;
	display: flex;
	justify-content: center;
}

.footer-inner {
	width: 100%;
	max-width: 1200px;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.footer-brand {
	max-width: 500px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.footer-logo-icon {
	width: 166px;
	height: 38px;
}

.footer-logo-text {
	font-size: 24px;
	font-weight: 1000;
	color: rgba(255, 255, 255, 1);
}

.footer-desc {
	font-size: 14px;
	font-weight: 400;
	color: rgba(156, 163, 175, 1);
	line-height: 1.6;
}

.footer-links {
	display: flex;
	gap: 80px;
}

.footer-col-title {
	font-size: 18px;
	font-weight: 700;
	color: rgba(255, 255, 255, 1);
	margin-bottom: 16px;
}

.footer-col-item {
	font-size: 14px;
	font-weight: 400;
	color: rgba(156, 163, 175, 1);
	margin-bottom: 8px;
}

.footer-col-item a:hover {
	color: #fff;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.header {
		height: 56px;
	}

	.hero {
		height: auto;
		min-height: 360px;
		aspect-ratio: 375 / 480;
	}

	.hero-content {
		padding: 0 20px 40px;
	}

	.hero-title {
		font-size: 28px;
		line-height: 1.2;
	}

	.hero-subtitle {
		font-size: 14px;
	}

	.featured {
		padding: 40px 0 60px;
	}

	.featured-title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.cards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		row-gap: 32px;
	}

	.card-title {
		font-size: 13px;
		margin-top: 12px;
	}

	.footer {
		padding: 48px 0;
	}

	.footer-inner {
		flex-direction: column;
		gap: 40px;
	}

	.footer-links {
		flex-direction: column;
		gap: 32px;
	}
	.logo-icon {
		width: 105px;
		height: 24px;
	}
  .footer-logo-icon {
    width: 105px;
    height: 24px;
  }
  .hero-content-main {
    padding-left: 0;
    padding-right: 0;
  }
}
