.lite-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(100, 203, 197, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0f 0%, #0d1117 50%, #0a0a0f 100%);
  color: rgba(255, 255, 255, 0.92);
}

.lite-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 15, 0.85);
}

.lite-header-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.lite-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lite-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #166c87, #64cbc5);
  font-size: 0.95rem;
}

.lite-brand-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(100, 203, 197, 0.15);
  color: #64cbc5;
  font-size: 0.72rem;
  font-weight: 600;
  vertical-align: middle;
}

.lite-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

.lite-nav a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.lite-nav a:hover {
  color: #64cbc5;
}

.lite-main {
  flex: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.lite-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.lite-footer a {
  color: #64cbc5;
  text-decoration: none;
}

.lite-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #fff;
}

.lite-lead {
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.lite-card {
  background: rgba(24, 22, 31, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.25rem;
}

.lite-form {
  display: grid;
  gap: 1.25rem;
}

.lite-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.lite-field input,
.lite-field select,
.lite-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
}

.lite-field input:focus,
.lite-field select:focus,
.lite-field textarea:focus {
  outline: none;
  border-color: #64cbc5;
}

.lite-field select option {
  color: #111;
}

.lite-field-hint {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.lite-radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.lite-radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  cursor: pointer;
}

.lite-alert {
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.lite-alert-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

.lite-alert-success {
  background: rgba(100, 203, 197, 0.1);
  border: 1px solid rgba(100, 203, 197, 0.25);
  color: #a7f3d0;
}

.lite-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.lite-btn {
  appearance: none;
  border: none;
  border-radius: 0.75rem;
  padding: 0.85rem 1.25rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lite-btn-primary {
  background: linear-gradient(90deg, #166c87, #64cbc5);
  color: #fff;
}

.lite-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lite-btn:hover {
  opacity: 0.92;
}

.lite-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.25rem 0;
}

.lite-kv {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.875rem;
}

.lite-kv:last-child {
  border-bottom: none;
}

.lite-kv dt {
  color: rgba(255, 255, 255, 0.5);
}

.lite-kv dd {
  margin: 0;
  text-align: right;
  word-break: break-all;
}

.lite-kv dd.highlight {
  color: #64cbc5;
  font-weight: 600;
}

.lite-deposit-box {
  margin: 1.25rem 0;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(100, 203, 197, 0.08);
  border: 1px solid rgba(100, 203, 197, 0.2);
}

.lite-deposit-box code {
  display: block;
  margin-top: 0.5rem;
  word-break: break-all;
  color: #64cbc5;
  font-size: 0.8125rem;
}

.lite-refresh-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.lite-refresh-note a {
  color: #64cbc5;
}

.lite-grid-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lite-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
