.emp-event-wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 18px 80px;
  color: #182333;
}

.emp-event-header {
  position: relative;
  text-align: center;
  margin-bottom: 24px;
  padding: 42px 24px 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f9c943, #ed7a46);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(22, 50, 79, .22);
}

.emp-event-header::after {
  content: '';
  position: absolute;
  width: 210px;
  height: 210px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  background: rgba(255, 193, 92, .25);
}

.emp-heading {
  position: relative;
  z-index: 1;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.08;
  margin: 0 0 10px;
  letter-spacing: -.02em;
}

.emp-subheading {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  margin: 0;
}

.emp-event-meta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 28px;
  font-size: 14px;
  color: #334155;
}

.emp-meta-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 9px 15px;
  border-radius: 999px;
  box-shadow: 0 5px 15px rgba(15, 23, 42, .05);
}

.emp-event-description {
  max-width: 760px;
  margin: 0 auto 30px;
  line-height: 1.8;
  font-size: 16px;
  color: #526174;
  text-align: center;
}

.emp-seat-availability {
  display: flex;
  gap: 16px;
  margin: 0 auto 26px;
  max-width: 760px;
}

.emp-seat-box {
  flex: 1;
  text-align: center;
  background: #fff;
  color: #172033;
  padding: 20px;
  border: 1px solid #e4e9f0;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .08);
}

.emp-seat-box:first-child {
  border-top: 4px solid #e5a93d;
}

.emp-seat-box:last-child {
  border-top: 4px solid #ef8546
}

.emp-seat-box strong {
  display: block;
  font-size: 34px;
  color: #16324f;
}

.emp-seat-box span {
  font-size: 13px;
  opacity: .8;
}

.emp-seat-result {
  max-width: 760px;
  margin: 0 auto 26px;
  scroll-margin-top: 32px;
}

.emp-success-card {
  background: linear-gradient(135deg, #effcf5, #fff);
  border: 1px solid #56d99b;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: 0 14px 32px rgba(16, 185, 129, .12);
}

.emp-success-label {
  font-size: 13px;
  letter-spacing: 1px;
  color: #065f46;
  text-transform: uppercase;
}

.emp-success-seat {
  font-size: 48px;
  font-weight: 800;
  color: #065f46;
}

.emp-success-ticket {
  font-weight: 600;
  color: #065f46;
  margin-bottom: 8px;
}

.emp-error-card {
  background: #fff5f5;
  border: 1px solid #f87171;
  color: #991b1b;
  padding: 17px 20px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 600;
}

.emp-download-btn {
  display: inline-block;
  margin-top: 12px;
  background: #111827;
  color: #fff !important;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

.emp-download-btn:hover {
  background: #34d399;
  color: #111827 !important;
}

.emp-registration-form {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  padding: 30px clamp(20px, 5vw, 48px);
  border: 1px solid #e3e8ef;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .09);
}

.emp-registration-form h2 {
  margin: 0 0 22px;
  color: #16324f;
  font-size: 26px;
  text-align: center;
  border-bottom: 2px solid #f1936c;
}

.emp-registration-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 6px;
}

.emp-registration-form input:not([type="submit"]),
.emp-registration-form select,
.emp-registration-form textarea {
  width: 100%;
  border: 1px solid #d8e0ea;
  border-radius: 10px;
  padding: 12px 14px;
  background: #f8fafc;
  color: #182333 !important;
}

.emp-registration-form input:focus,
.emp-registration-form select:focus,
.emp-registration-form textarea:focus {
  outline: 0;
  border-color: #2d6a7d;
  box-shadow: 0 0 0 3px rgba(45, 106, 125, .14);
  background: #fff;
}

.emp-registration-form input::placeholder {
  color: #9ca3af;
}

.emp-registration-form input[type="submit"] {
  border: 0;
  border-radius: 10px;
  padding: 13px 24px;
  background: #e26d4f;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(226, 109, 79, .24);
}

.emp-registration-form input[type="submit"]:hover {
  background: #c95236;
}

.emp-registration-form .wpcf7-form label {
  display: block;
  margin-top: 16px;
  font-weight: 600;
  color: var(--brand-primary);
}

@media (max-width: 600px) {
  .emp-event-wrapper {
    padding: 28px 12px 56px;
  }

  .emp-event-header {
    padding: 32px 18px 28px;
    border-radius: 18px;
  }

  .emp-seat-availability {
    gap: 8px;
  }

  .emp-seat-box {
    padding: 14px 8px;
  }

  .emp-seat-box strong {
    font-size: 28px;
  }
}