/* MaxWay Effects */

body::before{

content:"";

position:fixed;

inset:0;

background:

radial-gradient(circle at 50% 15%,
rgba(168,255,0,.10),
transparent 45%);

pointer-events:none;

z-index:0;

}

.status{

box-shadow:

0 30px 80px rgba(0,0,0,.55),

0 0 0 1px rgba(255,255,255,.03),

inset 0 0 0 1px rgba(255,255,255,.02);

transition:.35s;

}

.status:hover{

transform:translateY(-5px);

box-shadow:

0 40px 90px rgba(0,0,0,.65),

0 0 35px rgba(168,255,0,.08);

}

.logo-text{

transition:.4s;

}

.logo-text:hover{

text-shadow:

0 0 18px rgba(168,255,0,.9),

0 0 40px rgba(168,255,0,.5),

0 0 80px rgba(168,255,0,.2);

}

.network-node{

animation:pulse 4s infinite;

}

@keyframes pulse{

0%{

opacity:.45;

}

50%{

opacity:1;

}

100%{

opacity:.45;

}

}
