footer.muted {
  text-align: center;
  margin-top: 40px;
  opacity: 0.7;
  font-size: 13px;
  line-height: 1.5;
}

.ticket{
  margin-top:18px;
  background:linear-gradient(180deg,#0f172a 0%, #111827 100%);
  border:1px solid #334155;
  border-radius:16px;
  padding:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.28);
}

.ticket-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
  padding-bottom:12px;
  border-bottom:1px solid #1f2937;
}

.ticket-header h3{
  margin:0;
  font-size:20px;
  letter-spacing:.6px;
}

.ticket-status{
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  background:#1e293b;
  color:#e5e7eb;
  border:1px solid #475569;
}

.ticket-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:10px;
  margin-bottom:16px;
}

.ticket-grid div,
.ticket-section p{
  background:#0b1220;
  border:1px solid #1f2937;
  border-radius:12px;
  padding:10px 12px;
  margin:0;
}

.ticket-section{
  margin-top:14px;
}

.ticket-section h4{
  margin:0 0 10px 0;
  color:#93c5fd;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.ticket-section ul{
  margin:0;
  padding-left:18px;
  color:#fbbf24;
}

.ticket-footer{
  margin-top:16px;
  padding-top:12px;
  border-top:1px solid #1f2937;
  color:#9ca3af;
  font-size:12px;
}

@media (max-width:640px){
  .ticket{
    padding:14px;
    border-radius:14px;
  }

  .ticket-header{
    flex-direction:column;
    align-items:flex-start;
  }

  .ticket-header h3{
    font-size:17px;
  }
}