/* ============================
   About Popup Styling
============================ */
.about-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.about-popup.show {
  display: flex;
}

.about-box {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 640px;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.4s ease-out;
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.about-box h2 {
  margin-top: 0;
  font-size: 1.6rem;
  color: #0d1a26;
}

.about-box p {
  margin-bottom: 1rem;
}

/* Close Button */
.close-about {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

@keyframes slideInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
