/* ===========================
   RESET
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Segoe UI,Arial,sans-serif;
    background:#0D1117;
    color:#F0F6FC;
}

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

img{
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* ===========================
   NAVBAR
=========================== */

header{

    position:fixed;

    top:0;

    width:100%;

    backdrop-filter:blur(15px);

    background:rgba(13,17,23,.75);

    border-bottom:1px solid #30363D;

    z-index:1000;

}

header .container{

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

    font-size:22px;

    font-weight:bold;

}

.logo img{

    width:45px;

}

nav{

    display:flex;

    gap:35px;

}

nav a{

    color:#8B949E;

    transition:.3s;

}

nav a:hover{

    color:#2388FF;

}

.download-btn{

    background:#2388FF;

    padding:13px 25px;

    border-radius:12px;

    transition:.3s;

}

.download-btn:hover{

    background:#1D72D8;

}

/* ===========================
   HERO
=========================== */

.hero{

    padding-top:170px;

    padding-bottom:120px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 750px;

 justify-content: center; 
    gap:70px;

    align-items:center;

}

.version{

    display:inline-block;

    background:#161B22;

    padding:8px 16px;

    border-radius:50px;

    margin-bottom:25px;

    color:#2388FF;

}

.hero h1{

    font-size:65px;

    margin-bottom:25px;

}

.hero p{

    color:#8B949E;

    font-size:20px;

    line-height:1.8;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}

.primary{

    background:#2388FF;

    padding:16px 30px;

    border-radius:14px;

}

.secondary{

    border:1px solid #30363D;

    padding:16px 30px;

    border-radius:14px;

}

.primary:hover,
.secondary:hover{

    transform:translateY(-3px);

}

.hero-image img{

    border-radius:25px;

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

}

/* ===========================
   STATS
=========================== */

.stats{

    display:flex;

    gap:50px;

    margin-top:60px;

}

.stats h2{

    font-size:28px;

}

.stats span{

    color:#8B949E;

}

/* ===========================
   DOWNLOAD
=========================== */

.download{

    padding:100px 0;

}

.download h2{

    text-align:center;

    font-size:42px;

}

.download p{

    text-align:center;

    color:#8B949E;

    margin-top:15px;

}

.download-card{

    margin-top:50px;

    background:#161B22;

    border:1px solid #30363D;

    border-radius:20px;

    padding:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.download-info{

    flex:1;

    margin-left:25px;

}

.download-info h3{

    font-size:28px;

}

.download-info span{

    color:#2388FF;

}

.download-button{

    background:#2388FF;

    padding:15px 28px;

    border-radius:14px;

    display:inline-block;

}
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container video {
    width: 60%;
    height: auto;
}

.microsoft-store-image{
    margin-right:10px;
width:220px;
    vertical-align:middle;
}

/* ===========================
   SECTION TITLE
=========================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-title p{
    color:#8B949E;
    font-size:18px;
}

/* ===========================
   SCREENSHOTS
=========================== */

.screenshots{
    padding:100px 0;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.shot{
    overflow:hidden;
    border-radius:20px;
    background:#161B22;
    border:1px solid #30363D;
}

.shot img{
    width:100%;
    transition:.4s;
}

.shot:hover img{
    transform:scale(1.05);
}

/* ===========================
   FEATURES
=========================== */

.features{
    padding:100px 0;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.feature-card{
    background:#161B22;
    border:1px solid #30363D;
    padding:35px;
    border-radius:20px;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
    border-color:#2388FF;
}

.feature-card h3{
    margin-bottom:15px;
    font-size:22px;
}

.feature-card p{
    color:#8B949E;
    line-height:1.7;
}

/* ===========================
   REQUIREMENTS
=========================== */

.requirements{
    padding:100px 0;
}

.requirements-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.requirement{
    background:#161B22;
    border:1px solid #30363D;
    padding:30px;
    border-radius:18px;
}

.requirement h3{
    margin-bottom:12px;
}

.requirement p{
    color:#8B949E;
}

/* ===========================
   FAQ
=========================== */

.faq{
    padding:100px 0;
}

.faq-item{
    background:#161B22;
    border:1px solid #30363D;
    border-radius:18px;
    padding:30px;
    margin-bottom:20px;
}

.faq-item h3{
    margin-bottom:15px;
}

.faq-item p{
    color:#8B949E;
}

/* ===========================
   FOOTER
=========================== */

footer{
    margin-top:100px;
    border-top:1px solid #30363D;
    padding:60px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
}

.footer-grid h3,
.footer-grid h4{
    margin-bottom:15px;
}

.footer-grid p,
.footer-grid a{
    color:#8B949E;
    line-height:2;
}

.footer-grid a:hover{
    color:#2388FF;
}

.copyright{
    margin-top:40px;
    text-align:center;
    color:#8B949E;
    border-top:1px solid #30363D;
    padding-top:20px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

.hero-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-buttons{
    justify-content:center;
}

.stats{
    justify-content:center;
    flex-wrap:wrap;
}

.gallery{
    grid-template-columns:1fr;
}

.requirements-grid{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.download-card{
    flex-direction:column;
    gap:30px;
    text-align:center;
}

.download-info{
    margin:0;
}

}

@media(max-width:768px){

header .container{
    flex-direction:column;
    height:auto;
    padding:20px 0;
}

nav{
    margin:20px 0;
    flex-wrap:wrap;
    justify-content:center;
}

.hero h1{
    font-size:42px;
}

.hero p{
    font-size:17px;
}

.section-title h2{
    font-size:34px;
}

.stats{
    gap:25px;
}

.download h2{
    font-size:34px;
}

}