.pvp-trigger {
    position: relative;
    width: 80px;
    height: 80px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
  }
  
  .pulse-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255,0,0,0.4);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
  }
  
  .play-icon {
    position: relative;
    font-size: 2rem;
    color: #fff;
    z-index: 1;
  }
  
  /* Popup Styles */
  .pvp-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .pvp-popup iframe {
    width: 90vw;
    height: 50vh;
  }
  
  .pvp-popup .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
  }
  