*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Garamond", "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.6;
  background-color: #1a1a1a;
  color: #ffffff;
}

a {
  color: #d4af37;
  text-decoration: underline;
}

a:hover {
  color: #f4cf5a;
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  background-color: #2a2a2a;
  padding: 0.75rem 0;
  border-bottom: 1px solid #444444;
  position: sticky;
  top: 0;
  z-index: 10;
  color: #ffffff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #ffffff;
  color: #000000;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.logo-text {
  font-size: 1rem;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.15rem;
}

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

.site-main {
  padding: 2rem 1rem 3rem;
}

.hero {
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  background-color: #2a2a2a;
  border: 1px solid #444444;
  margin-bottom: 2rem;
}

.hero-text h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-family: "Courier New", "Courier", monospace;
  font-weight: bold;
  color: #d4af37;
  text-shadow:
    2px 0 0 #000000,
    -2px 0 0 #000000,
    0 2px 0 #000000,
    0 -2px 0 #000000,
    2px 2px 0 #000000,
    -2px -2px 0 #000000,
    2px -2px 0 #000000,
    -2px 2px 0 #000000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  image-rendering: pixelated;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;
}

.hero-text p {
  margin: 0 0 1.25rem;
  max-width: 40rem;
  color: #ffffff;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  border-radius: 4px;
  background-color: #ffffff;
  color: #000000;
  font-weight: normal;
  font-size: 0.95rem;
  border: 1px solid #ffffff;
  cursor: pointer;
}

.layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.content,
.sidebar,
.contact {
  background-color: #2a2a2a;
  border-radius: 0;
  padding: 1.5rem;
  border: 1px solid #444444;
}

h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

h3 {
  margin-top: 0;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.card {
  display: flex;
  flex-direction: column;
  background-color: #333333;
  border-radius: 0;
  padding: 1rem;
  border: 1px solid #444444;
}

.card h3 {
  margin-top: 0;
  flex-grow: 1;
}

.card p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

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

.card-image {
  width: 100%;
  max-width: 200px;
  height: 150px;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  border: 1px solid #555555;
  background-color: #2a2a2a;
}

.year-calendar {
  margin-top: 2rem;
}

.year-calendar-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.month-card {
  background-color: #333333;
  border: 1px solid #444444;
  padding: 0.75rem;
}

.month-boxart {
  width: 100%;
  max-width: 140px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 0.5rem;
  display: block;
  border: 1px solid #555555;
  background-color: #2a2a2a;
}

.month-name {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cccccc;
  margin-bottom: 0.25rem;
}

.month-game {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.month-platform {
  font-size: 0.85rem;
  color: #b3b3b3;
}

.month-empty {
  opacity: 0.7;
  font-style: italic;
}

.game-boxart {
  width: 100%;
  max-width: 300px;
  height: 400px;
  object-fit: contain;
  margin: 0 0 1.5rem;
  display: block;
  border: 1px solid #555555;
  background-color: #2a2a2a;
}

.sidebar ul {
  padding-left: 1rem;
  margin: 0.5rem 0 0;
}

.sidebar li {
  margin-bottom: 0.25rem;
}

.date-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.date-item {
  padding: 0.75rem;
  background-color: #2a2a2a;
  border: 1px solid #444444;
  border-radius: 4px;
}

.date-range {
  font-weight: bold;
  font-size: 0.9rem;
  color: #d4af37;
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.date-description {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.4;
}

.contact {
  margin-top: 2rem;
}

.site-footer {
  border-top: 1px solid #444444;
  background-color: #1a1a1a;
  padding: 1rem 0 1.5rem;
  font-size: 0.8rem;
  color: #aaaaaa;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.small-text {
  color: #aaaaaa;
}

.game-stats {
  background-color: #333333;
  border: 1px solid #444444;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.game-stats h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.game-stats table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.75rem;
}

.game-stats th {
  background-color: #2a2a2a;
  padding: 0.5rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: normal;
  color: #cccccc;
  border: 1px solid #444444;
}

.game-stats td {
  padding: 0.5rem;
  border: 1px solid #444444;
  font-size: 0.95rem;
}

.stats-source {
  margin: 0;
  font-size: 0.85rem;
}

.stats-source a {
  color: #ffffff;
  text-decoration: underline;
}

/* Club Achievements */
.club-achievements {
  background-color: #333333;
  border: 1px solid #444444;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.club-achievements h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.achievement-group {
  margin-bottom: 1.5rem;
}

.achievement-group:last-child {
  margin-bottom: 0;
}

.achievement-group h4 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: normal;
  color: #cccccc;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.achievement-group h4::before {
  font-size: 1.1rem;
}

.achievement-group.gold h4::before {
  content: "🏆";
}

.achievement-group.silver h4::before {
  content: "🥈";
}

.achievement-group.bronze h4::before {
  content: "🦩";
}

.achievement-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.achievement-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #2a2a2a;
  border: 1px solid #444444;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.achievement-badge:hover {
  background-color: #3a3a3a;
  border-color: #555555;
}

.achievement-badge::before {
  font-size: 1rem;
}

.achievement-group.gold .achievement-badge::before {
  content: "🥇";
}

.achievement-group.silver .achievement-badge::before {
  content: "🥈";
}

.achievement-group.bronze .achievement-badge::before {
  content: "🦩";
}

/* Community Art */
.community-art {
  background-color: #333333;
  border: 1px solid #444444;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.community-art h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.community-art .art-credit {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #cccccc;
  font-style: italic;
}

.art-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.art-item {
  background-color: #2a2a2a;
  border: 1px solid #444444;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.art-item:hover {
  border-color: #555555;
  transform: translateY(-2px);
}

.art-item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 800px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .site-main {
    padding-inline: 0.75rem;
  }

  .hero {
    padding: 1.5rem 1.25rem;
  }

  .content,
  .sidebar,
  .contact {
    padding: 1.25rem;
  }
}

