/* Phase 46G — Duelist Kingdom Events UI polish */
.dk-event-card{
  display:flex;
  flex-direction:column;
  gap:0.75rem;
  overflow:hidden;
}
.dk-event-head{
  align-items:flex-start;
  gap:1rem;
}
.dk-event-kicker{
  display:flex;
  flex-wrap:wrap;
  gap:0.45rem;
  margin-bottom:0.35rem;
}
.dk-event-type,
.dk-event-status{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:0.25rem 0.6rem;
  font-size:0.78rem;
  font-weight:800;
  letter-spacing:0.03em;
  text-transform:uppercase;
  border:1px solid rgba(255,255,255,0.22);
  background:rgba(0,179,255,0.18);
  color:#fff;
  text-shadow:0 1px 2px #000;
}
.dk-event-status{
  background:rgba(124,77,255,0.18);
}
.dk-event-actions{
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
  align-items:center;
  justify-content:space-between;
  padding:0.75rem;
  border-radius:1rem;
  background:rgba(0,0,0,0.22);
  border:1px solid rgba(255,255,255,0.14);
}
.dk-event-actions .pk-btn{
  min-width:130px;
}
.dk-gauntlet-guide .dk-reward-steps{
  grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
}
@media (max-width: 720px){
  .dk-event-actions{
    align-items:stretch;
    flex-direction:column;
  }
  .dk-event-actions .pk-btn{
    width:100%;
  }
  .dk-event-kicker{
    width:100%;
  }
  .dk-event-type,
  .dk-event-status{
    flex:1 1 auto;
  }
}