/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=IBM+Plex+Sans:wght@400;500&display=swap');

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

body {
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: 'IBM Plex Sans', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main page centering */
.main-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  gap: 2rem;
}

/* Penname styling */
.penname {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

/* Social icons */
.socials {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.socials a {
  color: #ffffff;
  transition: opacity 0.2s;
  display: inline-block;
}

.socials a:hover {
  opacity: 0.6;
}

.socials svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Directory */
.directory {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.directory a {
  color: #888888;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.directory a:hover {
  color: #ffffff;
}

/* Page header for subpages */
.page-header {
  padding: 2rem;
  border-bottom: 1px solid #222;
}

.page-header h1 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #888;
}

.page-header h1 span {
  color: #ffffff;
}

/* Page content */
.page-content {
  flex: 1;
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .socials {
    gap: 1rem;
  }
  
  .directory a {
    font-size: 1rem;
  }
}
