* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background: #f5f7fa;
  color: #222;
}

/* HEADER */
.header {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  font-weight: bold;
  color: #ff9900;
}

/* MENU */
.nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav a {
  color: #333;
  text-decoration: none;
}

.nav a:hover {
  color: #ff9900;
}

/* BURGER */
.burger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE MENU PREMIUM */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  padding: 25px 20px;
  transition: 0.35s ease;
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

/* ACTIVE */
.mobile-menu.active {
  right: 0;
}

/* HEADER */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-header span:first-child {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

/* CLOSE */
.mobile-header .close {
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
}

.mobile-header .close:hover {
  color: #ff9900;
  transform: rotate(90deg);
}

/* MENU LIST */
.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin-bottom: 18px;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 10px;
}

/* LINK */
.mobile-menu ul li a {
  color: #222;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

/* HOVER */
.mobile-menu ul li a:hover {
  color: #ff9900;
  transform: translateX(6px);
}

/* OPTIONAL ICON ARROW */
.mobile-menu ul li a::after {
  content: "›";
  font-size: 18px;
  color: #ccc;
  transition: 0.3s;
}

.mobile-menu ul li a:hover::after {
  color: #ff9900;
  transform: translateX(3px);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(3px);
  z-index: 9998;
  display: none;
}

.overlay.active {
  display: block;
}

.mobile-menu ul li {
  transition: 0.2s;
}

.mobile-menu ul li:hover {
  padding-left: 5px;
}

/* HERO DENGAN BACKGROUND IMAGE */
.hero {
  position: relative;
  padding: 100px 20px;
  background: url('../img/hero-entertainment.webp') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  background-size: 110%;
  transition: 6s ease;
  background-color: #0f172a;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* overlay gelap */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* gradient overlay premium */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.4)
  );
  z-index: 1;
}

/* content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

/* H1 */
.hero h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #ffffff;
  text-shadow: 0 3px 15px rgba(0,0,0,0.6);
}

/* highlight */
.hero h1 span {
  color: #ff9900;
}

/* paragraf */
.hero p {
  font-size: 16px;
  color: #e5e7eb;
  line-height: 1.7;
  max-width: 600px;
  margin: auto;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 70px 15px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
  }
}

/* MAIN */
.main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-top: 30px;
  align-items: start; /* INI KUNCINYA */
}

/* CONTENT */
.content, .widget {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.post-title {
  margin-bottom: 10px;
}

.meta {
  color: #777;
  margin-bottom: 10px;
}

.meta a {
  color: #ff9900;
}

.featured-img {
  width: 100%;
  margin: 10px 0;
}

.category {
  color: #ff9900;
  font-size: 12px;
}

/* SIDEBAR */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-box {
  display: flex;
  gap: 10px;
}

.search-box input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
}

.search-box button {
  background: #ff9900;
  color: #fff;
  border: none;
  padding: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .main {
    grid-template-columns: 1fr;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* CONTENT GRID */
.content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* CARD */
.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* IMAGE */
.news-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* BODY */
.news-body {
  padding: 18px;
}

/* TITLE */
.news-title a {
  color: #222;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.news-title a:hover {
  color: #ff9900;
}

/* META */
.meta {
  font-size: 13px;
  color: #777;
  margin: 8px 0;
}

/* EXCERPT */
.excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* RECENT POST PREMIUM */
.recent-post {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  transition: 0.3s;
}

/* hover effect */
.recent-post:hover {
  background: #f9fafb;
}

/* thumbnail */
.recent-post img {
  width: 70px;
  height: 55px;
  object-fit: cover;
  border-radius: 6px;
}

/* title link */
.recent-post a {
  color: #222; /* FIX: tidak biru */
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.4;
  transition: 0.3s;
}

/* hover link */
.recent-post a:hover {
  color: #ff9900;
}

/* divider antar item */
.recent-post + .recent-post {
  border-top: 1px solid #f1f1f1;
  padding-top: 15px;
}

.recent-date {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

/* FOOTER */
.footer {
  background: #0f172a;
  color: #fff;
  margin-top: 50px;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* LOGO */
.footer-logo {
  color: #ff9900;
  margin-bottom: 10px;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* TITLE */
.footer-col h3 {
  margin-bottom: 15px;
}

/* LIST */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

/* LINK */
.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ff9900;
}

/* FORM */
.footer-form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-form input {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 6px;
}

.footer-form button {
  background: #ff9900;
  border: none;
  padding: 8px 12px;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

