@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Arvo:wght@400;600&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  line-height: 1.7;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #333;
  background: #fff;
  --x-spacing: 5rem;
  --y-spacing: 1.5em;
}
@media (max-width: 640px) {
  body {
    --x-spacing: 1.5rem;
  }
}

.wrapper {
  margin: 0 auto;
  padding: var(--y-spacing) var(--x-spacing);
}

main {
  padding: 0 var(--x-spacing);
  margin: 0 auto;
}

.site-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-family: "Arvo", serif;
  color: #333;
  text-decoration: none;
  font-weight: 600;
}
.site-title .site-logo {
  width: 2.5rem;
  height: 2.5rem;
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
}
.site-nav li {
  display: inline;
}
.site-nav a {
  color: #666;
  text-decoration: none;
}
.site-nav a:hover {
  color: #222;
  text-decoration: underline;
}
.site-nav a.active {
  color: #222;
  text-decoration: underline;
}

.site-header {
  border-bottom: 1px solid #e5e5e5;
}
.site-header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 640px) {
  .site-header .wrapper {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.site-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.site-nav a {
  color: #666;
  text-decoration: none;
}
.site-nav a:hover {
  color: #0066cc;
}

.site-footer {
  border-top: 1px solid #e5e5e5;
  padding: var(--y-spacing) 0;
  margin-top: var(--y-spacing);
  color: #666;
  font-size: 0.875rem;
}

h1, h2, h3, h4 {
  line-height: 1.3;
  margin-bottom: 0.5em;
  font-family: "Arvo", serif;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.25em;
  line-height: 1.7;
}

ul, ol {
  margin-bottom: 1.25em;
  padding-left: 1.5em;
}
ul li, ol li {
  margin-bottom: 0.5em;
  line-height: 1.7;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}

ul ul, ol ol, ul ol, ol ul {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

a {
  color: #0066cc;
}

blockquote {
  margin: 1.5em 0;
  padding-left: 1.5em;
  border-left: 4px solid #ddd;
  color: #666;
  font-style: italic;
}
blockquote p {
  margin-bottom: 0.5em;
}
blockquote p:last-child {
  margin-bottom: 0;
}

.centred {
  text-align: center;
}
.centred img {
  max-width: 100%;
}

.framed-centred {
  text-align: center;
}
.framed-centred img {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

table {
  border-collapse: collapse;
  margin: 1.5em auto;
  font-size: 0.9em;
}
table thead tr {
  border-bottom: 2px solid #e5e5e5;
}
table thead th {
  font-weight: 600;
  text-align: left;
  padding: 0.75em 1em;
  color: #333;
}
table tbody tr {
  border-bottom: 1px solid #e5e5e5;
}
table tbody tr:last-child {
  border-bottom: none;
}
table tbody td {
  padding: 0.75em 1em;
}

code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: #f5f5f5;
  padding: 0.15em 0.3em;
  border-radius: 3px;
}

pre {
  background: #f5f5f5;
  padding: 1rem;
  overflow-x: auto;
  border-radius: 4px;
  margin-bottom: 1em;
}
pre code {
  background: none;
  padding: 0;
}

article {
  margin-top: 1.5rem;
}

.post-header, .page-header {
  margin-bottom: var(--y-spacing);
}

.post-meta {
  color: #666;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.meta-separator {
  margin: 0 0.25rem;
}

.post-content {
  max-width: 800px;
}

.post-content h2, .post-content h3, .page-content h2, .page-content h3 {
  margin-top: 1.5em;
}

.post-tags {
  margin-top: var(--y-spacing);
  font-size: 0.875rem;
  color: #666;
}

.tag {
  background: #f0f0f0;
  padding: 0.2em 0.5em;
  border-radius: 3px;
  margin-left: 0.25em;
}

a.tag {
  color: inherit;
  text-decoration: none;
}
a.tag:hover {
  background: #e0e0e0;
}

.post-date {
  color: #bbb;
}

.post-excerpt {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #666;
  line-height: 1.4;
}

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 640px) {
  .post-item {
    align-items: flex-start;
  }
}

.post-thumbnail {
  width: 100px;
  height: 60px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .post-thumbnail {
    margin-top: 5px;
  }
}

hr {
  height: 1px;
  color: #e5e5e5;
  background: #e5e5e5;
  font-size: 0;
  border: 0;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.post-navigation a {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.nav-next a {
  text-align: right;
}

.nav-arrow {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.nav-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.nav-title {
  font-weight: 500;
}

.meta-separator {
  display: inline-flex;
  align-items: center;
  margin: 0 0.6rem;
}

.diamond {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: currentColor;
  transform: rotate(45deg);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
  gap: 20px;
  margin-top: 30px;
  max-width: 100%;
}

.game-card {
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.game-image-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.game-title-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.game-title-link:hover {
  text-decoration: none;
}

.game-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.game-content h3 {
  margin-top: 0;
}

.game-title {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 0 5px 0;
}

.game-type {
  text-transform: uppercase;
  color: #999;
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.game-meta {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 15px;
}

.game-description {
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.game-link {
  display: inline-block;
  color: #0066cc;
  text-decoration: none;
  margin-top: auto;
}

.game-link:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */