body{
margin:0;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
background:radial-gradient(circle at top,#0a0a0f,#000000);
font-family:Arial,Helvetica,sans-serif;
color:white;
overflow:hidden;
}

.container{
text-align:center;
}

h1{
font-size:48px;
letter-spacing:4px;
margin-bottom:10px;

background:linear-gradient(90deg,#00f2ff,#7b61ff);
-webkit-background-clip:text;
color:transparent;
}

.tag{
opacity:.7;
margin:0 0 30px 0;
letter-spacing:3px;
opacity:.8;
}

.brand{
display:inline-block;
text-align:center;
}

.brand h1{
margin:0;
font-size:48px;
letter-spacing:4px;
}

.divider{
height:1px;
background:#555;
margin:8px 0;
width:100%;
}



.bar{
width:300px;
height:6px;
background:#111;
border-radius:10px;
overflow:hidden;
margin:auto;
}

.fill{
height:100%;
width:0%;
background:linear-gradient(90deg,#00f2ff,#7b61ff);
animation:load 4s infinite;
}

@keyframes load{
0%{width:0%}
50%{width:80%}
100%{width:0%}
}

.boot{
margin-top:20px;
font-size:14px;
opacity:.6;
animation:blink 1.5s infinite;
}

@keyframes blink{
0%,100%{opacity:.2}
50%{opacity:1}
}

.contact-btn{
position:fixed;
right:30px;
bottom:30px;

padding:14px 22px;

background:linear-gradient(135deg,#00f2ff,#7b61ff);
color:white;
text-decoration:none;

border-radius:32px; 

box-shadow:0 0 15px rgba(0,242,255,0.6);

font-size:14px;
letter-spacing:1px;

display:flex;
align-items:center;
justify-content:center;
}

.contact-btn:hover{
transform:scale(1.1);
box-shadow:0 0 25px rgba(0,242,255,0.9);
}

.popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
justify-content:center;
align-items:center;
z-index:1000;
}

.popup-content{
background:#0b0f1a;
padding:30px;
border-radius:12px;
width:320px;
text-align:center;
box-shadow:0 0 20px #00f2ff55;
}

.popup-content h2{
margin-bottom:20px;
color:white;
}

.popup-content input,
.popup-content textarea{
width:100%;
margin:10px 0;
padding:10px;
border:none;
border-radius:6px;
background:#111;
color:white;
}

.popup-content button{
margin-top:10px;
padding:10px 20px;
border:none;
border-radius:6px;
background:linear-gradient(135deg,#00f2ff,#7b61ff);
color:white;
cursor:pointer;
}

.close{
position:absolute;
margin-left:140px;
margin-top:-20px;
font-size:24px;
cursor:pointer;
color:white;
}