/*
 * LiveVibe theme tokens and semantic UI utilities.
 */

:root {
  --lv-bg: #06060c;
  --lv-surface-1: rgba(10, 10, 18, 0.82);
  --lv-surface-2: rgba(18, 18, 30, 0.9);
  --lv-surface-3: rgba(255, 255, 255, 0.08);
  --lv-border: rgba(122, 44, 191, 0.55);
  --lv-border-muted: rgba(148, 163, 184, 0.35);
  --lv-text: #f8fafc;
  --lv-text-muted: #cbd5e1;
  --lv-primary: #3a86ff;
  --lv-primary-hover: #4f97ff;
  --lv-secondary: #a855f7;
  --lv-secondary-hover: #9333ea;
  --lv-highlight: #b9fbc0;
}

body {
  background-image: linear-gradient(rgba(2, 6, 23, 0.75), rgba(2, 6, 23, 0.92)), url("/assets/site-bg-98f2cf87.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: var(--lv-bg);
  color: var(--lv-text);
}

.lv-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.lv-container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.lv-nav-link {
  color: var(--lv-text-muted);
  transition: color 0.2s ease;
}

.lv-nav-link:hover,
.lv-nav-link:focus-visible {
  color: var(--lv-primary);
}

.lv-brand-link {
  color: var(--lv-primary);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lv-card {
  background: var(--lv-surface-1);
  border: 1px solid var(--lv-border);
  border-radius: 1rem;
  box-shadow: 0 10px 32px rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(10px);
}

.lv-card-muted {
  background: var(--lv-surface-2);
  border: 1px solid var(--lv-border-muted);
  border-radius: 1rem;
}

.lv-button-primary,
.lv-button-secondary,
.lv-button-pay {
  font-weight: 700;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}

.lv-button-primary {
  background: var(--lv-primary);
  color: #f8fafc;
  box-shadow: 0 10px 24px rgba(58, 134, 255, 0.35);
}

.lv-button-primary:hover,
.lv-button-primary:focus-visible {
  background: var(--lv-primary-hover);
}

.lv-button-pay {
  background: var(--lv-primary);
  color: #f8fafc;
  border: 1px solid color-mix(in srgb, var(--lv-primary) 75%, white);
  box-shadow: 0 10px 24px rgba(58, 134, 255, 0.42);
}

.lv-button-pay:hover,
.lv-button-pay:focus-visible {
  background: var(--lv-primary-hover);
}

.lv-button-secondary {
  background: var(--lv-secondary);
  color: var(--lv-text);
  border: 1px solid color-mix(in srgb, var(--lv-secondary) 70%, white);
  box-shadow: 0 10px 24px rgba(168, 85, 247, 0.3);
}

.lv-button-secondary:hover,
.lv-button-secondary:focus-visible {
  background: var(--lv-secondary-hover);
}

.lv-input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--lv-border);
  background: rgba(2, 6, 23, 0.75);
  color: var(--lv-text);
  padding: 0.7rem 0.9rem;
}

.lv-input:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--lv-primary) 75%, white);
  outline-offset: 1px;
}

.lv-link {
  color: var(--lv-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lv-link:hover,
.lv-link:focus-visible {
  color: var(--lv-highlight);
}

.lv-page-wrap {
  max-width: 54rem;
  margin-inline: auto;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Stabilize Administrate form alignment for labels, fields, and hints. */
.field-unit {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  column-gap: 0.75rem;
  align-items: start;
  margin-bottom: 0.55rem;
}

.field-unit__label {
  float: none;
  width: auto;
  margin-left: 0;
  text-align: right;
  padding-top: 0.35rem;
}

.field-unit__field {
  float: none;
  margin-left: 0;
  min-width: 0;
}

.field-unit__hint {
  margin-left: 0;
  width: auto;
}

.field-unit__hint--below {
  grid-column: 2;
  margin-top: 0.05rem;
  margin-bottom: 0;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .field-unit {
    grid-template-columns: 1fr;
    row-gap: 0.4rem;
  }

  .field-unit__label {
    text-align: left;
    padding-top: 0;
  }

  .field-unit__hint--below {
    grid-column: 1;
    margin-top: 0.1rem;
  }
}
  