body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, Helvetica, sans-serif;
  background-color: #0f0f0f;
  color: #f1f1f1;
  height: 100vh;
  overflow: hidden;
}

/* === CV Content === */
#app-content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: blur(20px);
  pointer-events: none;
  transition: filter 0.3s ease;
}

#app-content.unlocked {
  filter: none;
  pointer-events: auto;
}

.cv-wrapper {
  max-width: 700px;
  background: rgba(30, 30, 30, 0.95);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.avatar {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

h1, h2, h3 {
  color: white;
}

ul {
  text-align: left;
  display: inline-block;
  margin-top: 10px;
}

a {
  color: #0a84ff;
}

/* === Password Modal === */
#password-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal {
  background: #1f1f1f;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 30px #000;
}

.modal input {
  padding: 12px;
  font-size: 16px;
  width: 200px;
  margin-top: 12px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: none;
}

.modal button {
  padding: 10px 20px;
  font-size: 16px;
  background: #0a84ff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}