body{
  margin:0;
  background:#f8fafc;
  color:#0f172a;
  font-family:Arial, Helvetica, sans-serif;
}
.pk-home{padding-bottom:40px;}
.pk-section{margin-top:30px;}
.pk-hero-section{margin-top:18px;}
.pk-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.7fr) minmax(320px, 1fr);
  gap:20px;
}
.pk-hero-main,
.pk-latest-box,
.pk-card,
.pk-story-row,
.pk-trending-box,
.pk-ad-box{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:24px;
  box-shadow:0 8px 30px rgba(15,23,42,.05);
}
.pk-hero-main{overflow:hidden;}
.pk-hero-image-wrap{
  background:#e5e7eb;
  min-height:360px;
}
.pk-hero-image{
  display:block;
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
}
.pk-hero-content{padding:28px;}
.pk-badge,
.pk-chip{
  display:inline-block;
  background:#fff7ed;
  color:#c2410c;
  font-size:12px;
  font-weight:800;
  border-radius:999px;
  padding:7px 12px;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.pk-chip-soft{
  background:#f1f5f9;
  color:#334155;
}
.pk-hero-title{
  margin:14px 0 12px;
  font-size:42px;
  line-height:1.08;
  letter-spacing:-.02em;
}
.pk-hero-title a{
  color:#0f172a;
  text-decoration:none;
}
.pk-hero-title a:hover{color:#f97316;}
.pk-hero-excerpt{
  margin:0 0 16px;
  font-size:18px;
  line-height:1.7;
  color:#475569;
}
.pk-meta,
.pk-card-time,
.pk-latest-time{
  color:#64748b;
  font-size:14px;
}
.pk-meta span{margin:0 8px;}

.pk-latest-box{padding:22px;}
.pk-box-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.pk-box-head h3,
.pk-section-head h2,
.pk-trending-box h3{
  margin:0;
  font-size:24px;
  line-height:1.1;
}
.pk-live{
  background:#fee2e2;
  color:#b91c1c;
  font-weight:800;
  font-size:12px;
  border-radius:999px;
  padding:7px 11px;
}
.pk-latest-list{display:flex;flex-direction:column;gap:12px;}
.pk-latest-item{
  display:flex;
  gap:12px;
  text-decoration:none;
  color:inherit;
  border-bottom:1px solid #f1f5f9;
  padding-bottom:12px;
}
.pk-latest-item:last-child{
  border-bottom:none;
  padding-bottom:0;
}
.pk-latest-num{
  width:32px;
  height:32px;
  border-radius:12px;
  background:#f97316;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  flex:none;
}
.pk-latest-title{
  font-size:16px;
  font-weight:700;
  line-height:1.5;
  color:#1e293b;
}
.pk-latest-item:hover .pk-latest-title{color:#f97316;}
.pk-mini-newsletter{
  margin-top:18px;
  border-radius:22px;
  padding:18px;
  background:linear-gradient(135deg,#fb923c,#f59e0b);
  color:#fff;
}
.pk-mini-newsletter-title{
  font-size:20px;
  font-weight:800;
  margin-bottom:8px;
}
.pk-mini-newsletter p{
  margin:0 0 14px;
  line-height:1.5;
  color:rgba(255,255,255,.94);
}
.pk-mini-newsletter form{display:flex;flex-direction:column;gap:10px;}
.pk-mini-newsletter input{
  border:none;
  border-radius:16px;
  padding:12px 14px;
}
.pk-mini-newsletter button{
  border:none;
  border-radius:16px;
  padding:12px 14px;
  background:#0f172a;
  color:#fff;
  font-weight:800;
  cursor:pointer;
}

.pk-section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}
.pk-section-head a{
  color:#f97316;
  text-decoration:none;
  font-weight:800;
}

.pk-card-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.pk-card{
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease;
}
.pk-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 35px rgba(15,23,42,.09);
}
.pk-card-image{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
}
.pk-card-body{padding:18px;}
.pk-card h3{
  margin:12px 0 10px;
  font-size:22px;
  line-height:1.3;
}

.pk-two-col{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(290px, .75fr);
  gap:20px;
}
.pk-story-list{display:flex;flex-direction:column;gap:16px;}
.pk-story-row{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:18px;
  padding:14px;
}
.pk-story-image{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:18px;
}
.pk-story-body{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.pk-story-body h3{
  margin:12px 0 10px;
  font-size:28px;
  line-height:1.2;
}
.pk-story-body p{
  margin:0 0 14px;
  color:#475569;
  line-height:1.7;
  font-size:16px;
}

.pk-side-col{display:flex;flex-direction:column;gap:20px;}
.pk-trending-box{
  padding:22px;
  background:linear-gradient(180deg,#0f172a,#1e293b);
  color:#fff;
}
.pk-trending-top{
  display:inline-block;
  background:#7c2d12;
  color:#fdba74;
  font-size:12px;
  font-weight:800;
  border-radius:999px;
  padding:7px 11px;
  text-transform:uppercase;
  letter-spacing:.05em;
  margin-bottom:12px;
}
.pk-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.pk-tags span{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.1);
  border-radius:999px;
  padding:10px 13px;
  font-weight:700;
}
.pk-ad-box{
  padding:22px;
  text-align:center;
}
.pk-ad-label{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.04em;
  font-weight:800;
  color:#64748b;
  margin-bottom:14px;
}
.pk-ad-banner{
  min-height:220px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg,#0f172a,#f97316);
  margin-bottom:14px;
}

@media (max-width: 1100px){
  .pk-card-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width: 992px){
  .pk-hero-grid,
  .pk-two-col{
    grid-template-columns:1fr;
  }
  .pk-story-row{
    grid-template-columns:1fr;
  }
  .pk-story-image{
    height:230px;
  }
}
@media (max-width: 640px){
  .pk-hero-title{font-size:30px;}
  .pk-hero-excerpt{font-size:16px;}
  .pk-card-grid{grid-template-columns:1fr;}
  .pk-card h3{font-size:20px;}
  .pk-story-body h3{font-size:22px;}
  .pk-section-head h2,
  .pk-box-head h3,
  .pk-trending-box h3{font-size:21px;}
  .pk-hero-content,
  .pk-latest-box,
  .pk-trending-box,
  .pk-ad-box{padding:18px;}
}