.about-page .about-hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-page .about-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.about-page .about-hero .hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, light-dark(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), light-dark(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)));
}
.about-page .about-hero .hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  color: #ffffff;
}
.about-page .about-hero .hero-content .hero-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}
.about-page .about-hero .hero-content .hero-name {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.about-page .about-hero .hero-content .hero-tagline {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.about-page .about-hero .hero-content .hero-social {
  display: flex;
  gap: 16px;
}
.about-page .about-hero .hero-content .hero-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.about-page .about-hero .hero-content .hero-social a:hover {
  background: #7c4dff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(124, 77, 255, 0.5);
}
.about-page .about-hero .hero-content .hero-social a svg {
  width: 20px;
  height: 20px;
}
.about-page .about-bio {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
}
.about-page .about-bio.mdui-card {
  background: var(--bg-1);
  border: 1px solid light-dark(rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.08));
}
.about-page .about-bio.mdui-card .mdui-card-content {
  color: var(--text-1);
  line-height: 1.8;
}
.about-page .about-bio.mdui-card .mdui-card-content p {
  margin-bottom: 16px;
}
.about-page .about-bio.mdui-card .mdui-card-content p:last-child {
  margin-bottom: 0;
}
.about-page .about-bio.mdui-card .mdui-card-content a {
  color: #7c4dff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.about-page .about-bio.mdui-card .mdui-card-content a:hover {
  color: rgba(124, 77, 255, 0.4392156863);
}
.about-page .about-timeline {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  position: relative;
}
.about-page .about-timeline .timeline-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-1);
  text-align: center;
  margin-bottom: 40px;
}
.about-page .about-timeline .timeline-container {
  position: relative;
  padding-left: 120px;
}
.about-page .about-timeline .timeline-container::before {
  content: "";
  position: absolute;
  left: 90px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: light-dark(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.1));
}
.about-page .about-timeline .timeline-item {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
}
.about-page .about-timeline .timeline-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #7c4dff;
  border: 3px solid var(--bg-1);
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.2509803922);
  z-index: 1;
}
.about-page .about-timeline .timeline-item .timeline-year {
  position: absolute;
  left: -110px;
  top: 0;
  font-size: 14px;
  font-weight: 600;
  color: #7c4dff;
  width: 70px;
  text-align: right;
}
.about-page .about-timeline .timeline-item .timeline-content {
  flex: 1;
  background: var(--bg-1);
  border: 1px solid light-dark(rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.08));
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px light-dark(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.15));
  transition: all 0.3s ease;
}
.about-page .about-timeline .timeline-item .timeline-content:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px light-dark(rgba(124, 77, 255, 0.1), rgba(124, 77, 255, 0.2));
  border-color: rgba(124, 77, 255, 0.1882352941);
}
.about-page .about-timeline .timeline-item .timeline-content .timeline-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 8px;
  text-align: left;
}
.about-page .about-timeline .timeline-item .timeline-content .timeline-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.about-page .about-skills {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}
.about-page .about-skills .skills-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-1);
  text-align: center;
  margin-bottom: 40px;
}
.about-page .about-skills .skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-page .about-skills .skills-grid .skill-card {
  background: var(--bg-1);
  border: 1px solid light-dark(rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.08));
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}
.about-page .about-skills .skills-grid .skill-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px light-dark(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
  border-color: rgba(124, 77, 255, 0.1882352941);
}
.about-page .about-skills .skills-grid .skill-card .skill-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-page .about-skills .skills-grid .skill-card .skill-name .skill-percent {
  font-size: 14px;
  color: #7c4dff;
  font-weight: 700;
}
.about-page .about-skills .skills-grid .skill-card .skill-bar {
  width: 100%;
  height: 8px;
  background: light-dark(rgba(0, 0, 0, 0.06), rgba(255, 255, 255, 0.1));
  border-radius: 4px;
  overflow: hidden;
}
.about-page .about-skills .skills-grid .skill-card .skill-bar .skill-progress {
  height: 100%;
  background: linear-gradient(90deg, #7c4dff 0%, #b388ff 100%);
  border-radius: 4px;
  transition: width 1s ease-out;
  width: 0;
}
.about-page .about-stats {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px 60px;
}
.about-page .about-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-page .about-stats .stats-grid .stat-item {
  background: var(--bg-1);
  border: 1px solid light-dark(rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.08));
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.about-page .about-stats .stats-grid .stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px light-dark(rgba(124, 77, 255, 0.15), rgba(124, 77, 255, 0.25));
  border-color: rgba(124, 77, 255, 0.2509803922);
}
.about-page .about-stats .stats-grid .stat-item:hover .stat-icon {
  color: #7c4dff;
  transform: scale(1.1);
}
.about-page .about-stats .stats-grid .stat-item .stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--text-2);
  transition: all 0.3s ease;
}
.about-page .about-stats .stats-grid .stat-item .stat-icon svg {
  width: 100%;
  height: 100%;
}
.about-page .about-stats .stats-grid .stat-item .stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
  line-height: 1;
}
.about-page .about-stats .stats-grid .stat-item .stat-label {
  font-size: 14px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 1024px) {
  .about-page .about-hero {
    min-height: 350px;
  }
  .about-page .about-hero .hero-content .hero-name {
    font-size: 28px;
  }
  .about-page .about-hero .hero-content .hero-tagline {
    font-size: 14px;
  }
  .about-page .about-skills .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-page .about-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-page .about-timeline .timeline-container {
    padding-left: 100px;
  }
  .about-page .about-timeline .timeline-container::before {
    left: 70px;
  }
  .about-page .about-timeline .timeline-item::before {
    left: -33px;
  }
  .about-page .about-timeline .timeline-item .timeline-year {
    left: -90px;
    width: 60px;
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .about-page .about-hero {
    min-height: 300px;
  }
  .about-page .about-hero .hero-content {
    padding: 30px 16px;
  }
  .about-page .about-hero .hero-content .hero-avatar {
    width: 80px;
    height: 80px;
  }
  .about-page .about-hero .hero-content .hero-name {
    font-size: 24px;
  }
  .about-page .about-hero .hero-content .hero-tagline {
    font-size: 14px;
  }
  .about-page .about-hero .hero-content .hero-social {
    gap: 12px;
  }
  .about-page .about-hero .hero-content .hero-social a {
    width: 36px;
    height: 36px;
  }
  .about-page .about-hero .hero-content .hero-social a svg {
    width: 18px;
    height: 18px;
  }
  .about-page .about-bio {
    margin: 30px 16px;
    padding: 20px;
  }
  .about-page .about-skills {
    margin: 40px auto;
    padding: 0 16px;
  }
  .about-page .about-skills .skills-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .about-page .about-skills .skills-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-page .about-skills .skills-grid .skill-card {
    padding: 20px;
  }
  .about-page .about-stats {
    margin: 40px auto;
    padding: 0 16px 40px;
  }
  .about-page .about-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .about-page .about-stats .stats-grid .stat-item {
    padding: 20px 16px;
  }
  .about-page .about-stats .stats-grid .stat-item .stat-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }
  .about-page .about-stats .stats-grid .stat-item .stat-value {
    font-size: 24px;
  }
  .about-page .about-stats .stats-grid .stat-item .stat-label {
    font-size: 12px;
  }
  .about-page .about-timeline {
    margin: 40px auto;
    padding: 0 16px;
  }
  .about-page .about-timeline .timeline-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .about-page .about-timeline .timeline-container {
    padding-left: 0;
  }
  .about-page .about-timeline .timeline-container::before {
    left: 20px;
  }
  .about-page .about-timeline .timeline-item {
    padding-left: 50px;
    margin-bottom: 24px;
  }
  .about-page .about-timeline .timeline-item::before {
    left: 13px;
    width: 12px;
    height: 12px;
  }
  .about-page .about-timeline .timeline-item .timeline-year {
    position: static;
    width: auto;
    text-align: left;
    margin-bottom: 8px;
    font-size: 13px;
  }
  .about-page .about-timeline .timeline-item .timeline-content {
    padding: 16px;
  }
  .about-page .about-timeline .timeline-item .timeline-content:hover {
    transform: none;
  }
  .about-page .about-timeline .timeline-item .timeline-content .timeline-title {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .about-page .about-timeline .timeline-item .timeline-content .timeline-desc {
    font-size: 13px;
  }
}

@keyframes skillProgressFill {
  from {
    width: 0;
  }
}
.about-page .skill-progress.animated {
  animation: skillProgressFill 1s ease-out forwards;
}