* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.github-corner {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
}

.github-corner svg {
  fill: #151513;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
}

.github-corner .octo-arm {
  animation: octocat-wave 560ms ease-in-out;
}

@keyframes octocat-wave {
  0%, 100% {
    transform: rotate(0);
  }
  20%, 60% {
    transform: rotate(-25deg);
  }
  40%, 80% {
    transform: rotate(10deg);
  }
}
.github-corner:hover .octo-arm {
  animation: none;
}

@media (max-width: 768px) {
  .nav-container {
    padding: 1rem;
  }
  .nav-title {
    font-size: 1.125rem;
  }
  .github-corner svg {
    width: 60px;
    height: 60px;
  }
}
.hero {
  padding: 8rem 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  text-align: center;
  max-width: 600px;
}

.avatar {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-name {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #333;
}

.hero-tagline {
  font-size: 1.5rem;
  color: #666;
  font-weight: 400;
}

@media (max-width: 768px) {
  .avatar {
    width: 150px;
    height: 150px;
  }
  .hero-name {
    font-size: 2rem;
  }
  .hero-tagline {
    font-size: 1.25rem;
  }
}
.about {
  padding: 3rem 2rem;
  background-color: #fafafa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.positions {
  display: table;
  margin: 0 auto 3rem;
  border-spacing: 0;
}

.position {
  display: table-row;
  font-size: 1.25rem;
}

.position .company-link {
  display: table-cell;
  text-align: right;
  padding-right: 1rem;
  vertical-align: top;
}

.position span:last-child {
  display: table-cell;
  text-align: left;
  vertical-align: top;
}

.company-link {
  font-weight: 600;
  text-decoration: none !important;
  transition: opacity 0.3s ease;
}

.company-link:hover {
  opacity: 0.8;
  text-decoration: none !important;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  font-size: 0.95rem;
}

.contact-info a,
.contact-info > span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #333;
}

.contact-info span span:first-child,
.contact-info a span:first-child {
  font-weight: 500;
  color: #999;
}

.description {
  max-width: 700px;
  margin: 0 auto;
}

.description p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .about {
    padding: 3rem 1rem;
  }
  .positions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .position {
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0rem;
  }
  .position .company-link,
  .position span:last-child {
    display: block;
    text-align: center;
    padding: 0;
  }
  .company-link {
    font-size: 1.5rem;
  }
  .contact-info {
    display: table;
    margin: 0 auto;
    border-spacing: 0;
  }
  .contact-info a,
  .contact-info > span {
    display: table-row;
  }
  .contact-info a span:first-child,
  .contact-info > span span:first-child {
    display: table-cell;
    text-align: right;
    padding-right: 1rem;
    white-space: nowrap;
  }
  .contact-info a span:last-child,
  .contact-info > span span:last-child {
    display: table-cell;
    text-align: left;
  }
}
.skills-section {
  padding: 4rem 0;
  background-color: #ffffff;
}
.skills-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}
.skills-section .skills-cross {
  position: relative;
  width: 550px;
  height: 550px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.skills-section .skills-cross .skill-circle-bg {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: transparent;
}
.skills-section .skills-cross .skill-circle-bg.circle-1 {
  width: 100px;
  height: 100px;
  border: 2px solid #e5e7eb;
}
.skills-section .skills-cross .skill-circle-bg.circle-2 {
  width: 250px;
  height: 250px;
  border: 2px solid #d1d5db;
}
.skills-section .skills-cross .skill-circle-bg.circle-3 {
  width: 400px;
  height: 400px;
  border: 2px solid #9ca3af;
}
.skills-section .skills-cross .skill-circle-bg.circle-4 {
  width: 550px;
  height: 550px;
  border: 2px solid #6b7280;
}
.skills-section .skills-cross .quadrant {
  position: relative;
  padding: 1rem;
  z-index: 5;
}
.skills-section .skills-cross .quadrant .quadrant-title {
  position: absolute;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  z-index: 10;
}
.skills-section .skills-cross .quadrant.quadrant-top-left .quadrant-title {
  top: 1rem;
  left: 1rem;
}
.skills-section .skills-cross .quadrant.quadrant-top-right .quadrant-title {
  top: 1rem;
  right: 1rem;
}
.skills-section .skills-cross .quadrant.quadrant-bottom-left .quadrant-title {
  bottom: 1rem;
  left: 1rem;
}
.skills-section .skills-cross .quadrant.quadrant-bottom-right .quadrant-title {
  bottom: 1rem;
  right: 1rem;
}
.skills-section .skills-cross .quadrant .skill-circle {
  position: absolute;
  width: 40px;
  height: 40px;
}
.skills-section .skills-cross .quadrant .skill-circle .skill-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: grayscale(20%);
}
.skills-section .skills-cross .quadrant-top-left .skill-circle[data-level=expert]:nth-child(2) {
  top: 160px;
  left: 30px;
}
.skills-section .skills-cross .quadrant-top-left .skill-circle[data-level=expert]:nth-child(3) {
  top: 20px;
  left: 200px;
}
.skills-section .skills-cross .quadrant-top-left .skill-circle[data-level=expert]:nth-child(4) {
  top: 40px;
  left: 140px;
}
.skills-section .skills-cross .quadrant-top-left .skill-circle[data-level=expert]:nth-child(5) {
  top: 80px;
  left: 80px;
}
.skills-section .skills-cross .quadrant-top-left .skill-circle[data-level=advanced]:nth-child(6) {
  top: 160px;
  left: 90px;
}
.skills-section .skills-cross .quadrant-top-left .skill-circle[data-level=advanced]:nth-child(7) {
  top: 100px;
  left: 140px;
}
.skills-section .skills-cross .quadrant-top-left .skill-circle[data-level=advanced]:nth-child(8) {
  top: 220px;
  left: 100px;
}
.skills-section .skills-cross .quadrant-top-left .skill-circle[data-level=basic]:nth-child(9) {
  top: 180px;
  left: 140px;
}
.skills-section .skills-cross .quadrant-top-left .skill-circle[data-level=basic]:nth-child(10) {
  top: 130px;
  left: 220px;
}
.skills-section .skills-cross .quadrant-top-right .skill-circle[data-level=expert]:nth-child(2) {
  top: 220px;
  right: 30px;
}
.skills-section .skills-cross .quadrant-top-right .skill-circle[data-level=expert]:nth-child(3) {
  top: 20px;
  right: 200px;
}
.skills-section .skills-cross .quadrant-top-right .skill-circle[data-level=expert]:nth-child(4) {
  top: 60px;
  right: 100px;
}
.skills-section .skills-cross .quadrant-top-right .skill-circle[data-level=expert]:nth-child(5) {
  top: 140px;
  right: 40px;
}
.skills-section .skills-cross .quadrant-top-right .skill-circle[data-level=advanced]:nth-child(6) {
  top: 130px;
  right: 170px;
}
.skills-section .skills-cross .quadrant-top-right .skill-circle[data-level=advanced]:nth-child(7) {
  top: 100px;
  right: 220px;
}
.skills-section .skills-cross .quadrant-top-right .skill-circle[data-level=advanced]:nth-child(8) {
  top: 160px;
  right: 110px;
}
.skills-section .skills-cross .quadrant-top-right .skill-circle[data-level=advanced]:nth-child(9) {
  top: 220px;
  right: 90px;
}
.skills-section .skills-cross .quadrant-top-right .skill-circle[data-level=advanced]:nth-child(10) {
  top: 200px;
  right: 160px;
}
.skills-section .skills-cross .quadrant-bottom-left .skill-circle[data-level=expert]:nth-child(2) {
  bottom: 200px;
  left: 30px;
}
.skills-section .skills-cross .quadrant-bottom-left .skill-circle[data-level=expert]:nth-child(3) {
  bottom: 40px;
  left: 200px;
}
.skills-section .skills-cross .quadrant-bottom-left .skill-circle[data-level=advanced]:nth-child(4) {
  bottom: 80px;
  left: 120px;
}
.skills-section .skills-cross .quadrant-bottom-left .skill-circle[data-level=advanced]:nth-child(5) {
  bottom: 150px;
  left: 90px;
}
.skills-section .skills-cross .quadrant-bottom-right .skill-circle[data-level=expert]:nth-child(2) {
  bottom: 20px;
  right: 210px;
}
.skills-section .skills-cross .quadrant-bottom-right .skill-circle[data-level=expert]:nth-child(3) {
  bottom: 90px;
  right: 90px;
}
.skills-section .skills-cross .quadrant-bottom-right .skill-circle[data-level=advanced]:nth-child(4) {
  bottom: 170px;
  right: 90px;
}
.skills-section .skills-cross .quadrant-bottom-right .skill-circle[data-level=advanced]:nth-child(5) {
  bottom: 90px;
  right: 180px;
}
.skills-section .skills-cross .quadrant-bottom-right .skill-circle[data-level=basic]:nth-child(6) {
  bottom: 150px;
  right: 210px;
}
.skills-section .skills-cross .quadrant-bottom-right .skill-circle[data-level=basic]:nth-child(7) {
  bottom: 230px;
  right: 150px;
}
.skills-section .skills-cross .quadrant-bottom-right .skill-circle[data-level=basic]:nth-child(8) {
  bottom: 180px;
  right: 150px;
}
.skills-section .skills-cross .cross-line {
  position: absolute;
  background-color: #999;
  z-index: 5;
}
.skills-section .skills-cross .cross-horizontal {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}
.skills-section .skills-cross .cross-vertical {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}
.skills-section .skills-cross .scale-label {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 500;
  color: #888;
  z-index: 10;
  background: white;
  padding: 2px 6px;
  border-radius: 4px;
}
.skills-section .skills-cross .scale-label.scale-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.skills-section .skills-cross .scale-label.scale-top {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.skills-section .skills-cross .scale-label.scale-right {
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}
.skills-section .skills-cross .scale-label.scale-bottom {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.skills-section .skills-cross .scale-label.scale-left {
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .skills-section .skills-cross {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0;
  }
  .skills-section .skills-cross .quadrant {
    position: relative;
    min-height: 200px;
    padding: 2rem;
    background: white;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #eee;
    /* Center the skill items */
    text-align: center;
  }
  .skills-section .skills-cross .quadrant.quadrant-bottom-right {
    border-bottom: none;
  }
  .skills-section .skills-cross .quadrant .quadrant-title {
    position: static;
    text-align: center;
    margin-bottom: 1rem;
  }
  .skills-section .skills-cross .quadrant .skill-circle {
    position: static;
    display: inline-flex;
    margin: 0.5rem;
    width: 50px;
    height: 50px;
  }
  .skills-section .skills-cross .quadrant .skill-circle .skill-icon {
    width: 50px;
    height: 50px;
  }
  .skills-section .skills-cross .cross-line {
    display: none;
  }
  .skills-section .skills-cross .scale-label {
    display: none;
  }
  .skills-section .skills-cross .skill-circle-bg {
    display: none;
  }
}

.work-section {
  padding: 4rem 0;
  background-color: #fafafa;
}
.work-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}
.work-section .timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.work-section .timeline .timeline-item {
  position: relative;
  border-bottom: 1px solid #eee;
}
.work-section .timeline .timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.work-section .timeline .timeline-item .timeline-content {
  padding: 1.5rem;
}
.work-section .timeline .timeline-item .timeline-content .timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.work-section .timeline .timeline-item .timeline-content .timeline-header .company-name {
  font-size: 1.5rem;
  margin: 0;
  color: #333;
}
.work-section .timeline .timeline-item .timeline-content .timeline-header .work-period {
  color: #666;
  font-weight: 600;
}
.work-section .timeline .timeline-item .timeline-content .work-roles {
  margin-bottom: 1rem;
}
.work-section .timeline .timeline-item .timeline-content .work-roles .role-badge {
  display: inline-block;
  background-color: #f0f0f0;
  color: #666;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.work-section .timeline .timeline-item .timeline-content .work-links {
  margin-bottom: 1rem;
}
.work-section .timeline .timeline-item .timeline-content .work-links .work-link {
  display: inline-block;
  color: #666;
  text-decoration: none;
  margin-right: 1rem;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}
.work-section .timeline .timeline-item .timeline-content .work-links .work-link:hover {
  color: #333;
}
.work-section .timeline .timeline-item .timeline-content .work-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.work-section .timeline .timeline-item .timeline-content .work-technologies .tech-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}
.work-section .timeline .timeline-item .timeline-content .work-technologies .tech-icon:hover {
  filter: grayscale(0%);
}
@media (max-width: 768px) {
  .work-section .timeline .timeline-item .timeline-content {
    padding: 1rem;
  }
  .work-section .timeline .timeline-item .timeline-content .timeline-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .work-section .timeline .timeline-item .timeline-content .timeline-header .company-name {
    margin-bottom: 0.5rem;
  }
  .work-section .timeline .timeline-item .timeline-content .timeline-header .work-period {
    font-size: 0.875rem;
  }
  .work-section .timeline .timeline-item .timeline-content .work-links {
    display: flex;
    flex-direction: column;
    gap: 0rem;
  }
  .work-section .timeline .timeline-item .timeline-content .work-links .work-link {
    margin-right: 0;
  }
}

.education-section {
  padding: 4rem 0;
  background-color: #ffffff;
}
.education-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}
.education-section .timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.education-section .timeline .timeline-item {
  position: relative;
  border-bottom: 1px solid #eee;
}
.education-section .timeline .timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.education-section .timeline .timeline-item .timeline-content {
  padding: 1.5rem;
}
.education-section .timeline .timeline-item .timeline-content .timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.education-section .timeline .timeline-item .timeline-content .timeline-header .degree-name {
  font-size: 1.5rem;
  margin: 0;
  color: #333;
}
.education-section .timeline .timeline-item .timeline-content .timeline-header .education-year {
  color: #666;
  font-weight: 600;
}
.education-section .timeline .timeline-item .timeline-content .institution {
  color: #666;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.education-section .timeline .timeline-item .timeline-content .thesis {
  margin-bottom: 1rem;
}
.education-section .timeline .timeline-item .timeline-content .thesis .thesis-label {
  font-weight: 600;
  color: #333;
}
.education-section .timeline .timeline-item .timeline-content .thesis .thesis-title {
  color: #666;
  font-style: italic;
}
.education-section .timeline .timeline-item .timeline-content .examination {
  margin-bottom: 1rem;
}
.education-section .timeline .timeline-item .timeline-content .examination .exam-badge {
  display: inline-block;
  background-color: #f0f0f0;
  color: #666;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.education-section .timeline .timeline-item .timeline-content .education-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.education-section .timeline .timeline-item .timeline-content .education-technologies .tech-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}
.education-section .timeline .timeline-item .timeline-content .education-technologies .tech-icon:hover {
  filter: grayscale(0%);
}
@media (max-width: 768px) {
  .education-section .timeline .timeline-item .timeline-content {
    padding: 1rem;
  }
  .education-section .timeline .timeline-item .timeline-content .timeline-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .education-section .timeline .timeline-item .timeline-content .timeline-header .degree-name {
    margin-bottom: 0.5rem;
  }
  .education-section .timeline .timeline-item .timeline-content .timeline-header .education-year {
    font-size: 0.875rem;
  }
  .education-section .timeline .timeline-item .timeline-content .institution {
    font-size: 1rem;
  }
}

.projects-section {
  padding: 4rem 0;
  background-color: #fafafa;
}
.projects-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}
.projects-section .timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.projects-section .timeline .timeline-item {
  position: relative;
  border-bottom: 1px solid #eee;
}
.projects-section .timeline .timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.projects-section .timeline .timeline-item .timeline-content {
  padding: 1.5rem;
}
.projects-section .timeline .timeline-item .timeline-content .timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.projects-section .timeline .timeline-item .timeline-content .timeline-header .project-name-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.projects-section .timeline .timeline-item .timeline-content .timeline-header .project-name-container .project-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #f8f9fa;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.projects-section .timeline .timeline-item .timeline-content .timeline-header .project-name-container .project-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.projects-section .timeline .timeline-item .timeline-content .timeline-header .project-name {
  font-size: 1.5rem;
  margin: 0;
  color: #333;
}
.projects-section .timeline .timeline-item .timeline-content .timeline-header .project-year {
  color: #666;
  font-weight: 600;
}
.projects-section .timeline .timeline-item .timeline-content .project-roles {
  margin-bottom: 1rem;
}
.projects-section .timeline .timeline-item .timeline-content .project-roles .role-badge {
  display: inline-block;
  background-color: #f0f0f0;
  color: #666;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.projects-section .timeline .timeline-item .timeline-content .project-description {
  color: #666;
  margin-bottom: 1rem;
  font-style: italic;
}
.projects-section .timeline .timeline-item .timeline-content .project-links {
  margin-bottom: 1rem;
}
.projects-section .timeline .timeline-item .timeline-content .project-links .project-link {
  display: inline-block;
  color: #666;
  text-decoration: none;
  margin-right: 1rem;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}
.projects-section .timeline .timeline-item .timeline-content .project-links .project-link:hover {
  color: #333;
}
.projects-section .timeline .timeline-item .timeline-content .project-links .project-link.inactive {
  color: #999;
  cursor: default;
  text-decoration: none;
}
.projects-section .timeline .timeline-item .timeline-content .project-links .project-link.inactive:hover {
  opacity: 1;
  color: #999;
}
.projects-section .timeline .timeline-item .timeline-content .project-links .project-link.app-store, .projects-section .timeline .timeline-item .timeline-content .project-links .project-link.google-play {
  background-color: #f0f0f0;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  border: 1px solid #555;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.projects-section .timeline .timeline-item .timeline-content .project-links .project-link.app-store .store-icon, .projects-section .timeline .timeline-item .timeline-content .project-links .project-link.google-play .store-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  object-fit: contain;
}
.projects-section .timeline .timeline-item .timeline-content .project-links .project-link.app-store:hover, .projects-section .timeline .timeline-item .timeline-content .project-links .project-link.google-play:hover {
  background-color: #e5e5e5;
  color: #666;
  border-color: #333;
}
.projects-section .timeline .timeline-item .timeline-content .project-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.projects-section .timeline .timeline-item .timeline-content .project-technologies .tech-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}
.projects-section .timeline .timeline-item .timeline-content .project-technologies .tech-icon:hover {
  filter: grayscale(0%);
}
@media (max-width: 768px) {
  .projects-section .timeline .timeline-item .timeline-content {
    padding: 1rem;
  }
  .projects-section .timeline .timeline-item .timeline-content .timeline-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .projects-section .timeline .timeline-item .timeline-content .timeline-header .project-name-container {
    margin-bottom: 0.5rem;
  }
  .projects-section .timeline .timeline-item .timeline-content .timeline-header .project-name-container .project-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .projects-section .timeline .timeline-item .timeline-content .timeline-header .project-year {
    font-size: 0.875rem;
    margin-left: 2px;
  }
  .projects-section .timeline .timeline-item .timeline-content .project-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .projects-section .timeline .timeline-item .timeline-content .project-links .project-link:not(.app-store):not(.google-play) {
    margin-right: 0;
  }
  .projects-section .timeline .timeline-item .timeline-content .project-links .app-store-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .projects-section .timeline .timeline-item .timeline-content .project-links .app-store-buttons .app-store,
  .projects-section .timeline .timeline-item .timeline-content .project-links .app-store-buttons .google-play {
    margin-right: 0;
    flex: 1;
    text-align: center;
    min-width: 120px;
  }
}

/*# sourceMappingURL=main.css.map */