/* ---------- Brand Variables (MOBILE ROOT) ---------- */
:root {
  --bg: #0d0d0e;
  --fg: #C6D0D6;
  --font-brand: "Orbitron", sans-serif;
  --font-tagline: "Arial Rounded MT Bold", Arial, sans-serif;
}

/* ---------- Base Layout ---------- */
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

.wrap {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Flag Image ---------- */
.flag-block {
  width: 100%;
  max-width: 480px;         /* prevents full-screen scaling */
  margin: 0 auto 1.75rem auto;
  display: block;
}

.flag-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}

/* ---------- ARBOUW Wordmark ---------- */
/* Match width of flag by using same max-width and centering */
.brand {
  margin: 0 auto;
  font-size: 3.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--fg);
  font-family: var(--font-brand);
  width: 100%;
  max-width: 480px;          /* EXACT match to flag width */
  text-align: center;
  display: block;
}

/* ---------- Tagline ---------- */
/* First line larger, second line smaller and prevented from wrapping */
.tagline {
  margin: 0.75rem auto 0 auto;
  width: 100%;
  max-width: 480px;
  text-align: center;
  display: block;
  line-height: 1.35;
  color: var(--fg);
  font-family: var(--font-tagline);
  letter-spacing: 5pt;
}

/* First line */
.tagline .line1 {
  font-size: 1.30rem;      /* larger to force the break */
  display: block;
}

/* Second line */
.tagline .line2 {
  font-size: 0.70rem;      /* smaller so it stays on one line */
  display: block;
  white-space: nowrap;     /* prevents wrapping */
}

