@charset "UTF-8";

.schedule-ticket {
  max-width: 900px;
  margin: 0 auto 100px;
  padding: 0 20px;
  color: #eee;
  background: #000;
  font-family: sans-serif;
}

.section-title {
  padding: 100px 20px 40px;
  text-align: center;
}
.section-title h1{
  font-size: 3rem;
  margin-bottom: 10px;
  color: #fff;
}
.section-title p {
  font-size: 1.2rem;
  color: #ccc;
}

.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ticket-card {
  display: block;
  background: #111;
  border-radius: 10px;
  padding: 24px 28px;
  color: #eee;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  border: 1px solid #222;
}

.ticket-card:hover {
  background: #222;
  transform: translateY(-2px);
}

.ticket-card h2 {
  font-size: 1.5rem;
  color: #ffcc00;
  margin-bottom: 12px;
}

.ticket-card .desc {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 8px;
}

.ticket-card .arrow {
  font-size: 0.9rem;
  color: #999;
}
