html, body {
    height: 100%;
    margin: 0;
}

/* Seitenhintergrund */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #000;
}

/* Download-Box */
.download-box {
    max-width: 700px;
    margin: 80px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: system-ui, sans-serif;
}

/* Überschrift */
.download-box h1 {
    margin-bottom: 10px;
    font-size: 32px;
}

/* Untertitel */
.subtitle {
    color: #555;
    margin-bottom: 30px;
}

/* Download-Button */
.download-button {
    display: block;          /* WICHTIG */
    width: 240px;
    padding: 16px 28px;
    background: #1e73be;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 6px;
    transition: background 0.2s ease;
    margin: 10px auto;       /* zentriert */
    text-align: center;      /* Text mittig */
}

.download-button:hover {
    background: #155a96;
}
.download-button.secondary {
    background: #ABD1F2;
    color: #1e73be;

}

.download-button.secondary:hover {
    background: #dbe9f9;
}

/* Meta-Infos */
.meta {
    margin-top: 12px;
    font-size: 14px;
    color: #777;
}

/* Hinweis-Box */
.notice {
    margin-top: 18px;
    padding: 14px 16px;
    background: #f7f9fc;
    border-left: 5px solid #ff8800; /* Orange */
    border-radius: 0 4px 4px 0;
    font-size: 13px;
    line-height: 1.5;
}
 .notice p a {
    margin-top: 0;
}
.notice strong {
    display: block;
    margin: 0;          /* ALLES weg */
    padding: 0;         /* Sicherheitshalber */
    line-height: 1.2;   /* kompakter */
    color: #ff8800;
    margin-bottom: 4px;
}
.notice strong + p {
    margin-top: 2px;    /* minimaler Abstand */
}

.notice p {
    margin: 0 0 8px 0;
    margin-top: 0;
    margin-bottom: 10px;   /* Minimaler Abstand oben, Abstand unten */
}

.notice a {
    display: inline-block;
    margin-top: 1px;
    margin-right: 6px;
    padding: 4px 8px;
    font-size: 12px;
    background: transparent;
    border: 1px solid #ff8800;
    border-radius: 0 4px 4px 0;
    text-decoration: none;
    color: #ff8800;
    transition: all 0.15s ease;
}

.notice a:hover {
    background: #ff8800;
    color: #fff;
}
.notice p:last-of-type {
    margin-bottom: 0;       /* Kein Extra-Abstand am Ende */
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .download-box {
        margin: 40px 20px;
        padding: 30px;
    }

    .download-box h1 {
        font-size: 26px;
    }

    .download-button {
        font-size: 16px;
        padding: 14px 22px;
    }
}
.software-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.software-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
}

.software-info span {
    font-size: 14px;
    color: #666;
}

.software-item.disabled {
    opacity: 0.5;
}

.coming-soon {
    font-size: 14px;
    color: #999;
    font-style: italic;
}
/* Startansicht */
/* Start-Button unten */
.start-container {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}


/* Großer Hauptbutton */
.main-button {
    width: 280px;              /* feste Breite für alle Buttons */
    padding: 22px 0;           /* vertikale Höhe bleibt gleich */
    font-size: 22px;
    font-weight: bold;
    background: linear-gradient(135deg, #1e73be, #155a96);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.main-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.3);
}

/* ALLE Software-Fenster */
.software-box {
    display: none;              /* <-- das war der fehlende Punkt */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 700px;
    padding: 40px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 20;
}

/* Sichtbares Fenster */
.software-box.active {
    display: block;
}

/* Zweite Button-Variante */
.main-button.secondary {
    margin-top: 12px;
    background: linear-gradient(135deg, #555, #333);
}

/* Deaktivierter Download-Button */
.download-button.disabled {
    background: #999;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
}

.close-button {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;

    background: #7D7D7D;       /* dunkler */
    color: #eee;            /* helles X */

    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;

    transition: background 0.2s ease, transform 0.2s ease;
}

.close-button:hover {
    background: #ff6a00;
    color: #fff;
    transform: scale(1.05);
}
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("images/bs_bgnew.png") center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    background: linear-gradient(90deg, #ff2a2a, #00cfff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-overlay p {
    margin-top: 10px;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
     text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.8),
        0 0 8px rgba(0, 0, 0, 0.6);
}

 /* LOGO */
.logo-text {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.logo-text .byte {
    color: #ff2a2a;
}

.logo-text .nan {
    color: #00cfff;
}

.logo-text .soft {
    color: #ffffff;
}
 .version {
    font-size: 13px;
    color: #888;
    margin-top: -20px;
    margin-bottom: 16px;
    margin-top: -20px;
}
.downloads {
    font-size: 13px;
    color: #777;
    margin-top: -8px;
    margin-bottom: 15px;
}