.buy-ticket-section {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.buy-ticket-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.buy-ticket-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem 2.5rem 0 2.5rem;
}

.buy-ticket-content {
  margin-top: 2rem;
}

.purchase-content {
  width: 100%;
}

.buy-ticket-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-align: center;
}

.buy-list {
  margin-bottom: 1rem;
}

.buy-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease-out-expo);
}

.buy-item:hover {
  border-color: var(--orange-primary);
  /* background: rgba(42, 79, 79, 0.4); */
  transform: translateY(-2px);
}

.buy-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 0.25rem 0;
}

.buy-info p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
  max-width: 570px;
}

.buy-info span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--teal-light);
  background: rgba(147, 231, 205, 0.15);
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
}

.btn-buy-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  padding: 0;
  color: var(--orange-primary);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  text-transform: uppercase;
}

.btn-buy-submit:hover {
  color: var(--orange-light);
}

.btn-buy-submit .spinner {
  animation: spin 1s linear infinite;
}

.buy-ticket-divider {
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.581);
  margin: 2rem auto;
  border-radius: 2px;
}

.buy-ticket-note {
  text-align: center;
  color: var(--text-dark);
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .buy-ticket-section {
    padding: 3rem 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .buy-ticket-wrapper {
    padding: 2.5rem 1rem;
  }

  .buy-item {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .buy-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .buy-info h4 {
    font-size: 1.1rem;
  }

  .buy-info p {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .btn-buy-submit {
    width: 100%;
    max-width: 320px;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
