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

body{

font-family:'Poppins', sans-serif;
background:#000;
color:white;

display:flex;
flex-direction:column;

min-height:100vh;

overflow-x:hidden;

}


/* BACKGROUND */

.background{

position:fixed;

width:100%;
height:100%;

z-index:-1;

background:

radial-gradient(circle at 20% 30%, #ff00cc 0%, transparent 40%),
radial-gradient(circle at 80% 70%, #00ccff 0%, transparent 40%),
radial-gradient(circle at 40% 80%, #ffcc00 0%, transparent 40%);

filter:blur(80px);

animation:bgMove 12s infinite alternate;

}

@keyframes bgMove{

0%{transform:scale(1)}
100%{transform:scale(1.15)}

}



/* HEADER */

.site-header{

text-align:center;

padding-top:40px;
padding-bottom:20px;

}

.logo{

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

filter:drop-shadow(0 0 20px #ff00cc);

animation:logoFloat 4s ease-in-out infinite;

}

@keyframes logoFloat{

0%{transform:translateY(0)}
50%{transform:translateY(-10px)}
100%{transform:translateY(0)}

}



/* HERO */

.hero{

flex:1;

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

padding:40px 20px;

}



/* GLASS CARD */

.glass-card{

max-width:900px;
width:100%;

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

border:1px solid rgba(255,255,255,0.25);

backdrop-filter:blur(20px);

padding:50px;

border-radius:20px;

text-align:center;

box-shadow:

0 0 40px rgba(255,0,200,0.4),
0 0 80px rgba(0,200,255,0.3);

animation:fadeIn 1.5s;

}

@keyframes fadeIn{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}



/* TITOLI */

h1{

font-size:42px;

margin-bottom:20px;

background:linear-gradient(90deg,#ff00cc,#00ccff,#ffcc00);

-webkit-background-clip:text;
color:transparent;

}

.subtitle{

opacity:0.8;

margin-bottom:30px;

font-size:18px;

}



/* SERVICES */

.services{

display:flex;
justify-content:center;

gap:20px;

flex-wrap:wrap;

margin-bottom:30px;

}

.service{

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

padding:15px 25px;

border-radius:12px;

backdrop-filter:blur(10px);

transition:0.3s;

}

.service:hover{

transform:translateY(-6px) scale(1.05);

box-shadow:0 0 20px #00ccff;

}



/* STATUS */

.status{

font-size:20px;

margin-bottom:25px;

animation:pulse 2s infinite;

}

@keyframes pulse{

0%{opacity:0.4}
50%{opacity:1}
100%{opacity:0.4}

}



/* EMAIL */

.contact{

display:inline-block;

padding:12px 25px;

border-radius:10px;

background:linear-gradient(90deg,#ff00cc,#00ccff);

color:black;

font-weight:600;

text-decoration:none;

transition:0.3s;

}

.contact:hover{

transform:scale(1.05);

box-shadow:0 0 20px #00ccff;

}



/* FOOTER */

footer{

text-align:center;

padding:20px;

opacity:0.6;

font-size:14px;

}



/* MOBILE */

@media (max-width:768px){

h1{
font-size:28px;
}

.glass-card{
padding:30px;
}

.services{
flex-direction:column;
gap:12px;
}

}