/* ==========================================================
   WEB KINGPRO88 — Promo page only
   Global layout/header/navigation/footer/mobile styles come
   from style.css so promo.html stays identical to index.html.
   ========================================================== */

.promo-page{
  background:#fff;
  padding:34px 0 48px;
}

/* Follow the same .container width/padding as index.html. */
.promo-list{
  width:100%;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:24px;
}

.promo-row{
  width:100%;
  display:grid;
  grid-template-columns:minmax(0,1fr) 42px;
  align-items:stretch;
  column-gap:0;
}

.promo-banner-trigger{
  appearance:none;
  display:block;
  width:100%;
  padding:0;
  margin:0;
  border:0;
  background:transparent;
  cursor:pointer;
  text-align:inherit;
}

.promo-banner-trigger:focus-visible{
  outline:2px solid #d1b06d;
  outline-offset:3px;
  border-radius:8px 0 0 8px;
}

.promo-banner-trigger:hover .promo-banner-placeholder{
  transform:translateY(-1px);
  border-color:#c9a85f;
  box-shadow:0 7px 17px rgba(0,0,0,.16);
}

.promo-banner-placeholder{
  width:100%;
  aspect-ratio:4/1;
  border-radius:8px 0 0 8px;
  border:1px solid #d7c090;
  background:
    linear-gradient(135deg,rgba(209,176,109,.09),transparent 35%),
    linear-gradient(180deg,#252d3d 0%,#171e2b 100%);
  box-shadow:0 4px 13px rgba(0,0,0,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  position:relative;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}


.promo-banner-image{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.promo-banner-placeholder::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent 0 38%,rgba(255,255,255,.025) 38% 42%,transparent 42% 100%);
  pointer-events:none;
}

.promo-placeholder-copy{
  position:relative;
  z-index:1;
  text-align:center;
  color:#d1b06d;
  font-weight:800;
  letter-spacing:.8px;
  font-size:20px;
}

.promo-placeholder-copy small{
  display:block;
  margin-top:8px;
  color:#aeb7c5;
  font-size:11px;
  font-weight:600;
  letter-spacing:1.4px;
}

.promo-more-button{
  appearance:none;
  border:0;
  background:#171e2b;
  color:#fff;
  width:42px;
  height:100%;
  min-height:100%;
  padding:10px 0;
  border-radius:0 5px 5px 0;
  font-family:inherit;
  font-size:14px;
  font-weight:700;
  line-height:1;
  letter-spacing:.4px;
  writing-mode:vertical-rl;
  white-space:nowrap;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.18s ease;
  box-shadow:0 3px 10px rgba(0,0,0,.14);
}

.promo-more-button:hover{
  background:#d1b06d;
  color:#171e2b;
}

/* Promo detail modal */
.promo-modal-backdrop{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:rgba(5,10,18,.72);
}

.promo-modal-backdrop.is-open{display:flex}

.promo-modal{
  position:relative;
  width:min(720px,100%);
  max-height:82vh;
  overflow:auto;
  border-radius:10px;
  background:#fff;
  box-shadow:0 22px 60px rgba(0,0,0,.38);
}

.promo-modal-head{
  padding:18px 52px 16px 20px;
  background:#171e2b;
  color:#d1b06d;
  font-size:16px;
  font-weight:800;
}

.promo-modal-body{
  padding:22px;
  color:#303845;
  font-size:13px;
  line-height:1.7;
}

.promo-modal-close{
  position:absolute;
  top:8px;
  right:10px;
  width:34px;
  height:34px;
  border:0;
  border-radius:50%;
  background:transparent;
  color:#fff;
  font-size:26px;
  cursor:pointer;
}

.promo-modal-box{
  min-height:180px;
  border:1px dashed #c7ccd4;
  border-radius:8px;
  background:#f7f8fa;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#87909e;
  padding:20px;
}

.promo-modal-box.has-content{
  min-height:0;
  display:block;
  text-align:left;
  color:#303845;
  background:#fff;
  border:1px solid #e0e4ea;
  padding:20px 22px;
}

.promo-modal-box.has-content p{
  margin:0 0 14px;
  color:#171e2b;
}

.promo-modal-box.has-content ol,
.promo-modal-box.has-content ul{
  margin:0 0 14px;
  padding-left:22px;
}

.promo-modal-box.has-content li{
  margin:0 0 10px;
  padding-left:4px;
}

.promo-modal-box.has-content li:last-child{margin-bottom:0}

@media(max-width:760px){
  .promo-page{padding:18px 0 30px}
  .promo-list{gap:17px}
  .promo-row{display:block}
  .promo-banner-placeholder{
    aspect-ratio:4/1;
    border-radius:6px;
  }
  .promo-placeholder-copy{font-size:14px}
  .promo-placeholder-copy small{
    margin-top:5px;
    font-size:9px;
  }
  .promo-more-button{display:none}
  .promo-modal-backdrop{padding:13px}
  .promo-modal-body{padding:16px}
}
