*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial;
}

body{
  padding:35px;
  background:linear-gradient(135deg,#0f172a,#1e1b4b,#312e81);
  color:white;
}

h1{
  text-align:center;
  font-size:55px;
}

.subtitle{
  text-align:center;
  margin:15px;
  color:#cbd5e1;
}

.corner{
  position:fixed;
  font-size:9px;
  color:rgba(255,255,255,0.2);
}

.top-left{top:10px;left:10px;}
.top-right{top:10px;right:10px;}
.bottom-left{bottom:10px;left:10px;}
.bottom-right{bottom:10px;right:10px;}

.star{
  background:linear-gradient(135deg,gold,orange);
  padding:25px;
  border-radius:25px;
  max-width:500px;
  margin:auto;
  margin-bottom:50px;
  text-align:center;
  color:black;
}

.profiles{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.card{
  background:rgba(255,255,255,0.08);
  padding:20px;
  border-radius:20px;
  text-align:center;
  backdrop-filter:blur(10px);
}

.card:hover{
  transform:translateY(-5px);
}

.avatar-img{
  width:100px;
  height:100px;
  border-radius:50%;
  display:block;
  margin:auto;
  object-fit:cover;
  border:4px solid white;
}

.small{
  width:70px;
  height:70px;
}

.card h2{
  margin-top:15px;
}

.tag{
  color:#c4b5fd;
  margin-top:5px;
}

textarea{
  width:100%;
  height:80px;
  margin-top:15px;
  padding:10px;
  border:none;
  border-radius:10px;
  resize:none;
}

button{
  width:100%;
  padding:12px;
  margin-top:10px;
  border:none;
  border-radius:10px;
  background:#6366f1;
  color:white;
  cursor:pointer;
}

button:hover{
  background:#4f46e5;
}

.rating{
  background:rgba(255,255,255,0.12);
  padding:10px;
  margin-top:10px;
  border-radius:10px;
  text-align:left;
  word-break:break-word;
  font-size:14px;
}

.error{
  color:#fca5a5;
  margin-top:10px;
  font-size:13px;
}

.missing{
  margin-top:50px;
}

.missing-card{
  background:rgba(255,255,255,0.08);
  padding:20px;
  border-radius:20px;
  width:170px;
  text-align:center;
  margin-top:20px;
}