/* /assets/css/style.css */
:root { --bg:#0f1419; --fg:#eaeef2; --muted:#b9c2cc; --accent:#1abc9c; }

html,body {
  background: var(--bg);
  color: var(--fg);
  scroll-behavior: smooth;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: .4px;
}

.hero {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent);
}

.check::before {
  content: "\2714";  /* ✔ checkmark */
  margin-right: .5rem;
  color: var(--accent);
}

footer {
  border-top: 1px solid rgba(255,255,255,.08);
}

.btn-success {
  border-radius: .6rem;
}

.form-control, .btn {
  border-radius: .6rem;
}

.alert {
  border-radius: .6rem;
}
