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

body{
    font-family:'Poppins',sans-serif;
    background:#0b1220;
    background: radial-gradient(circle at top,#16314d 0%,#0b1220 45%,#05080f 100%);
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    overflow:hidden;
}

.container{
    width:min(900px,90%);
    text-align:center;
}

.card{
    background-image: url("Veyora.png");
    border:1px solid rgba(255,255,255,.08);         
    background-repeat: no-repeat;
    background-size: 15rem;
    background-position: center;
    border-radius:22px;
    padding:55px;
    box-shadow:
    0 0 40px rgba(0,0,0,.4),
    0 0 30px rgba(60,180,255,.08);
    animation:float 5s ease-in-out infinite;
}

.card::before{
    content: "";
    position: fixed;
    background: rgba(0,0,0,0.3);
    inset: 0;
    border-radius:22px;
    z-index: -1;
}

h1{
    font-size:20px;
    line-height:1.2;
    margin-bottom:20px;
}

p{
    color:#cdd6e5;
    font-size:18px;
    line-height:1.8;
    max-width:650px;
    margin:auto;
}

.small{
    margin-top:35px;
    color:#7f94b4;
    font-size:15px;
}

footer{
    margin-top:45px;
    color:#667892;
    font-size:14px;
}

.energy-grid{
    position:fixed;
    inset:0;
    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:60px 60px;
    z-index:-3;
}

.energy-pulse{
    position:fixed;
    top:-30%;
    left:-60%;
    width:220%;
    height:60px;
    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(0,174,255,.05),
        rgba(0,174,255,.25),
        rgba(0,255,255,.8),
        rgba(0,174,255,.25),
        rgba(0,174,255,.05),
        transparent
    );
    filter:blur(18px);
    transform:rotate(-18deg);
    animation:pulseMove 7s linear infinite;
    z-index:-2;
}

@keyframes pulseMove{
    from{
        transform:
        translateX(-40%)
        rotate(-18deg);
    }
    to{
        transform:
        translateX(60%)
        rotate(-18deg);
    }
}

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

@media(max-width:768px){
    .card{
        padding:35px 25px;
        background-position:center;
        background-size:10rem;
    }

    h1{
        font-size:20px;
    }
    
    p{
        font-size:16px;
    }
}