:root{
  --bg-image: url('https://i.pinimg.com/736x/7f/ca/7c/7fca7c6446d20ac18c2f2efd9eb7fb3d.jpg');
  --accent: #1659a2;
  --card: #1f62a8;
  --light: #f3fbff;
  --pixel: 'Press Start 2P', monospace;
}

*{box-sizing:border-box}
html,body{
  margin:0;
  background:linear-gradient(#bde0ff,#e8f5ff);
  font-family:Inter, sans-serif;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background-image: var(--bg-image);
  background-size:cover;
  background-position:center;
  opacity:0.1;
  z-index:0;
}

.page{
  max-width:900px;
  margin:30px auto;
  padding:20px;
  position:relative;
  z-index:2;
}

/* window top bar */
.top-bar{
  display:flex;
  align-items:center;
  gap:14px;
  padding:10px 16px;
  border:6px solid #163e68;
  border-radius:10px 10px 0 0;
  background:#ffffffdd;
  box-shadow: 6px 8px 0 rgba(0,0,0,0.18);
}

.title{
  font-family:var(--pixel);
  font-size:14px;
  margin:0;
  color:#1a3a6a;
  letter-spacing:2px;
}

.win-dots{display:flex;gap:8px}
.dot{width:14px;height:14px;border-radius:50%;border:2px solid #0002}
.red{background:#ff4d4d}
.yellow{background:#ffd24d}
.green{background:#6bff83}

/* main card */
.content-box{
  border:6px solid #163e68;
  background:#ffffffee;
  padding:0;
  border-radius:0 0 10px 10px;
  box-shadow:6px 8px 0 rgba(0,0,0,0.18);
}

.profile-window{
  background:linear-gradient(180deg,#1e5aa1,#275fae);
  border:6px solid #163e68;
  margin:18px;
  border-radius:10px;
  padding:20px;
  display:flex;
  gap:20px;
  color:white;
  box-shadow:8px 10px 0 rgba(0,0,0,0.2);
}

.domain{
  font-family:var(--pixel);
  font-size:12px;
  margin:0 0 10px;
  color:#c6e7ff;
}

.name{
  font-family:var(--pixel);
  font-size:22px;
  margin:0 0 12px;
  color:white;
}

.bio{
  font-size:13px;
  line-height:1.5;
  color:#eef6ff;
}

.links{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:20px;
}

/* buttons */
.btn{
  display:block;
  background:white;
  padding:12px 14px;
  border-radius:8px;
  color:#163e68;
  text-decoration:none;
  font-family:var(--pixel);
  font-size:12px;
  text-align:center;
  border:4px solid #163e68;
  transition:0.2s;
}

.btn:hover{
  background:#cce6ff;
  transform:translateY(-3px);
}

/* avatar */
.avatar-area{
  width:150px;
  text-align:center;
  position:relative;
}

.avatar{
  width:120px;height:120px;
  border-radius:50%;
  background:white;
}

.crown{
  position:absolute;
  top:-8px;
  right:20px;
  font-size:20px;
}

/* bottom shadow */
.bottom-shadow{
  height:18px;
  background:linear-gradient(90deg,transparent,rgba(0,0,0,0.1),transparent);
  margin-top:10px;
}

@media(max-width:700px){
  .profile-window{
    flex-direction:column;
    text-align:center;
  }
}
