/* 共通のスタイル */
@import url("../../common/common.css");
body {
  margin: 0;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)), url('../common/images/story background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #f5f5f5;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ストーリーセクション */
.story .content {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.story h1 {
  margin-bottom: 20px;
    filter: drop-shadow(0 0 15px #00ffea);
  text-align: center;
}
.story p {
  margin-bottom: 15px;
  line-height: 3.5;
}

/* 呪文タイピングミニゲーム */
.spell-typing-game {
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 10px;
  margin: 100px auto;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
}

.spell-typing-game h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #ffd700;
}

.spell-typing-game #spellText {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1abc9c;
  user-select: none; /* コピー禁止 */
}

.spell-typing-game input {
  width: 80%;
  padding: 10px;
  font-size: 1.2em;
  text-align: center;
  border: 2px solid #1abc9c;
  border-radius: 5px;
  margin-bottom: 20px;
  outline: none;
  background: #fff;
  color: #000;
}

.spell-typing-game input:focus {
  border-color: #ffd700;
}

#gameMessage {
  margin-top: 15px;
  font-size: 1.2em;
}

#timer {
  margin-top: 10px;
  font-size: 1.3em;
  color: #e74c3c;
}
@media screen and (max-width: 767px) {
    .story .content {
        margin: 50px 20px;
    }
    .spell-typing-game {
        margin: 40px 20px;
    }
}