body {
  font-family: 'Poppins', sans-serif;
  background: #f8f8f8;
  margin: 0;
}

main {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.search-bar {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 20px auto 30px auto;
  width: 100%;
  max-width: 500px;
}

.search-bar i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #888;
  font-size: 1.1rem;
}

.search-bar input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border-radius: 30px;
  border: 1px solid #ddd;
  font-size: 1rem;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.search-bar input:focus {
  border-color: #ff4b2b;
  box-shadow: 0 4px 15px rgba(255,75,43,0.3);
  outline: none;
}
.ticket-price i {
  display: none;
}


.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ticket-card {
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.ticket-card:hover {
  transform: translateY(-4px);
}

/* Gambar seragam */
.ticket-image {
  width: 280px;
  height: 250px;
  object-fit: cover;
}

.ticket-info {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ticket-header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 800;
}

.ticket-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #e63e1f;
  white-space: nowrap;
}

.ticket-price i {
  margin-right: 8px;
  color: #28a745;
}

.ticket-details {
  margin-top: 10px;
}

.ticket-details p {
  margin: 5px 0;
  font-size: 1.1rem;
  color: #555;
}

.ticket-details i {
  margin-right: 6px;
  color: #ff4b2b;
}

.ticket-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

.btn-buy {
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-buy:hover {
  background: linear-gradient(135deg, #e63e1f, #e23458);
  transform: scale(1.05);
}
