/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  background-color: #141413;
  color: #f0efea;
  font-family: 'Newsreader', serif;
  font-size: 18px;
  line-height: 1.5;
  max-width: 480px;
  margin: 2rem auto;
  padding: 0 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Links */
a {
  color: #f0efea;
  text-decoration: none;
  border-bottom: 1px solid #f0efea;
}

a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.site-nav {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.site-nav a {
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-bottom-color: #f0efea;
  background-color: transparent;
}

/* Home */
.home {
  text-align: center;
  margin-top: 4rem;
}

.home h1 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.site-description {
  color: #999;
  margin-bottom: 2rem;
  font-style: italic;
}

/* Fragments Index */
.fragments-index {
  margin-top: 1rem;
}

.fragment {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.fragment:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.fragment h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.fragment h2 a {
  border-bottom: 1px solid transparent;
}

.fragment h2 a:hover {
  border-bottom-color: #f0efea;
}

.fragment-body p {
  margin-bottom: 0.75rem;
}

.fragment-body p:last-child {
  margin-bottom: 0;
}

/* Copy Link Button */
.copy-link {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.2rem 0.5rem;
  transition: color 0.15s ease;
  line-height: 1;
  position: relative;
}

.copy-link:hover {
  color: #f0efea;
}

.copy-link.copied::after {
  content: 'Copied';
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: #999;
  white-space: nowrap;
  animation: fade-out 1.2s ease forwards;
}

@keyframes fade-out {
  0% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; }
}

/* Single Fragment */
.fragment-single h1 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.fragment-single .fragment-body {
  margin-bottom: 3rem;
}

.fragment-single .fragment-body p {
  margin-bottom: 0.75rem;
}

.back-link {
  margin-bottom: 1.5rem;
}

.back-link a {
  color: #999;
  border-bottom: none;
  font-size: 0.9rem;
}

.back-link a:hover {
  color: #f0efea;
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  text-align: center;
}

.footer-quote {
  color: #666;
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.6;
}

/* Pages (What Is This?, etc.) */
.page h1 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.page-body p {
  margin-bottom: 0.75rem;
}

/* Selection */
::selection {
  background-color: rgba(240, 239, 234, 0.2);
  color: #f0efea;
}
