/* ============================================================
   VegasBet — License & Security page
   Purple-on-dark, matches the About page design language.
   ============================================================ */

.license-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 28px 0 64px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.license-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  background:
    radial-gradient(ellipse 60% 90% at 85% 50%,
      rgba(124, 58, 237, .20) 0%,
      rgba(168, 85, 247, .07) 45%,
      transparent 70%),
    #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px 40px;
}

.license-hero-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  filter: drop-shadow(0 0 14px rgba(168, 85, 247, 0.45));
}
.license-hero-icon svg { width: 100%; height: 100%; display: block; }

.license-hero-heading {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.license-hero-sub {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
  max-width: 640px;
  margin: 0;
}

/* ── License cards ────────────────────────────────────────── */
.license-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.license-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
              transform 0.2s ease;
}
.license-card:hover {
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12);
  transform: translateY(-2px);
}

.license-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(124, 58, 237, 0.06);
}

.license-emblem {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(124, 58, 237, 0.14);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: var(--accent);
}
.license-emblem svg { width: 26px; height: 26px; display: block; }

.license-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.25;
}

.license-card-body {
  padding: 18px 24px 22px;
}
.license-card-body p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ── Footer note ──────────────────────────────────────────── */
.license-note {
  margin-top: 24px;
  padding: 18px 24px;
  border: 1px dashed rgba(124, 58, 237, 0.35);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.65;
  text-align: center;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .license-page { padding: 16px 0 40px; }

  .license-hero {
    flex-direction: column;
    text-align: center;
    padding: 26px 20px;
    gap: 16px;
  }
  .license-hero-heading { font-size: 24px; }
  .license-hero-sub { font-size: 14px; }

  .license-card-head { padding: 16px 16px; gap: 12px; }
  .license-emblem { width: 40px; height: 40px; }
  .license-card-body { padding: 16px 16px 20px; }
}
