@import url('https://fonts.cdnfonts.com/css/ocr-a-std');

@font-face {
  font-family: 'Liddell';
  src: url('https://solen.neocities.org/Liddell-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  background-color: #a19694;
  background-image: url('https://solen.neocities.org/littleguy/bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: #ffffff;
  font-family: 'OCR A Std', sans-serif;
  line-height: 1.4;
  font-size: 13px;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: -1;
}

header {
  text-align: center;
  position: relative;
  margin-top: 20px;
}

.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: #f7bcc3;
  text-shadow: 2px 2px 3px #000;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2em;
  margin-top: 30px;
}

p {
  font-family: 'OCR A Std', sans-serif;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 13px;
}

.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', sans-serif;
  color: #fff;
}

.gallery-row img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gallery-row img:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

figcaption {
  font-size: 0.7rem;
  color: #cccccc;
  margin-top: 6px;
}

.more-art {
  margin-top: 15px;
  font-style: italic;
  color: #cccccc;
}

a {
  color: #f7bcc3;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.signature {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 60px;
}

.signature img {
  width: min(20vw, 100px);
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .intro {
    flex-direction: column;
    align-items: center;
  }
}
