/* === ABOUT ME - EMO BIO === */
.about-page { min-height: 100vh; padding: 30px; }

.about-title {
  text-align: center; color: #ff0033; font-size: 2.8rem;
  margin-bottom: 32px; animation: bounceIn 0.8s ease-out both;
}

.about-card { max-width: 850px; margin: 0 auto; animation: fadeInUp 0.7s ease-out 0.2s both; }

.about-top { display: flex; gap: 24px; margin-bottom: 28px; }

.about-photo {
  width: 200px; height: 230px; border: 3px solid #ff0033;
  background: #111; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: #444; font-size: 1.05rem; overflow: hidden; filter: url(#crayon);
  transform: rotate(-2deg);
  animation: bounceIn 0.8s ease-out 0.3s both, pulseGlow 3s ease-in-out infinite 1s;
  transition: transform 0.3s, border-color 0.3s;
}
.about-photo:hover { transform: rotate(2deg) scale(1.03); border-color: #ff66aa; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-table {
  width: 100%; border-collapse: separate; border-spacing: 0 5px; font-size: 1.05rem;
}
.about-table td {
  padding: 12px 16px; border: 1px solid #1a1a1a;
  transition: background 0.3s;
}
.about-table tr { animation: fadeInUp 0.4s ease-out both; }
.about-table tr:nth-child(1) { animation-delay: 0.3s; }
.about-table tr:nth-child(2) { animation-delay: 0.4s; }
.about-table tr:nth-child(3) { animation-delay: 0.5s; }
.about-table tr:nth-child(4) { animation-delay: 0.6s; }
.about-table tr:nth-child(5) { animation-delay: 0.7s; }
.about-table tr:nth-child(6) { animation-delay: 0.8s; }
.about-table tr:hover td { background: rgba(255, 0, 51, 0.06); }
.about-table tr:nth-child(odd) td { background: rgba(255, 0, 51, 0.03); }
.about-table .label { color: #ff0033; font-weight: bold; width: 150px; }
.about-table .value { color: #999; }

.about-story {
  background: rgba(204, 0, 255, 0.03); border: 2px solid #cc00ff;
  border-left: 5px solid #cc00ff; padding: 24px; margin-top: 32px;
  filter: url(#crayon); animation: fadeInUp 0.7s ease-out 0.9s both;
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-story:hover { transform: rotate(-0.3deg); box-shadow: 0 0 20px rgba(204, 0, 255, 0.1); }
.about-story h3 { color: #cc00ff; font-size: 1.4rem; text-align: center; margin-bottom: 16px; }
.about-story p { color: #999; font-size: 1.05rem; line-height: 1.9; }

@media (max-width: 600px) {
  .about-top { flex-direction: column; align-items: center; }
  .about-title { font-size: 2rem; }
}
