
:root {
  --bg1: #141b3a;
  --bg2: #050814;
  --bg3: #020308;
  --text-primary: #ffffff;
  --text-secondary: #b6b6c9;
}

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

body.dark-body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, var(--bg1), var(--bg2) 60%, var(--bg3) 100%) fixed no-repeat;
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  display: flex;
  flex-direction: column;
}

/* Hero section */
.hero-pro {
  text-align: center;
  padding: 80px 16px 40px;
}

.hero-logo-pro {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(123, 92, 255, 0.7);
}

/* Footer */
footer {
  margin-top: auto;
}

.footer-inner a {
  color: #9bb4ff;
  text-decoration: none;
  font-size: 14px;
}

.footer-inner a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Basic typography */
h1, h2, h3, p {
  margin: 0;
}
p + #app-carousel {
  margin-top: 8px;
}

/* Make images responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
