
body.game-body {
  background-color: #000;
  color: #ffffff;
  font-family: 'Press Start 2P', cursive;
  margin: 0;
  padding: 1rem;
  line-height: 1.8;
}

/* タイトル */
.site-title {
  font-size: 4rem;
  color: #00ff00;
  text-align: center;
  border: 10px double #00ff00;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 10px #00ff00;
}

/* 本文の枠 */
.profile-section {
  background-color: #111;
  border: 3px solid #a2ff00;
  margin: 2rem auto;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  box-shadow: 4px 4px 0 #a2ff00;
  animation: fadeIn 1s ease-in-out;
}

/* プロフィール画像枠 */
.profile-image-wrapper {
  text-align: start;
  margin-bottom: 2rem;
}

/* プロフィール画像 */
.profile-image {
  width: 150px;
  height: 150px;
  image-rendering: pixelated; 
  border: 4px solid #00ffff;
  box-shadow: 4px 4px 0 #00ffff;
  background-color: #000;
}

/*valotant画像*/
.valorant-image {
  width: 450px;
  height: 252px;
  image-rendering: pixelated; 
  border: 4px solid #00ffff;
  box-shadow: 4px 4px 0 #00ffff;
  background-color: #000;
}

/*Xのリンク*/
.xlink{ 
  width: 80px;
  height: 80px;
  image-rendering: pixelated;
  background-color:#000;
  border-radius: 50%;
}


/*セクション タイトル */
.section-title {
  font-size: 1rem;
  color: #ffffff;
  border-bottom: 2px dashed #ffffff;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

/* リスト */
.section-list {
  list-style: none;
  padding-left: 0;
}

.section-list li {
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 1.5rem;
}

.section-list li::before {
  content: "■";
  position: absolute;
  left: 0;
  color: #00ff88;
}
/* チーム・エージェントの画像表示に対応 */
.image-column {
   display: flex;
  justify-content: center;
  gap: 2rem;
   margin-top: 1rem;
}

.entity-image {
  width: 290px;
  height: auto;
  image-rendering: pixelated;
  border: 3px solid #00ffff;
  background-color: #000;
  box-shadow: 3px 3px 0 #00ffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* エージェントカードの横並び表示 */
.entity-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.entity-card {
  width: 300px;
  padding: 1rem;
  background-color: #111;
  border: 3px solid #ff00ff;
  box-shadow: 4px 4px 0 #ff00ff;
  text-align: center;
  font-size: 0.8rem;
}

a {
  text-decoration: none;
}


/* アニメーション */
@keyframes blinkTitle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes fadeIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
