:root {
  --mm-bg: #f5f9ff;
  --mm-bg-soft: #edf4ff;
  --mm-card: #ffffff;
  --mm-text: #17324d;
  --mm-muted: #5f7994;
  --mm-border: #d4e3f7;
  --mm-shadow: 0 10px 28px rgba(30, 84, 150, 0.12);
  --mm-blue: #0ea5e9;
  --mm-green: #2cb05a;
  --mm-orange: #f14a2f;
  --mm-purple: #8e49c9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  background: #ffffff;
  background-attachment: fixed;
  font-family: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--mm-text);
  min-height: 100vh;
}

main {
  background: transparent;
}

#root {
  min-height: 100%;
  padding-top: 72px;
}

@media (max-width: 900px) {
  #root {
    padding-top: 84px;
  }
}

@media (max-width: 600px) {
  #root {
    padding-top: 96px;
  }
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.mm-card {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: 18px;
  box-shadow: var(--mm-shadow);
}

.mm-btn {
  border: none;
  border-radius: 999px;
  font-family: "Fredoka", "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 20px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.mm-btn:hover {
  transform: translateY(-1px);
}

.mm-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
  box-shadow: none;
}

.m10-app,
.nlj-app,
.pve-app {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px 72px;
}

.m10-hero,
.nlj-header,
.pve-hero {
  text-align: center;
  margin: 0 auto 24px;
  width: 100%;
  max-width: 640px;
}

.m10-title,
.nlj-title,
.pve-hero-title {
  font-family: "Fredoka", "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #17324d;
  line-height: 1.1;
}

.m10-subtitle,
.nlj-subtitle,
.pve-hero-subtitle {
  margin-top: 8px;
  color: #476683;
  font-size: 15px;
  font-weight: 700;
}

.m10-bubble,
.nlj-bubble {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fredoka", "Quicksand", sans-serif;
  font-weight: 600;
  color: #fff;
  border: 3px solid #ffffffaa;
  flex-shrink: 0;
}
