:root{
    --bg:#0b0d11;
    --surface:#222730;
    --gold:#d8b24c;
    --text:#f5f5f5;
    --muted:#b8bec8;
    --border:rgba(255,255,255,.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Segoe UI,Arial,sans-serif;
    color:var(--text);
    background:
        radial-gradient(circle at top,#232a36 0%,#12161d 40%,#090b0f 100%);
}

.container{
    width:min(1150px,94%);
    margin:auto;
}

.hero{
    text-align:center;
    padding:70px 20px;
}

.logo{
    width:230px;
    margin-bottom:25px;
    animation:fadeDown .8s ease;
}

@keyframes fadeDown{

from{
opacity:0;
transform:translateY(-20px);
}

to{
opacity:1;
transform:none;
}

}

.hero h1{
    font-size:3.3rem;
    margin-bottom:18px;
}

.subtitle{
    max-width:700px;
    margin:auto;
    color:var(--muted);
    line-height:1.7;
    font-size:1.15rem;
}

.downloads{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:30px;

    margin:70px 0 50px;

}

.download-card{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(12px);

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

    text-align:center;

    transition:.25s;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.download-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

    box-shadow:
        0 0 30px rgba(216,178,76,.18),
        0 30px 60px rgba(0,0,0,.45);

}

.recommended{

    display:none;

    background:var(--gold);

    color:#111;

    font-size:.8rem;

    font-weight:bold;

    border-radius:30px;

    padding:6px 14px;

    margin-bottom:18px;

}

.icon{
    display:flex;
    justify-content:center;
    align-items:center;
    height:90px;
    margin:20px 0;
}

.icon img{
    width:72px;
    height:72px;
    object-fit:contain;
    display:block;
}

.icon svg{

    width:72px;

    height:72px;

    display:block;

}

.download-card h2{

    margin-bottom:15px;

    font-size:2rem;

}

.download-card p{

    color:var(--muted);

    line-height:1.7;

    min-height:55px;

}

.download-button{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    min-width:240px;

    margin-top:22px;

    padding:15px 28px;

    border-radius:12px;

    background:var(--gold);

    color:#111;

    text-decoration:none;

    font-weight:700;

    transition:.2s;

}

.download-button:hover{

    background:#e5bf5b;

    transform:scale(1.04);

}

.meta{

    margin-top:15px;

    color:var(--muted);

    font-size:.9rem;

}

.status{

    text-align:center;

    margin:50px 0;

}

.status a{

    display:inline-block;

    background:#1b2028;

    color:#fff;

    text-decoration:none;

    padding:16px 26px;

    border-radius:14px;

}

.section{

    max-width:900px;

    margin:80px auto;

}

.section h2{

    text-align:center;

    margin-bottom:28px;

    font-size:2rem;

}

.info-box{

    background:rgba(255,255,255,.05);

    border:1px solid var(--border);

    border-radius:18px;

    padding:30px 40px;

}

.steps{

    padding-left:24px;

    color:var(--muted);

    line-height:2;

    font-size:1.05rem;

}

.steps strong{

    color:var(--text);

}

details{

    background:rgba(255,255,255,.05);

    border:1px solid var(--border);

    border-radius:18px;

    padding:24px;

}

summary{

    cursor:pointer;

    font-weight:600;

    font-size:1.05rem;

}

table{

    width:100%;

    border-collapse:collapse;

    margin-top:20px;

}

td{

    padding:14px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

button{

    background:var(--gold);

    color:#111;

    border:none;

    border-radius:8px;

    padding:8px 14px;

    cursor:pointer;

    font-weight:600;

}

.linux{

    text-align:center;

}

.linux p{

    max-width:700px;

    margin:0 auto 30px;

    color:var(--muted);

    line-height:1.8;

}

footer{

    text-align:center;

    padding:50px 20px;

    color:var(--muted);

}

.footer-links{

    margin-bottom:18px;

}

.footer-links a{

    color:var(--gold);

    text-decoration:none;

    margin:0 10px;

}

.footer-links a:hover{

    text-decoration:underline;

}

@media (max-width:768px){

.hero h1{

font-size:2.4rem;

}

.logo{

width:180px;

}

.downloads{

grid-template-columns:1fr;

}

.download-button{

width:100%;

}

.info-box{

padding:24px;

}

}