:root{
--bg:#050816;
--card:#0f172a;
--border:#1e293b;
--primary:#4f7cff;
--secondary:#8b5cf6;
--text:#ffffff;
}

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

body{
font-family:Inter,sans-serif;
background:var(--bg);
color:white;
overflow-x:hidden;
}

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

.nav{
position:fixed;
top:0;
width:100%;
z-index:1000;
backdrop-filter:blur(20px);
background:rgba(5,8,22,.7);
border-bottom:1px solid rgba(255,255,255,.05);
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-size:1.5rem;
font-weight:700;
display:flex;
align-items:center;
gap:10px;
}

.logo-dot{
width:12px;
height:12px;
background:#4f7cff;
border-radius:50%;
box-shadow:0 0 20px #4f7cff;
}

.nav-links{
display:flex;
gap:30px;
}

.nav-links a{
color:white;
text-decoration:none;
opacity:.8;
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.hero-title{
font-size:5rem;
font-weight:800;
line-height:1;
margin:20px 0;
}

.hero-subtitle{
font-size:1.2rem;
opacity:.8;
max-width:600px;
}

.hero-badge{
display:inline-block;
padding:10px 18px;
border:1px solid rgba(255,255,255,.1);
border-radius:999px;
}

.hero-buttons{
margin-top:40px;
display:flex;
gap:20px;
}

.btn-primary-custom{
padding:15px 30px;
background:linear-gradient(90deg,#4f7cff,#8b5cf6);
color:white;
text-decoration:none;
border-radius:14px;
}

.btn-secondary-custom{
padding:15px 30px;
border:1px solid rgba(255,255,255,.15);
color:white;
text-decoration:none;
border-radius:14px;
}

.dashboard{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
border-radius:30px;
padding:30px;
backdrop-filter:blur(20px);
}

.dashboard-top{
display:flex;
justify-content:space-between;
}

.metric span{
display:block;
font-size:2rem;
font-weight:700;
color:#4f7cff;
}

.chart{
height:250px;
margin-top:30px;
border-radius:20px;
background:
linear-gradient(
180deg,
rgba(79,124,255,.5),
transparent
);
}

.section{
padding:120px 0;
}

.section-title{
font-size:3rem;
margin-bottom:50px;
}

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

.glass-card{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
padding:35px;
border-radius:24px;
transition:.3s;
}

.glass-card:hover{
transform:translateY(-10px);
border:1px solid #4f7cff;
box-shadow:0 0 30px rgba(79,124,255,.3);
}

.glass-card i{
font-size:2rem;
color:#4f7cff;
margin-bottom:20px;
}

.tech-stack{
display:flex;
flex-wrap:wrap;
gap:15px;
}

.tech-stack span{
padding:14px 24px;
background:rgba(255,255,255,.05);
border-radius:999px;
border:1px solid rgba(255,255,255,.08);
transition:.3s;
cursor:pointer;
}

.tech-stack span:hover{
background:#4f7cff;
transform:translateY(-3px);
transition:.3s;
}

.contact-box{
text-align:center;
padding:80px;
background:rgba(255,255,255,.04);
border-radius:30px;
}

.bg-glow{
position:fixed;
border-radius:50%;
filter:blur(120px);
z-index:-1;
}

.glow-1{
width:500px;
height:500px;
background:#4f7cff;
top:-200px;
left:-200px;
opacity:.2;
}

.glow-2{
width:500px;
height:500px;
background:#8b5cf6;
bottom:-200px;
right:-200px;
opacity:.2;
}

@media(max-width:900px){

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

.hero-title{
font-size:3rem;
}

.nav-links{
display:none;
}

}
.network-monitor{
margin-top:30px;
padding:25px;
background:rgba(255,255,255,.04);
border-radius:20px;
}

.server-status{
display:flex;
align-items:center;
gap:10px;
margin-bottom:20px;
font-weight:600;
}

.status-dot{
width:10px;
height:10px;
background:#22c55e;
border-radius:50%;
box-shadow:0 0 10px #22c55e;
}

.server-row{
display:flex;
justify-content:space-between;
padding:15px 0;
border-bottom:1px solid rgba(255,255,255,.08);
}
footer{
padding:60px 0;
text-align:center;
border-top:1px solid rgba(255,255,255,.08);
margin-top:100px;
}

footer p{
opacity:.7;
margin-top:10px;
}
.glass-card{
animation:fadeUp .8s ease forwards;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(20px);
}

to{
opacity:1;
transform:translateY(0);
}
}
