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

body{
    background:#05070d;
    color:white;
    font-family:Arial, sans-serif;
    overflow-x:hidden;
}

.background-grid{
    position:fixed;
    width:100%;
    height:100%;
    background:
    linear-gradient(rgba(255,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,0,0,0.05) 1px, transparent 1px);
    background-size:40px 40px;
    z-index:-2;
    animation:gridMove 20s linear infinite;
}

@keyframes gridMove{
    from{
        transform:translateY(0px);
    }
    to{
        transform:translateY(40px);
    }
}

.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    border-bottom:1px solid rgba(255,255,255,0.1);
    background:rgba(0,0,0,0.5);
    backdrop-filter:blur(5px);
}

.logo-area h1{
    color:#ff2d2d;
    font-size:32px;
}

.logo-area p{
    color:#999;
    margin-top:5px;
}

.login-btn{
    text-decoration:none;
    color:white;
    border:1px solid #ff2d2d;
    padding:12px 20px;
    transition:0.3s;
}

.login-btn:hover{
    background:#ff2d2d;
}

.hero{
    height:70vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.hero-content{
    max-width:800px;
}

.typing{
    font-size:60px;
    color:#ff2d2d;
    margin-bottom:20px;
}

.hero p{
    color:#ccc;
    font-size:20px;
    line-height:1.6;
}

.status-box{
    margin-top:30px;
    border:1px solid #00ff88;
    padding:15px;
    display:inline-block;
    color:#00ff88;
}

.cards-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    padding:50px;
}

.card{
    background:#0d1119;
    border:1px solid rgba(255,255,255,0.1);
    padding:25px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
    border-color:#ff2d2d;
}

.card h3{
    color:#ff2d2d;
    margin-bottom:15px;
}

.card p{
    color:#aaa;
}

.info-panel{
    padding:50px;
}

.info-panel h2{
    color:#ff2d2d;
    margin-bottom:20px;
}

.info-panel ul{
    list-style:none;
}

.info-panel li{
    margin-bottom:10px;
    color:#ccc;
}

footer{
    padding:30px;
    text-align:center;
    color:#666;
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:50px;
}
