body {
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 134, 209, 0.14), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(110, 165, 255, 0.12), transparent 36%),
    #050507;
  color: #e4e4ea;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: #050507;
  display: grid;
  place-items: center;
  z-index: 1200;
  transition: opacity 0.35s ease;
}

.page-loader.is-hidden { opacity: 0; pointer-events: none; }

.loader-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 134, 209, 0.95);
  box-shadow: 0 0 22px rgba(255, 134, 209, 0.9);
  animation: pulseLoader 0.8s ease-in-out infinite alternate;
}

@keyframes pulseLoader {
  from { transform: scale(0.7); opacity: 0.55; }
  to { transform: scale(1.15); opacity: 1; }
}

.z-center { margin-bottom: 20px; }

.z-center a img { filter: brightness(0) invert(1); transition: filter 0.3s ease; }

.z-center a:hover img { filter: brightness(0.7) invert(1); }

.centered { max-width: 900px; margin: 0 auto; }

body.is-loading .centered { opacity: 0; transform: translateY(8px); }

body.page-ready .centered { opacity: 1; transform: translateY(0); transition: opacity 0.35s ease, transform 0.35s ease; }

.profile-table { width: 100%; border-collapse: separate; border-spacing: 0 16px; }

.profile-table tr {
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.profile-row { cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.profile-row:hover { transform: translateY(-2px); }
.profile-row:focus-visible { outline: 2px solid rgba(255, 134, 209, 0.8); outline-offset: 4px; }

.profile-table td { vertical-align: middle; padding: 20px 30px; }

.profile-table img {
  border-radius: 15px;
  width: 320px;
  height: 320px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.3s ease;
}

.profile-table img:hover { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45); }

.photo-animated { transition: box-shadow 0.3s ease; }
.photo-animated.is-switching { animation: photoSwitch 0.9s ease-in-out; }

@keyframes photoSwitch {
  0% { opacity: 1; transform: scale(1); filter: blur(0); }
  50% { opacity: 0.05; transform: scale(0.985); filter: blur(2px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

.name { font-size: 28px; font-weight: 700; color: rgba(255, 134, 209, 0.9); margin-bottom: 10px; text-align: left; }

.desc { font-size: 16px; line-height: 1.5; color: #c3c3cd; text-align: left; }

.reveal { opacity: 0; transform: translateY(18px); animation: revealCard 0.55s ease forwards; animation-delay: var(--reveal-delay, 0ms); }

@keyframes revealCard { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 760px) {
  body { padding: 14px; }
  .centered { padding: 0 4px; }
  .profile-table, .profile-table tbody, .profile-table tr, .profile-table td { display: block; width: 100%; }
  .profile-table tr { margin-bottom: 16px; border-radius: 14px; overflow: hidden; }
  .profile-table td { padding: 16px; text-align: left; }
  .profile-table img { width: 100%; height: auto; max-height: 360px; }
  .name { font-size: 24px; }
  .desc { font-size: 15px; }
}
