:root {
  --bg-color: #0a0e14;
  --surface-color: #151a21;
  --text-main: #b3b1ad;
  --text-muted: #5c6773;
  --accent-gold: #ffb454;
  --accent-blue: #59c2ff;
  --accent-green: #c2d94c;
  --accent-orange: #ff8f40;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: 'JetBrainsMono Nerd Font', 'JetBrains Mono', monospace;
  line-height: 1.5;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: -0.5px;
}

/* Layout */
.container {
  width: 92%;
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem 0;
  overflow: hidden;
}

/* Header */
header {
  text-align: center;
  padding: 1rem 0;
}

.profile-pic {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  margin-bottom: 1rem;
}

header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}

/* Stories Section */
.journey-section {
  margin-top: 1.5rem;
}

.story {
  background-color: var(--surface-color);
  border-radius: 5px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid #1a202a;
  overflow: hidden;
}

.story-date {
  font-size: 0.85rem;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
  display: inline-block;
  font-weight: 700;
}

.story h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--accent-blue);
}

.story p {
  margin-bottom: 0.75rem;
}

/* UI Elements */
.highlight {
  background-color: rgba(255, 180, 84, 0.1);
  color: var(--accent-gold);
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
}

.story-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-top: 0.5rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0 1rem;
  margin-top: 1.5rem;
  border-top: 1px dashed var(--surface-color);
}

.social-links {
  margin-bottom: 1rem;
}

.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 0.8rem;
  font-size: 0.9rem;
}

.social-links a:hover {
  color: var(--accent-orange);
}

footer p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Responsive Rules */
@media (max-width: 600px) {
  header {
    padding: 1rem 0;
  }

  .profile-pic {
    width: 75px;
    height: 75px;
  }

  header h1 {
    font-size: 1.8rem;
  }

  header p {
    font-size: 0.85rem;
  }

  .story {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .story h2 {
    font-size: 1.2rem;
  }

  .social-links a {
    margin: 0 0.5rem;
  }
}
