.container {
  max-width: 1440px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  padding: 4rem 0;
}

.tab-container {
  display: flex;
  border-bottom: 3px solid #ff5062;
}

.tab {
  flex: 1;
  padding: 20px 30px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  text-align: left;
  color: #fff;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.tab.active {
  border-radius: 47px 47px 0px 0px;
  background: #ff5062;
  color: white;
}

.tab:not(.active):hover {
  border-radius: 47px 47px 0px 0px;
  background: #ff5062;
  color: #fff;
}

.tab-subtitle {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: left;
}

.tab-content {
  display: none;
  padding: 0;
}

.tab-content.active {
  display: block;
}

.schedule-item {
  display: flex;
  padding: 20px 30px;
  border-bottom: 1px solid #ff5062;
  transition: all 0.3s ease;
  gap: 1.5rem;
}

.schedule-item:hover {
  background: #ff5062;
}

.schedule-item:hover .title {
  color: #fff;
}

.schedule-item:last-child {
  border-bottom: none;
}

.time {
  color: #00e5fd;
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  min-width: 14rem;
}

.prcontent {
  flex: 1;
}

.title {
  color: #ff5062;
  text-align: left;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.description {
  color: #fff;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  .tab {
    padding: 15px 20px;
    font-size: 16px;
  }

  .tab-subtitle {
    font-size: 10px;
  }

  .schedule-item {
    flex-direction: column;
    padding: 15px 20px;
  }

  .time {
    min-width: auto;
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .title {
    font-size: 16px;
  }

  .description {
    font-size: 13px;
  }
}

/* Smooth fade animation */
.tab-content {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.tab-content.active {
  opacity: 1;
  transform: translateY(0);
}
