::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: #5865f2;
    border-radius: 4px;
}
::-webkit-scrollbar-track {
    background: #1f2937;
}
.primary-btn, .text{
    transition: all 200ms ease-in-out;
}
.primary-btn:hover{
    transform: scale(1.05) !important;
    background-color: rgb(71 82 196 / 1) !important;
}
.text:hover{
    color: rgb(255 255 255 / 1) !important;
    border-color: rgb(255 255 255 / 1) !important;
}
body, html {
    margin: 0;
    font-family: ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";
    background-color: rgb(17 24 39 / 1);
    scroll-behavior: smooth;
}
header {
    background-color: #111827cc;
    backdrop-filter: blur(12px);
    border-bottom: 1 solid rgb(31 41 55 / 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: auto;
    height: 64px;
}
header .container .logo {
    display: flex;
    align-items: center;
    font-size: 20px;
}
header nav a, footer nav a{
    margin: 0 15px;
    text-decoration: none;
    color: rgb(209 213 219 / 1);
}
header .container > a {
    background-color: rgb(88 101 242 / 1);
    text-decoration: none;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 100%;
}
main .hero{
    padding: 128px 32px 80px 32px;
    position: relative;
}
main .hero .bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom right, rgb(88 101 242 / .2), rgb(88 28 135 / .2), #15182c);
}
main .hero .container {
    max-width: 1280px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 1;
    position: relative;
}
main .hero .text h1 {
    font-size: 72px;
    margin-top: 0;
    margin-bottom: 30px;
}
main .hero .text p {
    font-size: 24px;
    margin-bottom: 30px;
    margin-top: 0;
    color: rgb(209 213 219 / 1);
    max-width: 768px;
}
main .hero .text .buttons a{
    display: inline-block;
    text-decoration: none;
    background-color: rgb(88 101 242 / 1);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    margin: 0 10px;
    font-size: 18px;
    font-weight: 600;
}
main .hero .text .buttons a:last-child {
    background-color: transparent;
    color: rgb(209 213 219 / 1);
    /*border: 2px solid rgb(88 101 242 / 1);*/
    border: 2px solid rgb(75 85 99 / 1);
}
main .hero .text .download-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background-color: rgb(31 41 55 / 1);
    padding: 5px 20px;
    border-radius: 50px;
    margin-top: 10px;
    gap: 10px;
    width: 150px;
}
main .hero .text .download-btn img{
    border: 2px solid rgb(162, 175, 192);
    border-radius: 50px;
    padding: 10px 0px;
    margin-left: -5px;
}
main .hero .text .download-btn.windows img{
    padding: 10px 10px;
}
main .hero .text .download-btn .text{
    flex: 1;
}
main .features {
    display: flex;
    align-items: center;
    padding: 80px 32px;
    max-width: 1280px;
    margin: auto;
    gap: 32px;
    flex-wrap: wrap;
}
main .features .feature {
    flex: 1;
    text-align: center;
    color: white;
    background: #1f293780;
    border-radius: 16px;
    padding: 32px;
    transition: all 200ms ease-in-out;
}
main .features .feature:hover{
    background: #1f2937b3 !important;
    transform: translate(0, -10px);
}
main .features .feature svg{
    width: 48px;
    height: 48px;
}
main .features .feature h3 {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 28px
}
main .features .feature p {
    margin: 0;
    color: rgb(156 163 175 / 1);
}
main .features .comunity svg {
    color: rgb(88 101 242 / 1);
}
main .features .fast svg {
    color: rgb(192 132 252 / 1);
}
main .features .quality svg {
    color: rgb(253 224 71 / 1);
}
main .changelog {
    padding: 80px 32px;
    color: white;
    background-color: #1f29374d;
}
main .changelog .container{
    max-width: 896px;
    margin: auto;
    text-align: center;
}
main .changelog .container h2 {
    font-size: 36px;
    margin: 0;
}
main .changelog .container p {
    color: rgb(156 163 175 / 1);
    margin-top: 8px;
    margin-bottom: 40px;
    font-size: 18px;
}
main .changelog .content .item {
    background: #1f293780;
    border-radius: 16px;
    text-align: left;
    margin-bottom: 20px;
    padding: 32px;
    transition: all 200ms ease-in-out;

}
main .changelog .content .item:hover{
    background: #1f2937b3;
}
main .changelog .content .item .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(31 41 55 / 1);
    margin-bottom: 16px;
}
main .changelog .content .item .header .info .type {
    color: rgb(248 113 113 / 1);
    background-color: #ef444433;
    padding: 4px 8px;
    border-radius: 50px;
    font-size: 14px;
    margin-right: 8px;
    font-weight: 500;
    line-height: 20px;
}
main .changelog .content .item .header .info .type.feature{
    color: rgb(96 165 250 / 1) !important;
    background-color: #3b82f633 !important;
}
main .changelog .content .item .header .info .type.fix{
    color: rgb(74 222 128 / 1) !important;
    background-color: #22c55e33 !important;
}
main .changelog .content .item .header .info .version {
    font-size: 24px;
    color: rgb(88 101 242 / 1);
    font-weight: 700;
}
main .changelog .content .item .header .date {
    font-size: 16px;
    color: rgb(156 163 175 / 1);
}
main .changelog .content .item .header .date svg {
    vertical-align: middle;
    margin-right: 4px;
    width: 16px;
}
main .changelog .content .item .body h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}
main .changelog .content .item .body p {
    margin-top: 0;
    margin-bottom: 16px;
    color: rgb(156 163 175 / 1);
    font-size: 16px;
}
main .changelog .content .item .body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
main .changelog .content .item .body ul li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 16px;
    color: rgb(209 213 219 / 1);
    gap: 8px;
}
main .changelog .content .item .body ul li svg {
    width: 16px;
    flex-shrink: 0;
    color: rgb(74 222 128 / 1);
}
main .changelog .load-more {
    background-color: rgb(31 41 55 / 1);
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    padding: 12px 32px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 100%;
    margin-top: 20px;
    border: 1px solid rgb(75 85 99 / 1)
}
main .faq {
    padding: 80px 32px;
    color: white;
}
main .faq .container{
    max-width: 896px;
    margin: auto;
    text-align: center;
}
main .faq .container h2 {
    font-size: 36px;
    margin: 0;
}
main .faq .container > p {
    color: rgb(156 163 175 / 1);
    margin-top: 8px;
    margin-bottom: 40px;
    font-size: 18px;
}
main .faq .content .item {
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background-color: #1f293780;
    padding: 24px;
    border-radius: 16px;
    transition: all 200ms ease-in-out;
}
main .faq .content .item:hover{
    background-color: #3741514d !important;
}
main .faq .content .item .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
main .faq .content .item .question h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}
main .faq .content .item .question svg {
    width: 20px;
    transition: transform 0.3s ease;
}
main .faq .content .item .answer {
    margin-top: 16px;
    display: none;
    color: rgb(156 163 175 / 1);
    font-size: 16px;
}
main .faq .content .item.active .answer {
    display: block;
}
main .faq .content .item.active .question svg {
    transform: rotate(180deg);
}
main .donation {
    padding: 80px 32px;
    color: white;
    background-color: #1f29374d;
    text-align: center;
}
main .donation .container{
    max-width: 896px;
    margin: auto;
}
main .donation .container > svg {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 50px;
    background: linear-gradient(to left, #9333ea, #ec4899);
}
main .donation .container h2 {
    font-size: 36px;
    margin: 0;
    margin-bottom: 16px;
    line-height: 40px;
    font-weight: 700;
}
main .donation .container p {
    color: rgb(156 163 175 / 1);
    font-size: 20px;
    line-height: 28px;
    max-width: 672px;
    margin: 0 auto 40px auto;
}
main .donation .donate {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 32px;
    backdrop-filter: blur(4px);
    border: 1px solid #37415180;
    border-radius: 24px;
    background: linear-gradient(to bottom right,rgb(31 41 55 / .6), rgb(17 24 39 / .6));
}
main .donation .donate .reasons {
    flex: 1;
    min-width: 280px;
    text-align: left;
}
main .donation .donate .reasons .item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 16px;
}
main .donation .donate .reasons .item svg {
    width: 24px;
    flex-shrink: 0;
    border-radius: 50px;
    padding: 12px;
}
main .donation .donate .reasons .item.server-costs svg {
    background-color: #22c55e33;
    color: rgb(74 222 128 / 1);
}
main .donation .donate .reasons .item.new-features svg {
    background-color: #3b82f633;
    color: rgb(96 165 250 / 1);
}
main .donation .donate .reasons .item.community-support svg {
    background-color: #a78bfa33;
    color: rgb(192 132 252 / 1);
}
main .donation .donate .reasons .item h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}
main .donation .donate .reasons .item p {
    margin: 4px 0 0 0;
    color: rgb(156 163 175 / 1);
    font-size: 16px;
    line-height: 24px;
}
main .donation .donate .reasons .note {
    background-color: #3741514d;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    border: 0 solid rgb(234 179 8 / 1);
    border-left-width: 4px;
    color: rgb(209 213 219 / 1);
}
main .donation .donate .reasons .note p{
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}
main .donation .donate .reasons .note span {
    color: rgb(250 204 21 / 1);
}
main .donation .donate .bynogame {
    flex: 1;
    border: 1px solid #ec48994d;
    border-radius: 16px;
    padding: 32px;
    background: linear-gradient(to bottom right,rgb(236 72 153 / .2), rgb(147 51 234 / .2));
}
main .donation .donate .bynogame svg {
    color: rgb(244 114 182 / 1);
    width: 64px;
    height: 64px;
}
main .donation .donate .bynogame h3 {
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right,#f472b6,#c084fc);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
main .donation .donate .bynogame p {
    color: rgb(209 213 219 / 1);
    font-size: 16px;
    line-height: 24px;
    margin: 0 auto 24px auto;
    max-width: 300px;
}
main .donation .donate .bynogame a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    background: linear-gradient(to right,#ec4899, #9333ea);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 200ms ease-in-out;
}
main .donation .donate .bynogame a:hover{
    background: linear-gradient(to right,#db2777, #7e22ce) !important;
    transform: scale(1.05);
}
main .donation .donate .bynogame a svg {
    width: 20px;
    height: 20px;
    color: #fff;
}
main .donation .donate .bynogame .smallnote {
    margin-top: 8px;
    font-size: 12px;
    color: rgb(156 163 175 / 1);
    margin-bottom: 0;
}
main .feedback {
    padding: 80px 32px;
    color: #fff;
    max-width: 896px;
    margin: auto;
}
main .feedback h2 {
    font-size: 36px;
    line-height: 40px;
    margin: 0 0 16px 0;
    text-align: center;
}
main .feedback p {
    color: rgb(156 163 175 / 1);
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    margin: 0 0 40px 0;
}
main .feedback form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 32px;
    border-radius: 16px;
    background-color: #1f293780;
}
main .feedback form .half{
    flex: 0 0 49%;
}
main .feedback form .full{
    flex: 0 0 100%;
}
main .feedback form label{
    display: block;
    color: rgb(209 213 219 / 1);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
}
main .feedback form input, main .feedback form textarea {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgb(55 65 81 / 1);
    background-color: #37415180;
    border: 1px solid rgb(75 85 99 / 1);
    color: #fff;
    font-size: 16px;
    resize: vertical;
    width: -webkit-fill-available;
    resize: none;
    outline: none;
}
main .feedback form input:focus{
    border-color: rgb(88 101 242 / 1) !important;
}
main .feedback form button {
    background-color: rgb(88 101 242 / 1);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    flex: 1;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    align-self: center;
}
main .feedback form button svg{
    vertical-align: middle;
    width: 20px;
    height: 20px;
}
footer{
    padding: 48px 32px;
    border: 0 solid rgb(31 41 55 / 1);
    border-top-width: 1px;
}
footer .container{
    display: flex;
    max-width: 1280px;
    margin: auto;
    justify-content: space-between;
}
footer .container .logo{
    display: flex;
    align-items: center;
    font-size: 20px;
}
footer .copyright{
    max-width: 1280px;
    margin: auto;
    color: rgb(156 163 175 / 1);
    text-align: center;
    padding-top: 32px;
    border: 0 solid rgb(31 41 55 / 1);
    border-top-width: 1px;
    margin-top: 32px;
}
.to-top{
    border-radius: 50px;
    padding: 12px;
    line-height: 1px;
    background-color: rgb(88 101 242 / 1);
    color: rgb(255 255 255 / 1);
    display: block;
    position: fixed;
    bottom: 32px;
    right: 32px;
    cursor: pointer;
}
.to-top svg{
    width: 20px;
    height: 20px;
}
.modal{
    backdrop-filter: blur(4px);
    padding: 16px;
    background-color: #00000080;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    color: #fff;
    display: none;
}
.modal .container{
    background-color: rgb(31 41 55 / 1);
    border-radius: 16px;
    max-width: 896px;
    overflow-y: auto;
    max-height: 90vh;
}
.modal .container .heading{
    display: flex;
    position: sticky;
    top: 0;
    padding: 24px;
    align-items: center;
    justify-content: space-between;
    border: 0 solid rgb(55 65 81 / 1);
    border-bottom-width: 1px;
    background-color: rgb(31 41 55 / 1);
}
.modal .container .heading .close{
    cursor: pointer;
}
.modal .container .heading h2, .modal .container .content h3{
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.modal .container .heading h2 svg, .modal .container .content h3 svg{
    color: rgb(88 101 242 / 1);
    width: 24px;
    height: 24px;
}
.modal .container .content{
    padding: 24px;
}
.modal .container .content p, .modal .container .content ul{
    color: rgb(203, 208, 218);
    line-height: 30px;
}