body {
	background: url('/images/Background.webp') no-repeat center top;
	background-size: cover;
	background-attachment: fixed;
	margin: 0;
	padding: 0;
	font-family: "Segoe UI", Roboto, sans-serif;
}

.container {
	max-width: 1500px;
	margin: 0 auto;
	border-left: 1px solid;
    border-right: 1px solid;
    border-image: linear-gradient(#db4ac3, #157dee) 1;
    background: #303031;
}

.topbar {
	background: #020202;
	color: #ddd;
	font-size: 14px;
	padding: 0 16px;
}

.topbar__date {
	padding: 8px 0;
}

.sitehead {
	background: #303031;
	color: #fff;
	padding: 10px 16px;
}

.sitehead__title {
	margin: 0;
	font-size: 40px;
	font-weight: bold;
}

.sitehead__subtitle {
	margin: 6px 0;
	opacity: 0.9;
	font-weight: bold;
}

.globalnav {
	background: #0f0f0f;
	color: #fff;
	position: relative;
	z-index: 100;
}

.globalnav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#topicNav {
	flex: 1 1 auto;
}

#topicNav .nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 45px;                   
	margin: 0;
	padding: 0;
	list-style: none;
}

#topicNav .nav__item {
	position: relative;
	display: inline-flex;
	align-items: stretch;
}

#topicNav .nav__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;                  
	height: 45px;
	padding: 0 16px;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	line-height: 1;
	background: transparent;
}

#topicNav .nav__link:hover,
#topicNav .nav__link:focus-visible {
	background: #FFA500;
	color: #000;
}

#topicNav .nav__caret {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	font-size: 20px;            
	line-height: 1;
	user-select: none;
	cursor: pointer;
}

#topicNav .nav__caret.is-open { 
    transform: rotate(180deg); 
}

#topicNav .nav__sub {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;                 
	list-style: none;
	display: none;
	background: #0f0f0f;
	color: #fff;
	z-index: 100;
}

#topicNav .nav__sub.is-open { 
    display: block; 
}

#topicNav .nav__sub .nav__item { 
    display: block; 
    margin: 0; 
}

#topicNav .nav__sub > .nav__item > .nav__link {
	display: flex;
	align-items: center;
	padding-left: 25px;     
	color: #fff;
	font-weight: bold;
	background: transparent;
	max-width: 100%; 
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#topicNav .nav__sub > .nav__item:last-child > .nav__link {
	border-bottom: none;
}

#topicNav .nav__sub .nav__link:hover,
#topicNav .nav__sub .nav__link:focus-visible {
	background: #FFA500;
	color: #000;
}

#topicNav .nav__sub .nav__sub {
	position: static;       
	min-width: 100%;        
	background: #0f0f0f;
	padding: 0;
	margin: 0;
	display: none;          
}

#topicNav .nav__sub .nav__sub.is-open {
	display: block;         
}

#topicNav .nav__sub .nav__sub > .nav__item {
	display: block;
	margin: 0;
}

#topicNav .nav__sub .nav__sub > .nav__item > .nav__link {
	display: flex;
	align-items: center;
	padding-left: 35px;      
	color: #fff;
	font-weight: bold;
	background: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#topicNav .nav__sub .nav__sub > .nav__item:last-child > .nav__link {
	border-bottom: none;
}

#topicNav .nav__sub .nav__sub > .nav__item > .nav__link:hover,
#topicNav .nav__sub .nav__sub > .nav__item > .nav__link:focus-visible {
	background: #FFA500;
	color: #000;
}

#topicNav ul { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
}

.search-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
}

.search-toggle:hover,
.globalnav.is-search-open .search-toggle {
	background: #FFA500;
	color: #000;
}

.search-toggle .icon { 
    width: 20px; 
    height: 20px; 
}

.search-toggle .icon--close { 
    display: none; 
}

.globalnav.is-search-open .search-toggle .icon--search { 
    display: none; 
}

.globalnav.is-search-open .search-toggle .icon--close  { 
    display: block; 
}

.searchform {
	position: absolute;
	top: 100%;          
	right: 0;    
	background: #fff;
	width: 350px;       
	display: none;
	z-index: 200;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .15s ease, transform .15s ease;
}

.searchform.is-open {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.searchform .searchform__inner {
	display: flex;
	align-items: center;
	padding: 9px;
	margin: 0;          
	max-width: none;    
	border-image: none;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	background: #fff;
}

.searchform input[type="search"] {
	flex: 1 1 auto;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #ccc;
	color: #111;
	outline: none;
}

.searchform .btn--primary {
	height: 40px;
    background-color: #FFA500;
    border: 1px solid #ccc;   
    color: #000;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 14px;
}

.searchform .btn--primary:hover { 
    filter: brightness(-1.07); 
}

.btn:hover {
	filter: brightness(1.08);
}

.rekomendasi {
	background: #020202;
	margin-top: 18px;
}

.rekomendasi__inner {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
}

.rekomendasi__badge-wrap {
	display: flex;
	align-items: center;
	gap: 0;            
	background-image: linear-gradient(#db4ac3, #157dee);
	padding-left: 10px;
}

.dbounce {
	position: relative;
	width: 18px;
	height: 18px;
	color: #FFA500;
}

.dbounce > span {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(#ffdf07, #fb7d31);
	opacity: 0.9;
	animation: dbounce-scale 1.8s ease-in-out infinite;
}

.dbounce > span:nth-child(2) { 
    animation-delay: -.9s; 
}

@keyframes dbounce-scale {
	0%, 100% { transform: scale(0); }
	50% { transform: scale(1); }
}

.rekomendasi__badge {
	padding: 10px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	text-shadow: 0 0 4px #000;
}

.marquee {
	overflow: hidden;
	position: relative;
}

.marquee__track {
	display: flex;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
	white-space: nowrap;
	will-change: transform;
	animation: marquee-loop 45s linear infinite;
}

.marquee:hover .marquee__track { 
    animation-play-state: paused; 
}

@keyframes marquee-loop {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.marquee__item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.marquee__thumb {
	width: 46px;
	height: 32px;
	object-fit: cover;
}

.marquee__title {
	font-size: 14px;
	color: #111;
	font-weight: 600;
	line-height: 1.4;
	white-space: nowrap;
}

.grid {
	display: grid;
	grid-template-columns: 2fr 1.2fr 1fr;
	gap: 18px;
	padding: 18px 0;
}

.panel {
	background: #fff;
	border: 1px solid #e7e7e7;
	overflow: hidden;
}

.panel--highlight {
	background: transparent;
	border: 0;
	padding-left: 16px;
}

.panel__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;           
	padding: 8px 0 0;
	background: transparent;
}

.headline {
	display: inline-flex;
	flex-direction: column;        
	align-items: flex-start;
	gap: 8px;  
}

.headline__bar {
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #db4ac3, #157dee);
	border-radius: 0;
}

.headline__text {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
	color: #fff;
}

.panel__content {
	background: #fff;
	border: 1px solid #e7e7e7;
	margin-top: 10px;
	padding: 0;                     
	min-height: 420px;              
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

.slider {
	position: relative;
	background: #fff; 
	overflow: hidden;
}

.slider__track,
.slides,
.slider__inner {
	position: relative;
	width: 100%;
	height: 100%;
}

.slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.slide.is-active {
	opacity: 1;
}

.slide__media {
	width: 100%;
	aspect-ratio: 1 / 1;    
	height: auto;           
	object-fit: cover;       
	display: block;
}

.slide__overlay {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 16px;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.70) 85%);
	color: #fff;
	z-index: 2;
}

.breadcrumb {
	display: flex;
	gap: 6px;
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.bc {
	font-size: 12px;
	font-weight: 800;
	padding: 4px 8px;
	border-radius: 6px;
}

.bc--l1 {
	background: #d93025;
	color: #fff;
}

.bc--l2 {
	background: #eee;
	color: #333;
}

.bc--l3 {
	background: #ff7a1a;
	color: #fff;
}

.slide__title {
	margin: 0 0 6px;
	font-size: 28px;
	line-height: 1.2;
}

.slide__meta {
	font-size: 12px;
	opacity: 0.9;
	margin-bottom: 8px;
}

.slide__desc {
	font-size: 14px;
	margin: 0 0 12px;
	max-width: 85%;
}

.slide__cta {
	display: inline-block;
	background: linear-gradient(90deg, #db4ac3, #157dee);
	color: #fff;
	padding: 10px 14px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 700;
}

.slide__cta:hover {
	filter: brightness(1.08);
}

.slider__controls {
	display: inline-flex;
	gap: 8px;
	align-items: flex-end;         
}

.ctrl {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	border: 1px solid #ddd;
	background: #fff;
	color: #000;
	font-size: 18px;     
	padding-bottom: 5px;
	cursor: pointer;
	border-radius: 0;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.ctrl:hover {
	background: #db4ac3;
	color: #fff;
	border-color: #db4ac3;
}

.panel--popular {
	background: none;
	border: 0;
}

.panel--popular .panel__content {
	background: #fff;
	border: 1px solid #e7e7e7;
	margin-top: 10px;
	padding: 0;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

.popular {
	list-style: none;
	padding: 10px;
	margin: 0;
	height: 540px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pop {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 10px;
	align-items: center;
	background: #fafafa;
	border: 1px solid #e7e7e7;
	border-radius: 10px;
	padding: 8px;
}

.pop__thumb {
	width: 96px;
	height: 64px;
	object-fit: cover;
	border-radius: 6px;
}

.pop__meta {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	align-items: start;
}

.pop__title {
	margin: 2px 0 0;
	font-weight: 700;
	line-height: 1.2;
}

.vcontrols {
	display: inline-flex;
	gap: 8px;
	align-items: center;
}

.vctrl {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	border: 1px solid #ddd;
	background: #fff;
	color: #000;
	font-size: 18px;      
	cursor: pointer;
	border-radius: 0;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.panel--popular .vctrl:hover {
	background: #db4ac3;
	color: #fff;
	border-color: #db4ac3;
}

.panel--sidebar {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding-right: 16px;
}

.widget {
	background: transparent;
	border: 0;
	box-shadow: none;
	margin-bottom: 24px;
}

.widget:last-child {
	margin-bottom: 0; 
}

.widget__title {
	font-weight: bold;
	margin-bottom: 10px;
	position: relative;
	color: #fff;
}

.widget__title::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	margin-top: 6px;
	background: linear-gradient(90deg, #db4ac3, #157dee);
}

.widget-search {
	display: flex;
	align-items: center;
}

.widget--search input[type="search"] {
	flex: 1 1 auto;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #333;
	background: #fff;
	color: #111;
	outline: none;
}

.widget--search .btn--secondary {
	height: 39px;
	border: none;
	background: #FFA500;
	color: #000;
	font-weight: bold;
	cursor: pointer;
	padding: 10px 14px;
}

.widget-search .btn:hover { 
    filter: brightness(0.95); 
}

.promo {
	position: relative;
}

.promo__track { 
    position: relative; 
    overflow: hidden;
}

.promo__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity .4s ease;
}

.promo__slide.is-active { 
    opacity: 1; 
    position: relative; 
}

.promo__slide img {
	display: block;
	width: 100%;
	height: auto;
}

.promo__ctrl {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 25px;
	height: 25px;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,.6);
	color: #fff;
	border: 0;
	cursor: pointer;
	border-radius: 0;          
	z-index: 3;
}

.promo__prev { 
    left: 0;
}

.promo__next { 
    right: 0; 
}

.promo__ctrl:hover { 
    background: #db4ac3;
	color: #fff;
	border-color: #db4ac3;
}

.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: 20px;
	height: 4px;
	background: #fff;
	border-radius: 0;   
	border: none;
	transition: background 0.3s ease;
}

.promo__dot.is-active { 
    background: #db4ac3; 
}

.list {
	margin: 0;
	padding: 12px;
	background: #fff;          
	border: 1px solid #e7e7e7;
}

.sidebar-links {
	list-style: none;
	margin: 0;
	font-weight: bold;
}

.sidebar-links li {
	margin-bottom: 10px;
}

.sidebar-links li .icon {
	margin-right: 4px;
	color: #007bff;
}

.sidebar-links a {
	display: inline-block;
	color: #ff6600;
	text-decoration: none;
}

.sidebar-links a:hover {
    background: linear-gradient(#db4ac3, #157dee);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.list--cats { 
    list-style: none; 
    margin: 0; 
    padding: 12px; 
    background: #fff; 
    border: 1px solid #e7e7e7; 
}

.list--cats li { 
    padding-bottom: 6px; 
    background: transparent; 
    border: 0; 
}

.list--cats li:not(:first-child) {
	padding-top: 8px;
}

.list--cats a {
	display: block;
	text-decoration: none;
	color: #111;
	font-weight: bold;
}

.list--cats a:hover { 
    color: #1E90FF;
}

.list--latest { 
    list-style: none; 
}

.list--latest a {
	display: block;
	text-decoration: none;
	color: #111;
	padding: 6px 0;
}

.list--latest a:hover { 
    color: #000; 
    text-decoration: underline; 
}

.panel--newest {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 10px;
	/* tanpa background; putih hanya di kartu */
	background: transparent;
}

.panel--newest .panel__head .slider__controls { 
    display: none; 
}

.cards {
	display: flex;
	gap: 12px;
	overflow: hidden;
}

.card {
	flex: 0 0 auto;
	width: calc((100% - 12px * 4) / 5);
	background: #fff;
	border: 1px solid #e7e7e7;
	box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

.card__img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.card__title {
	padding: 10px 12px 12px;
	font-size: 14px;
	font-weight: 800;
	color: #111;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
}

.ctrl {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid #ddd;
	background: #fff;
	color: #000;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	border-radius: 0;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.ctrl:hover {
	background: #db4ac3;
	color: #fff;
	border-color: #db4ac3;
}

.sitefooter {
	margin: 24px 0 60px;
}

.footernav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	list-style: none;
	padding: 12px 0;
	margin: 0;
	border-top: 1px solid #e7e7e7;
}

.footernav__list a {
	color: #111;
	text-decoration: none;
}

.footer-container {
	margin-top: 18px;
}

.globalnav.is-search-open .search-toggle .icon--search {
	display: none;
}

.globalnav.is-search-open .search-toggle .icon--close {
	display: block;
}