/* Quado — Website im Spiel-Look. Keine externen Ressourcen (DSGVO). */
:root {
  --bg-top: #2B305C;
  --bg-bottom: #141730;
  --panel: rgba(0, 0, 0, 0.25);
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.62);
  --accent: #FFCC45;
  --accent-ink: #1F1A0D;
  --coral: #F25961;
  --teal: #1AB3AB;
  --sunflower: #FFD64D;
  --violet: #8C66F2;
  --lime: #73C740;
  --sky: #8CCCFF;
  --radius: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: ui-rounded, -apple-system, "SF Pro Rounded", "Segoe UI", system-ui, sans-serif;
  /* Kein background-attachment:fixed — auf iOS Safari & in Compositing-Situationen fehleranfällig. */
  background-color: var(--bg-bottom);
  background-image: radial-gradient(120% 1400px at 50% 0%, var(--bg-top) 0%, var(--bg-bottom) 85%);
  background-repeat: no-repeat;
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

.wrap { max-width: 980px; margin: 0 auto; padding: 0 22px; }

/* Header */
header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand img { width: 44px; height: 44px; border-radius: 11px; }
.brand span { font-weight: 800; font-size: 1.25rem; letter-spacing: 0.04em; }
nav a {
  color: var(--text-dim); text-decoration: none; font-weight: 600;
  margin-left: 18px; font-size: 0.95rem;
}
nav a:hover { color: var(--text); }

/* Hero */
.hero { text-align: center; padding: 56px 0 30px; }
.hero img.appicon {
  width: 132px; height: 132px; border-radius: 30px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4rem);
  font-weight: 800; letter-spacing: 0.06em; line-height: 1.1;
}
.hero .tagline {
  color: var(--text-dim); font-size: 1.25rem; margin-top: 10px; font-weight: 500;
}
.badge {
  display: inline-block; margin-top: 26px;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 800; font-size: 1.02rem;
  padding: 13px 30px; border-radius: 999px;
  box-shadow: 0 10px 26px rgba(255, 204, 69, 0.28);
}
.hero .note { color: var(--text-dim); font-size: 0.88rem; margin-top: 12px; }

/* Deko-Blöcke */
.blocks { display: flex; justify-content: center; gap: 10px; margin: 34px 0 8px; }
.block {
  width: 44px; height: 44px; border-radius: 11px; position: relative;
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.35), inset 0 -6px 10px rgba(0, 0, 0, 0.18), inset 0 6px 9px rgba(255, 255, 255, 0.28);
}
.block::after {
  content: ""; position: absolute; left: 15%; top: 9%;
  width: 70%; height: 26%; border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}
.block.star::before {
  content: "★"; position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(26, 23, 40, 0.85); font-size: 1.25rem; z-index: 1;
}
.b-coral { background: linear-gradient(var(--coral), #C93A44); }
.b-teal { background: linear-gradient(#2BC7BE, #0E8A82); }
.b-sun { background: linear-gradient(#FFE070, #E8B424); }
.b-violet { background: linear-gradient(#9E7BFF, #6C48C9); }
.b-lime { background: linear-gradient(#8AD65B, #549A2C); }
.b-sky { background: linear-gradient(#A8DBFF, #6FB1E8); }

/* Sections */
section { padding: 52px 0; }
h2 {
  font-size: 1.9rem; font-weight: 800; text-align: center; margin-bottom: 34px;
  letter-spacing: 0.02em;
}
h2 .hl { color: var(--accent); }

.grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 26px;
}
.card .emoji { font-size: 1.9rem; }
.card h3 { margin: 10px 0 6px; font-size: 1.12rem; font-weight: 700; }
.card p { color: var(--text-dim); font-size: 0.97rem; }

/* Screenshots */
.shots {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.shots img {
  width: min(260px, 78vw);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
}

/* Fair-Section */
.fair {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 34px 30px; text-align: center;
}
.fair ul {
  list-style: none; display: flex; flex-wrap: wrap; gap: 12px 26px;
  justify-content: center; margin-top: 18px;
}
.fair li { color: var(--text); font-weight: 600; }
.fair li::before { content: "✓ "; color: var(--accent); font-weight: 800; }

/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px; padding: 30px 0 44px;
  text-align: center; color: var(--text-dim); font-size: 0.92rem;
}
footer a { color: var(--text-dim); text-decoration: underline; }
footer a:hover { color: var(--text); }

/* Rechtsseiten */
.legal { max-width: 760px; margin: 0 auto; padding: 30px 0 60px; }
.legal h1 { font-size: 2rem; margin-bottom: 8px; }
.legal .stand { color: var(--text-dim); margin-bottom: 30px; }
.legal h2 { text-align: left; font-size: 1.25rem; margin: 34px 0 10px; }
.legal h3 { font-size: 1.05rem; margin: 22px 0 8px; }
.legal p, .legal li { color: rgba(255, 255, 255, 0.85); }
.legal ul { padding-left: 22px; margin: 10px 0; }
.legal a { color: var(--accent); }
.placeholder {
  background: rgba(255, 204, 69, 0.15); border: 1px dashed var(--accent);
  border-radius: 8px; padding: 1px 7px; color: var(--accent); font-weight: 600;
}

@media (max-width: 620px) {
  .hero { padding-top: 34px; }
  section { padding: 38px 0; }
}
