.lander {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.lander-image {
    max-width: 462px;
    max-height: 408px;
    height: auto;
}

.lander-buttons {
    display: flex;
    gap: 16px;
}

.lander-btn {
    text-decoration: none;
    padding: 10px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: filter 0.2s;
}

.lander-btn:hover {
    filter: brightness(1.15);
}

.lander-btn:active {
    filter: brightness(0.9);
}

.lander-btn-secondary {
    border-color: #2a2a2a;
    color: #888;
}

.lander-btn-secondary:hover {
    border-color: #7CE179;
    color: #7CE179;
}

.lander-btn-download {
    background: #3d7a3a;
    color: #e0e0e0;
}

.lander-btn-wiki {
    background: #3d7a3a;
    color: #e0e0e0;
}

body {
    background: #1E2021;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
}




.downloads {
    width: 75%;
    margin: 0 auto;
    padding: 48px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
}

.downloads-title {
    font-size: 32px;
    font-weight: 600;
}

/* OS Selector */
.os-selector {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.os-btn {
    padding: 8px 24px;
    border: 1px solid #444;
    border-radius: 6px;
    background: transparent;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.os-btn:hover {
    border-color: #7CE179;
    color: #7CE179;
}

.os-btn.active {
    border-color: #7CE179;
    color: #7CE179;
    background: #1E3320;
}

/* Download Cards */
.download-options {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.download-card {
    background: #252627;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 220px;
}

.download-card-soon {
    opacity: 0.5;
}

.download-card-title {
    font-size: 15px;
    font-weight: 600;
}

.download-card-desc {
    font-size: 13px;
    color: #aaa;
    flex: 1;
}

.download-card-btn {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    padding: 8px 0;
    background: #3d7a3a;
    color: #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: filter 0.2s;
}

.download-card-btn:hover {
    filter: brightness(1.15);
}

.download-card-code {
    display: block;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 8px;
    font-size: 12px;
    color: #7CE179;
    text-align: center;
}

.download-card-code-id {
    color: #7CE179;
    font-size: 13px;
}

.download-card-icon {
    width: 48px;
    height: 48px;
    align-self: center;
}

/* Specs */
.specs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.specs-title {
    font-size: 20px;
    font-weight: 600;
}

.specs-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.spec-card {
    background: #252627;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-value {
    font-size: 18px;
    font-weight: 600;
    color: #7CE179;
}

.spec-subtext {
    font-size: 11px;
    color: #666;
}

.copy-code {
    cursor: pointer;
    user-select: none;
    transition: background 0.2s, color 0.2s;
}

.copy-code:hover {
    background: #222;
    border-color: #7CE179;
}

.copy-code.copied {
    color: #7CE179;
    border-color: #7CE179;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    font-size: 13px;
    color: #555;
    background: #1E2021;
    border-top: 1px solid #222;
}

.footer-link {
    color: #555;
    text-decoration: underline;
}

.footer-link:hover {
    color: #7CE179;
}
