
body{
    margin:0;
    background:linear-gradient(
        135deg,
        #050B18 0%,
        #081224 40%,
        #0B1730 100%
        );
    color:E5E7EB;
    font-family:Arial, sans-serif;
}

/* Navbar */
.scanner-bg{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    z-index:0;

    overflow:hidden;
}

.scanner-bg::before{
    content:"";

    position:absolute;

    width:100%;
    height:2px;

    background:rgba(59,130,246,.5);

    box-shadow:
        0 0 15px #3B82F6,
        0 0 30px #3B82F6;

    animation:scan 6s linear infinite;
}
@keyframes scan{

    0%{
        top:-10%;
    }

    100%{
        top:110%;
    }

}
.scanner-bg::after{
    content:"";

    position:absolute;

    width:100%;
    height:100%;

    background:
    linear-gradient(rgba(59,130,246,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.05) 1px, transparent 1px);

    background-size:50px 50px;
}

.scanner-text{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    pointer-events:none;

    z-index:-1;

    color:rgba(96,165,250,.15);

    font-family:Consolas, monospace;
}

.scanner-text span{

    position:absolute;

    animation:floatText 15s linear infinite;

     font-size:18px;

    font-weight:600;

    text-shadow:
        0 0 5px rgba(59,130,246,.5);
}
.scanner-text span:nth-child(1){
    top:10%;
    left:5%;
}

.scanner-text span:nth-child(2){
    top:30%;
    right:10%;
}

.scanner-text span:nth-child(3){
    top:55%;
    left:15%;
}

.scanner-text span:nth-child(4){
    top:75%;
    right:15%;
}

.scanner-text span:nth-child(5){
    top:85%;
    left:40%;
}
@keyframes floatText{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0);
    }

}
nav{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    box-sizing:border-box;

    padding:20px 50px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(10,15,28,0.95);
    backdrop-filter:blur(10px);

    z-index:1000;
}

.logo{
    color:#3B82F6;
    font-size:1.3rem;
    font-weight:700;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

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

nav a:hover{
    color:#00ff88;
}

/* Hero */

.hero{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:80px 20px 20px;
}

.hero h1{
    font-size:5rem;
    margin-bottom:10px;
    color:white;

     text-shadow:
        0 0 10px rgba(59,130,246,.4),
        0 0 20px rgba(59,130,246,.3);
}

.hero h2{
    color:#3B82F6;
    font-size:1.5rem;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    line-height:1.8;
    color:#cccccc;
}

.btn{
    display:inline-block;
    margin-top:25px;
    padding:12px 25px;
    background:#2563EB;
    color:black;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
}

.btn:hover{
    transform:scale(1.05);
}
.socials{
    margin-top:20px;
    display:flex;
    gap:15px;
}

.socials a{
    color:#3B82F6;
    text-decoration:none;
    border:1px solid #2563EB;
    padding:10px 20px;
    border-radius:6px;
}

.socials a:hover{
    background:#2563EB;
    color:black;
}
.terminal{
    margin-top:40px;
    width:600px;
    max-width:90%;

    background:#111827;

    border:1px solid #2563EB;

    border-radius:10px;

    overflow:hidden;

    box-shadow:0 0 20px rgba(0,255,136,.2);
}

.terminal-header{
    background:#1f2937;
    padding:12px;
}

.terminal-body{
    padding:20px;
    color:#60A5FA;
    font-family:Consolas, monospace;
    text-align:left;
    line-height:1.8;
}
