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

/* 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;
    gap: 20px;
}

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

.logo-text .appname {
    font-size: 24px;
    color: orange;
}

/* 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: 72px;
    margin-bottom: 20px;
}

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

/* 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;
}
