/* 关于页 · 洛屿 Luoyuu Island（自 luoyuu_webpage 迁移） */
body.page-about {
  overflow: hidden;
}

body.page-about .page-main {
  padding: 0;
  min-height: 0;
}

.about-container {
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--color-bg) 0%,
    var(--color-primary-pale) 100%
  );
  padding: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding-top: var(--header-height);
}

.about-content-wrapper {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 1rem 4rem;
  min-height: 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.about-team {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.about-team::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-light),
    var(--color-primary-darker)
  );
  z-index: 1;
}

.team-card-header {
  background: linear-gradient(
    315deg,
    var(--color-primary-pale),
    rgba(255, 255, 255, 0.5)
  );
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.team-logo-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.team-logo-badge-image {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(100, 149, 237, 0.3);
  background: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.team-logo-badge:hover .team-logo-badge-image {
  transform: rotate(-5deg) scale(1.05);
}

.team-badge-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary-darker);
  margin-bottom: 0.2rem;
  line-height: 1.2;
  letter-spacing: 1px;
}

.team-badge-sub {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.team-member {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.6rem 0.8rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.team-member:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.member-avatar {
  position: relative;
  width: 85px;
  height: 85px;
  margin: 0 auto 1.6rem;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.team-member:hover .member-avatar img {
  transform: scale(1.05);
}

.member-role {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  font-size: 0.6rem;
  font-weight: 500;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(100, 149, 237, 0.3);
}

.member-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.6rem;
  line-height: 1.8;
}

.member-bio {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.member-social-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary-pale);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  text-decoration: none;
}

.member-social-link:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.about-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.tech-badge {
  padding: 0.6rem 0.8rem;
  background: var(--color-primary-pale);
  color: var(--color-primary-darker);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.tech-badge:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.about-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 1.5rem 1.8rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
}

.card-title-with-icon {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.2rem;
  border-bottom: 2px solid var(--color-primary-pale);
  padding-bottom: 0.6rem;
}

.card-title-with-icon i {
  color: var(--color-primary);
}

.about-description {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.about-description p {
  margin-bottom: 0.8rem;
}

.about-description p:last-child {
  margin-bottom: 0;
}

.about-description strong.brand-color {
  color: var(--color-primary);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
}

.contact-method:hover {
  background: var(--color-primary);
  color: white;
  transform: translateX(5px);
}

.contact-method i {
  width: 20px;
  font-size: 1rem;
}

.copyright-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0.6rem 0 0.8rem;
  flex-shrink: 0;
}

.copyright-text-footer {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.2rem;
}

.copyright-small-footer {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

@media (max-width: 1200px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 700px;
  }

  .about-content-wrapper {
    padding: 1rem 2rem;
  }

  body.page-about {
    overflow-y: auto;
  }

  .about-container {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }
}

@media (max-width: 768px) {
  .about-content-wrapper {
    padding: 0.8rem 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}
