/* Critique System Styling - Maintaining the "fun since 1997" spirit */

* {
  box-sizing: border-box;
}

html {
  background-color: #646369;
  min-height: 100%;
}

body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666;
  margin-bottom: 5px;
  border-bottom: 2px solid #666;
  padding-bottom: 10px;
  flex-wrap: wrap;
  gap: 5px;
}

h1, h2, h3 {
  font-weight: normal;
}

h1 {
  font-size: 1.5em;
  margin: 0;
  padding: 0;
}

h3 {
  margin-bottom: 0;
}

nav {
  color: #666;
  text-align: center;
  font-size: 0.8em;
  font-style: italic;
}

nav a,
nav strong {
  font-style: normal;
}

nav strong {
  color: #000;
}

dt {
  font-size: 1.25em;
}

dd {
  margin-bottom: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tagline {
  font-style: italic;
  color: #666;
  margin: 0;
}

.nav-links {
  margin-top: 40px;
  padding: 20px 0 10px;
  border-top: 1px solid #ddd;
  text-align: center;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: underline;
}

.latest-critique h2 {
  font-weight: normal;
  margin-bottom: 40px;
}

.critique-meta {
  font-style: italic;
  margin: 0;
  padding: 0;
}

.passage {
  background: #f9f9f9;
  padding: 20px;
  border-left: 4px solid #333;
  margin: 20px 0;
  font-family: 'Courier New', monospace;
  white-space: pre-wrap;
  line-height: 1.8;
}

.critique-text {
  font-size: 1.1em;
  margin: 30px 0;
  text-align: justify;
}

.tags {
  margin: 30px 0;
}

.tag {
  display: inline-block;
  background: #333;
  color: white;
  padding: 5px 12px;
  margin: 5px 5px 5px 0;
  border: 2px solid #333;
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.85em;
  transition: background 0.2s;
}

.tag:hover,
.tag.active {
  background: none;
  border: 2px solid #333;
  color: #333;
  text-decoration: underline;
}


/* Recent critiques on main index */
.recent-critique {
  margin: 40px 0;
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
}

.recent-critique:last-child {
  border-bottom: none;
}

.recent-critique h2 {
  margin-top: 0;
  font-size: 1.5em;
}

.recent-critique .excerpt {
  color: #666;
  font-style: italic;
  margin: 15px 0;
}

.read-more {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.read-more:hover {
  text-decoration: underline;
}

/* Archive index */
.archive-stats {
  color: #666;
  font-size: 0.8em;
  font-style: italic;
  padding: 0 20px;
  text-align: center;
}
.archive-list {
  list-style: none;
  padding: 0 20px;
}
.archive-list li {
  display: block;
}
.archive-list li.hidden {
  display: none;
}

.tag-cloud {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 4px;
}
.tag-cloud h3 {
  margin-top: 0;
}

.previous-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
