*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
overflow-x:hidden;
font-family:sans-serif;
}

/* =========================
HEADER
========================= */

.header{
position:sticky;
top:0;
z-index:1000;
background:rgba(255,255,255,.96);
backdrop-filter:blur(12px);
border-bottom:1px solid #eee;
box-shadow:0 2px 12px rgba(0,0,0,.04);
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* 3 COLUMN DESKTOP */
.header-wrap{
display:grid;
grid-template-columns:180px 1fr 220px;
align-items:center;
height:78px;
gap:20px;
}


/* =========================
LOGO
========================= */

.logo{
text-decoration:none;
font-size:34px;
font-weight:800;
color:#ff9900;
letter-spacing:.5px;
}


/* =========================
MENU CENTER
========================= */

.nav{
display:flex;
justify-content:center;
}

.nav ul{
display:flex;
list-style:none;
gap:34px;
align-items:center;
}

.nav a{
text-decoration:none;
color:#1e293b;
font-size:15px;
font-weight:600;
position:relative;
transition:.3s;
}

.nav a:hover{
color:#ff9900;
}

.nav a:after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#ff9900;
transition:.3s;
}

.nav a:hover:after{
width:100%;
}


/* =========================
AUTH BUTTONS
========================= */

.header-auth{
display:flex;
justify-content:flex-end;
align-items:center;
gap:12px;
}

.btn-login{
padding:10px 18px;
border:1px solid #ddd;
border-radius:10px;
text-decoration:none;
font-weight:600;
color:#111;
transition:.3s;
}

.btn-login:hover{
border-color:#ff9900;
color:#ff9900;
}

.btn-daftar{
padding:11px 22px;
border-radius:10px;
text-decoration:none;
font-weight:700;
color:#fff;
background:linear-gradient(135deg,#ff9900,#ff6600);
box-shadow:0 8px 18px rgba(255,153,0,.25);
transition:.3s;
}

.btn-daftar:hover{
transform:translateY(-2px);
}


/* =========================
BURGER
========================= */

.burger{
display:none;
background:none;
border:none;
font-size:30px;
cursor:pointer;
color:#111;
}


/* =========================
MOBILE DRAWER
========================= */

.mobile-menu{
position:fixed;
top:0;
right:-100%;
width:320px;
max-width:85%;
height:100vh;
background:#fff;
z-index:9999;
padding:24px;
transition:.35s ease;
overflow-y:auto;
box-shadow:-10px 0 35px rgba(0,0,0,.12);
}

.mobile-menu.active{
right:0;
}

/* HEADER DRAWER */
.mobile-header{
display:flex;
justify-content:space-between;
align-items:center;
padding-bottom:18px;
margin-bottom:18px;
border-bottom:1px solid #eee;
}

.mobile-header span:first-child{
font-size:22px;
font-weight:800;
color:#ff9900;
}

.close{
font-size:28px;
cursor:pointer;
}


/* LIST */
.mobile-menu ul{
list-style:none;
padding:0;
margin:0;
}

.mobile-menu li{
border-bottom:1px solid #f1f1f1;
}

.mobile-menu li a{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
text-decoration:none;
font-size:17px;
font-weight:600;
color:#1e293b;
transition:.3s;
}

.mobile-menu li a:after{
content:"›";
color:#cbd5e1;
}

.mobile-menu li a:hover{
color:#ff9900;
padding-left:6px;
}


/* MOBILE AUTH */
.mobile-auth{
margin-top:28px;
display:flex;
flex-direction:column;
gap:12px;
}

.mobile-auth a{
display:block;
text-align:center;
padding:13px 18px;
border-radius:12px;
font-weight:700;
text-decoration:none;
}

.mobile-login{
border:1px solid #ddd;
background:#fff;
color:#111;
}

.mobile-daftar{
background:linear-gradient(135deg,#ff9900,#ff6600);
color:#fff;
box-shadow:0 8px 18px rgba(255,153,0,.25);
}


/* OVERLAY */
.overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,.45);
backdrop-filter:blur(2px);
z-index:9998;
display:none;
}

.overlay.active{
display:block;
}


/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

.header-wrap{
display:flex;
justify-content:space-between;
height:72px;
}

.logo{
font-size:30px;
}

.nav,
.header-auth{
display:none;
}

.burger{
display:block;
}

}


/* MATIKAN MOBILE DRAWER DI DESKTOP */
@media(min-width:769px){

.mobile-menu,
.overlay{
display:none !important;
}

}

/* HERO PREMIUM */
.hero {
  position: relative;
  padding: 120px 20px;
  background: url('https://picasadl.net/img/pintuplay-banner.webp') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* DARK + GRADIENT */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: auto;
  text-align: center;

  backdrop-filter: blur(6px);
  padding: 30px;
  border-radius: 16px;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  background: rgba(255, 153, 0, 0.15);
  color: #ff9900;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 15px;
  border: 1px solid rgba(255,153,0,0.3);
}

/* TITLE */
.hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* HIGHLIGHT */
.hero h1 span {
  color: #ff9900;
}

/* DESC */
.hero p {
  font-size: 16px;
  color: #e5e7eb;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* CTA */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTON PRIMARY */
.btn-primary {
  background: linear-gradient(135deg, #ff9900, #ff6600);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,153,0,0.4);
}

/* BUTTON SECONDARY */
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 80px 15px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-content {
    padding: 20px;
  }
}

/* HERO FEATURE KEYWORDS */
.hero-features{
margin-top:28px;
display:flex;
justify-content:center;
gap:12px;
flex-wrap:wrap;
}

.hero-features span{
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.18);
padding:10px 14px;
border-radius:999px;
font-size:13px;
color:#fff;
backdrop-filter:blur(6px);
}

/* MOBILE */
@media(max-width:768px){

.hero-features{
flex-direction:column;
align-items:center;
gap:10px;
}

.hero-features span{
width:100%;
max-width:280px;
text-align:center;
}

}


.advantages{
padding:80px 20px;
background:#ffffff;
}

.section-heading{
max-width:760px;
margin:auto;
text-align:center;
margin-bottom:50px;
}

.mini-label{
display:inline-block;
background:#fff4e8;
color:#ff9900;
padding:8px 14px;
border-radius:999px;
font-size:13px;
font-weight:600;
margin-bottom:14px;
}

.section-heading h2{
font-size:38px;
margin-bottom:15px;
}

.section-heading p{
color:#64748b;
line-height:1.8;
}

.adv-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.adv-card{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 8px 30px rgba(0,0,0,.06);
transition:.3s;
}

.adv-card:hover{
transform:translateY(-5px);
}

.adv-icon{
font-size:34px;
margin-bottom:15px;
}

.adv-card h3{
font-size:20px;
margin-bottom:12px;
}

.adv-card p{
color:#64748b;
line-height:1.7;
}

/* mobile */
@media(max-width:768px){

.section-heading h2{
font-size:30px;
}

.adv-grid{
grid-template-columns:1fr;
}

}

.main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
  align-items: start; /* 🔥 INI KUNCINYA */
}

/* TABLET */
@media (min-width: 768px) {
  .main {
    grid-template-columns: 1.5fr 1fr;
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .main {
    grid-template-columns: 2fr 1fr;
  }
}


/* CONTENT GRID */
.content {
  display: flex;
  flex-direction: column;
  gap: 35px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.content,
.widget {
  width: 100%;
}

/* BIAR TIDAK OVERFLOW */
img {
  max-width: 100%;
  height: auto;
}

.article h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.article-meta {
  font-size: 12px;
  color: #777;
  margin-bottom: 15px;
}

.article-image {
  width: 100%;
  max-height: 350px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.article h2 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #111;
}

.article p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.article ul,
.article ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.article li {
  margin-bottom: 8px;
}

.article-quote {
  margin: 20px 0;
  padding: 15px;
  background: #f9fafb;
  border-left: 4px solid #ff9900;
  font-style: italic;
}

.news-title a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.4;
}

.news-title a:hover {
  color: #ff9900;
}

/* META PREMIUM */
.meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280; /* abu soft */
  margin-bottom: 10px;
  flex-wrap: wrap;
}

/* DATE */
.meta-date {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* AUTHOR */
.meta-author {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  color: #374151;
}

/* DOT */
.meta-dot {
  color: #d1d5db;
}

/* EXCERPT PREMIUM */
.excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin-top: 5px;

  display: -webkit-box;
  -webkit-line-clamp: 2; /* batasi 2 baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* HOVER EFFECT (BIAR HIDUP) */
.news-card:hover .excerpt {
  color: #111;
}

/* META HOVER */
.news-card:hover .meta-author {
  color: #ff9900;
}


/* TABLET */
@media (min-width: 768px) {
  .article h1 {
    font-size: 28px;
  }

  .article-image {
    max-height: 400px;
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .article h1 {
    font-size: 32px;
  }
}


/* SIDEBAR */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-box {
  display: flex;
  gap: 10px;
}

.search-box input {
  width: 100%;
  min-width: 0;
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
}

.search-box button {
  background: #ff9900;
  color: #fff;
  border: none;
  padding: 8px;
  white-space: nowrap;
}

.widget {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* RECENT POST PREMIUM */
.recent-post {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 8px;
  transition: 0.3s;
}

/* hover effect */
.recent-post:hover {
  background: #f9fafb;
}

/* thumbnail */
.recent-post img {
  width: 60px;
  height: 50px;
  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;
}

/* TABLET */
@media (min-width: 768px) {
  .recent-post img {
    width: 70px;
    height: 55px;
  }

  .recent-post a {
    font-size: 14px;
  }
}

.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;
  }
}

/* BREAKING */
/* BREAKING PREMIUM */
.breaking {
  margin-top: 20px;
}

.breaking-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}

/* LABEL */
.breaking-label {
  background: #ff9900;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-right: 10px;
  white-space: nowrap;
}

/* SLIDER */
.breaking-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

/* hide scrollbar */
.breaking-slider::-webkit-scrollbar {
  display: none;
}

/* ITEM */
.breaking-item {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.3s;
}

/* hover */
.breaking-item:hover {
  color: #ff9900;
}

/* SEO FOOTER BOOST */
.footer{
background:#0f172a;
color:#fff;
margin-top:70px;
}

.footer-container{
max-width:1200px;
margin:auto;
padding:60px 20px;
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:40px;
}

.footer-logo{
color:#ff9900;
margin-bottom:16px;
font-size:30px;
}

.footer-col p{
color:#cbd5e1;
line-height:1.8;
font-size:14px;
}

.footer-col h3{
margin-bottom:18px;
}

.footer-col ul{
list-style:none;
}

.footer-col li{
margin-bottom:12px;
}

.footer-col a{
color:#cbd5e1;
text-decoration:none;
transition:.3s;
}

.footer-col a:hover{
color:#ff9900;
}

.footer-trust{
margin-top:20px;
display:flex;
flex-wrap:wrap;
gap:10px;
}

.footer-trust span{
background:rgba(255,255,255,.08);
padding:8px 12px;
border-radius:999px;
font-size:12px;
}

/* extra seo text */
.footer-seo{
max-width:1100px;
margin:auto;
padding:0 20px 35px;
border-top:1px solid rgba(255,255,255,.08);
padding-top:28px;
}

.footer-seo p{
color:#94a3b8;
font-size:13px;
line-height:1.8;
text-align:center;
}

.footer-bottom{
text-align:center;
padding:18px;
border-top:1px solid rgba(255,255,255,.08);
font-size:13px;
color:#94a3b8;
}

@media(max-width:768px){

.footer-container{
grid-template-columns:1fr;
}

.footer-trust{
justify-content:center;
}

}

.faq-section{
padding:80px 20px;
background:#fff;
}

.faq-item{
background:#fff;
border:1px solid #e5e7eb;
padding:25px;
border-radius:16px;
margin-bottom:18px;
box-shadow:0 5px 20px rgba(0,0,0,.04);
}

.faq-item h3{
font-size:22px;
margin-bottom:12px;
}

.faq-item p{
line-height:1.8;
color:#64748b;
}

@media(max-width:768px){

.faq-item h3{
font-size:19px;
}

}

.entity-section{
padding:80px 20px;
background:#f8fafc;
}

.entity-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:40px;
}

.entity-card{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 8px 25px rgba(0,0,0,.05);
text-align:center;
}

.entity-icon{
font-size:34px;
margin-bottom:14px;
}

.entity-card h3{
margin-bottom:12px;
font-size:20px;
}

.entity-card p{
color:#64748b;
line-height:1.7;
}

.entity-about{
margin-top:45px;
background:#fff;
padding:35px;
border-radius:18px;
box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.entity-about h3{
margin-bottom:15px;
font-size:28px;
}

.entity-about p{
line-height:1.8;
color:#475569;
}

@media(max-width:768px){

.entity-grid{
grid-template-columns:1fr;
}

.entity-about h3{
font-size:24px;
}

}