/* ===============================
   BASIS (global)
=============================== */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #222;
  margin: 0;
  line-height: 1.6;
}

a {
  color: inherit;
}

/* ===============================
   HEADER / NAVIGATION
=============================== */

.site-header {
  border-bottom: 1px solid #eee;
  padding: 14px 20px;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-cta {
  background: #0a5cff;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
}


body {
  font-family: system-ui, sans-serif;
  background: #fff;
  color: #222;
  margin: 0;
}

.simulation {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 20px;
}

h1, h2 {
  text-align: center;
}

.intro {
  text-align: center;
  margin-bottom: 40px;
  color: #444;
}

.amount-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.amount-buttons button {
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  cursor: pointer;
}

.amount-buttons button.active {
  background: #0a5cff;
  color: #fff;
  border-color: #0a5cff;
}

.dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 16px;
  margin: 40px 0;
}

.card {
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
}

.label {
  font-size: 0.9rem;
  color: #666;
}

.notice {
  font-size: 0.85rem;
  color: #555;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
/* ===============================
   STARTSEITE / HERO
=============================== */

.hero {
  text-align: center;
  max-width: 700px;
  margin: 80px auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 26px;
  background: #0a5cff;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}
.market-box {
  margin: 20px 0;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fafafa;
  font-size: 0.95rem;
}
