body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0614;
  color: #f5ecff;
}

.project-wrapper {
  max-width: 1100px;
  margin: 100px auto 50px auto;
  padding: 40px;
  background: linear-gradient(160deg, #1a0f2b, #120a1f);
  border-radius: 16px;
  position: relative;
  box-shadow: 0 20px 50px rgba(128, 0, 255, 0.25);
  border: 1px solid rgba(180, 120, 255, 0.15);
}

/* Back Button (icon only) */
.back-button {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(120, 60, 200, 0.2);
  border: 1px solid rgba(200, 140, 255, 0.25);
  border-radius: 10px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all 0.2s ease;
}

.back-button:hover {
  background: rgba(160, 90, 255, 0.35);
  box-shadow: 0 0 12px rgba(180, 120, 255, 0.4);
  transform: translateY(-1px);
}

.back-button svg {
  width: 18px;
  height: 18px;
  fill: #e9d5ff;
}

/* Floating Logo */
.project-logo {
  position: absolute;
  top: -128px;
  left: 50%;
  transform: translateX(-50%);
  width: 384px;
  opacity: 0.92;
  pointer-events: none;
  filter: drop-shadow(0 0 18px rgba(180, 120, 255, 0.5));
}

.project-header {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 40px;
}

.project-image {
  width: 220px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(150, 70, 255, 0.35);
  border: 1px solid rgba(200, 140, 255, 0.2);
}

.project-image img {
  width: 100%;
  display: block;
}

.project-meta {
  flex: 1;
}

.project-title {
  font-size: 2rem;
  margin: 0 0 10px 0;
  color: #f0dbff;
}

.project-hook {
  font-size: 1.1rem;
  color: #c4a7ff;
  margin-bottom: 15px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.tag {
  background: rgba(140, 80, 255, 0.25);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid rgba(200, 140, 255, 0.25);
  color: #e9d5ff;
}

.project-content {
  margin-top: 30px;
  line-height: 1.7;
  font-size: 1rem;
  color: #e9d5ff;
}

.project-content h2 {
  margin-top: 30px;
  color: #f5ecff;
  border-left: 3px solid rgba(180, 120, 255, 0.6);
  padding-left: 10px;
}

.project-content p {
  margin-bottom: 15px;
}

.project-gallery {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.project-gallery img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(200, 140, 255, 0.2);
  box-shadow: 0 8px 20px rgba(140, 70, 255, 0.25);
}

footer {
  margin-top: 60px;
  text-align: center;
  color: #a78bfa;
  font-size: 0.9rem;
}