/*
 * Path: assets/css/core.css
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(77,163,255,0.10), transparent 28%),
    radial-gradient(circle at right top, rgba(45,245,212,0.08), transparent 22%),
    linear-gradient(180deg, #08111f 0%, #091321 35%, #07101d 100%);
  color: var(--color-text);
  font-family: var(--font-family-base);
  font-size: var(--fs-body);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

hr {
  border: 0;
  border-top: 1px solid var(--color-divider);
  margin: var(--space-5) 0;
}

.is-hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }