#my-projects, #my-projects * {
  box-sizing: border-box;
}

.mp-section {
  position: relative;
  overflow: hidden;
  background: #05050d;
  padding: 96px 24px 112px;
  font-family: "Outfit", "Inter", sans-serif;
  color: #f4f5f8;
  isolation: isolate;
}

.mp-glow {
  position: absolute;
  top: -220px;
  left: 50%;
  width: 900px;
  height: 560px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(45, 226, 230, 0.16), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.mp-container {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.mp-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.mp-eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4fe0e4;
}

.mp-title {
  margin: 0;
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #f7f8fb;
}

.mp-title span {
  color: #8b93a6;
  font-weight: 500;
}

.mp-tag {
  flex-shrink: 0;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(79, 224, 228, 0.35);
  background: rgba(79, 224, 228, 0.08);
  color: #4fe0e4;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 6px;
}

.mp-lede {
  margin: 22px 0 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.65;
  color: #a9afc0;
}

.mp-gallery {
  display: flex;
  gap: 22px;
  margin: 56px 0 8px;
  padding: 20px 4px 28px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.mp-gallery::-webkit-scrollbar {
  height: 6px;
}

.mp-gallery::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.mp-shot {
  flex: 0 0 auto;
  scroll-snap-align: start;
  margin: 0;
  width: 220px;
  border-radius: 22px;
  padding: 8px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px -18px rgba(0, 0, 0, 0.65);
  transition: transform 0.35s cubic-bezier(.2, .7, .2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.mp-shot:nth-child(1) { transform: rotate(-3deg) translateY(4px); }
.mp-shot:nth-child(2) { transform: rotate(2deg) translateY(-6px); }
.mp-shot:nth-child(3) { transform: rotate(-1deg) translateY(2px); }
.mp-shot:nth-child(4) { transform: rotate(3deg) translateY(-4px); }
.mp-shot:nth-child(5) { transform: rotate(-2deg) translateY(3px); }

.mp-shot:hover {
  transform: rotate(0deg) translateY(-10px);
  border-color: rgba(79, 224, 228, 0.4);
  box-shadow: 0 26px 46px -18px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(79, 224, 228, 0.12);
}

.mp-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.mp-features {
  margin-top: 44px;
  padding: 36px clamp(20px, 4vw, 40px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.mp-features-title {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 600;
  color: #f7f8fb;
}

.mp-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.mp-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mp-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 224, 228, 0.1);
  color: #4fe0e4;
}

.mp-feature-icon svg {
  width: 20px;
  height: 20px;
}

.mp-feature-title-sm {
  margin: 2px 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: #f0f1f5;
}

.mp-feature-desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #9aa0b2;
  max-width: 620px;
}

@media (max-width: 640px) {
  .mp-section {
    padding: 72px 18px 88px;
  }

  .mp-shot {
    width: 168px;
  }

  .mp-features {
    padding: 28px 20px;
  }
}
