:root {
	--black: #111;
	--white: #fff;
	--orange: #ff6307;
	--blue: #1e78b7;
	--green: #70b61f;
	--red: #d93025;
	--text: rgba(255, 255, 255, 0.92);
	--border: rgba(255, 255, 255, 0.12);
	--surface: rgba(255, 255, 255, 0.98);
	--line: rgba(0, 0, 0, 0.12);
	--line-strong: rgba(0, 0, 0, 0.16);
	--line-soft: rgba(0, 0, 0, 0.06);
	--text-muted: rgba(0, 0, 0, 0.7);
	--icon-muted: rgba(0, 0, 0, 0.55);
	--pad: 10px;
	--gap: 8px;
	--mg: 15px;
	--maxw: 1500px;
	--ts: 0 0 2px var(--black);
	--fs: 15px;
	--fs-lg: 18px;
	--qf-h: 64px;
	--ctl-h: 43px;
	--header-float-h: 70px;
	--headline-float-h: 40px;
}

* {
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

body {
	margin: 0;
	padding-bottom: calc(var(--qf-h) + 90px);
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: var(--fs);
	line-height: 1.5;
	background: var(--black);
	color: var(--text);
}

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

a {
	color: var(--orange);
	text-decoration: none;
}

a:hover {
	color: var(--orange);
	text-decoration: none;
}

hr {
	border: 0;
	height: 1px;
	background: var(--border);
	margin: var(--pad) 0;
}

.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0;
	border-left: 1px solid;
	border-right: 1px solid;
	border-image: linear-gradient(var(--orange), var(--orange)) 1;
}

#header {
	display: contents;
}

.top-header {
	position: sticky;
	top: 0;
	z-index: 1500;
	height: var(--header-float-h);
	background: var(--black);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--pad) 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
	height: 50px;
	width: auto;
}

.livechat-btn {
	background: linear-gradient(var(--orange), var(--orange));
	color: var(--white);
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 20px;
	text-shadow: var(--ts);
	animation: blink 1s infinite;
}

@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

a.livechat-btn,
a.livechat-btn:hover,
a.livechat-btn:focus,
a.livechat-btn:active {
	color: var(--white);
	text-decoration: none;
	background: linear-gradient(var(--orange), var(--orange));
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: var(--white);
}

a.livechat-btn:hover {
	transform: scale(1.06);
}

.market-logo {
	position: relative;
	border-radius: 0;
	overflow: hidden;
	border: 0;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
}

.market-logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	transform: scale(1);
	filter: brightness(1);
	transition: transform 0.18s ease, filter 0.18s ease;
	background: transparent;
}

.market-logo:hover:not(.is-active) .market-logo-img {
	transform: scale(1.06);
	filter: brightness(1);
}

.market-logo.is-active .market-logo-img {
	transform: scale(1.14);
	filter: brightness(0.45);
}

.market-logo-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--pad);
	background: transparent;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.18s ease;
}

.market-logo.is-active .market-logo-overlay {
	opacity: 1;
	pointer-events: auto;
}

.market-logo:focus,
.market-logo:focus-visible {
	outline: none;
}

.market-logo-overlay .livechat-btn {
	background: linear-gradient(var(--orange), var(--orange));
	color: var(--white);
	text-decoration: none;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: var(--white);
	animation: none;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
	line-height: 1.05;
	text-align: center;
	white-space: normal;
}

.market-logo-overlay a.livechat-btn:hover {
	background: linear-gradient(var(--orange), var(--orange));
	color: var(--white);
	text-decoration: none;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: var(--white);
}

.market-logo-overlay .livechat-btn span {
	display: block;
}

.headline-bar {
	position: sticky;
	top: var(--header-float-h);
	z-index: 1495;
	display: flex;
	align-items: center;
	background: var(--black);
	height: var(--headline-float-h);
	overflow: hidden;
}

.headline-bar::before {
	content: "";
	position: absolute;
	top: 0;
	left: 35px;
	right: 0;
	height: 2px;
	background-color: var(--orange);
}

.headline-bar::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 25px;
	right: 0;
	height: 2px;
	background-color: var(--orange);
}

.headline-icon {
	position: relative;
	width: 35px;
	height: 100%;
	background-image: linear-gradient(var(--orange), var(--orange));
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
	transform: skewX(-25deg);
	z-index: 2;
	overflow: visible;
}

.headline-icon::before {
	content: "";
	position: absolute;
	top: 0;
	left: -10px;
	width: 35px;
	height: 100%;
	background-image: linear-gradient(var(--orange), var(--orange));
	z-index: 1;
}

.headline-icon::after {
	content: "";
	position: absolute;
	right: -15px;
	top: 0;
	width: 10px;
	height: 100%;
	background-image: linear-gradient(var(--orange), var(--orange));
	z-index: 1;
}

.headline-icon i {
	color: var(--white);
	font-size: 16px;
	transform: skewX(25deg);
	z-index: 3;
	position: relative;
}

.headline-marquee {
	flex: 1;
	overflow: hidden;
	position: relative;
	z-index: 0;
}

.marquee {
	display: inline-block;
	white-space: nowrap;
	padding-left: 100%;
	animation: marquee 12s linear infinite;
	color: var(--white);
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
}

.marquee a {
	color: transparent;
	background: linear-gradient(var(--orange), var(--orange));
	-webkit-background-clip: text;
	background-clip: text;
	font-weight: bold;
}

@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-100%); }
}

.headline-right-skew {
	position: relative;
	width: 35px;
	height: 100%;
	background-image: linear-gradient(var(--orange), var(--orange));
	margin-right: 8px;
	transform: skewX(-25deg);
	z-index: 2;
}

.headline-right-skew::after {
	content: "";
	position: absolute;
	top: 0;
	right: -8px;
	width: 20px;
	height: 100%;
	background-image: linear-gradient(var(--orange), var(--orange));
	transform: skewX(25deg);
	z-index: -1;
}

.header-banner {
	display: block;
}

.header-banner img {
	width: 100%;
	display: block;
}

.header-buttons {
	width: 100%;
	display: flex;
	text-transform: uppercase;
}

.header-buttons a {
	flex: 1;
	text-align: center;
	padding: 14px 0;
	color: var(--white);
	font-size: 16px;
	font-weight: bold;
	text-shadow: var(--ts);
}

.btn-login {
	background-image: linear-gradient(to right, var(--blue) 0%, var(--blue) 100%);
}

.btn-daftar {
	background-image: linear-gradient(to right, var(--green) 0%, var(--green) 100%);
}

.header-buttons i {
	margin-right: 8px;
}

#siteNav {
	position: sticky;
	top: calc(var(--header-float-h) + var(--headline-float-h));
	z-index: 1490;
	display: flex;
	flex-wrap: nowrap;
	gap: var(--gap);
	padding: var(--pad);
	background: var(--black);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 14px;
}

#siteNav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 0;
	min-width: 0;
	min-height: 42px;
	padding: 0 12px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--white);
	font-size: 14px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	text-shadow: var(--ts);
	white-space: normal;
}

#siteNav a:hover,
#siteNav a.active {
	background: var(--orange);
	border-color: var(--orange);
	color: var(--white);
}

.main-content {
	display: grid;
	grid-template-columns: 1fr minmax(auto, 340.95px);
	gap: 15px;
	padding: var(--pad);
	background: var(--black);
}

.article-body {
	background: var(--surface);
	padding: 10px;
	color: var(--black);
}

.article-body h1 {
	margin: 0;
	text-align: center;
	text-transform: uppercase;
}

.article-body .h1-des {
	margin: 5px 0 10px;
	font-size: 28px;
	text-align: center;
	text-transform: uppercase;
}

.article-body h2 {
	text-transform: uppercase;
	margin-bottom: 0;
}

.article-body p {
	text-align: justify;
}

.article-body ol {
	padding-left: 25px;
}

.article-body ul {
	padding: 5px 0 15px 30px;
}

.article-body a {
	color: transparent;
	background: linear-gradient(var(--orange), var(--orange));
	-webkit-background-clip: text;
	background-clip: text;
	font-weight: bold;
	text-decoration: none;
}

.article-body a:hover {
	color: var(--black);
	background: none;
	-webkit-text-fill-color: var(--black);
}

.cat-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 42px;
	box-sizing: border-box;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.cat-head-left {
	display: flex;
	align-items: center;
	gap: var(--gap);
	min-width: 0;
}

.cat-refresh {
	border: 0;
	background: transparent;
	color: var(--black);
	padding: 0;
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.cat-refresh:hover,
.cat-refresh:focus-visible {
	color: var(--orange);
}

.article-body .cat-head-left .cat-refresh {
	color: var(--black);
	background: none;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: currentColor;
	text-decoration: none;
}

.article-body .cat-head-left .cat-refresh:hover,
.article-body .cat-head-left .cat-refresh:focus-visible {
	color: var(--orange);
	background: none;
	-webkit-text-fill-color: currentColor;
}

.cat-updated {
	font-size: 14px;
	font-weight: bold;
	color: var(--text-muted);
	white-space: nowrap;
}

.cat-date,
.cat-time {
	display: inline;
}

.cat-time::before {
	content: " - ";
}

.cat-toolbar {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--gap);
	margin: var(--pad) 0;
	align-items: center;
}

.cat-filters {
	display: flex;
	gap: var(--gap);
	width: 100%;
}

.cat-chip {
	flex: 1;
	height: var(--ctl-h);
	border: 1px solid var(--line-strong);
	background: rgba(0, 0, 0, 0.03);
	padding: 0 var(--pad);
	border-radius: 0;
	font-weight: bold;
	cursor: pointer;
	text-align: center;
	text-shadow: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.18s ease;
}

.cat-chip:hover {
	transform: scale(1.04);
}

.cat-chip.is-active {
	background: linear-gradient(var(--orange), var(--orange));
	color: var(--white);
	border-color: var(--orange);
	text-shadow: var(--ts);
}

.cat-dd {
	position: relative;
	width: 100%;
}

.cat-dd-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	cursor: pointer;
	color: var(--black);
}

.cat-dd-panel {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	background: var(--surface);
	border: 1px solid var(--line-strong);
	border-radius: 0;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
	padding: 0;
	z-index: 50;
}


.cat-dd-empty {
	padding: var(--pad);
	color: var(--icon-muted);
	font-size: 13px;
}

.cat-cal-control {
	position: relative;
	display: inline-flex;
	align-items: center;
	align-self: center;
	margin-left: 0;
	line-height: 0;
	flex: 0 0 auto;
}

.cat-cal-trigger {
	appearance: none;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	flex: 0 0 auto;
}

.cat-cal-trigger:focus {
	outline: none;
}

.cat-cal-trigger:disabled {
	opacity: 1;
	cursor: default;
}

.cat-cal-icon {
	display: block;
	width: 30px;
	height: 30px;
	overflow: visible;
	filter: none;
}

.cat-cal-icon path {
	stroke: var(--black);
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	transition: stroke 0.18s ease;
}

#buktiDetailCalendarBtn:hover .cat-cal-icon path,
#buktiDetailCalendarBtn:focus-visible .cat-cal-icon path {
	stroke: var(--orange);
}

.cat-cal-day {
	position: absolute;
	top: 58%;
	left: 49%;
	transform: translate(-50%, -50%);
	min-width: 10px;
	font-size: 11px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	color: var(--black);
	text-shadow: none;
	pointer-events: none;
}

.entry-card {
	display: flex;
	align-items: stretch;
	gap: var(--gap);
	padding: var(--pad);
	margin: 0 0 var(--mg);
	background: var(--surface);
	border: 1px solid var(--line);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.entry-card.is-flash {
	border-color: var(--orange);
	box-shadow: inset 0 0 0 1px var(--orange);
}

.entry-card .market-logo {
	width: 120px;
	height: 120px;
	flex: 0 0 120px;
	align-self: center;
}

.entry-body {
	min-width: 0;
	flex: 1;
}

.entry-title {
	margin: 0;
	font-weight: bold;
	line-height: 1.25;
	color: var(--black);
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 50px;
	margin-top: 5px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--text-muted);
	font-weight: bold;
}

.entry-meta-item {
	display: inline-flex;
	align-items: center;
	font-weight: bold;
}

.entry-meta .entry-meta-link {
	display: inline-flex;
	align-items: center;
	color: var(--orange);
	font-weight: bold;
	text-decoration: none;
	background: none;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: var(--orange);
}

.entry-meta .entry-meta-link:hover,
.entry-meta .entry-meta-link:active,
.entry-meta .entry-meta-link.is-active {
	color: var(--black);
	text-decoration: none;
	background: none;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: var(--black);
}

.entry-desc {
	margin: 15px 0 0;
	color: rgba(0, 0, 0, 0.75);
	line-height: 1.5;
}

.entry-desc a {
	color: var(--orange);
	font-weight: bold;
	text-decoration: none;
	background: none;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: var(--orange);
}

.entry-desc a:hover,
.entry-desc a:active,
.entry-desc a.is-active {
	color: var(--black);
	text-decoration: none;
	background: none;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: var(--black);
}

.entry-action {
	margin-top: var(--pad);
}

.entry-action .entry-btn-view {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--gap);
	padding: var(--pad);
	border: 0;
	background: var(--orange);
	color: var(--white);
	text-shadow: var(--ts);
	font-weight: bold;
	cursor: pointer;
	text-decoration: none;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: var(--white);
	transition: background 0.18s ease, color 0.18s ease;
}

.entry-action .entry-btn-view svg {
	width: 18px;
	height: 18px;
	filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.35));
}

.entry-action .entry-btn-view:hover,
.entry-action .entry-btn-view:active,
.entry-action .entry-btn-view.is-active {
	background: var(--black);
	color: var(--white);
	text-decoration: none;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: var(--white);
}

#sidebar {
	min-width: 0;
}

.panel--sidebar {
	background: transparent;
	border: 0;
	box-shadow: none;
	position: sticky;
	top: 15px;
}

.widget {
	background: transparent;
	border: 0;
	box-shadow: none;
	margin-bottom: calc(var(--pad) + 14px);
}

.widget:last-child {
	margin-bottom: 0;
}

.widget__title {
	font-weight: bold;
	margin: 0 0 var(--pad);
	position: relative;
	color: var(--white);
}

.widget__title::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	margin-top: 6px;
	background: linear-gradient(90deg, var(--orange), var(--orange));
}


.promo {
	position: relative;
	overflow: hidden;
	background: var(--black);
	touch-action: pan-y;
}

.promo__track {
	display: flex;
	width: 100%;
	will-change: transform;
}

.promo__slide {
	flex: 0 0 100%;
}

.promo__slide a {
	display: block;
	width: 100%;
}

.promo__slide img {
	width: 100%;
	height: auto;
	display: block;
	-webkit-user-drag: none;
	user-select: none;
}

.promo__ctrl {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0,0,0,0.6);
	color: var(--white);
	border: 0;
	cursor: pointer;
	z-index: 3;
}

.promo__prev {
	left: 0;
}

.promo__next {
	right: 0;
}

.promo__ctrl:hover {
	background: var(--orange);
	color: var(--white);
}

.promo__dots {
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
	z-index: 4;
}

.promo__dot {
	width: 12px;
	height: 12px;
	border-radius: 2px;
	background: rgba(255,255,255,0.55);
	border: 1px solid rgba(0, 0, 0, 0.35);
	cursor: pointer;
}

.promo__dot.is-active {
	background: var(--orange);
	border-color: var(--orange);
}

.list {
	margin: 0;
	padding: var(--pad);
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.15);
}

.sidebar-links {
	list-style: none;
	margin: 0;
	font-weight: bold;
}

.sidebar-links li {
	margin-bottom: var(--pad);
}

.sidebar-links li:last-child {
	margin-bottom: 0;
}

.sidebar-links > li > a:not(.pred-archive__entry) {
	display: inline-block;
	color: var(--orange);
	text-decoration: none;
}

.sidebar-links > li > a:not(.pred-archive__entry):hover,
.sidebar-links > li > a:not(.pred-archive__entry):focus {
	background: linear-gradient(var(--orange), var(--orange));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.faq-section {
	border-top: 1px solid var(--black);
}

.faq-section .faq-container {
	margin: var(--mg) auto 0;
}

.faq-item {
	background: var(--black);
	border-radius: 6px;
	margin-bottom: var(--pad);
	overflow: hidden;
}

.faq-item:last-child {
	margin-bottom: 0;
}

.faq-item input {
	display: none;
}

.faq-item label {
	display: block;
	padding: var(--pad);
	background-image: linear-gradient(var(--orange), var(--orange));
	cursor: pointer;
}

.faq-item .faq-answer {
	max-height: 0;
	overflow: hidden;
	color: var(--white);
	padding: 0 calc(var(--pad) * 2);
}

.faq-item .faq-answer p {
	margin: 0;
}

.faq-item input:checked ~ .faq-answer {
	max-height: 300px;
	padding: var(--pad);
}

.list--cats {
	list-style: none;
	margin: 0;
}

.list--cats li {
	padding-bottom: 6px;
}

.list--cats li:not(:first-child) {
	padding-top: var(--gap);
}

.list--cats a {
	display: block;
	color: var(--black);
	font-weight: bold;
}

.list--latest {
	list-style: none;
	margin: 0;
}

.list--latest a {
	display: block;
	color: var(--black);
	padding: 6px 0;
}

.list--latest a:hover {
	color: var(--black);
	text-decoration: underline;
}

.footernav{
	background: var(--black);
}

.footernav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 45px;
	list-style: none;
	padding: 16px;
	margin: 0;
	font-size: 18px;
	border-top: 1px solid;
	border-image: linear-gradient(var(--orange), var(--orange)) 1;
}

.footernav__list a {
	color: var(--white);
	text-decoration: none;
}

.footernav__list a:hover,
.footernav__list a.active {
	color: var(--orange);
}

.copyright-info {
	text-align: center;
	font-size: 14px;
	color: var(--white);
	padding: 0 0 80px;
	text-transform: uppercase;
	background: var(--black);
}

.copyright-info::before {
	content: "";
	display: block;
	height: 1px;
	background: linear-gradient(to right, var(--orange), var(--orange));
	margin-bottom: 8px;
}

.copyright-info a {
	color: transparent;
	background: linear-gradient(var(--orange), var(--orange));
	-webkit-background-clip: text;
	background-clip: text;
	font-weight: bold;
	text-decoration: none;
}

.floating-footer {
	position: fixed;
	bottom: 0;
	width: var(--maxw);
	max-width: 100%;
	background-image: linear-gradient(var(--orange), var(--orange));
	z-index: 1000;
	box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
}

.footer-container {
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 5px;
	text-shadow: 0 0 4px var(--black);
}

.footer-container a {
	flex: 1;
	text-align: center;
	color: var(--white);
	text-decoration: none;
	font-size: 13px;
	font-weight: bold;
	padding: 10px;
}

.footer-container a i {
	display: block;
	font-size: 18px;
}

.floating-footer a {
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.floating-footer a:hover,
.floating-footer a.active {
	background-color: var(--black);
}

.back-to-top {
	position: fixed;
	bottom: calc(var(--qf-h) + 90px);
	right: 20px;
	background: var(--blue);
	color: var(--white);
	border: 0;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	text-decoration: none;
	transition: opacity 0.3s, transform 0.3s;
	opacity: 0;
	visibility: hidden;
	z-index: 3000;
}

.back-to-top:hover {
	background: var(--blue);
	transform: scale(1.05);
}

body:not(:target) .back-to-top {
	opacity: 1;
	visibility: visible;
}

.cat-searchbar {
	width: 100%;
	height: var(--ctl-h);
	display: flex;
	align-items: center;
	gap: var(--gap);
	background: var(--surface);
	border: 1px solid var(--line-strong);
	padding: 0 var(--pad);
	border-radius: 0;
}

.cat-searchbar input {
	border: 0;
	outline: none;
	width: 100%;
	height: 100%;
	font-size: 14px;
	line-height: 1.5;
	padding: 0;
	background: transparent;
	color: var(--black);
	min-width: 0;
}

.cat-searchbar-btn {
	border: 0;
	background: transparent;
	cursor: pointer;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 var(--pad);
	font-size: 18px;
	line-height: 1;
	color: var(--icon-muted);
}

.cat-searchbar-btn:hover {
	color: var(--orange);
}

.cat-dd-toggle[aria-expanded="false"] i.fa-search {
	display: none;
}

.cat-dd-searchbar {
	border: 0;
	border-bottom: 1px solid var(--line-strong);
}

.cat-dd-list {
	max-height: calc(var(--ctl-h) * 8);
	overflow: auto;
	margin-top: 0;
	border-top: 0;
	box-sizing: border-box;
}

.cat-dd-item {
	height: var(--ctl-h);
	box-sizing: border-box;
	padding: 0 var(--pad);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: var(--gap);
	cursor: pointer;
	font-weight: bold;
	color: var(--black);
}

.cat-dd-item:hover {
	background: var(--line-soft);
}

.cat-dd-toggle.cat-searchbar {
	appearance: none;
	-webkit-appearance: none;
	outline: none;
	box-shadow: none;
	border: 1px solid var(--line-strong);
	background: var(--surface);
	border-radius: 0;
	justify-content: flex-start;
}

.cat-dd-label {
	flex: 1;
	text-align: left;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.5;
}

.cat-dd-toggle.cat-searchbar .fa-caret-down {
	margin-left: auto;
	width: 32px;
	text-align: center;
	font-size: 14px;
	line-height: 1;
	color: var(--black);
}

.cat-dd-toggle.cat-searchbar:hover .fa-caret-down,
.cat-dd-toggle.cat-searchbar .fa-caret-down:hover {
	color: var(--orange);
}

.cat-dd-panel .cat-searchbar-btn {
	border: 0;
	border-left: 0;
	background: transparent;
	width: 32px;
	min-width: 32px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	box-shadow: none;
	color: var(--orange);
}

.cat-dd-panel .cat-searchbar-btn:hover {
	color: var(--black);
}

.cat-dd-panel .cat-searchbar-btn .fa-caret-up {
	font-size: 14px;
	line-height: 1;
}

.cat-dd-list {
	border: 0;
	border-top: 0;
}

.pred-archive__list {
	list-style: none;
	margin: 0;
	padding: var(--pad);
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.15);
}

.pred-archive__item {
	list-style: none;
	margin-bottom: var(--pad);
}

.pred-archive__item:last-child {
	margin-bottom: 0;
}

.pred-archive__entry,
.pred-archive__toggle {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	font: inherit;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
	color: var(--black);
}

.pred-archive__entry::before,
.pred-archive__toggle::before {
	display: none;
	content: "";
}

.pred-archive__icon {
	color: var(--blue);
	flex: 0 0 auto;
	margin: 4px var(--pad) 0 0;
	background: none;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: currentColor;
}

.pred-archive__text {
	flex: 1 1 auto;
	min-width: 0;
	line-height: 1.35;
	font-weight: bold;
	color: var(--black);
	background: none;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: currentColor;
}

#buktiLatestWidget .pred-archive__text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.sidebar-links .pred-archive__entry:hover,
.sidebar-links .pred-archive__entry:focus,
.pred-archive__toggle:hover,
.pred-archive__toggle:focus {
	color: var(--black);
	background: none;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: currentColor;
}

.sidebar-links .pred-archive__entry:hover .pred-archive__text,
.sidebar-links .pred-archive__entry:focus .pred-archive__text,
.pred-archive__toggle:hover .pred-archive__text,
.pred-archive__toggle:focus .pred-archive__text {
	color: var(--orange);
	background: none;
	-webkit-background-clip: border-box;
	background-clip: border-box;
	-webkit-text-fill-color: currentColor;
}

.pred-archive__children {
	margin: var(--pad) 0 0 calc(var(--pad) + var(--pad));
	padding-left: 18px;
	list-style: disc outside;
}

.pred-archive__children li {
	display: list-item;
	margin-bottom: var(--pad);
}

.pred-archive__children li:last-child {
	margin-bottom: 0;
}

.pred-archive__children li::marker {
	color: var(--black);
}

.pred-archive__children a {
	display: inline;
	color: var(--black);
	font-weight: normal;
	text-decoration: none;
}

.pred-archive__children a:hover,
.pred-archive__children a:focus {
	color: var(--orange);
	text-decoration: none;
}

.pred-archive__item--year:not(.is-expanded) .pred-archive__children {
	display: none;
}

.pred-archive__empty {
	font-size: 13px;
	color: rgba(0, 0, 0, 0.6);
}

.maintenance-wrap {
	width: 100%;
	margin: 0;
	padding: 0;
	line-height: 0;
}

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

.pending-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.pending-popup-dialog {
	background: var(--white);
	padding: 24px;
	max-width: 400px;
	width: 100%;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pending-popup-message {
	color: var(--black);
	font-size: 15px;
	line-height: 1.5;
	margin: 0 0 20px 0;
	text-align: center;
}

.pending-popup-dots {
	display: inline-block;
}

.pending-popup-dots span {
	display: inline-block;
	opacity: 0;
	animation: pendingPopupDot 1.4s infinite;
}

.pending-popup-dots span:nth-child(1) {
	animation-delay: 0s;
}

.pending-popup-dots span:nth-child(2) {
	animation-delay: 0.2s;
}

.pending-popup-dots span:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes pendingPopupDot {
	0%, 60%, 100% {
		opacity: 0;
	}
	30% {
		opacity: 1;
	}
}

.pending-popup-actions {
	display: flex;
	gap: 10px;
	justify-content: stretch;
}

.pending-popup-btn {
	flex: 1;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	min-width: 100px;
	color: var(--white);
	text-shadow: var(--ts);
	transition: background 0.15s;
}

.pending-popup-btn-primary {
	background: var(--green);
}

.pending-popup-btn-primary:hover:not(:disabled),
.pending-popup-btn-primary:focus-visible:not(:disabled) {
	background: var(--black);
}

.pending-popup-btn-primary:disabled {
	opacity: 0.85;
	cursor: progress;
}

.pending-popup-btn-primary:disabled:hover {
	background: var(--green);
}
.pending-popup-btn-secondary {
	background: var(--red);
}

.pending-popup-btn-secondary:hover,
.pending-popup-btn-secondary:focus-visible {
	background: var(--black);
}

@media (max-width: 768px) {
	#siteNav {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: calc((100% - var(--gap)) / 2);
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		scroll-padding-inline: var(--pad);
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	#siteNav::-webkit-scrollbar {
		display: none;
	}

	#siteNav a {
		scroll-snap-align: start;
	}

	.footernav__list {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: calc((100% - (var(--gap) * 2)) / 3);
		gap: var(--gap);
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		scroll-padding-inline: var(--pad);
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.footernav__list::-webkit-scrollbar {
		display: none;
	}

	.footernav__list li {
		min-width: 0;
		scroll-snap-align: start;
	}

	.footernav__list a {
		display: block;
		width: 100%;
		text-align: center;
		line-height: 1.3;
		white-space: normal;
	}
    
	.main-content {
		grid-template-columns: 1fr;
	}

	.article-body .h1-des {
		text-align: center;
	}

	.panel--sidebar {
		position: static;
		top: auto;
	}

	#prediksiRefresh,
	#keluaranRefresh,
	#buktiRefreshBtn {
		display: none;
	}

	.cat-head {
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
	}

	.cat-head-left {
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
	}

	.cat-head-left > h1 {
		width: 100%;
	}

	.cat-updated {
		width: 100%;
		text-align: center;
		white-space: normal;
		margin-bottom: var(--pad);
	}

	.cat-toolbar {
		grid-template-columns: 1fr;
	}
	
	.market-logo-img,
	.market-logo:hover:not(.is-active) .market-logo-img,
	.market-logo.is-active .market-logo-img {
		transform: none;
		filter: none;
		transition: none;
	}

	.market-logo-overlay,
	.market-logo.is-active .market-logo-overlay {
		display: none;
		opacity: 0;
		pointer-events: none;
	}
}