body{
margin:0;
background:#000;
height:100vh;
overflow:hidden;
}

/* container */

.portal{
position:relative;
width:100vw;
height:100vh;
display:flex;
justify-content:center;
align-items:center;
}

/* obrázek přes celou stránku */

.bg{
position:absolute;
width:100vw;
height:100vh;
object-fit:cover;
}

/* klikací oblasti */

.panel{
position:absolute;
top:43%;
width:32%;
height:40%;
border-radius:28px;
}

/* VideoStation */

.video{
left:18%;
}

/* GameStation */

.game{
right:18%;
}

/* glow layer */

.glow{
position:absolute;
inset:0;
border-radius:28px;
transition:0.25s;
}

/* neon hover */

.panel:hover .glow{

box-shadow:
0 0 25px rgba(255,0,150,0.9),
0 0 50px rgba(255,0,150,0.7),
0 0 100px rgba(255,0,150,0.4);

}