  /* ── Powers Section ── */
  .starts-with-section {
    margin: 12px 0;
    font-size: 1.05em;
    line-height: 1.6;
  }
  .starts-with-section strong {
    color: #aaa;
    font-size: 0.85em;
    letter-spacing: 0.05em;
  }
  .power-ref {
    position: relative;
    display: inline;
    cursor: default;
  }
  .power-icon-inline {
    height: 22px;
    width: 22px;
    vertical-align: middle;
    margin-right: 3px;
  }
  .starts-with-power {
    color: #f0c040;
    font-weight: bold;
  }
  .power-ref .power-tooltip {
    display: none;
    position: fixed;
    background: #1a1a2e;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 0.8rem;
    font-weight: normal;
    color: #ccc;
    width: max-content;
    max-width: 300px;
    z-index: 200;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 4px;
  }
  .power-ref:hover .power-tooltip {
    display: block;
  }

  .powers-section {
    margin-top: 16px;
  }
  .powers-section h3 {
    margin-bottom: 8px;
  }
  .power-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    background: #14141c;
    border-radius: 6px;
    margin-bottom: 6px;
  }
  .power-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }
  .power-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .power-name {
    color: #f0c040;
    font-weight: 700;
    font-size: 0.9rem;
  }
  .power-desc {
    color: #999;
    font-size: 0.82rem;
    line-height: 1.4;
  }

  /* ── Intent Icons ── */
  .intent-icons {
    display: inline-flex;
    gap: 3px;
    vertical-align: middle;
    cursor: default;
  }
  .intent-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    cursor: default;
    user-select: none;
  }
  .intent-icon img {
    width: 32px;
    height: 32px;
    vertical-align: middle;
  }

  .move-ref {
    position: relative;
    display: inline;
    cursor: default;
    color: #e0ddd4;
    font-weight: bold;
  }
  .move-ref .move-tooltip {
    display: none;
    position: fixed;
    background: #1a1a2e;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: normal;
    color: #ccc;
    width: max-content;
    max-width: 300px;
    z-index: 200;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    text-align: left;
  }
  .move-ref:hover .move-tooltip {
    display: block;
  }
  .move-tooltip-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-bottom: 6px;
    margin-bottom: 6px;
    border-bottom: 1px solid #333;
    color: #e0ddd4;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .move-tooltip-header .intent-icons {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    flex-shrink: 0;
  }
  .move-tooltip-header .intent-icon {
    width: 22px;
    height: 22px;
    line-height: 0;
  }
  .move-tooltip-header .intent-icons img {
    width: 22px;
    height: 22px;
    vertical-align: middle;
  }
  .move-tooltip-effect {
    display: block;
    color: #aaa;
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .move-note {
    color: #f0c040;
    font-size: 0.85em;
  }
