#projects {
  background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
}

.projects-container {
  max-width: 1200px;
  z-index: 10;
  position: relative;
  width: 100%;
}

.projects-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */
  gap: 2rem;
  margin-top: 3rem;
}

.project-card {
  background: rgba(22, 27, 34, 0.6);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(88, 166, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.project-card::before {
  content: "</>";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 4rem;
  color: rgba(88, 166, 255, 0.05);
  font-family: "Courier New", monospace;
  font-weight: bold;
  transition: all 0.4s ease;
}

.project-card:hover::before {
  color: rgba(88, 166, 255, 0.2);
  transform: rotate(360deg) scale(1.2);
}

.project-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 50px rgba(88, 166, 255, 0.4);
  border-color: #58a6ff;
}

.project-card h3 {
  font-size: 1.5rem;
  color: #58a6ff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.project-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.project-card h3 a:hover {
  text-shadow: 0 0 20px rgba(88, 166, 255, 0.8);
}

.project-card p {
  color: #8b949e;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.project-tag {
  background: linear-gradient(
    135deg,
    rgba(88, 166, 255, 0.2),
    rgba(138, 180, 248, 0.2)
  );
  color: #58a6ff;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  border: 1px solid rgba(88, 166, 255, 0.3);
  transition: all 0.3s ease;
}

.project-tag:hover {
  background: linear-gradient(
    135deg,
    rgba(88, 166, 255, 0.4),
    rgba(138, 180, 248, 0.4)
  );
  transform: scale(1.1);
}

.project-tag::before {
  content: "#";
  margin-right: 0.2rem;
}
