@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Inter,sans-serif;
}

body{
background:#020617;
color:white;
overflow-x:hidden;
}

/* GRID BACKGROUND */

body::before{
content:"";
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background-image:
linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
background-size:80px 80px;
z-index:-1;
}

/* NAVBAR */

.navbar{
position:fixed;
top:20px;
left:50%;
transform:translateX(-50%);
background:rgba(2,6,23,.9);
border:1px solid #0f172a;
padding:14px 26px;
border-radius:40px;
display:flex;
align-items:center;
gap:30px;
backdrop-filter:blur(12px);
box-shadow:0 0 30px rgba(59,130,246,.2);
z-index:10;
}

.nav-logo{
display:flex;
align-items:center;
gap:10px;
}

.logo{
height:32px;
border-radius:8px;
}

.brand{
font-weight:700;
}

.nav-links{
display:flex;
gap:22px;
}

.nav-links a{
color:#9ca3af;
text-decoration:none;
transition:.2s;
}

.nav-links a:hover{
color:white;
}

/* HERO */

.hero{
max-width:1200px;
margin:auto;
padding-top:180px;
display:flex;
justify-content:space-between;
align-items:center;
}

.hero-left h1{
font-size:70px;
font-weight:800;
background:linear-gradient(90deg,#22c55e,#3b82f6);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero-left p{
margin-top:20px;
color:#9ca3af;
max-width:420px;
}

.btn-primary{
margin-top:25px;
display:inline-block;
background:#3b82f6;
padding:12px 22px;
border-radius:10px;
text-decoration:none;
color:white;
box-shadow:0 0 20px rgba(59,130,246,.4);
}

.hero-logo{
width:220px;
border-radius:20px;
box-shadow:0 0 40px rgba(34,197,94,.4);
}

/* STATS */

.stats{
display:flex;
gap:20px;
margin-top:40px;
}

.stat{
background:#020617;
border:1px solid #0f172a;
padding:25px;
border-radius:14px;
text-align:center;
}

/* COMMAND PAGE */

.commands-page{
max-width:1200px;
margin:auto;
padding-top:150px;
}

/* TITLE */

.title{
font-size:42px;
margin-bottom:30px;
}

/* SEARCH */

.search{
margin-bottom:30px;
}

.search input{
padding:12px;
border-radius:10px;
border:none;
width:280px;
}

/* GRID */

.commands-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
gap:26px;
}

/* CARD */

.command-card{
background:#020617;
border:1px solid #0f172a;
padding:20px;
border-radius:16px;
transition:.2s;
}

.command-card:hover{
transform:translateY(-6px);
box-shadow:0 0 30px rgba(59,130,246,.3);
border:1px solid #3b82f6;
}

.description{
color:#9ca3af;
font-size:14px;
margin-top:8px;
}

.copy-btn{
margin-top:10px;
background:#3b82f6;
border:none;
padding:6px 12px;
border-radius:8px;
color:white;
cursor:pointer;
}

/* BACK BUTTON */

.back-btn{
display:inline-block;
margin-bottom:25px;
background:#111827;
padding:8px 14px;
border-radius:8px;
text-decoration:none;
color:white;
}

/* FOOTER */

footer{
margin-top:100px;
text-align:center;
padding:30px;
border-top:1px solid #0f172a;
color:#9ca3af;
}

/* SCROLL BANNER */

.scroll-banner{
position:fixed;
bottom:0;
width:100%;
background:#2563eb;
overflow:hidden;
}

.scroll-text{
white-space:nowrap;
padding:10px;
animation:scroll 20s linear infinite;
}

@keyframes scroll{
0%{transform:translateX(100%)}
100%{transform:translateX(-100%)}
}