body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #111;
    color: #f0f0f0;
    overflow: hidden;
}

#wave-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Punkt-Container */
#dot-container {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

/* Einzelner Punkt */
.dot {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.25;
    animation: float linear infinite;
}

/* Animation */
@keyframes float {
    from { transform: translateY(0); }
    to   { transform: translateY(-120vh); }
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    /* etwas näher an den Punkten */
    gap: 10px;
}


/* Logo Mark (wie in PointsForLogo.swift) */
.mark {
    display: flex;
    flex-direction: column;
    gap: 4px;            /* spacing */
    padding: 6px;        /* padding */
}
.mark-dot {
    display: block;
    background: #fff;
    border-radius: 50%;
}
.mark-dot.small { width: 6px; height: 6px; }
.mark-dot.large { width: 9px; height: 9px; }
.logo-text {
    /* "tools" unter "pointsfor" und links bündig */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-text .maker {
    font-size: 26px;
    font-weight: 600;
}

.logo-text .appname {
    font-size: 20px;
    color: orange;
    margin-top: 2px;
}


.logo-svg {
    display: block;
    height: 54px;
    width: auto;
}
/* Navigation */
.nav a {
    margin-left: 40px;
    text-decoration: none;
    color: #ccc;
    font-size: 22px;
}

.nav a:hover {
    color: orange;
}

/* Main */
.main {
    text-align: center;
    margin-top: 180px;
}

.main h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.main p {
    font-size: 22px;
    color: #ccc;
}

/* help-list */
.help-list{
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.help-list li{
  margin: 0.4rem 0;
}

.help-list a{
  text-decoration: none;
}


/* Footer */
.footer {
    position: fixed;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

.footer a {
    margin: 0 20px;
    text-decoration: none;
    color: #777;
    font-size: 16px;
}

.footer a:hover {
    color: orange;
}

@keyframes glow {
    0%   { box-shadow: 0 0 0px currentColor; opacity: 0.3; }
    50%  { box-shadow: 0 0 12px currentColor; opacity: 0.9; }
    100% { box-shadow: 0 0 0px currentColor; opacity: 0.3; }
}
.dot {
    position: absolute;
    background: currentColor;
    border-radius: 50%;
    opacity: 0.25;
    animation: float linear infinite;
}



/* Generic page container (centered, wie gewünscht auch beim Impressum) */
.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  text-align: center;
}

/* Make header play nicely with SVG logo */
.header .logo {
  text-decoration: none;
  color: inherit;
}

/* dein Content muss über beidem liegen */
.header, .main, {
  position: relative;
  z-index: 2;
}
