/* assets/style.css */
:root{
  --bg:#0b0b0b;
  --panel:#111;
  --yellow:linear-gradient(0deg, #008ba3 0%, #00d9ff 100%);
  --yellow2:linear-gradient(to bottom, aqua 0%, #036e7d 50%, #007699 100%) !important;
  --text:#f4f4f4;
  --muted:#bdbdbd;
  --blue:#1976ff;
  --cardShadow: 0 10px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, #1a1a1a 0%, var(--bg) 55%, #050505 100%);
  color:var(--text);
}

.teks-berjaalan {
    
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1rem;
    color: #00d9ff;
    padding: 0.1rem;
}

.container{max-width:1200px;margin:0 auto;padding:22px;}
.topbar{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:18px 0;
}
.brand{
  display:flex; flex-direction:column; gap:4px;
}
.brand .logo{
  font-weight:900; letter-spacing:1px;
  color:var(--yellow2); font-size:28px; width: 175px;
}
.brand .sub{color:#eaeaea; font-size:12px; opacity:.75}

.searchbox{
  display:flex; align-items:center;
  background:#f2f2f2; border-radius:6px; overflow:hidden;
  width:min(420px, 100%);
}
.searchbox input{
  border:0; outline:0; padding:12px 12px;
  width:100%; font-size:14px;
}
.searchbox button{
  border:0; cursor:pointer;
  background: var(--yellow2);
  padding:10px 14px; font-weight:800;
}

.hero-title{
  text-align:center;
  font-weight:900;
  margin:10px 0 16px;
  letter-spacing:.5px;
}
.hero-title span{
  display:inline-flex; align-items:center; gap:10px;
}
hr.dots{
  border:0; border-top:1px dashed #00d9ff;
  margin:16px 0 22px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
}
@media (max-width:1100px){ .grid{grid-template-columns: repeat(3,1fr);} }
@media (max-width:860px){ .grid{grid-template-columns: repeat(2,1fr);} }
@media (max-width:520px){ .grid{grid-template-columns: 1fr;} }

.card{
  background: var(--yellow);
  border-radius:10px;
  overflow:hidden;
  box-shadow: var(--cardShadow);
  color:#111;
}
.card .thumb{
  /background:#000;
  padding:10px;
}
.card .thumb img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:8px;
  border:2px solid rgba(0,0,0,.35);
}
.card .body{padding:14px 14px 16px;}
.card h3{
  margin:0 0 10px;
  font-size:18px; line-height:1.25;
  text-transform:uppercase;
}
.meta{
  display:flex; gap:10px; flex-wrap:wrap;
  font-size:12px; color:#1f1f1f; opacity:.85;
  margin:8px 0 10px;
}
.smalltext{font-size:13px; line-height:1.55; color:#111;}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  background: linear-gradient(to bottom, aqua 0%, #036e7d 50%, #007699 100%) !important;
  color:#ffffff; text-decoration:none;
  padding:10px 12px;
  border: 1px solid #00eaff;
  border-radius:6px;
  font-weight:800;
  width:100%;
  margin-top:12px;
}

/* Detail layout */
.detail{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap:18px;
}
@media (max-width:960px){ .detail{grid-template-columns:1fr;} }

.panel{
  background:#ffffff;
  border-radius:10px;
  padding:14px;
  color:#111;
  box-shadow: var(--cardShadow);
}
.panel .bigimg{
  width:100%;
  border-radius:10px;
  border:2px solid rgba(0,0,0,.25);
  object-fit:cover;
}
.detail-title{
  color:#fff;
  font-weight:900;
  text-transform:uppercase;
  margin:6px 0 14px;
  font-size:22px;
}
.backlink{
  display:inline-flex;
  background: var(--yellow2);
  color:#ffee00;
  padding:8px 10px;
  border-radius:8px;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
}

.sidebar .sidecard{
  background: var(--yellow);
  border-radius:10px;
  overflow:hidden;
  box-shadow: var(--cardShadow);
  margin-bottom:14px;
  color:#111;
}
.sidebar .sidecard img{
  width:100%;
  height:120px;
  object-fit:cover;
}
.sidebar .sidecard .p{padding:10px;}
.sidebar .sidecard .p .t{font-weight:900; font-size:13px; text-transform:uppercase; line-height:1.25;}
.sidebar .sidecard .p .m{font-size:12px; opacity:.85; margin:6px 0;}
.sidebar .sidecard .p a{
  display:inline-flex; width:100%;
  text-decoration:none;
  background:var(--blue); color:#fff;
  font-weight:800; padding:9px 10px; border-radius:6px; justify-content:center;
}
