<style>
  .eventbrite-button {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #ff8000, #ff4d00);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .eventbrite-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  }

  .eventbrite-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 128, 0, 0.4);
  }
</style>
