.about-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.about-header {
  text-align: left;
}

.about-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-top: 8px;
  letter-spacing: -0.5px;
}

.divider {
  height: 1px;
  background-color: var(--border);
  margin: 24px 0;
}

.about-body h3 {
  color: var(--primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 24px 0 12px 0;
}

.about-body p {
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.about-body strong {
  color: #fff;
}

.about-footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .about-card {
    padding: 24px;
  }

  .about-title {
    font-size: 24px;
  }
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-links .separator {
  color: #4b5563;
}

footer a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

html, body {
  width: 100%;
  max-width: 100vw;
  height: 100%;
  overflow-x: hidden;
  overscroll-behavior: none;
}

body {
  position: relative;
  touch-action: pan-y;
}