html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: #14181c;
  color: #97aebb;
  overflow: hidden;
}

/* Header */
h1 {
  color: white;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

/* About Box - fixed on left, floating */
.about {
  position: fixed;
  top: 100px;
  left: 50px;
  width: 220px;
  background-color: #1e252c;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

/* Projects Section */
.projects {
  margin-left: 320px;
  max-width: 900px;
  height: calc(100vh - 100px);
  overflow-y: scroll;
  padding: 20px 40px;
  box-sizing: border-box;

  /* Hide scrollbar for WebKit (Chrome, Safari) */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.projects::-webkit-scrollbar {
  display: none;  /* WebKit (Chrome, Safari) */
}

/* Individual project item */
.project-item {
  background-color: #1e252c;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.project-item h3 {
  color: white;
  margin-bottom: 10px;
}

.project-date {
  font-size: 0.95em;
  color: #52fb63;
  margin-bottom: 10px;
  font-weight: 500;
}

.project-item p {
  color: #97aebb;
}

.project-item video {
  border-radius: 6px;
}

/* Links */
a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

a:hover {
  color: #52fb63;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .about {
    position: static;
    width: auto;
    margin: 0 auto 20px;
  }

  .projects {
    margin-left: 0;
    padding: 20px;
    max-width: 100%;
  }
}
