/* Strona publikacji ClickOnce — zakład WPPZ (akcent morski). */
:root {
  --accent:      #00695c;
  --accent-soft: #e0f2f1;
  --accent-dark: #004d40;
  --border:      #dcdcdc;
  --text:        #1f2328;
  --muted:       #5b6169;
}
* { box-sizing: border-box; }
body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  padding: 40px 24px 64px;
  background: #f4f6f8;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}
.card {
  background: #fff;
  max-width: 560px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 40px 28px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
}
h1 {
  font-size: 1.7rem;
  border-bottom: 3px solid var(--accent);
  padding-bottom: 10px;
  margin: 0 0 4px;
}
.lead {
  color: var(--muted);
  margin-top: 0;
}
.cta {
  margin: 28px 0;
  text-align: center;
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 14px 44px;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: background .15s;
}
.btn:hover { background: var(--accent-dark); }
.note {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  padding: 12px 16px;
  border-radius: 4px;
  margin: 18px 0;
  font-size: .95rem;
}
.note strong { color: var(--accent); }
.note a { color: var(--accent); }
footer {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
}
