*{
box-sizing:border-box;
}

body{
margin:0;
height:100vh;
font-family:system-ui,-apple-system,sans-serif;

display:flex;
align-items:center;
justify-content:center;
text-align:center;

color:white;
overflow:hidden;

background:linear-gradient(-45deg,#59AFA3,#4aa397,#7cc7bd,#F5C400);
background-size:400% 400%;
animation:gradientMove 15s ease infinite;
}

@keyframes gradientMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}

.background-glow{
position:absolute;
width:700px;
height:700px;
background:radial-gradient(circle,#F5C40055,transparent 70%);
filter:blur(80px);
z-index:0;
}

.container{

position:relative;
z-index:1;

background:rgba(255,255,255,0.12);
backdrop-filter:blur(15px);

padding:45px;
border-radius:22px;

max-width:420px;
width:90%;

box-shadow:
0 10px 40px rgba(0,0,0,0.2);
}

.logo{
width:150px;
margin-bottom:20px;

animation:float 4s ease-in-out infinite;
}

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

h1{
margin:0;
font-size:32px;
}

.subtitle{
opacity:0.9;
margin-top:10px;
}

.construction{
margin-top:15px;
font-weight:600;
}

.links{
margin-top:25px;
display:flex;
gap:12px;
justify-content:center;
}

.button{

text-decoration:none;
color:white;

padding:10px 18px;
border-radius:10px;

background:rgba(255,255,255,0.15);

transition:all .25s;
}

.button:hover{

background:#F5C400;
color:#222;

transform:translateY(-2px);
}