@font-face {
  font-family: 'Liddell';
  src: url('https://solen.neocities.org/Liddell-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@import url('https://fonts.cdnfonts.com/css/ocr-a-std');

body {
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  color: #000000;
  font-family: 'OCR A Std', monospace;
  line-height: 1.4;
  position: relative;
  overflow-x: hidden;
  box-shadow: inset 0 0 50px rgba(255, 172, 193, 0.2);
}

header {
  text-align: center;
  position: relative;
  margin-top: 60px;
}

.logo-container {
  display: inline-block;
  position: relative;
}

.logo {
  width: 500px;
  height: auto;
}

.go-back {
  position: absolute;
  bottom: 0;
  right: 0;
}

.go-back img {
  width: 40px;
  height: 40px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.go-back img:hover {
  opacity: 1;
}

main {
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
}

.intro {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.character-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.character-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
}

.character-info {
  flex: 2;
  min-width: 300px;
}

h1, h2 {
  font-family: 'Liddell', 'Comic Neue', sans-serif;
  color: #FFACC1;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000,
    -2px  0   0 #000,
     2px  0   0 #000,
     0   2px 0 #000,
     0  -2px 0 #000;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

h1 {
  font-size: 2.8em;
}

h2 {
  font-size: 2em;
}

p {
  font-family: 'OCR A Std', monospace;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #000000;
  font-size: 0.85rem;
}

.video-container {
  margin: 30px 0;
  aspect-ratio: 4 / 3;
  max-width: 100%;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.gallery {
  margin-top: 50px;
  text-align: center;
}

.gallery-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-row figure {
  text-align: center;
  font-family: 'OCR A Std', monospace;
  color: #000;
}

.gallery-row img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.gallery-row img:hover {
  transform: translateY(-3px);
  opacity: 0.9;
  filter: drop-shadow(0 0 10px #FFACC1);
}

figcaption {
  font-size: 0.75rem;
  color: #333333;
  margin-top: 6px;
}

.more-art {
  margin-top: 15px;
  font-style: italic;
  color: #333333;
}

a {
  color: #FFACC1;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  text-shadow: 0 0 6px rgba(255, 172, 193, 0.6);
}

a:hover {
  text-decoration: underline;
  text-shadow: 0 0 12px rgba(255, 172, 193, 0.8);
}

.signature {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 120px;
}

.signature img {
  width: min(20vw, 100px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 12px rgba(255, 172, 193, 0.5));
}

@media (max-width: 768px) {
  .intro {
    flex-direction: column;
    align-items: center;
  }
}
