html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* ── Hero Section ── */
.hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  border-radius: 0 0 2rem 2rem;
  padding: 4rem 1rem;
}

.hero-section .lead {
  color: #b0bec5 !important;
}

/* ── Cards ── */
.card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.12) !important;
}

/* ── Footer ── */
.footer {
  background-color: #f8f9fa;
}

/* ── License key display ── */
.user-select-all {
  user-select: all;
  cursor: pointer;
}

/* ── Admin stat cards ── */
.card.border-primary,
.card.border-success,
.card.border-info,
.card.border-warning {
  border-width: 2px;
}

/* ── Table tweaks ── */
.table th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #6c757d;
}

/* ── Breadcrumb fix ── */
.breadcrumb {
  background: transparent;
  padding: 0;
}

/* ── Ticket conversation ── */
.border-start.border-3 {
  border-width: 3px !important;
}

/* ── Article content ── */
.article-content {
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ── Support hero ── */
.card.border-danger,
.card.border-dark {
  border-width: 2px;
}