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

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

.bg{
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at top, #7a3cff33, transparent 60%),
    linear-gradient(120deg, #050505, #0b0b0b);
  animation:bgMove 10s infinite alternate;
  z-index:-1;
}

@keyframes bgMove{
  from{filter:hue-rotate(0deg)}
  to{filter:hue-rotate(20deg)}
}

.navbar{
  height:60px;
  padding:0 25px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#080808cc;
  backdrop-filter:blur(8px);
  border-bottom:1px solid #7a3cff55;
}

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

.tabs{display:flex;gap:10px}

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

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

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

.screen{
  display:none;
  height:calc(100vh - 60px);
  justify-content:center;
  align-items:center;
}

.screen.active{display:flex}

.card{
  background:linear-gradient(180deg,#0d0d0d,#080808);
  border:1px solid #7a3cff44;
  border-radius:14px;
  padding:40px;
  min-width:340px;
  box-shadow:0 0 40px #7a3cff22;
  animation:fadeUp .7s ease;
}

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

.hero h1{
  color:#9b6cff;
  font-size:44px;
  text-align:center;
}

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

.buttons{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

button{
  background:#9b6cff;
  border:none;
  padding:12px 26px;
  border-radius:8px;
  font-weight:bold;
  cursor:pointer;
}

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

.terminal .line{
  border-left:4px solid #9b6cff;
  padding-left:12px;
  margin-bottom:15px;
}

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

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

.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);
}

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

.rarity.COMMON{color:#aaa}
.rarity.RARE{color:#5da9ff}
.rarity.EPIC{color:#b47cff}
.rarity.LEGENDARY{color:#9b6cff;text-shadow:0 0 10px #9b6cff}
.rarity.MYTHIC{color:#ff4dff;text-shadow:0 0 12px #ff4dff}

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

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