/* ========================================
   Characters Page - 雲の王国
   ======================================== */

/* ---- Viewer ---- */
.chara-viewer {
  background: rgba(7, 9, 26, 0.45);
}

/* ---- Stage ---- */
.chara-stage {
  padding: 48px 80px;
  text-align: center;
}

.chara-main-img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 70vh;70
  width: auto;
  height: auto;
  transition: opacity 0.3s ease;
}

/* ---- Selector ---- */
.chara-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 24px 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.chara-icon-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: #0d1226;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  padding: 0;
  flex-shrink: 0;
}

.chara-icon-btn:hover {
  border-color: rgba(200, 168, 75, 0.5);
  transform: translateY(-4px);
}

.chara-icon-btn.active {
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(200, 168, 75, 0.4);
}

.chara-icon-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---- Responsive ---- */
@media (max-width: 820px) {
  .chara-stage {
    padding: 28px 24px;
  }

  .chara-main-img {
    max-height: 45vh;
  }

  .chara-selector {
    gap: 14px;
    padding: 18px 20px 32px;
  }

  .chara-icon-btn {
    width: 62px;
    height: 62px;
  }
}
