body, html {
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: "Onest";
    src: url(../fonts/Onest.woff2);
    font-style: normal;
    font-weight: 100 900;
}
@font-face {
    font-family: "Inconsolata";
    src: url(../fonts/Inconsolata.woff2);
    font-style: normal;
    font-weight: 100 900;
}
@font-face {
    font-family: "Material Symbols Rounded";
    src: url(../fonts/MaterialSymbolsRounded.woff2);
}
.icon {
    font-family: "Material Symbols Rounded";
}
* {
    font-family: "Onest", sans-serif;
    font-synthesis: italic;
    font-optical-sizing: auto;
    scrollbar-color: rgba(100,100,100) rgba(30,30,30);
}
body {
    background: rgba(40,40,40);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    color: white;
    gap: 20px;
}
.logo {
    width: 100px;
}
.header {
    font-size: 50px;
    margin: 0;
    font-weight: 500;
}
.subheader {
    font-size: 25px !important;
    margin: 0;
    font-style: italic;
    color: rgba(175,175,175);
    text-align: center;
}
.downloadbtns {
    display: flex;
    gap: 10px;
}
.downloadbtn {
    background: rgba(100,0,200);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    gap: 10px;
    box-shadow: 0 3px 10px 3px rgba(50,0,150);
    transition: background 0.2s, box-shadow 0.2s;
}
.downloadbtn:hover {
    background: rgba(80,0,180);
    cursor: pointer;
    box-shadow: 0 3px 10px 3px rgba(40,0,160);
}
.downloadbtn:disabled {
    background: rgba(75,75,75);
    box-shadow: 0 3px 10px 3px rgba(75,75,75,0.5);
    cursor: not-allowed;
}
.downloadbtn img {
    height: 30px;
}
.links {
    display: flex;
    gap: 10px;
}
.links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s;
}
.links a:hover {
    border-bottom: 2px solid rgb(75, 50, 250);
}
.footer {
    font-size: 14px;
    color: rgba(175,175,175)
}

.credits {
    gap: 5px;
}
.credits * {
    margin: 0;
}
.credits h1 {
    font-size: 35px;
    font-weight: 500;
    margin: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.credits h1 img {
    height: 50px;
    transform: translateY(-5px);
}
.credits h2 {
    font-size: 25px;
    font-weight: 500;
    margin: 5px;
}
.credits h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}
.credits p {
    font-size: 16px;
    font-weight: 400;
}
.credits .subheader {
    margin-bottom: 10px;
}
.credits .set {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    width: 400px;
    margin-top: 5px;
    text-align: right;
}
.credits .set .icon {
    display: inline-block;
    font-size: 18px;
    color: rgba(200,200,200);
    transform: translateY(2px);
}
.notice {
    font-size: 15px;
    color: rgba(175,175,175);
    text-align: center;
}

.sysreqcheck {
    color: white;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    background: rgba(255,255,255,0.025);
    padding: 10px 20px;
    border-radius: 10px;
    transition: background 0.2s;
}
.sysreqcheck:hover {
    background: rgba(255,255,255,0.05);
}

.vpass, .vnpass {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    display: none;
}
.vpass {
    color: rgba(100,255,100);
}
.vnpass {
    color: rgba(255,100,100);
}

@media (max-width: 600px) {
    .header {
        font-size: 40px;
    }
    .subheader {
        font-size: 20px;
    }
    .downloadbtns {
        flex-direction: column;
        gap: 10px;
    }
    .downloadbtn {
        padding: 8px 16px;
        font-size: 14px;
        display: flex;
        justify-content: center;
    }
    .credits h1 {
        font-size: 30px;
    }
    .credits h2 {
        font-size: 20px;
    }
    .credits h3 {
        font-size: 18px;
    }
    .credits .set {
        width: 100%;
    }
}