/* Basic page layout - lighter dark */
body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: #242424;   /* <-- swapped */
    color: #e8e8e8;
}

/* Left justify container */
.page {
    max-width: 700px;
    margin: 40px 0 40px 40px;
    padding: 20px 24px;
    background: #000000;   /* <-- swapped */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.release-note {
    margin-top: 1px;     /* Closer to first button */
    margin-bottom: 18px; /* Push away from 2nd button */
    color: #ccc;
}

.logo {
    height: 60px;          /* adjust size as needed */
    margin-bottom: 10px;   /* space under logo */
}

/* Header */
.page h1 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.8rem;
    color: #FFD700;  /* Gold heading */
}

/* Description text */
.page p.description {
    margin-top: 0;
    margin-bottom: 20px;
    color: #d6d6d6;
}

/* Normal hyperlinks */
a {
    color: #FFD700;
    text-decoration: none;
}

a:hover {
    color: #FFE680;
}

/* Download list */
.downloads {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.downloads li {
    margin-bottom: 10px;
}

/* Download Buttons */
.downloads a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 4px;
    text-decoration: none;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.95rem;
}

.downloads a:hover {
    background: #3b82f6;
}

.downloads a:active {
    background: #1d4ed8;
}

/* Notes text */
.note {
    margin-top: 20px;
    font-size: 1rem;
    color: #cacaca;
}
