Mr. Kamiya isn't confronting the world…
神谷先生…
```
| Selector | What it matches |
| -------------------------- | -------------------------------------------------------------------------- |
| `.read-frog-subtitles-box` | the box both lines sit in — background, padding, corners, width, alignment |
| `.subtitles-main` | the original caption line |
| `.subtitles-translation` | the translated line |
The translation line carries two extra hooks:
* `lang` and `dir` follow your target language, so `.subtitles-translation[lang='ja']` and `.subtitles-translation[dir='rtl']` both work.
* `data-pending="true"` is set while a translation is still on its way back.
```css
.subtitles-translation[data-pending="true"] {
opacity: 0.35;
}
```