/* Ultra-minimal dark portfolio */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #c9d1d9;
  background-color: #111111;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero {
  margin-bottom: 64px;
}

.hero-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.hero-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.banner-raccoon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: all 5s ease-in-out;
  cursor: pointer;
}

.banner-raccoon:hover {
  transform: scale(5);
}

.hero-text {
  flex: 1;
  min-width: 0;
}

h1 {
  font-size: 24px;
  font-weight: 600;
  color: #f0f6fc;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 16px;
  color: #8b949e;
  margin-bottom: 24px;
  font-weight: 400;
}

.subtitle a {
  color: #8b949e;
  text-decoration: none;
  transition: color 0.15s ease;
  position: relative;
}

.subtitle a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #58a6ff;
  transition: width 0.3s ease;
}

.subtitle a:hover {
  color: #58a6ff;
}

.subtitle a:hover::after {
  width: 100%;
}

.intro {
  font-size: 18px;
  color: #f0f6fc;
  margin-bottom: 16px;
  line-height: 1.5;
}

a.highlight-overdrive {
  color: #fc5f2b !important;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

a.highlight-overdrive::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fc5f2b;
  transition: width 0.3s ease;
}

a.highlight-overdrive:hover::after {
  width: 100%;
}

a.highlight-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 25%, #fcb045 50%, #fd1d1d 75%, #833ab4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

a.highlight-instagram::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 25%, #fcb045 50%, #fd1d1d 75%, #833ab4 100%);
  transition: width 0.3s ease;
}

a.highlight-instagram:hover::after {
  width: 100%;
}

a.highlight-project {
  color: #10b981 !important;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

a.highlight-project::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #10b981;
  transition: width 0.3s ease;
}

a.highlight-project:hover::after {
  width: 100%;
}

.description {
  font-size: 16px;
  color: #8b949e;
  margin-bottom: 48px;
  line-height: 1.6;
}

.description a {
  color: #58a6ff;
  text-decoration: none;
  transition: color 0.15s ease;
}

.description a:hover {
  color: #79c0ff;
}

.work {
  margin-bottom: 48px;
}

.work p {
  font-size: 16px;
  color: #8b949e;
  line-height: 1.5;
}

.work a {
  color: #58a6ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.work a:hover {
  color: #79c0ff;
}

.blog h2 {
  font-size: 18px;
  font-weight: 600;
  color: #f0f6fc;
  margin-bottom: 16px;
}

.blog-post {
  margin-bottom: 12px;
}

.blog-post h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 2px;
}

.blog-post h3 a {
  color: #8b949e;
  text-decoration: none;
  transition: color 0.15s ease;
}

.blog-post h3 a:hover {
  color: #58a6ff;
}

.blog-post time {
  font-size: 14px;
  color: #6e7681;
}

.more-posts {
  margin-top: 16px;
}

.more-posts a {
  color: #6e7681;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}

.more-posts a:hover {
  color: #8b949e;
}

footer {
  margin-top: 64px;
  text-align: left;
}

footer p {
  font-size: 14px;
  color: #6e7681;
}

@media (max-width: 768px) {
  .container {
    padding: 64px 20px;
  }

  .hero-header {
    flex-direction: column-reverse;
    text-align: center;
    gap: 20px;
  }

  .hero-left {
    flex-direction: column;
    gap: 16px;
  }
}