body {
    font-family: 'Noto Sans', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #2c2c2c;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    font-size: 3em;
    margin: 0;
    font-weight: 700;
}

header p {
    font-size: 1.2em;
    font-weight: 300;
}

main {
    padding: 40px 0;
}

.download-section {
    background-color: #2c2c2c;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
}

.download-section h2 {
    font-size: 2.5em;
    margin-top: 0;
    font-weight: 500;
}

.version {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 300;
}

.download-button {
    display: inline-block;
    background-color: #76b900;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #88d400;
}

.eula {
    margin-top: 20px;
    font-size: 0.9em;
}

.eula a {
    color: #76b900;
}

.about-section {
    margin-top: 40px;
}

.about-section h2 {
    font-size: 2em;
    font-weight: 500;
}

pre {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 4px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

code {
    font-family: 'Courier New', Courier, monospace;
}

footer {
    background-color: #2c2c2c;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9em;
}

footer a {
    color: #76b900;
    text-decoration: none;
}
.platform-selection {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.platform {
    text-align: center;
}

.platform h3 {
    margin-bottom: 15px;
    font-weight: 500;
}

.download-button.disabled {
    background-color: #555;
    cursor: not-allowed;
    pointer-events: none;
}