@font-face {
  font-family: 'DeterminationMono';
  src: url('../fonts/DeterminationMono.ttf') format('truetype');
}

@font-face {
  font-family: 'Dotumche';
  src: url('../fonts/dotumche-pixel.ttf') format('truetype');
}

@font-face {
  font-family: 'MarsNeedsCunnilingus';
  src: url('../fonts/MarsNeedsCunnilingus.ttf') format('truetype');
}

@font-face {
  font-family: 'Mercy';
  src: url('../fonts/mercy.ttf') format('truetype');
}

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

html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: 'DeterminationMono', monospace;
  font-size: 18px;
  line-height: 2;
  overflow-x: hidden;
}

a {
  color: #ffff00;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
}

h1, h2, h3 {
  font-family: 'Mercy', monospace;
  color: #ffff00;
  margin-top: 0;
}

h1 { font-size: 3em; }
h2 { font-size: 1.6em; }
h3 { font-size: 1.2em; }

p { margin: 0.8em 0; }

/* ── Navigation ── */
nav {
  padding: 1.2rem 2rem;
  text-align: center;
  border-bottom: 2px solid #fff;
}

nav .site-logo {
  display: block;
  max-height: 80px;
  width: auto;
  margin: 0 auto 0.8rem;
}

nav .nav-links a {
  margin: 0 1rem;
  font-size: 2em;
}

/* ── Page wrapper ── */
.page {
  max-width: 700px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

/* ── NSFW banner ── */
.nsfw-banner {
  color: #ff4444;
  margin-bottom: 2rem;
  font-size: 1.5em;
  letter-spacing: 1px;
}

/* ── Section spacing ── */
.section {
  font-size: 1.8em;
  line-height: 1;
}

/* ── Placeholder image ── */
.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  height: 280px;
  background: #111;
  color: #444;
  font-size: 0.75em;
  margin: 1rem auto;
}

.about-img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 1rem auto;
  image-rendering: optimizeQuality;
}

.about-img-small {
  max-width: 360px;
}

/* ── Socials list ── */
.socials-columns {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: left;
  width: fit-content;
  margin: 0 auto;
}

.socials-group {
  display: flex;
  flex-direction: column;
}

.socials-group-label {
  color: #fff;
  font-size: 0.7em;
  line-height: 1;
  margin-bottom: 1rem;
}


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

.socials-list li {
  margin-bottom: 1rem;
}

.socials-list a {
  font-size: 1em;
}

.socials-list .label {
  color: #888;
  font-size: 0.75em;
  display: block;
  margin-bottom: 0.2rem;
}

/* ── Blog listing ── */
.blog-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: left;
}

@media (max-width: 580px) {
  .blog-sections { grid-template-columns: 1fr; }
}

.blog-col h2 {
  color: #fff;
  margin-bottom: 1rem;
}

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

.post-list li {
  margin-bottom: 1.2rem;
}

.post-list .post-date {
  display: block;
  color: #666;
  font-size: 1em;
  margin-bottom: 0.2rem;
}

/* ── Blog post ── */
.post-content {
  font-size: 1.8em;
  line-height: 1;
}

.post-content h2 {
  font-family: 'Dotumche', monospace;
  font-size: 0.65em;
  letter-spacing: 1px;
}

.post-left {
  text-align: left;
}

.post-header {
  text-align: center;
  margin-bottom: 2rem;
}

.post-header .post-date {
  color: #666;
  font-size: 1.2em;
  display: block;
  margin-top: 0.4rem;
}

.back-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 1.5em;
}

/* ── Age gate ── */
.gate-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1rem;
  text-align: center;
}

.gate-inner {
  max-width: 460px;
  width: 100%;
}

.gate-title {
  font-family: 'Mercy', monospace;
  color: #ffff00;
  font-size: 2em;
  margin-bottom: 1.5rem;
}

.gate-text {
  font-size: 1em;
  margin-bottom: 2.5rem;
  color: #ccc;
  line-height: 2;
}

.gate-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: 'Mercy', monospace;
  font-size: 1.1em;
  cursor: pointer;
  background: transparent;
  color: #fff;
  text-decoration: none;
  padding: 0.4rem 0;
  border: none;
  letter-spacing: 1px;
}

.btn-yes { color: #ffff00; }
.btn-yes:hover { color: #fff; }

.btn-no { color: #888; }
.btn-no:hover { color: #ff6060; }
