body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;

  background: radial-gradient(
    circle at center,
    var(--color-navy-space),
    var(--color-bg-deep)
  );

  color: var(--text-primary);

  overflow-x: hidden;
  overflow-y: auto;

  min-height: 100vh;
}

/* Basis Container */
.page {
  display: flex;
  flex-direction: column;

  width: 100%;
  min-height: 100vh;

  align-items: center;
}

.containerCenter {
  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  min-height: 100vh;
}

.containerTop {
  display: flex;
  flex-direction: column;

  justify-content: flex-start;
  align-items: center;

  min-height: 10vh;
  padding-top: 90px;
  padding-left: 20px;
  padding-right: 20px;
}

.containerTop2 {
  display: flex;
  flex-direction: column;

  height: 100vh;
  padding-top: 90px;

  box-sizing: border-box;
}

.containerWarp {
  display: flex;
  flex-direction: row;   /* Standard, kannst du auch weglassen */
  flex-wrap: wrap;      /* WICHTIG: erlaubt Zeilenumbruch */

  justify-content: center; 
  align-items: flex-start;

  min-height: 100vh;
  width: 100%;
  padding-top: 90px;
  padding-left: 20px;
  padding-right: 20px;
  gap: 15px;            /* optional: Abstand zwischen Items */
}

/* =========================
   LINKS
========================= */
a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  margin: var(--space-sm) 0;
}


/* =========================
   SUBTITLE
========================= */
.subtitle {
  font-size: 1em;
  font-weight: bold;
  text-align: center;

  background: linear-gradient(
    90deg,
    var(--text-muted),
    var(--color-bg-steel)
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  margin: var(--space-sm) 0;
}


/* =========================
   INPUT
========================= */
input {
  width: 100%;
  max-width: 400px;

  padding: var(--space-md);
  margin: var(--space-sm) 0;

  border-radius: var(--radius-md);
  border: none;
  outline: none;

  background: var(--bg-glass);
  color: var(--text-primary);

  box-sizing: border-box;
}


/* =========================
   H1
========================= */
h1 {
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;

  background: var(--text-primary);

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  margin: 0 auto;
  width: 100%;
}


/* =========================
   H2 (NEU)
========================= */
h2 {
  font-size: 1.2em;
  font-weight: 600;
  text-align: center;

  color: var(--text-primary);

  margin: var(--space-sm) 0;
}


/* =========================
   PARAGRAPH (NEU)
========================= */
p {
  font-size: 0.95em;
  line-height: 1.5;

  color: var(--text-muted);
  text-align: center;

  margin: var(--space-sm) 0;
  max-width: 500px;
}

.smallicon1 {
  width: 24px;
  height: 24px;
  opacity: 0.9;
}
