* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Onest', sans-serif;
}

body {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Onest', sans-serif;
  line-height: 1.5;
  min-height: 100vh;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Header */
.header {
  margin-bottom: 60px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 20px;
}

h1 {
  font-size: 100px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -2px;
  /* color removed to inherit body's 80% opacity */
}

.subtitle {
  color: #888;
  font-size: 16px;
}

/* Links */
.link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.link:hover {
  text-decoration: none;
}

/* Sections */
.section {
  margin-bottom: 48px;
}

.section-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 32px;
  padding-bottom: 4px;
  padding-left: 0;
  border-left: none;
  border-bottom: 1.5pt solid rgba(255, 255, 255, 0.7);
}

/* Projects */
.project {
  margin-bottom: 40px;
}

.project-title {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  margin-bottom: 16px;
}

/* Gallery */
.gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.gallery-item {
  flex-shrink: 0;
  position: relative;
}

.gallery-item img {
  width: 140px;
  height: auto;
  border-radius: 12px;
  display: block;
}

.gallery-fixed-height .gallery-item img {
  height: 300px;
  width: auto;
}

.gallery-wide .gallery-item img {
  width: 160px;
}

.number {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}

/* Text */
.text {
  font-size: 14px;
  color: #888;
  margin-bottom: 16px;
}

/* Talks */
.talk {
  font-size: 14px;
  margin-bottom: 8px;
}

/* Footer */
.footer {
  margin-top: 60px;
  font-size: 14px;
}

/* Scrollbar */
.gallery::-webkit-scrollbar {
  height: 4px;
}

.gallery::-webkit-scrollbar-track {
  background: #222;
  border-radius: 2px;
}

.gallery::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 2px;
}

/* Arrow styles */
.gallery-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  align-self: center;
  width: 140px;
}

.gallery-arrow svg {
  width: 100%;
  height: auto;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .container {
    padding: 40px 20px;
  }

  .header {
    margin-bottom: 40px;
  }

  h1 {
    font-size: 48px;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 24px;
    padding-bottom: 4px;
  }

  .gallery-arrow {
    width: 60px;
    padding: 0 10px;
  }
}