
    .v-title {
      font-size: 28px;
      color: #222;
    }

    .v-card {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      background: #eee;
      cursor: pointer;
    }

    .v-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .v-play img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 32px;
      color: #fff;
      background: #28a745;
      width: 50px;
      height: 50px;
      line-height: 50px;
      text-align: center;
      border-radius: 50%;
      transition: 0.3s;
    }

    .v-play:hover {
      background: #1e7d35;
    }

    /* Pagination */
    .v-page {
      display: flex;
      justify-content: center;
      gap: 8px;
    }

    .v-page .pg {
      padding: 6px 12px;
      border: 1px solid #28a745;
      color: #28a745;
      border-radius: 4px;
      text-decoration: none;
      font-size: 14px;
      transition: 0.3s;
    }

    .v-page .pg:hover,
    .v-page .pg.active {
      background: #28a745;
      color: #fff;
    }

    /* Stats Bar */
    .v-stats {
      background: #28a745;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      padding: 20px;
      color: #fff;
    }

    .v-stats .s-box {
      min-width: 120px;
      font-size: 16px;
      text-align: center;
    }

    /* ===== Modal ===== */
    .v-modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.8);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }

    .v-m-box {
      position: relative;
      width: 80%;
      max-width: 800px;
      aspect-ratio: 16/9;
    }

    .v-m-box iframe {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 8px;
    }

    .v-close {
      position: absolute;
      top: -30px;
      right: -30px;
      font-size: 30px;
      color: #fff;
      cursor: pointer;
    }
