:root{
  --pink:#ff9fc6;
  --mint:#89e0d3;
  --ivory:#fff7ef;
  --dark:#2e2a2d;
}

body{
  margin:0;
  font-family:'Nanum Gothic',sans-serif;
  background:linear-gradient(135deg,#ffeef4,#f8fbff);
  overflow-x:hidden;
}

.bg{
  position:fixed;
  inset:0;
  background:url("photos/bg/bbg1.jpg") center/cover;
  opacity:.15;
  z-index:-1;
}

.file-window{
  max-width:1000px;
  margin:40px auto;
  border-radius:20px;
  background:white;
  box-shadow:0 30px 60px rgba(0,0,0,.2);
  overflow:hidden;
}

.titlebar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 15px;
  background:linear-gradient(90deg,#ffe3f0,#e9faff);
  font-family:'Orbitron',sans-serif;
  font-size:12px;
}

.dot{
  width:10px;height:10px;border-radius:50%;display:inline-block;margin-right:5px;
}
.red{background:#ff6a8a;}
.yellow{background:#ffd966;}
.green{background:#8affb2;}

.file-body{
  display:flex;
  gap:20px;
  padding:25px;
}

.profile-image{
  flex:1;
  position:relative;
  border-radius:15px;
  overflow:hidden;
}

.profile-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:15px;
}

.image-overlay{
  position:absolute;
  bottom:10px;
  left:10px;
  padding:5px 10px;
  background:rgba(0,0,0,.6);
  color:white;
  font-size:11px;
  border-radius:10px;
}

.profile-data{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.codename{
  font-family:'Orbitron',sans-serif;
  color:var(--pink);
  letter-spacing:2px;
}

.data-card{
  background:var(--ivory);
  padding:12px 15px;
  border-radius:15px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border:1px solid rgba(0,0,0,.08);
  transition:.3s;
}

.data-card:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(0,0,0,.1);
}

.data-card.big{
  flex-direction:column;
  align-items:flex-start;
}

.label{
  font-size:12px;
  color:#777;
}

.value{
  font-weight:700;
}

.secret{
  cursor:pointer;
  letter-spacing:3px;
  color:#999;
}

.overview{
  margin-top:8px;
  font-size:13px;
  line-height:1.5;
}

@media(max-width:768px){
  .file-body{
    flex-direction:column;
  }
}

.back-btn{
  padding:6px 12px;
  border-radius:10px;
  background:white;
  border:1px solid rgba(0,0,0,.1);
  text-decoration:none;
  font-size:12px;
  font-family:'Orbitron',sans-serif;
  color:#333;
  transition:.2s;
}

.back-btn:hover{
  background:#ffeef4;
  transform:translateY(-2px);
}