body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(180deg, #ffe082 0%, #ffe0b2 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
#desert-sun {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}
.main-header {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #6d4c00;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px #fff3, 0 1px 0 #fff6;
}
.subtitle {
  font-size: 1.2rem;
  color: #a67c00;
  margin-top: 0.5rem;
}
.container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto 2rem auto;
  z-index: 2;
  position: relative;
}
.project {
  background: rgba(80, 60, 20, 0.13);
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px #a67c0033, 0 1.5px 0 #fff2;
  padding: 2rem 2.2rem 1.5rem 2.2rem;
  color: #3e2723;
  backdrop-filter: blur(2px);
  transition: box-shadow 0.2s;
}
.project:hover {
  box-shadow: 0 8px 32px #a67c0055, 0 2px 0 #fff3;
}
.project h2 {
  color: #ffb300;
  margin-bottom: 0.7rem;
}
.project-files {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0 0;
}
.project-files li {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
.project-files code {
  background: rgba(255, 236, 179, 0.7);
  color: #6d4c00;
  border-radius: 0.4em;
  padding: 0.1em 0.5em;
  font-size: 0.98em;
}
footer {
  text-align: center;
  color: #a67c00;
  background: transparent;
  margin-top: 2rem;
  padding-bottom: 1.5rem;
  font-size: 1rem;
  z-index: 2;
  position: relative;
}
@media (max-width: 700px) {
  .container {
    padding: 0 0.5rem;
  }
  .project {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}
