
/* ===========================
   DO FIT Browser
   Windows 11 Fluent UI Theme
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Segoe UI",Arial,sans-serif;
    background:#0d1117;
    color:#fff;
    overflow-x:hidden;
}

/* Links */

a{
    color:inherit;
    text-decoration:none;
}

/* ===========================
   Navigation
=========================== */

.navbar{

    position:sticky;
    top:0;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 60px;

    background:rgba(20,20,25,.80);

    backdrop-filter:blur(20px);

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

    z-index:999;
}

.logo{

    font-size:28px;
    font-weight:bold;

    color:#4fa3ff;
}

nav{

    display:flex;

    gap:28px;
}

nav a{

    transition:.25s;

    color:#ddd;
}

nav a:hover{

    color:#4fa3ff;
}

/* ===========================
   Hero
=========================== */

.hero{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

    padding:90px 70px;

    background:
    radial-gradient(circle at top,#1b3b66 0%,#0d1117 70%);
}

.heroText{

    flex:1;
}

.heroText h1{

    font-size:60px;

    margin-bottom:20px;
}

.heroText p{

    font-size:20px;

    color:#bbbbbb;

    line-height:1.8;

    margin-bottom:40px;
}

.heroButtons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

.heroImage{

    flex:1;

    text-align:center;
}

.heroImage img{

    width:100%;

    max-width:700px;

    border-radius:18px;

    box-shadow:0 25px 60px rgba(0,0,0,.45);

    transition:.35s;
}

.heroImage img:hover{

    transform:scale(1.02);
}

/* ===========================
   Buttons
=========================== */

.downloadButton,
.githubButton,
.donateButton{

    display:inline-block;

    padding:16px 34px;

    border-radius:12px;

    font-weight:bold;

    transition:.3s;
}

.downloadButton{

    background:#1678ff;
}

.downloadButton:hover{

    background:#3390ff;

    transform:translateY(-3px);

    box-shadow:0 15px 40px rgba(0,120,255,.45);
}

.githubButton{

    background:#2a2d35;
}

.githubButton:hover{

    background:#3b82f6;
}

.donateButton{

    background:#ff4f87;
}

.donateButton:hover{

    background:#ff6ca0;
}

/* ===========================
   Section Title
=========================== */

.sectionTitle{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;
}

/* ===========================
   Features
=========================== */

.features{

    padding:80px 60px;
}

.featureGrid{

    display:grid;

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

    gap:30px;
}

.featureCard{

    background:#1b1f26;

    border-radius:18px;

    padding:35px;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;
}

.featureCard:hover{

    transform:translateY(-8px);

    border-color:#4fa3ff;

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

.icon{

    font-size:46px;

    margin-bottom:18px;
}

.featureCard h3{

    margin-bottom:14px;

    color:#4fa3ff;
}

.featureCard p{

    color:#c6c6c6;

    line-height:1.7;
}

/* ===========================
   Latest Release
=========================== */

.latestRelease{

    text-align:center;

    padding:80px 20px;
}

.latestRelease h2{

    color:#4fa3ff;

    margin-bottom:20px;
}

.latestRelease h1{

    font-size:54px;

    margin-bottom:20px;
}

.latestRelease p{

    color:#bcbcbc;

    margin-bottom:35px;
}

/* ===========================
   Footer
=========================== */

footer{

    margin-top:60px;

    padding:35px;

    text-align:center;

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

    color:#888;
}

/* ===========================
   Responsive
=========================== */

@media(max-width:1100px){

.hero{

    flex-direction:column;

    text-align:center;

    padding:60px 30px;
}

.heroButtons{

    justify-content:center;
}

.navbar{

    flex-direction:column;

    gap:20px;

    padding:20px;
}

nav{

    flex-wrap:wrap;

    justify-content:center;
}

.heroText h1{

    font-size:42px;
}

.heroText p{

    font-size:18px;
}

.features{

    padding:50px 25px;
}

.sectionTitle{

    font-size:34px;
}

.latestRelease h1{

    font-size:38px;
}

.heroText h2{

    margin-bottom:20px;

    color:#4fa3ff;

    font-weight:500;

    font-size:28px;
}

}

/* ===========================
   Donate Page
=========================== */

.pageHeader{

    text-align:center;

    padding:80px 20px;
}

.pageHeader h1{

    font-size:48px;

    margin-bottom:20px;
}

.pageHeader p{

    max-width:700px;

    margin:auto;

    color:#bbbbbb;

    line-height:1.8;
}

.screenshots{

    width:min(1200px,90%);

    margin:auto;

    padding-bottom:80px;
}

.screenshotGrid{

    display:grid;

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

    gap:30px;

}

.screenshotCard{

    background:#1b1f26;

    border-radius:18px;

    padding:25px;

    border:1px solid rgba(255,255,255,.05);

    transition:.3s;
}

.screenshotCard:hover{

    transform:translateY(-8px);

    border-color:#4fa3ff;

}

.screenshotCard img{

    width:100%;

    border-radius:18px;

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.screenshotCard textarea{

    width:100%;

    margin-top:20px;

    min-height:120px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.12);

    background:#0d1117;

    color:#fff;

    padding:18px;

    resize:vertical;

    font-family:inherit;

    font-size:15px;

    line-height:1.6;
}

.screenshotCard textarea:focus{

    outline:none;

    border-color:#4fa3ff;

    box-shadow:0 0 0 3px rgba(79,163,255,.12);

}

.donationGrid{

    width:min(1200px,90%);

    margin:auto;

    display:grid;

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

    gap:30px;

    margin-bottom:80px;
}

.donationCard{

    background:#1b1f26;

    padding:35px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.05);

    transition:.3s;
}

.donationCard:hover{

    transform:translateY(-8px);

    border-color:#4fa3ff;
}

.donationCard h2{

    margin-bottom:20px;

    color:#4fa3ff;
}

.donationCard p{

    word-break:break-all;

    margin-bottom:25px;

    color:#d5d5d5;
}

.donationCard button{

    width:100%;

    padding:15px;

    border:none;

    border-radius:10px;

    background:#1678ff;

    color:white;

    font-size:16px;

    cursor:pointer;

    transition:.25s;
}

.donationCard button:hover{

    background:#3390ff;
}


.qrImage{

    width:180px;

    height:180px;

    object-fit:contain;

    display:block;

    margin:20px auto;

    background:#ffffff;

    border-radius:12px;

    padding:10px;
}


/* ===========================
   Help Page
=========================== */

.faq{

    width:min(1000px,90%);

    margin:auto;

    padding-bottom:80px;
}

.faqItem{

    background:#1b1f26;

    margin-bottom:20px;

    padding:25px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.05);

    transition:.3s;
}

.faqItem:hover{

    border-color:#4fa3ff;

    transform:translateY(-3px);
}

.faqItem h3{

    color:#4fa3ff;

    margin-bottom:15px;
}

.faqItem p{

    color:#cccccc;

    line-height:1.7;
}

/* ===========================
   Toast Notification
=========================== */

.toast{

    position:fixed;

    right:25px;

    bottom:25px;

    background:#1b1f26;

    color:#fff;

    padding:15px 22px;

    border-radius:12px;

    border-left:4px solid #1678ff;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

    font-size:15px;

    opacity:0;

    visibility:hidden;

    transform:translateY(30px);

    transition:.35s;

    z-index:9999;
}

.toast.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);
}

/* ===========================
   Lightbox / Image modal
=========================== */

.lightbox{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    background:rgba(5,7,10,0.75);
    z-index:10000;
    padding:40px;
}

.lightbox.show{
    display:flex;
}

.lightbox .content{
    max-width:1100px;
    width:100%;
    max-height:90vh;
    border-radius:12px;
    overflow:hidden;
    background:#0d1117;
    padding:12px;
    position:relative;
}

.lightbox img{
    width:100%;
    height:auto;
    display:block;
    border-radius:8px;
}

.lightbox .close{
    position:absolute;
    top:12px;
    right:12px;
    color:#fff;
    background:rgba(0,0,0,0.45);
    border-radius:8px;
    padding:8px 10px;
    cursor:pointer;
    font-size:18px;
    border:1px solid rgba(255,255,255,0.06);
}

.screenshotCard img{
    cursor:zoom-in;
}

