@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Rajdhani:wght@300;400;500&family=Exo:wght@200;400&display=swap');

/* ãƒ¢ãƒã‚¤ãƒ«å‘ã‘æœ€é©åŒ–CSS */
:root {
  --vh: 1vh;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Rajdhani', 'Helvetica Neue', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ«ã‚¹ãƒŠãƒƒãƒ—ã®è¨­å®š */
main {
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  position: relative;
  -webkit-overflow-scrolling: touch;
  padding-top: 0;
  margin-top: 0;
  top: 0;
}

/* ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ«ãƒãƒ¼éžè¡¨ç¤º */
main::-webkit-scrollbar {
  display: none;
}

main {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.snap-section {
  scroll-snap-align: start;
  min-height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 60px; /* ãƒ˜ãƒƒãƒ€ãƒ¼ã®é«˜ã•ã‚’è€ƒæ…® */
  box-sizing: border-box;
}

/* ãƒ˜ãƒƒãƒ€ãƒ¼ã¨ãƒŠãƒ“ã‚²ãƒ¼ã‚·ãƒ§ãƒ³ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.logo {
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
}


/* éŸ³æ¥½ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ«ãƒœã‚¿ãƒ³ã‚¹ã‚¿ã‚¤ãƒ« */
.music-control {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.music-btn {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.7);
  color: #0ff;
  border-radius: 50px;
  padding: 8px 15px;
  font-size: 0.8rem;
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.music-btn:active {
  transform: scale(0.95);
  background: rgba(0, 255, 255, 0.2);
}

/* éŸ³æ¥½ONã®ã¨ãã®ã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ */
@keyframes musicPulse {
  0% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.3); }
  50% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.7); }
  100% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.3); }
}

.music-btn.playing {
  animation: musicPulse 2s infinite;
  background: rgba(0, 255, 255, 0.2);
}

/* ON/OFFã‚¢ã‚¤ã‚³ãƒ³ã®è¡¨ç¤ºåˆ¶å¾¡ */
.music-icon-on, .music-icon-off {
  transition: opacity 0.3s ease;
}

.music-btn:not(.playing) .music-icon-on {
  display: none;
}

.music-btn.playing .music-icon-off {
  display: none;
}

/* å°åž‹ãƒ‡ãƒã‚¤ã‚¹ç”¨èª¿æ•´ */
@media screen and (max-width: 480px) {
  .music-control {
    bottom: 15px;
    right: 15px;
  }
  
  .music-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
}


/* ãƒãƒ³ãƒãƒ¼ã‚¬ãƒ¼ãƒ¡ãƒ‹ãƒ¥ãƒ¼ */
.menu-toggle {
  width: 30px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ãƒŠãƒ“ã‚²ãƒ¼ã‚·ãƒ§ãƒ³ãƒ¡ãƒ‹ãƒ¥ãƒ¼ */
nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.4s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 1px solid rgba(0, 255, 255, 0.3);
}

nav.active {
  right: 0;
}

nav ul {
  list-style: none;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 20px 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  padding: 10px;
  transition: all 0.3s ease;
}

nav ul li a:hover, nav ul li a:active {
  color: #0ff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}














/* ãƒ¡ã‚¤ãƒ³ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ */
section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px 0;
  box-sizing: border-box;
}

.section-container {
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  padding-top: 0; /* é‡è¦: ä½™åˆ†ãªãƒ‘ãƒ‡ã‚£ãƒ³ã‚°ã‚’å‰Šé™¤ */
  display: flex;
  flex-direction: column;
  height: 100%; /* ã‚³ãƒ³ãƒ†ãƒŠã®é«˜ã•ã‚’ç”»é¢ã®é«˜ã•ã«åˆã‚ã›ã‚‹ */
  box-sizing: border-box;
  justify-content: flex-start;
}

.section-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 30px;
  text-align: center;
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  0% { text-shadow: 0 0 5px rgba(0, 255, 255, 0.3); }
  100% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.8); }
}













/* TOPã‚»ã‚¯ã‚·ãƒ§ãƒ³ - æ˜Žåº¦èª¿æ•´æ¸ˆã¿ã®å®Œå…¨ãªCSSã‚³ãƒ¼ãƒ‰ */

/* åŸºæœ¬ãƒ¬ã‚¤ã‚¢ã‚¦ãƒˆ */
#top {
  height: 100%;
  padding: 0;
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #000;
  overflow: hidden;
  padding-top: 0; /* TOPã‚»ã‚¯ã‚·ãƒ§ãƒ³ã¯ç‰¹åˆ¥ã«å‡¦ç† */
}

/* å‹•ç”»èƒŒæ™¯ */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.bg-video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 0.6ã‹ã‚‰0.5ã«å¤‰æ›´ã—ã¦ã‚ˆã‚Šé€æ˜Žã« */
  z-index: 2;
}

.top-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('background.jpg') center/cover no-repeat;
  z-index: 1;
  display: none; /* ãƒ•ã‚©ãƒ¼ãƒ«ãƒãƒƒã‚¯ç”¨ã«æ®‹ã—ã¦ãŠããŒã€é€šå¸¸ã¯éžè¡¨ç¤º */
}

/* ãƒ‘ãƒ¼ãƒ†ã‚£ã‚¯ãƒ«ã‚¨ãƒ•ã‚§ã‚¯ãƒˆ */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: float 8s linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }
}

/* ãƒ¡ã‚¤ãƒ³ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  z-index: 5;
}

/* æ–°ãƒ­ã‚´ã‚¹ã‚¿ã‚¤ãƒ« - æ˜Žåº¦èª¿æ•´æ¸ˆã¿ */
.logo-container {
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.title-logo {
  width: 100%;
  height: auto;
  opacity: 0.85; /* ä¸é€æ˜Žåº¦ã‚’85%ã«ä¸‹ã’ã‚‹ */
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5)); /* ã‚·ãƒ£ãƒ‰ã‚¦ã®å¼·ã•ã‚’æŠ‘ãˆã‚‹ */
  animation: logoFloat 4s ease-in-out infinite alternate, logoGlow 3s ease-in-out infinite alternate;
}

/* ãƒ­ã‚´ã®æµ®éŠã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ - ãã®ã¾ã¾ */
@keyframes logoFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}

/* ãƒ­ã‚´ã®ç™ºå…‰ã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ - æ˜Žåº¦ã‚’è½ã¨ã™ */
@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.3)); /* ã‚°ãƒ­ãƒ¼åŠ¹æžœã‚’å¼±ã */
    opacity: 0.8; /* æœ€å°ä¸é€æ˜Žåº¦ã‚’80%ã« */
  }
  100% {
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5)) drop-shadow(0 0 25px rgba(0, 255, 255, 0.3)); /* ã‚°ãƒ­ãƒ¼åŠ¹æžœã‚’å¼±ã */
    opacity: 0.9; /* æœ€å¤§ä¸é€æ˜Žåº¦ã‚’90%ã« */
  }
}

/* éŸ³æ¥½ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ«ãƒœã‚¿ãƒ³ */
.music-control {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  transition: all 0.3s ease;
}

.music-btn {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.7);
  color: #0ff;
  border-radius: 50px;
  padding: 8px 15px;
  font-size: 0.8rem;
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.music-btn:active {
  transform: scale(0.95);
  background: rgba(0, 255, 255, 0.2);
}

/* éŸ³æ¥½ONã®ã¨ãã®ã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ - æ˜Žåº¦èª¿æ•´ */
@keyframes musicPulse {
  0% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.3); }
  50% { box-shadow: 0 0 12px rgba(0, 255, 255, 0.6); } /* 15pxã‹ã‚‰12pxã«èª¿æ•´ */
  100% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.3); }
}

.music-btn.playing {
  animation: musicPulse 2s infinite;
  background: rgba(0, 255, 255, 0.2);
}

/* ON/OFFã‚¢ã‚¤ã‚³ãƒ³ã®è¡¨ç¤ºåˆ¶å¾¡ */
.music-icon-on, .music-icon-off {
  transition: opacity 0.3s ease;
}

.music-btn:not(.playing) .music-icon-on {
  display: none;
}

.music-btn.playing .music-icon-off {
  display: none;
}

/* ãƒ¬ã‚¹ãƒãƒ³ã‚·ãƒ–å¯¾å¿œ */
@media screen and (max-width: 768px) {
  .logo-container {
    width: 90%;
  }
  
  /* ãƒ­ã‚´ã®ã‚µã‚¤ã‚ºã‚’ã‚„ã‚„å°ã•ã */
  .title-logo {
    width: 90%;
  }
}

@media screen and (max-width: 480px) {
  .logo-container {
    width: 95%;
  }
  
  /* ãƒ­ã‚´ã‚’ã•ã‚‰ã«å°ã•ã */
  .title-logo {
    width: 95%;
  }
  
  .music-control {
    bottom: 15px;
    right: 15px;
  }
  
  .music-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
}

/* æ¨ªå‘ãå¯¾å¿œ */
@media screen and (orientation: landscape) and (max-height: 500px) {
  .logo-container {
    width: 60%;
  }
  
  /* æ¨ªå‘ãã§ãƒ­ã‚´ã®ã‚µã‚¤ã‚ºã‚’èª¿æ•´ */
  .title-logo {
    width: 70%;
  }
}

/* iPhoneã®å®‰å…¨é ˜åŸŸå¯¾å¿œ */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .music-control {
    bottom: calc(20px + env(safe-area-inset-bottom));
    right: calc(20px + env(safe-area-inset-right));
  }
}











/* ãƒ¢ãƒã‚¤ãƒ«ç‰ˆã‚²ãƒ¼ãƒ ã‚»ã‚¯ã‚·ãƒ§ãƒ³ç”¨CSS - ãƒ•ãƒ«ã‚³ãƒ¼ãƒ‰ */

/* ãƒ¢ãƒã‚¤ãƒ«ç‰ˆã‚²ãƒ¼ãƒ ã‚»ã‚¯ã‚·ãƒ§ãƒ³ç”¨CSS - å®Œå…¨ç‰ˆï¼ˆGAMEã‚¿ã‚¤ãƒˆãƒ«è¡¨ç¤ºãƒ»1920*1080ç”»åƒå¯¾å¿œï¼‰ */

/* ãƒ™ãƒ¼ã‚¹ã‚³ãƒ³ãƒ†ãƒŠã®ã‚¹ã‚¿ã‚¤ãƒ« */
#game {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.game-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
  overflow: hidden;
}

/* èƒŒæ™¯ãƒ¬ã‚¤ãƒ¤ãƒ¼ã®ã‚¹ã‚¿ã‚¤ãƒ« - ã‚·ãƒ³ãƒ—ãƒ«åŒ– */
.game-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.game-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.game-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* ã‚ˆã‚Šæš—ã„ã‚ªãƒ¼ãƒãƒ¼ãƒ¬ã‚¤ */
  z-index: 2;
}

/* ç«‹ã¡çµµã®ã‚¹ã‚¿ã‚¤ãƒ« - ä½ç½®èª¿æ•´ */
.game-character-wrapper {
  position: absolute;
  top: 0;
  right: -5%; /* ã‚ˆã‚Šå³å¯„ã‚Šã«èª¿æ•´ */
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1; /* å¸¸ã«è¡¨ç¤º */
}

.game-character-img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 95%;
  width: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0.65; /* ã‚·ã‚§ãƒ¼ãƒ‰ã‚’ã‹ã‘ãŸåŠ¹æžœ */
  filter: brightness(0.7) contrast(1.1); /* ã‚³ãƒ³ãƒˆãƒ©ã‚¹ãƒˆèª¿æ•´ */
}

/* ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã‚¨ãƒªã‚¢ã®ã‚¹ã‚¿ã‚¤ãƒ« - ãƒ‘ãƒ‡ã‚£ãƒ³ã‚°èª¿æ•´ */
.game-content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 70px 20px 40px; /* ä¸Šéƒ¨ãƒ‘ãƒ‡ã‚£ãƒ³ã‚°ã‚’å°‘ã—å‰Šæ¸› */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 5;
  box-sizing: border-box;
}

/* ã‚¿ã‚¤ãƒˆãƒ«ã®ã‚¹ã‚¿ã‚¤ãƒ« - ãƒãƒ©ãƒ³ã‚¹èª¿æ•´ç‰ˆ */
.game-title {
  font-size: 2.2rem;
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 15px 0;
  text-align: center;
  text-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
  font-weight: 400;
  line-height: 1.1;
}

/* ã‚¹ãƒ©ã‚¤ãƒ‰ã‚³ãƒ³ãƒ†ãƒŠã®ã‚¹ã‚¿ã‚¤ãƒ« */
.game-slides-container {
  width: 100%;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.game-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease, transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  transform: translateY(20px); /* åˆæœŸä½ç½®ã‚’ä¸‹ã«è¨­å®š */
}

.game-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0); /* ã‚¢ã‚¯ãƒ†ã‚£ãƒ–æ™‚ã«å…ƒã®ä½ç½®ã«æˆ»ã™ */
}

/* ã‚µãƒ–ã‚¿ã‚¤ãƒˆãƒ«ã®ã‚¹ã‚¿ã‚¤ãƒ« - ãƒ•ã‚©ãƒ³ãƒˆã‚µã‚¤ã‚ºå°ã•ã */
.game-subtitle {
  font-size: 0.9rem; /* ã‚­ãƒ£ãƒ©ã‚¯ã‚¿ãƒ¼ã‚»ã‚¯ã‚·ãƒ§ãƒ³å‚è€ƒã«å°ã•ã */
  font-family: 'Rajdhani', 'Exo', sans-serif;
  color: #0ff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
  margin: 0 0 20px 0;
  font-weight: 500;
  letter-spacing: 1px;
}

/* æƒ…å ±ã‚³ãƒ³ãƒ†ãƒŠã®ã‚¹ã‚¿ã‚¤ãƒ« */
.game-info-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ç”»åƒãƒ©ãƒƒãƒ‘ãƒ¼ã®ã‚¹ã‚¿ã‚¤ãƒ« - 1920*1080ç”»åƒå¯¾å¿œ + å…¨ç”»é¢è¡¨ç¤ºæ©Ÿèƒ½ */
.game-image-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9ã®ã‚¢ã‚¹ãƒšã‚¯ãƒˆæ¯”ã‚’ç¶­æŒ (9/16 * 100) */
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  cursor: pointer; /* ã‚¯ãƒªãƒƒã‚¯å¯èƒ½ã§ã‚ã‚‹ã“ã¨ã‚’ç¤ºã™ */
}

.game-info-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.game-image-wrapper:active .game-info-img {
  transform: scale(1.05);
}

/* å…¨ç”»é¢ç”»åƒè¡¨ç¤ºãƒ¢ãƒ¼ãƒ€ãƒ« */
.fullscreen-image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.fullscreen-image-modal.show {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* å…¨ç”»é¢ç”»åƒã‚³ãƒ³ãƒ†ãƒŠ */
.fullscreen-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

/* å…¨ç”»é¢ç”»åƒ - 90åº¦å›žè»¢å¯¾å¿œ */
.fullscreen-image {
  max-width: 90vh; /* ç¸¦å‘ãè¡¨ç¤ºã®ãŸã‚é«˜ã•ã‚’åŸºæº–ã« */
  max-height: 90vw; /* ç¸¦å‘ãè¡¨ç¤ºã®ãŸã‚å¹…ã‚’åŸºæº–ã« */
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  animation: imageZoomInRotate 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: rotate(90deg); /* 90åº¦å›žè»¢ã•ã›ã¦ç¸¦å‘ãã« */
  transform-origin: center center;
}

@keyframes imageZoomInRotate {
  from {
    transform: scale(0.8) rotate(0deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(90deg);
    opacity: 1;
  }
}

/* æ¨ªå‘ããƒ‡ãƒã‚¤ã‚¹ã§ã®èª¿æ•´ */
@media screen and (orientation: landscape) {
  .fullscreen-image {
    max-width: 90vh; /* æ¨ªå‘ãæ™‚ã¯ã‚ˆã‚Šå°ã•ã */
    max-height: 90vw;
  }
}

/* ç¸¦å‘ããƒ‡ãƒã‚¤ã‚¹ã§ã®èª¿æ•´ */
@media screen and (orientation: portrait) {
  .fullscreen-image {
    max-width: 85vh; /* ç¸¦å‘ãæ™‚ã¯å¤§ããè¡¨ç¤º */
    max-height: 85vw;
  }
}

/* é–‰ã˜ã‚‹ãƒœã‚¿ãƒ³ */
.fullscreen-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
  font-family: Arial, sans-serif;
  line-height: 1;
  user-select: none;
}

.fullscreen-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #0ff;
  color: #0ff;
  transform: scale(1.1);
}

.fullscreen-close-btn:active {
  transform: scale(0.95);
  background: rgba(0, 255, 255, 0.3);
}

/* å›žè»¢åˆ‡ã‚Šæ›¿ãˆãƒœã‚¿ãƒ³ */
.fullscreen-rotate-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #0ff;
  border-radius: 50%;
  color: #0ff;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
  font-family: Arial, sans-serif;
  line-height: 1;
  user-select: none;
}

.fullscreen-rotate-btn:hover {
  background: rgba(0, 255, 255, 0.2);
  transform: scale(1.1);
}

.fullscreen-rotate-btn:active {
  transform: scale(0.95);
  background: rgba(0, 255, 255, 0.4);
}

/* ã‚¹ãƒžãƒ¼ãƒˆãƒ•ã‚©ãƒ³å‘ã‘ã®èª¿æ•´ */
@media screen and (max-width: 768px) {
  .fullscreen-image-container {
    padding: 10px;
  }
  
  .fullscreen-close-btn {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .fullscreen-rotate-btn {
    top: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

/* å®‰å…¨é ˜åŸŸå¯¾å¿œ */
@supports (padding-top: env(safe-area-inset-top)) {
  .fullscreen-close-btn {
    top: calc(20px + env(safe-area-inset-top));
    right: calc(20px + env(safe-area-inset-right));
  }
  
  .fullscreen-rotate-btn {
    top: calc(20px + env(safe-area-inset-top));
    left: calc(20px + env(safe-area-inset-left));
  }
  
  @media screen and (max-width: 768px) {
    .fullscreen-close-btn {
      top: calc(10px + env(safe-area-inset-top));
      right: calc(10px + env(safe-area-inset-right));
    }
    
    .fullscreen-rotate-btn {
      top: calc(10px + env(safe-area-inset-top));
      left: calc(10px + env(safe-area-inset-left));
    }
  }
}

/* æš—å·åŒ–ã•ã‚ŒãŸç”»åƒç”¨ã®ã‚¹ã‚¿ã‚¤ãƒ« */
.encrypted-image img {
  filter: brightness(0.7) contrast(2) hue-rotate(180deg) grayscale(0.5);
  animation: glitchImage 4s infinite;
}

@keyframes glitchImage {
  0% { filter: brightness(0.7) contrast(2) hue-rotate(180deg) grayscale(0.5); }
  5% { filter: brightness(0.8) contrast(2.5) hue-rotate(190deg) grayscale(0.4); }
  10% { filter: brightness(0.7) contrast(2) hue-rotate(175deg) grayscale(0.6); }
  15% { filter: brightness(0.6) contrast(3) hue-rotate(185deg) grayscale(0.5); }
  20% { filter: brightness(0.7) contrast(2) hue-rotate(180deg) grayscale(0.5); }
  98% { filter: brightness(0.7) contrast(2) hue-rotate(180deg) grayscale(0.5); }
  100% { filter: brightness(0.7) contrast(2) hue-rotate(180deg) grayscale(0.5); }
}

/* èª¬æ˜Žãƒ†ã‚­ã‚¹ãƒˆã®ã‚¹ã‚¿ã‚¤ãƒ« */
.game-description {
  padding: 10px 5px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
  border-left: 2px solid #0ff;
  margin-bottom: 20px;
  max-height: 150px; /* æœ€å¤§é«˜ã•ã‚’åˆ¶é™ */
  overflow-y: auto; /* ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ«å¯èƒ½ã« */
}

/* ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ«ãƒãƒ¼ã®ã‚¹ã‚¿ã‚¤ãƒ« */
.game-description::-webkit-scrollbar {
  width: 3px;
}

.game-description::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.game-description::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 255, 0.5);
  border-radius: 10px;
}

.game-description p {
  font-size: 0.8rem; /* ã‚­ãƒ£ãƒ©ã‚¯ã‚¿ãƒ¼ã‚»ã‚¯ã‚·ãƒ§ãƒ³å‚è€ƒã«å°ã•ã */
  line-height: 1.5;
  color: #eee;
  margin: 0 0 10px 0;
  font-family: 'Rajdhani', 'Exo', sans-serif;
  font-weight: 300;
  text-align: justify;
}

.game-description p:last-child {
  margin-bottom: 0;
}

/* æš—å·åŒ–ã•ã‚ŒãŸãƒ†ã‚­ã‚¹ãƒˆç”¨ã®ã‚¹ã‚¿ã‚¤ãƒ« */
.encrypted-text p {
  font-family: "MS Gothic", "Courier New", monospace;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
  letter-spacing: -1px;
  animation: textGlitch 2s infinite;
}

@keyframes textGlitch {
  0% { opacity: 1; }
  3% { opacity: 0.8; transform: translateX(2px); }
  6% { opacity: 1; transform: translateX(0); }
  30% { opacity: 1; }
  33% { opacity: 0.9; transform: translateX(-2px); }
  36% { opacity: 1; transform: translateX(0); }
  60% { opacity: 1; }
  63% { opacity: 0.8; transform: translateY(2px); }
  66% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; }
  93% { opacity: 0.9; transform: translateX(1px) translateY(-1px); }
  96% { opacity: 1; transform: translateX(0) translateY(0); }
  100% { opacity: 1; }
}

/* è§£èª­ãƒœã‚¿ãƒ³ */
.decrypt-button {
  display: block;
  width: 150px;
  margin: 15px auto 5px;
  padding: 8px 0;
  background: linear-gradient(45deg, #000, #111);
  border: 1px solid #0ff;
  color: #0ff;
  font-family: "MS Gothic", "Courier New", monospace; /* ãƒ•ã‚©ãƒ³ãƒˆå¤‰æ›´ */
  font-size: 0.9rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  animation: pulseButton 2s infinite, buttonGlitch 1.5s infinite; /* ã‚°ãƒªãƒƒãƒã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³è¿½åŠ  */
  position: relative;
  overflow: hidden;
}

@keyframes pulseButton {
  0% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.3); }
  50% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.7); }
  100% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.3); }
}

/* ãƒœã‚¿ãƒ³ã®æ–‡å­—åŒ–ã‘ã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ */
@keyframes buttonGlitch {
  0% { opacity: 1; }
  3% { opacity: 0.8; transform: translateX(2px); }
  6% { opacity: 1; transform: translateX(0); }
  20% { opacity: 1; }
  23% { opacity: 0.8; transform: translateY(-2px); }
  26% { opacity: 1; transform: translateY(0); }
  70% { opacity: 1; }
  73% { opacity: 0.8; transform: translateX(-1px); }
  76% { opacity: 1; transform: translateX(0); }
  100% { opacity: 1; }
}

/* ãƒŠãƒ“ã‚²ãƒ¼ã‚·ãƒ§ãƒ³ã‚¨ãƒªã‚¢ã®ã‚¹ã‚¿ã‚¤ãƒ« */
.game-navigation {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  position: absolute;
  bottom: 20px;
  left: 0;
}

.game-nav-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #0ff;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.game-nav-button:active {
  background: rgba(0, 255, 255, 0.2);
  transform: scale(0.95);
}

.game-pagination {
  display: flex;
  gap: 8px;
}

.game-page-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.game-page-indicator.active {
  background: #0ff;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.7);
}

/* è§£èª­ãƒ¢ãƒ¼ãƒ€ãƒ« */
.decrypt-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px); /* ã¼ã‹ã—åŠ¹æžœã‚’å¼·åŒ– */
}

.decrypt-modal-content {
  width: 90%;
  max-width: 500px;
  background: rgba(20, 20, 30, 0.95);
  border: 1px solid #0ff;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  padding: 20px;
  color: #fff;
  font-family: 'Courier New', monospace;
  animation: glitchReveal 0.8s ease;
}

@keyframes glitchReveal {
  0% { 
    opacity: 0; 
    transform: scale(0.9); 
    filter: brightness(0) contrast(5) blur(20px); 
  }
  20% { 
    opacity: 0.2;
    transform: scale(1.05);
    filter: brightness(2) contrast(5) blur(15px);
  }
  40% { 
    opacity: 0.6;
    transform: scale(0.95);
    filter: brightness(1) contrast(3) blur(5px);
  }
  60% { 
    opacity: 0.8;
    transform: scale(1.02);
    filter: brightness(1.5) contrast(2) blur(2px);
  }
  80% { 
    opacity: 0.9;
    transform: scale(0.98);
    filter: brightness(1) contrast(1.5) blur(0);
  }
  100% { 
    opacity: 1;
    transform: scale(1);
    filter: brightness(1) contrast(1) blur(0);
  }
}

.decrypt-title {
  color: #0ff;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.decrypt-date, .decrypt-author {
  font-size: 0.8rem;
  color: #ccc;
  text-align: right;
  margin-bottom: 5px;
}

.decrypt-message {
  margin-top: 20px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.4);
  border-left: 2px solid #0ff;
  font-size: 0.9rem;
  line-height: 1.6;
}

.decrypt-message p {
  margin-bottom: 10px;
}

/* æ–‡å­—è§£èª­ã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ç”¨ã®ã‚¯ãƒ©ã‚¹ */
.decrypting-text {
  animation: textDecrypt 2s forwards;
}

@keyframes textDecrypt {
  0% { 
    font-family: "MS Gothic", "Courier New", monospace;
    color: #0ff;
    letter-spacing: -1px;
    text-shadow: 0 0 5px #0ff;
  }
  50% {
    font-family: "MS Gothic", "Courier New", Consolas, monospace;
    color: #7df;
    letter-spacing: 0px;
    text-shadow: 0 0 3px #0ff;
  }
  100% {
    font-family: 'Rajdhani', 'Exo', sans-serif;
    color: #fff;
    letter-spacing: 0.5px;
    text-shadow: 0 0 1px #fff;
  }
}

.close-decrypt-modal {
  display: block;
  width: 100px;
  margin: 20px auto 0;
  padding: 8px 0;
  background: #000;
  border: 1px solid #0ff;
  color: #0ff;
  font-family: 'Rajdhani', 'Exo', sans-serif;
  font-size: 0.9rem;
  border-radius: 20px;
  text-align: center;
}

/* å¼·çƒˆãªãƒŽã‚¤ã‚ºã‚¨ãƒ•ã‚§ã‚¯ãƒˆç”¨ã®ã‚ªãƒ¼ãƒãƒ¼ãƒ¬ã‚¤ */
.screen-noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(0,255,255,0.05), transparent), 
              repeating-linear-gradient(transparent, transparent, rgba(0,255,255,0.05) 2px, transparent 3px);
  pointer-events: none;
  opacity: 0;
  z-index: 9999;
  mix-blend-mode: overlay;
}

.screen-noise.active {
  animation: noiseFlash 0.6s forwards;
}

@keyframes noiseFlash {
  0% { 
    opacity: 0;
    transform: scale(1);
    filter: brightness(1) contrast(1);
  }
  10% { 
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(2) contrast(5);
  }
  20% { 
    opacity: 0.8;
    transform: scale(0.95);
    filter: brightness(0.5) contrast(3);
  }
  30% { 
    opacity: 0.9;
    transform: scale(1.02);
    filter: brightness(1.5) contrast(2);
  }
  40% { 
    opacity: 0.7;
    transform: scale(0.98);
    filter: brightness(0.8) contrast(4);
  }
  100% { 
    opacity: 0;
    transform: scale(1);
    filter: brightness(1) contrast(1);
  }
}

/* ç”»é¢ãŒæ¶ˆãˆã‚‹æ¼”å‡ºç”¨ */
.screen-off {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s;
}

.screen-off.active {
  animation: screenTurnOff 1.5s forwards;
}

@keyframes screenTurnOff {
  0% { opacity: 0; }
  5% { opacity: 1; }
  10% { opacity: 0; }
  15% { opacity: 0.8; }
  25% { opacity: 0.2; }
  35% { opacity: 0.7; }
  50% { opacity: 0; }
  100% { opacity: 0; }
}

/* æœ€çµ‚ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãƒ¢ãƒ¼ãƒ€ãƒ« */
.final-message-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 110;
  justify-content: center;
  align-items: center;
}

.final-message-content {
  width: 80%;
  max-width: 400px;
  padding: 40px 20px;
  color: #fff;
  font-family: 'Rajdhani', 'Exo', sans-serif;
  font-size: 0.9rem;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  animation: finalMessageReveal 1.2s ease;
}

@keyframes finalMessageReveal {
  0% { 
    opacity: 0; 
    transform: scale(0.7); 
    filter: blur(20px); 
  }
  30% { 
    opacity: 0.3;
    transform: scale(1.1);
    filter: blur(10px);
  }
  60% { 
    opacity: 0.6;
    transform: scale(0.9);
    filter: blur(5px);
  }
  85% { 
    opacity: 0.9;
    transform: scale(1.05);
    filter: blur(0);
  }
  100% { 
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

/* ãƒ¡ãƒ‡ã‚£ã‚¢ã‚¯ã‚¨ãƒª - å°ã•ã„ç”»é¢ã¸ã®å¯¾å¿œï¼ˆãƒãƒ©ãƒ³ã‚¹èª¿æ•´ç‰ˆï¼‰ */
@media screen and (max-width: 374px) {
  .game-image-wrapper {
    padding-bottom: 56.25%; /* ã‚¢ã‚¹ãƒšã‚¯ãƒˆæ¯”ã‚’ç¶­æŒ */
  }
  
  .game-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  
  .game-subtitle {
    font-size: 0.85rem;
  }
  
  .game-description p {
    font-size: 0.75rem;
  }
  
  .game-navigation {
    bottom: 10px;
  }
  
  .game-content-wrapper {
    padding: 60px 15px 30px; /* ãƒ‘ãƒ‡ã‚£ãƒ³ã‚°èª¿æ•´ */
  }
}

/* ä¸­åž‹ç”»é¢ã§ã®ç”»åƒèª¿æ•´ */
@media screen and (max-width: 480px) and (min-width: 375px) {
  .game-image-wrapper {
    padding-bottom: 56.25%; /* ã‚¢ã‚¹ãƒšã‚¯ãƒˆæ¯”ã‚’ç¶­æŒ */
  }
  
  .game-title {
    font-size: 2.0rem;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
  }
}

/* æ¥µå°ç”»é¢ã§ã®ç‰¹åˆ¥èª¿æ•´ */
@media screen and (max-width: 320px) {
  .game-image-wrapper {
    padding-bottom: 56.25%; /* ã‚¢ã‚¹ãƒšã‚¯ãƒˆæ¯”ã‚’ç¶­æŒ */
  }
  
  .game-title {
    font-size: 1.6rem;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }
  
  .game-content-wrapper {
    padding: 55px 15px 30px; /* ãƒ‘ãƒ‡ã‚£ãƒ³ã‚°èª¿æ•´ */
  }
}

/* é«˜ã•ãŒåˆ¶é™ã•ã‚ŒãŸç”»é¢ã§ã®èª¿æ•´ */
@media screen and (max-height: 600px) {
  .game-image-wrapper {
    padding-bottom: 45%; /* é«˜ã•åˆ¶é™æ™‚ã¯å°‘ã—ç¸®ã‚ã‚‹ */
  }
  
  .game-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
  
  .game-content-wrapper {
    padding: 55px 20px 30px;
  }
}

/* ãƒ¡ãƒ‡ã‚£ã‚¢ã‚¯ã‚¨ãƒª - æ¨ªå‘ãå¯¾å¿œï¼ˆ1920*1080ç”»åƒå¯¾å¿œç‰ˆï¼‰ */
@media screen and (orientation: landscape) {
  .game-content-wrapper {
    padding: 70px 20px 20px;
  }
  
  .game-character-wrapper {
    right: 0;
  }
  
  .game-character-img {
    height: 85%;
  }
  
  .game-info-container {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .game-image-wrapper {
    width: 45%; /* 40%ã‹ã‚‰45%ã«æ‹¡å¤§ */
    padding-bottom: 25.3%; /* æ¨ªå‘ãæ™‚ã®ã‚¢ã‚¹ãƒšã‚¯ãƒˆæ¯”èª¿æ•´ (45% * 9/16) */
    flex-shrink: 0;
  }
  
  .game-description {
    flex: 1;
    margin-left: 15px; /* ç”»åƒã¨ã®é–“éš”ã‚’è¿½åŠ  */
  }
  
  .game-navigation {
    position: relative;
    bottom: 0;
    padding-top: 15px;
  }
}



























/* ã‚­ãƒ£ãƒ©ã‚¯ã‚¿ãƒ¼ã‚»ã‚¯ã‚·ãƒ§ãƒ³ - å®Œå…¨ç‰ˆCSSï¼ˆã‚»ãƒªãƒ•è¡¨ç¤ºãƒ»ãƒ­ãƒ¼ãƒ‡ã‚£ãƒ³ã‚°æ©Ÿèƒ½å¯¾å¿œï¼‰ */

#character {
  position: relative;
  background: linear-gradient(to bottom, #111, #222);
  padding-top: 60px; /* ãƒ˜ãƒƒãƒ€ãƒ¼ã®é«˜ã•ã‚’è€ƒæ…® */
  box-sizing: border-box;
  overflow: hidden;
}

#character.snap-section {
  padding-bottom: 0px;
}

#character .section-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
}

/* ãƒ•ã‚¡ã‚¯ã‚·ãƒ§ãƒ³é¸æŠžUI - è‰²ã®æ”¹è‰¯ */
.faction-selector {
  position: absolute;
  top: 70px; /* ãƒ˜ãƒƒãƒ€ãƒ¼ã®ä¸‹ã«é…ç½® */
  left: 20px;
  z-index: 10;
  width: 125px; /* å¹…ã‚’åºƒã’ã¦ARCHITECTSã‚‚è¡¨ç¤ºã§ãã‚‹ã‚ˆã†ã« */
}

.faction-button {
  width: 100%;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #5d60a0; /* æ˜Žã‚‹ã„é’ç´«ã«å¤‰æ›´ */
  border-radius: 5px;
  color: #fff;
  font-family: 'Rajdhani', 'Exo', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dropdown-icon {
  font-size: 10px;
  margin-left: 5px;
  color: #fff;
}

.faction-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 0 0 5px 5px;
  overflow: hidden;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  display: none;
  animation: fadeIn 0.3s ease;
}

.faction-dropdown.show {
  display: block;
}

/* æ´¾é–¥ã‚ªãƒ—ã‚·ãƒ§ãƒ³ã®ã‚¹ã‚¿ã‚¤ãƒ« - æ´¾é–¥ã”ã¨ã®è‰²ã‚’æ›´æ–° */
.faction-option {
  padding: 8px 12px;
  border-left: 3px solid #5d60a0; /* ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆè‰²ã€JSã§å¤‰æ›´ */
  cursor: pointer;
  font-family: 'Rajdhani', 'Exo', sans-serif;
  font-size: 14px;
  color: #fff;
  transition: all 0.2s ease;
}

.faction-option:active {
  background-color: rgba(255, 255, 255, 0.15);
}

.faction-option.active {
  font-weight: bold;
  background-color: rgba(93, 96, 160, 0.2); /* ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆè‰²ã€JSã§å¤‰æ›´ */
}

/* å„æ´¾é–¥ã®è‰²ã‚’ã‚«ã‚¹ã‚¿ãƒžã‚¤ã‚º */
.faction-option[data-faction="f1"] {
  border-left-color: #5d60a0; /* EXTRA - æ˜Žã‚‹ã„é’ç´« */
}
.faction-option[data-faction="f1"].active {
  background-color: rgba(93, 96, 160, 0.2);
}

.faction-option[data-faction="f2"] {
  border-left-color: #4d99ff; /* CALAMITY - æ˜Žã‚‹ã„é’ */
}
.faction-option[data-faction="f2"].active {
  background-color: rgba(77, 153, 255, 0.2);
}

.faction-option[data-faction="f3"] {
  border-left-color: #9966ff; /* CATASTROPHE - æ˜Žã‚‹ã„ç´« */
}
.faction-option[data-faction="f3"].active {
  background-color: rgba(153, 102, 255, 0.2);
}

.faction-option[data-faction="f4"] {
  border-left-color: #66cc99; /* ARCHITECTS - ãƒŸãƒ³ãƒˆã‚°ãƒªãƒ¼ãƒ³ */
}
.faction-option[data-faction="f4"].active {
  background-color: rgba(102, 204, 153, 0.2);
}

/* ã‚­ãƒ£ãƒ©ã‚¯ã‚¿ãƒ¼ã‚«ãƒ¼ãƒ‰å…¨ä½“ - ãƒ¬ã‚¤ã‚¢ã‚¦ãƒˆä¿®æ­£ */
.character-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: calc(100vh - 120px);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.character-card.transitioning {
  transform: scale(0.95);
  opacity: 0.7;
}

/* ç”»åƒã‚³ãƒ³ãƒ†ãƒŠã®ã‚µã‚¤ã‚ºã‚’æ‹¡å¤§ã—ã€ã‚ˆã‚Šå¤§ããªè¡¨ç¤ºã« */
.card-image-container {
  position: relative;
  width: 100%;
  height: 75%; /* é«˜ã•ã‚’70%ã‹ã‚‰75%ã«å¢—åŠ  */
  min-height: 75%; /* æœ€å°é«˜ã•ã‚‚è¨­å®š */
  overflow: hidden;
  transition: height 0.3s ease;
}

/* ç”»åƒè‡ªä½“ã®ã‚µã‚¤ã‚ºã¨ä½ç½®ã‚’èª¿æ•´ - æ‹¡å¤§è¡¨ç¤º */
.character-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%; /* ä¸Šç«¯ã‚’å„ªå…ˆè¡¨ç¤ºã€æ°´å¹³æ–¹å‘ã¯ä¸­å¤® */
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: scale(1.5); /* 150%ã«æ‹¡å¤§ */
  transform-origin: top center; /* ä¸Šéƒ¨ä¸­å¤®ã‚’æ‹¡å¤§ã®èµ·ç‚¹ã« */
}

/* ã‚¿ãƒƒãƒ—æ™‚ã®æ‹¡å¤§åŠ¹æžœ */
.character-card:active .character-image {
  transform: scale(1.2); /* ã‚¿ãƒƒãƒ—æ™‚ã®ã‚ºãƒ¼ãƒ åŠ¹æžœã‚’å¼·åŒ– */
}

/* ã‚»ãƒªãƒ•ç”»åƒã®ã‚³ãƒ³ãƒ†ãƒŠ - ä½ç½®èª¿æ•´ */
.speech-bubble-container {
  position: absolute;
  top: 10%;       /* ä¸Šç«¯ã‹ã‚‰10%ã®ä½ç½® - å³ä¸Šã‚ˆã‚Šã®é…ç½® */
  right: 10%;     /* å³ç«¯ã‹ã‚‰10%ã®ä½ç½® */
  z-index: 5;     /* ã‚­ãƒ£ãƒ©ã‚¯ã‚¿ãƒ¼ç”»åƒã‚ˆã‚Šä¸Šã«ã‚»ãƒªãƒ•ã‚’è¡¨ç¤º */
  width: 35%;     /* ã‚³ãƒ³ãƒ†ãƒŠã®ã‚µã‚¤ã‚ºã‚’å…¨ä½“ã®35%ã« */
  max-width: 200px; /* æœ€å¤§å¹…ã‚’åˆ¶é™ */
  height: auto;
  transform: translateY(-5%); /* å°‘ã—ä¸Šã«ç§»å‹•ã—ã¦ä½ç½®èª¿æ•´ */
  pointer-events: none; /* ã‚¯ãƒªãƒƒã‚¯ã‚¤ãƒ™ãƒ³ãƒˆã‚’é€éŽ */
}

/* ã‚»ãƒªãƒ•ç”»åƒè‡ªä½“ã®ã‚¹ã‚¿ã‚¤ãƒ« */
.speech-bubble-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.95;  /* å°‘ã—é€éŽã•ã›ã‚‹ */
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3)); /* å½±ã‚’ã¤ã‘ã‚‹ */
  animation: floatBubble 3s ease-in-out infinite alternate; /* æµ®éŠã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ */
}

/* ã‚»ãƒªãƒ•ç”»åƒã®æµ®éŠã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ */
@keyframes floatBubble {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-5px) rotate(1deg);
  }
}

/* ã‚¿ãƒƒãƒæ™‚ã®ã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ - ã‚­ãƒ£ãƒ©ã‚¯ã‚¿ãƒ¼ã‚¿ãƒƒãƒ—æ™‚ã«ã‚»ãƒªãƒ•ã‚‚æ‹¡å¤§ */
.character-card:active .speech-bubble-container {
  transform: scale(1.05) translateY(-5%);
}

/* ã‚ªãƒ¼ãƒãƒ¼ãƒ¬ã‚¤ã®é«˜ã•ã‚’èª¿æ•´ã—ã¦æƒ…å ±ã‚’ã‚ˆã‚Šä¸‹éƒ¨ã«è¡¨ç¤º */
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%; /* ã‚ªãƒ¼ãƒãƒ¼ãƒ¬ã‚¤ã‚’ã•ã‚‰ã«æ‹¡å¤§ï¼ˆå…ƒã¯80%ï¼‰ */
  background: linear-gradient(to top, 
    rgba(0,0,0,0.98) 0%, 
    rgba(0,0,0,0.95) 20%, 
    rgba(0,0,0,0.8) 40%, 
    rgba(0,0,0,0.5) 65%,
    rgba(0,0,0,0.2) 85%,
    transparent 100%);
  pointer-events: none;
}

/* ã‚«ãƒ¼ãƒ‰ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã‚’ç”»åƒã®ä¸Šã«é‡ã­ã‚‹ */
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  background: linear-gradient(to top, rgba(0,0,0,0.98), rgba(0,0,0,0.95) 40%, rgba(0,0,0,0.8) 70%, rgba(0,0,0,0.3) 90%, transparent);
  padding: 15px 15px 35px;
  box-sizing: border-box;
}

/* ã‚­ãƒ£ãƒ©ã‚¯ã‚¿ãƒ¼åãªã©é‡è¦ãªæƒ…å ±ã®é…ç½®èª¿æ•´ */
.character-header {
  position: relative;
  z-index: 6;
  padding-bottom: 0;
  margin-bottom: 5px;
}

/* ãƒ•ã‚¡ã‚¯ã‚·ãƒ§ãƒ³ãƒ©ãƒ™ãƒ« - ä½™ç™½èª¿æ•´ */
#characterFaction {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px; /* ä¸‹ãƒžãƒ¼ã‚¸ãƒ³ã‚’ç¸®å° */
  font-family: 'Rajdhani', 'Exo', sans-serif;
  text-shadow: 0 0 4px rgba(0,0,0,0.7); /* ã‚·ãƒ£ãƒ‰ã‚¦ã‚’å¼·åŒ– */
  color: inherit;
}

/* ã‚­ãƒ£ãƒ©ã‚¯ã‚¿ãƒ¼åã®ã‚³ãƒ³ãƒ†ãƒŠ - ã‚»ãƒªãƒ•è¡¨ç¤ºå¯¾å¿œç‰ˆ */
.character-name-container {
  display: flex;
  align-items: center;
  gap: 4px; /* é–“éš”ã‚’ç¸®å° */
  justify-content: flex-start; /* å·¦æƒãˆ */
  flex-wrap: wrap; /* å°ã•ã„ç”»é¢ã§æŠ˜ã‚Šè¿”ã— */
  margin-bottom: 3px;
}

/* ã‚­ãƒ£ãƒ©ã‚¯ã‚¿ãƒ¼åã®ã‚¹ã‚¿ã‚¤ãƒ«èª¿æ•´ */
.character-name {
  font-size: 22px; /* å°‘ã—å°ã•ã */
  margin: 0;
  color: #fff;
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  flex: 0 0 auto; /* å›ºå®šå¹… */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}

/* ãƒœã‚¤ã‚¹ãƒœã‚¿ãƒ³ã®ã‚¹ã‚¿ã‚¤ãƒ« */
.voice-button {
  background: rgba(93, 96, 160, 0.2);
  border: 1px solid #5d60a0;
  border-radius: 50%;
  width: 22px; /* ã‚µã‚¤ã‚ºã‚’å°‘ã—å°ã•ãï¼ˆå…ƒã¯24pxï¼‰ */
  height: 22px; /* ã‚µã‚¤ã‚ºã‚’å°‘ã—å°ã•ãï¼ˆå…ƒã¯24pxï¼‰ */
  min-width: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 2px; /* å·¦å´ã«å°‘ã—ä½™ç™½ã‚’è¿½åŠ  */
  margin-top: 2px; /* å°‘ã—ä¸Šã«é…ç½®ã—ã¦è¦‹ãŸç›®ã‚’èª¿æ•´ */
  flex: 0 0 auto; /* å›ºå®šå¹… */
  /* åˆæœŸçŠ¶æ…‹ã§ã¯éžè¡¨ç¤º - JavaScriptã§è¡¨ç¤ºåˆ¶å¾¡ */
  display: none;
}

/* ãƒœã‚¤ã‚¹ãƒœã‚¿ãƒ³ã®ãƒ›ãƒãƒ¼/ã‚¢ã‚¯ãƒ†ã‚£ãƒ–åŠ¹æžœ */
.voice-button:active {
  transform: scale(0.9);
  background: rgba(93, 96, 160, 0.4);
  box-shadow: 0 0 8px rgba(93, 96, 160, 0.6);
}

/* ã‚¹ãƒ”ãƒ¼ã‚«ãƒ¼ã‚¢ã‚¤ã‚³ãƒ³ */
.voice-icon {
  font-size: 13px; /* ã‚µã‚¤ã‚ºã‚’å°‘ã—å°ã•ãï¼ˆå…ƒã¯14pxï¼‰ */
  color: #5d60a0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ãƒœã‚¤ã‚¹å†ç”Ÿä¸­ã®ã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ - ã‚ˆã‚ŠæŽ§ãˆã‚ãªã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ */
@keyframes pulseVoice {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

/* å†ç”Ÿä¸­ã®ãƒœã‚¿ãƒ³ã‚¹ã‚¿ã‚¤ãƒ« */
.voice-button.playing {
  animation: pulseVoice 1.2s infinite ease-in-out;
  background: rgba(93, 96, 160, 0.5);
  border-color: #5d60a0;
}

.voice-button.playing .voice-icon {
  color: #ffffff;
}

/* ã‚»ãƒªãƒ•ãƒ†ã‚­ã‚¹ãƒˆã®ã‚¹ã‚¿ã‚¤ãƒ« */
.character-speech {
  font-size: 13px;
  color: #ffdd77;
  font-family: 'Rajdhani', 'Exo', sans-serif;
  font-weight: 400;
  margin-left: 6px;
  flex: 1 1 auto; /* æ®‹ã‚Šã®å¹…ã‚’ä½¿ç”¨ */
  line-height: 1.2;
  text-shadow: 0 0 3px rgba(255, 221, 119, 0.4);
  font-style: italic;
  /* åˆæœŸçŠ¶æ…‹ã§ã¯éžè¡¨ç¤º - JavaScriptã§è¡¨ç¤ºåˆ¶å¾¡ */
  display: none;
}

/* ãƒœã‚¤ã‚¹å†ç”Ÿä¸­ã®ã‚»ãƒªãƒ•ãƒ†ã‚­ã‚¹ãƒˆåŠ¹æžœ */
.voice-button.playing + .character-speech {
  animation: speechGlow 1.5s ease-in-out infinite alternate;
}

@keyframes speechGlow {
  0% {
    color: #ffdd77;
    text-shadow: 0 0 3px rgba(255, 221, 119, 0.4);
  }
  100% {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 221, 119, 0.8);
  }
}

/* ãƒ­ãƒ¼ãƒ« - ä½™ç™½èª¿æ•´ */
.character-role {
  font-size: 13px; /* å°‘ã—å°ã•ã */
  color: #ddd;
  margin-bottom: 2px; /* ãƒžãƒ¼ã‚¸ãƒ³ã‚’å¾®èª¿æ•´ */
  font-family: 'Rajdhani', 'Exo', sans-serif;
  font-weight: 500;
}

/* å¸¸ã«è¡¨ç¤ºã•ã‚Œã‚‹ã‚­ãƒ£ãƒ©ã‚¯ã‚¿ãƒ¼è©³ç´° */
.character-always-visible {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin-top: 10px;
  overflow-y: auto;
  max-height: 200px; /* å†…å®¹ã«å¿œã˜ã¦èª¿æ•´ */
  -webkit-overflow-scrolling: touch;
}

/* ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ«ãƒãƒ¼ã®ã‚«ã‚¹ã‚¿ãƒžã‚¤ã‚º */
.character-always-visible::-webkit-scrollbar {
  width: 4px;
}

.character-always-visible::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.character-always-visible::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 255, 0.5);
  border-radius: 10px;
}

/* è©³ç´°ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®ã‚¹ã‚¿ã‚¤ãƒ«èª¿æ•´ */
.character-always-visible .detail-section {
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®å·¦ãƒœãƒ¼ãƒ€ãƒ¼ã‚’å¼·èª¿ */
.character-always-visible .profile-section {
  border-left: 3px solid #0ff;
}

.character-always-visible .effect-section {
  border-left: 3px solid #ffcc00;
}

/* ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚¿ã‚¤ãƒˆãƒ«ã®è¦–èªæ€§å‘ä¸Š */
.character-always-visible .section-title {
  font-size: 12px;
  text-transform: uppercase;
  margin: 0 0 5px 0;
  font-family: 'Rajdhani', 'Exo', sans-serif;
  letter-spacing: 1px;
  font-weight: 600;
  color: #0ff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.7); /* ã‚·ãƒ£ãƒ‰ã‚¦ã‚’å¼·åŒ– */
}

.character-always-visible .effect-title {
  color: #ffcc00;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.7); /* ã‚·ãƒ£ãƒ‰ã‚¦ã‚’å¼·åŒ– */
}

/* è©³ç´°ãƒ†ã‚­ã‚¹ãƒˆã®è¦–èªæ€§å‘ä¸Š */
.character-always-visible .character-desc,
.character-always-visible .character-effect {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  font-family: 'Rajdhani', 'Exo', sans-serif;
  font-weight: 400;
}

.character-always-visible .character-desc {
  color: #fff; /* ã‚°ãƒ¬ãƒ¼ã‹ã‚‰ç™½ã«å¤‰æ›´ */
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); /* ã‚·ãƒ£ãƒ‰ã‚¦ã‚’è¿½åŠ  */
}

.character-always-visible .character-effect {
  color: #ffdd77;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.4);
}

/* ãƒŠãƒ“ã‚²ãƒ¼ã‚·ãƒ§ãƒ³ãƒœã‚¿ãƒ³ã®æ”¹è‰¯ */
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.2s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.nav-button:active {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(0.95);
}

.prev-button {
  left: 10px;
}

.next-button {
  right: 10px;
}

/* ã‚«ã‚¦ãƒ³ã‚¿ãƒ¼ã®éžè¡¨ç¤º */
.character-counter {
  display: none;
}

/* ãƒ‘ãƒ¼ãƒ†ã‚£ã‚¯ãƒ«ã‚¨ãƒ•ã‚§ã‚¯ãƒˆæ”¹è‰¯ */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float 15s linear infinite;
  filter: blur(1px);
  box-shadow: 0 0 3px currentColor;
}

@keyframes float {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 0.8; }
  90% { opacity: 0.4; }
  100% {
    transform: translateY(-100px) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ãƒ­ãƒ¼ãƒ‡ã‚£ãƒ³ã‚°è¡¨ç¤ºã‚³ãƒ³ãƒ†ãƒŠ */
.character-image-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* ãƒ­ãƒ¼ãƒ‡ã‚£ãƒ³ã‚°ã‚¹ãƒ”ãƒŠãƒ¼ */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #0ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ãƒ­ãƒ¼ãƒ‡ã‚£ãƒ³ã‚°ãƒ†ã‚­ã‚¹ãƒˆ */
.loading-text {
  color: #0ff;
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite alternate;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

@keyframes pulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* ã‚¹ãƒžãƒ¼ãƒˆãƒ•ã‚©ãƒ³æ¨ªå‘ãæœ€é©åŒ– */
@media (max-width: 767px) and (orientation: landscape) {
  .character-card {
    flex-direction: row;
    height: 80vh;
    max-width: 90%;
  }
  
  .card-image-container {
    width: 50%; /* æ¨ªå‘ãã§ã®ç”»åƒã‚¨ãƒªã‚¢ã‚’æ‹¡å¤§ï¼ˆå…ƒã¯45%ï¼‰ */
    height: 100%;
    min-height: 100%;
  }
  
  .character-image {
    object-position: center 20%; /* æ¨ªå‘ãæ™‚ã‚‚é©åˆ‡ãªä½ç½®ã« */
    transform: scale(1.25); /* æ¨ªå‘ãæ™‚ã¯æ›´ã«æ‹¡å¤§ */
  }
  
  .image-overlay {
    height: 100%;
    width: 90%; /* æ¨ªå‘ãæ™‚ã®ã‚ªãƒ¼ãƒãƒ¼ãƒ¬ã‚¤å¹…ã‚’æ‹¡å¤§ */
    background: linear-gradient(to right, 
      rgba(0,0,0,0.98) 0%, 
      rgba(0,0,0,0.9) 20%, 
      rgba(0,0,0,0.7) 40%, 
      rgba(0,0,0,0.4) 70%, 
      transparent 100%);
  }
  
  .card-content {
    width: 65%;
    right: 0;
    left: auto;
    height: 100%;
    background: linear-gradient(to left, 
      rgba(0,0,0,0.98) 0%, 
      rgba(0,0,0,0.95) 40%, 
      rgba(0,0,0,0.8) 70%, 
      rgba(0,0,0,0.3) 90%, 
      transparent);
  }
  
  .character-card:active .character-image {
    transform: scale(1.3); /* æ¨ªå‘ãæ™‚ã®ã‚¿ãƒƒãƒ—æ‹¡å¤§åŠ¹æžœ */
  }
  
  .character-always-visible {
    max-height: 70%;
  }
  
  .character-header {
    margin-top: auto;
  }
  
  /* æ¨ªå‘ãè¡¨ç¤ºã®ã‚»ãƒªãƒ•ãƒãƒ–ãƒ«èª¿æ•´ */
  .speech-bubble-container {
    top: 15%;
    right: 55%; /* æ¨ªå‘ãæ™‚ã¯ç”»åƒã‚¨ãƒªã‚¢ã®å³å´ã«é…ç½® */
    width: 25%;
    max-width: 180px;
  }
  
  /* ãƒœã‚¤ã‚¹ãƒœã‚¿ãƒ³ - æ¨ªå‘ãæ™‚






/* ãƒ¢ãƒã‚¤ãƒ«ç‰ˆTRAILERã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®ã‚¹ã‚¿ã‚¤ãƒ« - YouTubeå¯¾å¿œç‰ˆ */
#trailer {
  background: linear-gradient(to bottom, #222, #111);
}

.trailer-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

/* ãƒ¢ãƒã‚¤ãƒ«ç‰ˆYouTubeãƒ—ãƒ¬ãƒ¼ãƒ¤ãƒ¼ */
.mobile-youtube-player {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.4), 0 0 50px rgba(0, 255, 255, 0.2);
  border: 2px solid rgba(0, 255, 255, 0.6);
  animation: mobileTrailerGlow 3s ease-in-out infinite alternate;
}

@keyframes mobileTrailerGlow {
  0% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), 0 0 40px rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5), 0 0 60px rgba(0, 255, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.8);
  }
}

.mobile-video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 ã‚¢ã‚¹ãƒšã‚¯ãƒˆæ¯” */
  overflow: hidden;
}

.mobile-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ãƒ¢ãƒã‚¤ãƒ«ç‰ˆå‹•ç”»æƒ…å ± */
.mobile-video-info {
  padding: 15px 20px;
  background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
  text-align: center;
}

.mobile-video-title {
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
  letter-spacing: 1px;
}

.mobile-video-date {
  color: #0ff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.6);
  animation: mobileDatePulse 2s ease-in-out infinite alternate;
}

@keyframes mobileDatePulse {
  0% {
    color: #0ff;
    text-shadow: 0 0 6px rgba(0, 255, 255, 0.6);
  }
  100% {
    color: #fff;
    text-shadow: 0 0 12px rgba(0, 255, 255, 0.9);
  }
}

/* ãƒ¢ãƒã‚¤ãƒ«å°‚ç”¨ãƒ¬ã‚¹ãƒãƒ³ã‚·ãƒ–èª¿æ•´ */
@media screen and (max-width: 480px) {
  .mobile-youtube-player {
    border-radius: 8px;
    border-width: 1.5px;
  }
  
  .mobile-video-info {
    padding: 12px 15px;
  }
  
  .mobile-video-title {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  
  .mobile-video-date {
    font-size: 0.95rem;
  }
  
  .trailer-container {
    padding: 0 5px;
  }
}

@media screen and (max-width: 360px) {
  .mobile-youtube-player {
    border-radius: 6px;
  }
  
  .mobile-video-title {
    font-size: 1rem;
  }
  
  .mobile-video-date {
    font-size: 0.9rem;
  }
}

/* æ¨ªå‘ãè¡¨ç¤ºã§ã®èª¿æ•´ */
@media screen and (orientation: landscape) and (max-height: 500px) {
  .mobile-youtube-player {
    max-width: 70%;
  }
  
  .mobile-video-info {
    padding: 8px 15px;
  }
  
  .mobile-video-title {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  
  .mobile-video-date {
    font-size: 0.85rem;
  }
}




























/* WORLDã‚»ã‚¯ã‚·ãƒ§ãƒ³ - ã‚«ãƒ¼ãƒ‰å¼ãƒ¬ã‚¤ã‚¢ã‚¦ãƒˆ */
#world {
  background: linear-gradient(to bottom, #222, #333);
}


/* ãƒ¢ãƒã‚¤ãƒ«ç‰ˆãƒ¯ãƒ¼ãƒ«ãƒ‰ã‚»ã‚¯ã‚·ãƒ§ãƒ³ç”¨ã®è¿½åŠ CSS */

/* ãƒ¯ãƒ¼ãƒ«ãƒ‰æƒ…å ±ã‚¨ãƒªã‚¢ã®è¨­å®š */
.world-info {
  max-height: none; /* å›ºå®šé«˜ã•ã®åˆ¶é™ã‚’å‰Šé™¤ */
  overflow-y: visible; /* ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ«ã‚’ä¸è¦ã«ã™ã‚‹ */
  padding-bottom: 15px; /* ãƒ‘ãƒ‡ã‚£ãƒ³ã‚°ã‚’èª¿æ•´ */
}

.world-info::-webkit-scrollbar {
  width: 5px;
}

.world-info::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.world-info::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 255, 0.5);
  border-radius: 10px;
}

.world-desc {
  padding-right: 5px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #fff;
  margin: 0;
  font-family: 'Rajdhani', 'Exo', sans-serif;
  text-align: justify;
}

/* è‡ªå‹•ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ«ãƒœã‚¿ãƒ³ */
.auto-scroll-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #0ff;
  color: #0ff;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 0.8rem;
  cursor: pointer;
  z-index: 5;
  font-family: 'Rajdhani', sans-serif;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.auto-scroll-btn:active {
  opacity: 1;
  transform: scale(0.95);
  background: rgba(0, 255, 255, 0.2);
}

/* ã‚­ãƒ¼ãƒ¯ãƒ¼ãƒ‰ãƒã‚¤ãƒ©ã‚¤ãƒˆ */
.keyword-highlight {
  color: #0ff;
  font-weight: bold;
  text-shadow: 0 0 3px rgba(0, 255, 255, 0.5);
}

/* ã‚«ãƒ¼ãƒ‰ã®é«˜ã•ã‚’èª¿æ•´ã—ã¦èª¬æ˜Žæ–‡ãŒå…¨ã¦è¡¨ç¤ºã•ã‚Œã‚‹ã‚ˆã†ã«ã™ã‚‹ */
.world-card {
  height: auto; /* é«˜ã•ã‚’è‡ªå‹•èª¿æ•´ã«å¤‰æ›´ */
  max-height: none; /* æœ€å¤§é«˜ã•ã®åˆ¶é™ã‚’å‰Šé™¤ */
}

.world-card:active {
  transform: scale(0.98);
  box-shadow: 0 8px 25px rgba(0, 200, 255, 0.5);
}

/* ãƒŠãƒ“ã‚²ãƒ¼ã‚·ãƒ§ãƒ³ãƒœã‚¿ãƒ³å¼·åŒ– */
.nav-button {
  transition: all 0.3s ease;
}

.nav-button:active {
  background: rgba(0, 255, 255, 0.3);
  transform: scale(0.9);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

/* ãƒ¯ãƒ¼ãƒ«ãƒ‰åã®å¼·èª¿ */
.world-name {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.world-name::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40%;
  height: 2px;
  background: linear-gradient(to right, #0ff, transparent);
}

/* ç¾åœ¨ã®ãƒ¯ãƒ¼ãƒ«ãƒ‰ç•ªå·ã®ãƒã‚¤ãƒ©ã‚¤ãƒˆ */
.world-count {
  position: relative;
}

.world-count span {
  transition: all 0.3s ease;
}

/* ãƒšãƒ¼ã‚¸åˆ‡ã‚Šæ›¿ãˆæ™‚ã®ãƒ•ã‚§ãƒ¼ãƒ‰ã‚¨ãƒ•ã‚§ã‚¯ãƒˆ */
@keyframes worldFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.world-fadeIn {
  animation: worldFadeIn 0.4s ease forwards;
}


.world-card-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.world-card {
  width: 100%;
  max-width: 450px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.2s ease;
  height: auto;
  margin-bottom: 20px;
}

.world-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.world-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.world-card:active .world-image img {
  transform: scale(1.05);
}

.world-info {
  padding: 15px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
}

.world-name {
  font-size: 1.4rem;
  color: #0ff;
  margin: 0 0 10px 0;
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.world-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #fff;
  margin: 0;
  font-family: 'Rajdhani', 'Exo', sans-serif;
}

.world-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100%;
}

.world-count {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 1rem;
  color: #0ff;
  margin: 0 15px;
  width: 50px;
  text-align: center;
}

.nav-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #0ff;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-button:active {
  background: rgba(0, 255, 255, 0.2);
  transform: scale(0.95);
}

/* DOWNLOADã‚»ã‚¯ã‚·ãƒ§ãƒ³ */
#download {
  background: linear-gradient(to bottom, #333, #000);
  margin-bottom: 0;
  padding-bottom: 20px;
}

.download-container {
  text-align: center;
  margin-bottom: 30px;
}

.release-info {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 5px;
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  letter-spacing: 1px;
}

.pre-order {
  display: inline-block;
  background: rgba(0, 255, 255, 0.2);
  color: #0ff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.store-btn {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #0ff;
  padding: 12px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  font-family: 'Rajdhani', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-btn:active {
  background: rgba(0, 255, 255, 0.2);
  transform: translateY(2px);
}

.btn-label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.social-links {
  margin-top: 30px;
}

.social-title {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 15px;
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  letter-spacing: 2px;
}

.social-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.social-btn {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #555;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
}

.social-btn:active {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(2px);
}


.copyright {
  margin-top: 20px;
  color: #555;
  font-size: 0.8rem;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
}

/* å°åž‹ãƒ‡ãƒã‚¤ã‚¹å‘ã‘æœ€é©åŒ– */
@media (max-width: 340px) {
  .section-title {
    font-size: 2rem;
  }
  
  .concept-tagline {
    font-size: 1.5rem;
  }
  
  .game-title {
    font-size: 2.5rem;
  }
  
  .faction-tabs {
    flex-direction: column;
  }
  
  .tab {
    flex: 1 1 auto;
  }
  
  .social-buttons {
    grid-template-columns: 1fr;
  }
}

/* iPhoneã®å®‰å…¨é ˜åŸŸå¯¾å¿œ */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  body {
    padding-bottom: env(safe-area-inset-bottom);
  }
  
  header {
    padding-top: env(safe-area-inset-top);
    height: calc(60px + env(safe-area-inset-top));
  }
  
  .snap-section {
    padding-top: calc(60px + env(safe-area-inset-top));
  }
  
  #top {
    padding-top: 0;
  }
  
  main {
    height: calc(100% - env(safe-area-inset-top));
  }
}


/* TRAILERã‚»ã‚¯ã‚·ãƒ§ãƒ³ã®ã‚¹ã‚¿ã‚¤ãƒ« */
#trailer {
  background: linear-gradient(to bottom, #333, #000);
  margin-bottom: 0;
  padding-bottom: 20px;
}

.trailer-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 30px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ã‚¢ã‚¹ãƒšã‚¯ãƒˆæ¯” */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

#trailerVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

.trailer-description {
  text-align: center;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  margin-top: 15px;
}

.trailer-release-date {
  color: #0ff;
  font-size: 1.2rem;
  margin-top: 5px;
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  0% { text-shadow: 0 0 5px rgba(0, 255, 255, 0.3); }
  100% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.8); }
}




/* ãƒ•ãƒƒã‚¿ãƒ¼ã‚’ç¢ºå®Ÿã«éžè¡¨ç¤ºã«ã™ã‚‹ */
.footer-nav, 
.copyright, 
footer, 
#footer,
.footer-container,
[class*="footer-"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
/* ========================================
   モバイル版MANUALセクション
======================================== */
#manual {
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

#manual .section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  padding: 20px;
  gap: 30px;
}

#manual .section-title {
  color: #fff;
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 6px;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
  text-align: center;
}

.manual-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  padding: 10px 0;
}

/* モバイル版説明書ボタン */
.mobile-manual-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 120px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 30, 40, 0.9));
  border: 2px solid rgba(0, 255, 255, 0.5);
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  padding: 20px;
  gap: 20px;
}

.mobile-manual-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.mobile-manual-btn:active::before {
  left: 100%;
}

.mobile-manual-btn:active {
  transform: scale(0.98);
  border-color: rgba(0, 255, 255, 0.9);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

/* ボタンアイコン */
.mobile-manual-btn .btn-icon {
  font-size: 3rem;
  min-width: 60px;
  text-align: center;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
  flex-shrink: 0;
}

/* ボタンコンテンツ */
.mobile-manual-btn .btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  flex: 1;
}

/* ボタンテキスト */
.mobile-manual-btn .btn-text {
  color: #fff;
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

/* ボタンサブタイトル */
.mobile-manual-btn .btn-subtitle {
  color: #0ff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* フッターリンク */
.mobile-footer-links {
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  border-top: 1px solid rgba(0, 255, 255, 0.3);
}

.mobile-footer-links a {
  color: #aaa;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-footer-links a:active {
  color: #0ff;
}

/* コピーライト */
.mobile-copyright {
  color: #666;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  margin-top: 10px;
  text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
  #manual .section-title {
    font-size: 2rem;
    letter-spacing: 4px;
  }
  
  .manual-container {
    gap: 20px;
  }
  
  .mobile-manual-btn {
    min-height: 100px;
    padding: 15px;
    gap: 15px;
  }
  
  .mobile-manual-btn .btn-icon {
    font-size: 2.5rem;
    min-width: 50px;
  }
  
  .mobile-manual-btn .btn-text {
    font-size: 1.3rem;
  }
  
  .mobile-manual-btn .btn-subtitle {
    font-size: 0.75rem;
  }
  
  .mobile-footer-links {
    gap: 12px;
  }
  
  .mobile-footer-links a {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .mobile-manual-btn {
    min-height: 90px;
    padding: 12px;
  }
  
  .mobile-manual-btn .btn-icon {
    font-size: 2.2rem;
    min-width: 45px;
  }
  
  .mobile-manual-btn .btn-text {
    font-size: 1.2rem;
  }
}
