/*
Theme Name: YouVideo Pro Child
Template: youvideo-pro
Version: 1.0
*/
.sidebar-table { width: 100%; border-collapse: collapse; }
.sidebar-table td { border: 1px solid #ddd; padding: 6px; vertical-align: top; }

/* ===== GAME PRELOAD ===== */

.game-preload-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-radius: 6px;
}

.game-preload-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  cursor: pointer;
  transition: background .3s ease;
}

.game-play-btn:hover {
  background: rgba(0,0,0,0.65);
}

.game-play-btn span {
  background: #d8201d;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 767px) {
  .game-play-btn span {
    font-size: 16px;
    padding: 12px 22px;
  }
}

