*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Segoe UI, Arial, sans-serif;
}

body{
  background:#050505;
  color:#fff;
  overflow:hidden;
}

/* FUNDO */
.bg,
.animated-bg{
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at top, #ff000022, transparent 60%),
    linear-gradient(120deg, #050505, #0b0b0b);
  z-index:-1;
}

/* NAVBAR */
.navbar{
  position:relative;
  z-index:10;
  height:60px;
  padding:0 25px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#080808cc;
  backdrop-filter:blur(8px);
  border-bottom:1px solid #ff000044;
}

.logo{
  color:#ff3b3b;
  font-weight:bold;
  letter-spacing:2px;
}

.tabs{
  display:flex;
  gap:10px;
  align-items:center;
}

.tab{
  background:none;
  border:none;
  color:#888;
  padding:8px 14px;
  cursor:pointer;
  transition:.2s;
}

.tab.active{
  color:#ff3b3b;
  border-bottom:2px solid #ff3b3b;
}

.pro-badge{
  background:#ff3b3b;
  color:#000;
  padding:6px 10px;
  border-radius:4px;
  font-size:12px;
  font-weight:bold;
}

/* TELAS */
.screen{
  display:none;
  min-height:calc(100vh - 60px);
  padding-top:60px; /* 🔥 evita sobreposição com navbar */
  justify-content:center;
  align-items:center;
}

.screen.active{
  display:flex;
}

/* CARDS */
.card{
  background:#0b0b0b;
  border:1px solid #ff000044;
  border-radius:14px;
  padding:40px;
  min-width:340px;
  max-width:90%;
  box-shadow:0 0 30px #ff000022;
  animation:fadeUp .6s ease;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* HERO */
.hero h1{
  color:#ff3b3b;
  font-size:44px;
  text-align:center;
}

.hero p{
  text-align:center;
  opacity:.8;
  margin:15px 0 30px;
}

/* BOTÕES */
.buttons{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

button{
  background:#ff3b3b;
  border:none;
  padding:12px 26px;
  border-radius:8px;
  font-weight:bold;
  cursor:pointer;
  transition:.15s;
}

button:active{
  transform:scale(.92);
}

.btn-outline{
  border:2px solid #ff3b3b;
  color:#ff3b3b;
  padding:12px 26px;
  border-radius:8px;
  text-decoration:none;
}

/* TERMINAL */
.terminal .line{
  border-left:4px solid #ff3b3b;
  padding-left:12px;
  margin-bottom:15px;
}

.counter{
  margin-bottom:12px;
  opacity:.8;
}

/* PROGRESSO */
.progress{
  height:6px;
  background:#111;
  border-radius:4px;
  overflow:hidden;
}

.bar{
  height:100%;
  width:0%;
  background:linear-gradient(90deg, #ff3b3b, #ff8a8a);
  transition:width .3s;
}

/* RESULTADO */
.info p{
  display:flex;
  justify-content:space-between;
  margin:8px 0;
}

.blur{
  filter:blur(6px);
  transition:filter .3s;
  cursor:pointer;
}

.blur:hover{
  filter:blur(0);
}

/* RARIDADE */
.rarity{
  text-align:center;
  font-weight:bold;
  margin-bottom:15px;
}

.rarity.LEGENDARY{
  color:#ff3b3b;
  text-shadow:0 0 10px #ff3b3b;
}

.rarity.MYTHIC{
  color:#ffffff;
  text-shadow:0 0 12px #ff0000;
}

/* STATUS */
.status ul{
  list-style:none;
  margin-top:20px;
}

.status li{
  display:flex;
  justify-content:space-between;
  margin:10px 0;
}

.ok{
  color:#00ff7f;
}

/* MOBILE */
@media (max-width:600px){
  .hero h1{
    font-size:36px;
  }
  .card{
    padding:30px 20px;
  }
}