.game-video-player {
  position: relative; isolation: isolate; overflow: hidden; width: 100%; min-width: 0;
  aspect-ratio: 16 / 9; border: 1px solid #33392e; border-radius: 12px;
  background: #070b09; color: #e9e6d8;
}
.game-video-player .game-video-element {
  display: block; width: 100%; height: 100%; min-height: 0; margin: 0;
  border: 0; border-radius: 0; background: #070b09; object-fit: contain;
}
.game-video-cover {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 14px; padding: 24px;
  background: radial-gradient(ellipse at 50% 40%, #22281c 0%, #0b100d 80%);
  text-align: center;
}
.game-video-player .game-video-message { margin: 0; font-size: 14px; line-height: 1.6; color: #bfc1b3; }
.game-video-player .game-video-play {
  min-height: 44px; padding: 11px 24px; border: 1px solid #b69c54; border-radius: 9px;
  background: #d0b873; color: #171b13; font: inherit; font-size: 14px; font-weight: 700; cursor: pointer;
}
.game-video-player .game-video-play:hover { background: #e0c77f; }
.game-video-player .game-video-play:focus-visible { outline: 2px solid #f6db93; outline-offset: 4px; }
.game-video-loading {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%); margin: 0;
  max-width: calc(100% - 28px); padding: 8px 13px; border-radius: 8px;
  background: rgb(15 20 15 / 88%); color: #e3d6af; font-size: 13px; line-height: 1.5;
  pointer-events: none; text-align: center;
}
:root[data-baoku-theme="light"] .game-video-player { border-color: #d7cfba; }
:root[data-baoku-theme="light"] .game-video-cover { background: radial-gradient(ellipse at 50% 40%, #fffdf5 0%, #eeeadd 90%); }
:root[data-baoku-theme="light"] .game-video-player .game-video-message { color: #655f4d; }
:root[data-baoku-theme="light"] .game-video-player .game-video-play { background: #8a6e2f; border-color: #8a6e2f; color: #fffdf6; }
:root[data-baoku-theme="light"] .game-video-player .game-video-play:hover { background: #735a23; }
:root[data-baoku-theme="light"] .game-video-player .game-video-play:focus-visible { outline-color: #8a6e2f; }
@media (max-width: 600px) {
  .game-video-cover { padding: 16px; gap: 10px; }
  .game-video-player .game-video-message { font-size: 13px; }
}
