body{
  margin:0;
  background:#000;
  display:flex;
  justify-content:center;
  align-items:center;
  height:100vh;
  font-family:Arial;
}

.screen{
  width:1280px;
  height:720px;
  background: radial-gradient(circle at center, #0b2a4a, #02060c);
  color:#fff;
  position:relative;
}

/* TOPO */
.top{
  height:60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
}

.home{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  color:#4cc9ff;
}

.right{
  display:flex;
  gap:10px;
  align-items:center;
}

.user{
  width:20px;
  height:20px;
  border-radius:50%;
  background:#1e1e1e;
}

/* LAYOUT */
.layout{
  display:flex;
  height:calc(100% - 60px);
}

/* SIDEBAR */
.leftbar, .rightbar{
  width:80px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:18px;
}

.btn{
  width:48px;
  height:48px;
  border-radius:12px;
  background:#1a1a1a;
}

/* cores reais */
.green{background:#00d26a;}
.blue{background:#1e3a8a;}
.cyan{background:#22d3ee;}
.gray{background:#444;}
.white{background:#eee;}

.small{
  width:42px;
  height:42px;
}

/* CARDS */
.cards{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:24px;
}

.card{
  width:310px;
  height:420px;
  border-radius:26px;
  padding:20px;
  background: linear-gradient(160deg,#163a5f,#0a1c30);
  position:relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.card.active{
  box-shadow:
    0 0 40px rgba(0,150,255,0.25),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* GRID */
.grid{
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size:50px 50px;
  opacity:0.4;
}

/* TEXTOS */
.title{
  font-size:15px;
  opacity:0.8;
}

.sub{
  position:absolute;
  bottom:20px;
  font-size:13px;
  opacity:0.6;
}

/* ICONES */
.big{
  font-size:70px;
  text-align:center;
  margin-top:70px;
  opacity:0.12;
}

/* SETA */
.arrow{
  position:absolute;
  top:140px;
  left:50%;
  transform:translateX(-50%);
  font-size:50px;
  opacity:0.7;
}

/* BOTAO */
button{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  width:170px;
  height:55px;
  border:none;
  border-radius:28px;
  background: linear-gradient(90deg,#7ed6a5,#5cc48a);
  font-weight:bold;
}

/* ACTIONS */
.actions{
  position:absolute;
  bottom:20px;
  display:flex;
  gap:10px;
}

.actions div{
  width:48px;
  height:48px;
  background:rgba(255,255,255,0.1);
  border-radius:12px;
}

/* DOTS */
.dots{
  position:absolute;
  bottom:14px;
  width:100%;
  text-align:center;
}

.dots span{
  width:26px;
  height:4px;
  background:#555;
  display:inline-block;
  margin:0 4px;
}

.dots .active{
  background:#fff;
}