:root {
	--mh-bg: #090909;
	--mh-surface: #1a1a1a;
	--mh-text: #ffffff;
	--mh-red: #d60000;
	--mh-red-alt: #e21b1b;
	--mh-gold: #f4c542;
	--mh-muted: #bbbbbb;
	--mh-border: #2b2b2b;
	--mh-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
	--mh-radius: 14px;
	--mh-bg-image-mobile: none;
	--mh-bg-image-tablet: none;
	--mh-bg-image-desktop: none;
	--mh-bg-filter: none;
	--mh-bg-overlay-alpha: 0.62;
	--mh-bg-image-opacity: 0.24;
	--mh-bg-size: cover;
	--mh-bg-position: center center;
	--mh-bg-repeat: no-repeat;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 12% 0%, rgba(214, 0, 0, 0.22), transparent 36%),
		radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.06), transparent 30%),
		linear-gradient(165deg, #0b0b0b 0%, var(--mh-bg) 46%, #050505 100%);
	color: var(--mh-text);
	font-family: "Bahnschrift", "Trebuchet MS", "Segoe UI", "Tahoma", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	position: relative;
	isolation: isolate;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	background-image: var(--mh-bg-image-desktop);
	background-size: var(--mh-bg-size);
	background-position: var(--mh-bg-position);
	background-repeat: var(--mh-bg-repeat);
	filter: var(--mh-bg-filter);
	opacity: var(--mh-bg-image-opacity);
	z-index: -2;
	pointer-events: none;
}

body::after {
	content: "";
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, var(--mh-bg-overlay-alpha));
	z-index: -1;
	pointer-events: none;
}

a {
	color: #fff;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	width: min(1180px, 92%);
	margin: 0 auto;
}

.site-header {
	position: relative;
	z-index: 30;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(90deg, rgba(214, 0, 0, 0.16), rgba(17, 17, 17, 0.95));
}

.site-header.is-sticky {
	position: sticky;
	top: 0;
	backdrop-filter: blur(6px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
}

.site-branding {
	display: flex;
	align-items: center;
	line-height: 0;
}

.brand-link {
	display: flex;
	align-items: center;
	max-width: 100%;
	width: fit-content;
	line-height: 0;
}

.brand-image {
	display: block;
	max-height: 64px;
	width: auto;
	object-fit: contain;
}

.header-cta-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.cta-form {
	margin: 0;
}

.btn {
	appearance: none;
	border: 1px solid transparent;
	outline: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 18px;
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.2;
	border-radius: 999px;
	color: #fff;
	background: linear-gradient(180deg, var(--mh-red-alt), var(--mh-red));
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
	box-shadow: 0 8px 16px rgba(214, 0, 0, 0.28);
}

.btn-header {
	padding: 10px 16px;
	font-size: 0.92rem;
}

.btn-daftar {
	background: linear-gradient(180deg, #ffffff, #f7f7f7);
	color: #9e0000;
}

.front-main,
.standard-main {
	padding: 16px 0 40px;
	position: relative;
	z-index: 1;
}

.home-main-title {
	margin: 8px 0 16px;
	font-size: clamp(1.4rem, 3.6vw, 2.2rem);
	line-height: 1.24;
	letter-spacing: 0.2px;
}

.hero-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	justify-content: stretch;
}

.hero-info-card,
.content-card,
.table-panel,
.warning-card,
.faq-item,
.page-card {
	background: linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(12, 12, 12, 0.98));
	border: 1px solid var(--mh-border);
	border-radius: var(--mh-radius);
	box-shadow: var(--mh-shadow);
}

.hero-info-card {
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	height: 100%;
}

.hero-info-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
}

.hero-info-table th,
.hero-info-table td {
	padding: 8px;
	vertical-align: top;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-info-table tr:last-child th,
.hero-info-table tr:last-child td {
	border-bottom: 0;
}

.hero-info-table th {
	width: 33%;
	color: var(--mh-gold);
	font-weight: 700;
	text-align: left;
}

.hero-mobile-action {
	display: none;
}

.btn-cta {
	width: 100%;
	padding: 12px 18px;
	font-size: 1.02rem;
}

.btn-secondary {
	background: linear-gradient(180deg, #ffffff, #f7f7f7);
	color: #a00000;
}

.hero-banner-card {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	min-height: 0;
	width: 100%;
	max-width: 100%;
	align-self: start;
	height: auto;
	margin: 0 auto;
}

.hero-banner-image {
	width: 100%;
	max-width: 100%;
	max-height: min(62vh, 560px);
	height: auto;
	margin: 0 auto;
	object-fit: contain;
}

.hero-banner-placeholder {
	width: 100%;
	min-height: 190px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #d4d4d4;
	border: 1px dashed rgba(255, 255, 255, 0.25);
	border-radius: 10px;
	padding: 14px;
}

@media (max-width: 980px) {
	body::before {
		background-image: var(--mh-bg-image-tablet);
	}

	.hero-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.hero-banner-card {
		order: 1;
	}

	.hero-mobile-action {
		display: block;
		order: 2;
	}

	.hero-info-card {
		order: 3;
	}

	.hero-banner-image {
		max-height: min(46vh, 420px);
	}
}

@media (max-width: 768px) {
	body::before {
		background-image: var(--mh-bg-image-mobile);
	}

	.container {
		width: min(680px, 94%);
	}

	.header-inner {
		padding: 8px 0;
		gap: 10px;
	}

	.brand-image {
		max-height: 48px;
	}

	.header-cta-wrap {
		gap: 6px;
	}

	.btn-header {
		padding: 8px 9px;
		font-size: 0.77rem;
		min-width: auto;
		gap: 5px;
		border-radius: 9px;
	}

	.btn-header .btn-text {
		display: none;
	}

	.btn-header .btn-icon,
	.btn-header .btn-icon svg {
		width: 16px;
		height: 16px;
	}

	.home-main-title {
		margin: 6px 0 10px;
		font-size: clamp(1.1rem, 5vw, 1.45rem);
	}

	.hero-layout {
		gap: 8px;
	}

	.hero-info-card {
		padding: 8px;
		gap: 8px;
	}

	.hero-info-table {
		font-size: 0.76rem;
	}

	.hero-info-table th,
	.hero-info-table td {
		padding: 5px 6px;
	}

	.hero-info-table th {
		width: 37%;
	}

	.hero-banner-image {
		max-height: min(38vh, 300px);
	}

	.btn-cta {
		font-size: 0.84rem;
		padding: 9px 10px;
	}

	.hero-mobile-action .btn-cta {
		font-size: 0.9rem;
		padding: 10px 12px;
	}
}

@media (max-width: 420px) {
	.hero-info-table {
		font-size: 0.71rem;
	}

	.hero-banner-image {
		max-height: min(32vh, 220px);
	}
}
