@import url('https://fonts.cdnfonts.com/css/ocr-a-std');
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue&display=swap');

@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: #2081bc;
  font-family: 'OCR A Std', sans-serif;
  font-size: 0.8rem;
  color: white;
  overflow-x: auto;
  text-align: center;
}

body::before {
  content: none;
}

.character-image img,
.character-info,
.gallery figure img,
.signature img,
.logo {
  filter: drop-shadow(0 0 8px #68ffff) drop-shadow(0 0 16px #68ffff);
  transition: filter 1s ease;
  display: inline-block;
  background-clip: padding-box;
}

.character-image img {
  opacity: 0;
  animation: fadeIn 1.5s forwards 0.5s;
}

.character-image img:hover,
.gallery-row img:hover {
  filter: drop-shadow(0 0 12px #68ffff) drop-shadow(0 0 24px #68ffff);
}

@keyframes fadeIn {
  to { opacity: 1; }
}

header {
  text-align: center;
  position: relative;
  margin-top: 60px;
}

.logo-container {
  display: inline-block;
  position: relative;
}

.logo {
  width: 800px;
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0,255,255,0.7));
}

.go-back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.5);
  border-radius: 8px;
}

.go-back a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}

main {
  width: 95%;
  max-width: 1300px;
  margin: 40px auto;
  text-shadow: 0 0 6px rgba(0,280,895,0.3);
}

.intro {
  display: flex;
  flex-wrap: nowrap;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
  overflow-x: auto;
}

.character-image {
  flex: 1.2;
  min-width: 300px;
  text-align: center;
}

.character-image img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.character-info {
  flex: 1.8;
  min-width: 400px;
  text-align: left;
}

h1, h2 {
  font-family: 'Liddell', 'Comic Neue', sans-serif;
  color: #ffffff;
  text-shadow:
    2px 2px 0 #fa4790,
    -2px 2px 0 #fa4790,
    2px -2px 0 #fa4790,
    -2px -2px 0 #fa4790,
    0 0 20px rgba(0,255,255,0.8);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

h1 { font-size: 3.2em; }
h2 { font-size: 2.4em; }

p {
  font-family: 'OCR A Std', sans-serif;
  color: white;
  line-height: 1.7;
  margin: 0 0 20px 0;
  background: #fa4790;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.8rem;
  display: inline-block;
}

.video-container {
  margin: 30px 0;
  aspect-ratio: 4 / 3;
  max-width: 100%;
  filter: drop-shadow(0 0 20px rgba(0,255,255,0.8));
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.gallery {
  margin-top: 50px;
  text-align: center;
}

.gallery-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.gallery-row figure {
  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 4px 6px;
  border-radius: 6px;
}

.gallery-row img {
  width: 220px;
  height: auto;
  border-radius: 10px;
  filter: drop-shadow(0 0 12px #68ffff);
  transition: transform 0.3s ease, filter 0.3s ease;
  display: inline-block;
}

.gallery-row img:hover {
  transform: translateY(-3px) scale(1.03);
  filter: drop-shadow(0 0 24px #68ffff);
}

figcaption {
  font-family: 'OCR A Std', sans-serif;
  font-size: 0.65rem;
  margin-top: 6px;
  color: #68ffff;
}

a {
  color: #68ffff;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(0,255,255,0.6);
  transition: color 0.2s ease, text-shadow 0.2s ease;
  font-family: 'OCR A Std', sans-serif;
  font-size: 0.8rem;
}

a:hover {
  color: #fff;
  text-shadow: 0 0 20px rgba(255,20,147,0.9);
}

.signature {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 120px;
}

.signature img {
  width: min(20vw, 100px);
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0,255,255,0.8));
}

@media (max-width: 768px) {
  .intro {
    flex-direction: column;
    align-items: center;
  }

  .character-info p {
    background: #fa4790;
    color: white;
  }

  .character-image img {
    max-width: 90%;
  }
}
