* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.page {
  font-family: "Poppins", Arial, sans-serif;
  max-width: 640px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  border: 1px solid #ff8c00;
  border-radius: 16px;
  background: #ffffff;
}
input,
select,
button,
textarea {
  font-family: "Poppins", Arial, sans-serif;
}
.hero {
  background: #1a1a2e;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: left;
  flex: 1;
}

.hero-logo {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #ff8c00;
  flex-shrink: 0;
}

.ball-icon {
  font-size: 30px;
  margin-bottom: 8px;
  display: block;
}

.hero h1 {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.hero p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

.orange-line {
  width: 48px;
  height: 3px;
  background: #ff8c00;
  border-radius: 2px;
  margin: 5px auto;
}

.card {
  background: var(--color-background-primary);
  border: 0.5px solid var(--color-border-tertiary);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: visible;
}
.card-header {
  background: #1a1a2e;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-header span {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
}
.step-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff8c00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  flex-shrink: 0;
}
.card-body {
  padding: 1.25rem;
}

.field {
  margin-bottom: 1.25rem;
  position: relative;
}

.field:last-child {
  margin-bottom: 0;
}

.field label {
  display: block;
  font-size: 11px;
  color: #ff8c00;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  background: #fafafa;
  color: #333;
  outline: none;
  transition: all 0.2s ease;
}

.field input::placeholder {
  color: #bbb;
  font-size: 13px;
}

.field input:hover,
.field select:hover {
  border-color: #ffb347;
  background: #fff;
}

.field input:focus,
.field select:focus {
  border-color: #ff8c00;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.12);
}

.custom-select {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  background: #fafafa;
  color: #bbb;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-select-trigger.selected {
  color: #333;
}

.custom-select-trigger:hover {
  border-color: #ffb347;
  background: #fff;
}

.custom-select.open .custom-select-trigger {
  border-color: #ff8c00;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.12);
}

.custom-select.open .custom-select-trigger svg {
  transform: rotate(180deg);
}

.custom-select-trigger svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.custom-options {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #1a1a2e;
  border: 1.5px solid #ff8c00;
  border-radius: 12px;
  overflow: hidden;
  z-index: 100;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.custom-select.open .custom-options {
  display: block;
}

.custom-option {
  padding: 11px 16px;
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.custom-option:last-child {
  border-bottom: none;
}

.custom-option:hover {
  background: rgba(255, 140, 0, 0.15);
  color: #ff8c00;
}

.custom-option.selected-opt {
  background: rgba(255, 140, 0, 0.2);
  color: #ff8c00;
  font-weight: 500;
}

.custom-option.placeholder-opt {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  cursor: default;
}

.custom-option.placeholder-opt:hover {
  background: transparent;
  color: rgba(255, 255, 255, 0.3);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.uniform-notice {
  background: #fff8f0;
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
  color: #633806;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.uniform-notice strong {
  color: #412402;
}

.waiver-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 0.5px solid var(--color-border-tertiary);
}
.waiver-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.waiver-item input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #ff8c00;
}
.waiver-item label {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}
.waiver-item label strong {
  color: var(--color-text-primary);
}

.payment-note {
  background: var(--color-background-secondary);
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-top: 1rem;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #ff8c00;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 0.5rem;
  letter-spacing: 0.3px;
}
.submit-btn:hover {
  background: #e07a00;
}
.footer-note {
  font-size: 12px;
  color: var(--color-text-tertiary);
  text-align: center;
  margin-top: 10px;
  line-height: 1.6;
}
.countdown-wrap {
  background: #1a1a2e;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
  border: 1px solid #ff8c00;
}

.countdown-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 140, 0, 0.15);
  border: 1px solid #ff8c00;
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 64px;
}

.countdown-block span {
  font-size: 28px;
  font-weight: 600;
  color: #ff8c00;
  line-height: 1;
}

.countdown-block label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.countdown-sep {
  font-size: 24px;
  font-weight: 600;
  color: #ff8c00;
  margin-bottom: 16px;
}

/* Mobile */
@media (max-width: 480px) {
  .countdown-block {
    min-width: 52px;
    padding: 8px 10px;
  }
  .countdown-block span {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .page {
    margin: 1rem;
    padding: 1rem;
    border-radius: 12px;
  }

  .hero {
    padding: 1.25rem;
    gap: 12px;
  }

  .hero-logo {
    width: 110px;
    height: 110px;
  }

  .hero h1 {
    font-size: 20px;
  }

  .alerts {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .card-body {
    padding: 1rem;
  }
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
}

.alerts {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.alert-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  min-width: 140px;
}

.alert-deadline {
  border-top: 3px solid #ff8c00;
}

.alert-deadline .alert-label {
  font-size: 11px;
  color: #ba7517;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.alert-deadline .alert-value {
  font-size: 15px;
  font-weight: 600;
  color: #633806;
  margin-top: 4px;
}

.alert-refund {
  border-top: 3px solid #fc0a0a;
}

.alert-refund .alert-label {
  font-size: 11px;
  color: #fc0a0a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.alert-refund .alert-value {
  font-size: 15px;
  font-weight: 600;
  color: #fc0a0a;
  margin-top: 4px;
}
@media (max-width: 480px) {
  .page {
    margin: 0.5rem;
    padding: 0.75rem;
    border-radius: 10px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1rem;
  }

  .hero-content {
    text-align: center;
    order: 2;
  }

  .hero-logo {
    width: 140px;
    height: 140px;
    order: 1;
  }

  .orange-line {
    margin: 8px auto;
  }

  .hero h1 {
    font-size: 20px;
  }

  .alerts {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .card-header {
    padding: 10px 14px;
  }

  .card-body {
    padding: 0.875rem;
  }

  .field input,
  .field select {
    padding: 11px 14px;
    font-size: 13px;
  }

  .submit-btn {
    padding: 13px;
    font-size: 14px;
  }

  .step-badge {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 18px;
  }

  .hero-logo {
    width: 120px;
    height: 120px;
  }

  .alert-label {
    font-size: 10px;
  }

  .alert-value {
    font-size: 13px;
  }

  .field label {
    font-size: 10px;
  }
}
