
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:rgb(227, 226, 226);
    font-family:'Courier New', monospace;
   }

.main-container{
    width:90%;
    max-width:1300px;
    margin:auto;
}
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 0;
}
.logo{
    
    font-size:32px;
    font-weight:bold;
    color:#805004;
}
.nav-links{
    display:flex;
    align-items:center;
    gap:20px;
}
.nav-links a{
    color:#000000;
    text-decoration:none;
    font-size:17px;
    transition:.3s;
}

.nav-links a:hover{
    color:#106100;
}
button,
.btn,
.card-btn{
    background:#805004;
    color:white;
    padding:12px 25px;
    border:none;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}
button:hover,
.btn:hover,
.card-btn:hover{
    background:#c68719;
    transform:translateY(-3px);
}
.hero{
    text-align:center;
    padding:30px 20px;
}
.hero h1{
    font-size:55px;
    color:#805004;
    margin-bottom:20px;
}
.hero p{
    font-size:20px;
    max-width:750px;
    margin:auto;
    line-height:35px;
    color:#805004;
}
.hero-buttons{
    margin-top:45px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
.features{
    margin-top:70px;
}
.features h2{
    text-align:center;
    margin-bottom:40px;
    font-size:35px;
    color:#805004;
}
.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}
.card{
    background:#865301;
    padding:35px;
    border-radius:15px;
    text-align:center;
    transition:.35s;
    border:2px solid transparent;
}
.card:hover{
    transform:translateY(-10px);
    border-color:#623c00;
}
.icon{
    font-size:60px;
    margin-bottom:20px;
}
.card h3{
    margin-bottom:15px;
    color:white;
}

.card p{
    color:white;
    line-height:28px;
    margin-bottom:30px;
}
.stats{
    margin:80px 0;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}
.stat-box{
    background:#805004;
    padding:30px;
    border-radius:12px;

    text-align:center;
}
.stat-box h2{
    color:white;
    font-size:45px;
    margin-bottom:10px;
}
.stat-box p{
    color:#cdd6f4;
}

.coming-soon{
    margin-bottom:80px;
}
.coming-soon h2{
    text-align:center;
    margin-bottom:40px;
    color:#805004;
    font-size:35px;
}
.coming-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}
.coming-card{
    background:#805004;
    padding:30px;
    border-radius:12px;
    text-align:center;
    transition:.3s;
}
.coming-card:hover{
    transform:translateY(-8px);
}
.coming-card{
    font-size:45px;
}
.coming-card h3{
    margin:20px 0 10px;
    color:#ffffff;
}
.coming-card p{
    color:#bac2de;
    line-height:28px
}
footer{
    border-top:1px solid #805004;
    text-align:center;
    padding:40px 20px;
    margin-top:50px;
}
footer h3{
    color:#805004;
    margin-bottom:10px;
}
footer p{
    margin-bottom:15px;
    color:#805004;
}
footer small{
    color:#805004;
}
@media(max-width:900px){
    .navbar{
        flex-direction:column;
        gap:20px;
    }
    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }
    .hero h1{
        font-size:40px;
    }
    .hero p{
        font-size:18px;
        line-height:30px;
    }
}
@media(max-width:600px){
    .hero{
        padding:60px 10px;
    }
    .hero h1{
        font-size:32px;
    }
    .features h2,
    .coming-soon h2{
        font-size:28px;
    }
}

.keyboard-container{

    margin-top:60px;

    display:flex;

    justify-content:center;

}

.keyboard{

    background:#252538;

    padding:20px;

    border-radius:15px;

    box-shadow:0 0 25px rgba(137,180,250,.25);

}

.row{

    display:flex;

    justify-content:center;

    margin:8px 0;

}

.row span{

    width:50px;

    height:50px;

    margin:5px;

    border-radius:8px;

    background:#313244;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;

    transition:.2s;

    animation:keyPress 3s infinite;

}

.space{

    width:320px !important;

}

.row span:nth-child(1){animation-delay:.1s;}
.row span:nth-child(2){animation-delay:.2s;}
.row span:nth-child(3){animation-delay:.3s;}
.row span:nth-child(4){animation-delay:.4s;}
.row span:nth-child(5){animation-delay:.5s;}
.row span:nth-child(6){animation-delay:.6s;}
.row span:nth-child(7){animation-delay:.7s;}
.row span:nth-child(8){animation-delay:.8s;}
.row span:nth-child(9){animation-delay:.9s;}
.row span:nth-child(10){animation-delay:1s;}

@keyframes keyPress{

0%{

transform:translateY(0);

background:#313244;

}

15%{

transform:translateY(4px);

background:#89b4fa;

color:#11111b;

box-shadow:0 0 20px #89b4fa;

}

30%{

transform:translateY(0);

background:#313244;

color:#cdd6f4;

box-shadow:none;

}

100%{

transform:translateY(0);

}

}














.typing-demo{
    font-size:28px;
    font-weight:bold;
    color:#89b4fa;
    text-align:center;
    margin-top: 90px;
    margin-bottom:35px;
    min-height:40px;
    letter-spacing:1px;
}

.cursor{
    color:#f38ba8;
    animation:blink .8s infinite;
}

@keyframes blink{
    0%,50%{
        opacity:1;
    }
    51%,100%{
        opacity:0;
    }
}












.keyboard{
    margin:40px auto;
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:center;
}

.row{
    display:flex;
    gap:8px;
}

.key{
    width:55px;
    height:55px;
    background:#2b2d42;
    border:2px solid #444;
    border-radius:10px;

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;
    font-weight:bold;
    font-size:18px;

    transition:all .15s ease;
}

.key.active{
    transform:translateY(4px);
    background:#89b4fa;
    color:#111;
    box-shadow:0 0 20px #89b4fa;

      transform:
        translateY(5px)
        scale(.95);
  box-shadow:
        0 0 10px #89b4fa,
        0 0 20px rgba(137,180,250,.5);

}
.auto-text{
    color: #805004;
    
}
.footer-links{
    margin:25px 0;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
}

.footer-links a{
    color:#805004;
    text-decoration:none;
    transition:.3s;
}
body.light .footer-links a{
    color:#eae8e7;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#e0ac6d;
}

.copyright{
    margin-top:20px;
    font-size:14px;
    color:#8c8b8b;
}
.logo{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 700;
}

.logo img{
    width: 80px;
    height: 80px;
    object-fit: contain;
}




