.brand-link { color: inherit; text-decoration: none; }
.ticket-top-links { display: flex; gap: 18px; }
.top-link {
  min-height: 36px; display: inline-flex; align-items: center; gap: 7px;
  color: var(--green); text-decoration: none; font-size: 13px; font-weight: 700;
}
.ticket-page { width: min(760px, calc(100% - 40px)); margin: 38px auto 70px; }
.ticket-header { margin-bottom: 22px; }
.ticket-header h1 { margin: 0 0 7px; font-size: 28px; letter-spacing: 0; }
.ticket-header p { margin: 0; color: var(--muted); }
.ticket-form-panel { padding: 28px; }
.ticket-form-panel form { display: grid; gap: 20px; }
.ticket-form-panel textarea { min-height: 190px; }
.captcha-row { display: grid; grid-template-columns: 180px minmax(180px, 1fr) 44px; gap: 10px; }
.captcha-image-button {
  width: 180px; height: 58px; padding: 0; overflow: hidden; border: 1px solid #cbd4cc;
  border-radius: 6px; background: #f4f6f3;
}
.captcha-image-button img { display: block; width: 180px; height: 58px; object-fit: cover; }
.captcha-row input { height: 58px; text-transform: uppercase; letter-spacing: 2px; }
.secondary-button {
  min-height: 42px; border: 1px solid #cbd4cc; border-radius: 6px; padding: 0 14px;
  background: #fff; color: var(--ink); display: inline-flex; align-items: center;
  justify-content: center; gap: 7px; font-weight: 700;
}
.captcha-refresh { width: 44px; height: 58px; padding: 0; }
.ticket-submit { width: 190px; justify-self: end; }
.ticket-success { padding: 52px 28px; text-align: center; }
.ticket-success .success-icon {
  width: 54px; height: 54px; display: grid; place-items: center;
  margin: 0 auto 16px; border-radius: 50%; background: #e2eee7; color: var(--green);
}
.ticket-success h2 { margin: 0 0 16px; }
.ticket-success p { margin: 0; color: var(--muted); font-size: 12px; }
.ticket-id { display: block; margin: 8px 0 22px; font: 700 14px ui-monospace, monospace; }

@media (max-width: 640px) {
  .ticket-page { width: calc(100% - 24px); margin-top: 24px; }
  .ticket-header h1 { font-size: 24px; }
  .ticket-form-panel { padding: 22px; }
  .ticket-top-links { gap: 10px; }
  .ticket-top-links .top-link:first-child { display: none; }
  .captcha-row { grid-template-columns: 1fr 44px; }
  .captcha-image-button { grid-column: 1 / -1; width: 180px; }
  .ticket-submit { width: 100%; }
}

