/* assets/style.css */
:root{
  --bg:#0b0b0b;
  --panel:#111;
  --yellow:linear-gradient(0deg, #fb0000 0%, #f97a0d 100%);
  --yellow2:linear-gradient(to bottom, #ff0000 0%, #eb1010 50%, #940000 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;
  color:var(--text);
           position: relative;
         background: #000000;
         background-image: radial-gradient(#272727 5%, transparent 50%);
         background-size: 5px 5px;
         background-attachment: fixed;
}

.teks-berjaalan {
    
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1rem;
    color: #ffffff;
    padding: 0.1rem;
}

.container{
  max-width:1400px;margin:-31px 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:11px 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 #ff0000;
  margin:-2px 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:224px;
  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, #0445f7 0%, #034069 50%, #0a036e 100%);
  color:#ffffff; text-decoration:none;
  padding:8px 12px;
  border: 1px solid #ffffff;
  border-radius:50px;
  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:#000000;
  padding:8px 10px;
  border: 1px solid rgb(255, 0, 0);
  border-radius:6px;
  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: linear-gradient(rgb(192, 57, 43) 0%, rgb(173, 0, 0) 50%, rgb(255, 0, 0) 100%); color:#fff;
  border: 1px solid #ff0000;
  font-weight:800; padding:9px 10px; border-radius:6px; justify-content:center;
}
