/* Font */
@font-face {
  font-family: 'NeueHaas';
  src: url('/fonts/NeueHaasDisplayRoman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'NeueHaas';
  src: url('/fonts/NeueHaasDisplayBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

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

body {
  font-family: 'NeueHaas', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: #888;
  font-size: 15px;
}

a:hover {
  color: #fff;
}

ul {
  list-style: none;
}

/* Layout */
.container {
  display: flex;
  min-height: 100vh;
  align-items: center;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 60px;
}

.nav-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.name a {
  color: #fff;
}

.nav-links,
.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links {
  margin-top: 14px;
}

.nav-links a.active {
  color: #fff;
}

/* Content */
.main {
  margin-left: 240px;
  padding: 60px 40px;
  max-width: 600px;
}

.main p,
.main li {
  color: #ccc;
  margin-bottom: 12px;
}

.main .muted {
  color: #555;
  margin-top: 24px;
}

.back-button {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {
  .sidebar {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 40px;
  }

  .page-content .sidebar {
    display: none;
  }

  .page-content .back-button {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    padding: 20px 40px;
    z-index: 100;
  }

  .main {
    margin-left: 0;
    padding: 80px 40px 40px;
    max-width: 100%;
  }

  .container {
    flex-direction: column;
    align-items: stretch;
  }
}

