    html { height: 100%; }
    body { background: #1c242c; color: #fff; padding: 20px; }
    .watch-container { max-width: 850px; margin: auto; background: #ebebeb; color: black; border-radius: 10px; overflow: hidden; }
    .watch-banner { position: relative; height: 350px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; border-radius: 10px; overflow: hidden; }
    .team-half { flex: 1; display: flex; justify-content: center; align-items: center; height: 100%; transition: opacity 1s ease; }
    .team-logo { max-height: 90px; z-index: 1; }
    .hidden { opacity: 0 !important; }
    


    #skyEmbed {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      display: none;
      z-index: 0;
      background-color: black;
    }

    .play-btn {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(255,255,255,0.5);
      border-radius: 50%;
      padding: 20px;
      cursor: pointer;
      z-index: 2;
      transition: opacity 0.5s ease;
    }

    .play-btn svg { width: 60px; height: 60px; }

    .watch-text {
      position: absolute;
      top: 30%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: bold;
      color: white;
      pointer-events: none;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    }
    
    
    
    
    .team-gradient-bg {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}




  .real-loading {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .real-loading .spinner {
    width: 60px;
    height: 60px;
    border: 8px solid #333;
    border-top: 8px solid #09f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

    

    .game-info { padding: 15px; }
    .game-info h4 { margin-bottom: 10px; }
    .icon { margin-right: 6px; }

    .popup-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.8);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .popup-box {
      background: #fff;
      color: #000;
      padding: 30px;
      max-width: 500px;
      text-align: center;
      border-radius: 8px;
      position: relative;
    }

    .popup-icon {
      font-size: 40px;
      background: yellow;
      color: black;
      width: 50px; height: 50px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: -25px;
      left: calc(50% - 25px);
    }

    .popup-btn {
      background: #00c853;
      color: white;
      padding: 12px 20px;
      border: none;
      font-size: 16px;
      border-radius: 5px;
      margin: 20px 0;
      cursor: pointer;
    }

    .popup-footer { font-size: 13px; color: #333; }

    .live, .ended, .upcoming {
      padding: 0.1rem 0.3rem;
      font-weight: bold;
      color: white;
      border-radius: 0.25rem;
    }

    .live {
      background-color: #7f171d;
      animation: pulse 1.5s infinite;
    }

    .ended { background-color: #6c757d; }
    .upcoming { background-color: #8cbdd1; }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
      50% { box-shadow: 0 0 12px 6px rgba(220, 53, 69, 0.5); }
      100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
    }
    
    


    .event-card {
      margin-bottom: 2rem;
      border-left: 5px solid #dc3545;
      background: #fff;
    }
    .fight {
      padding: 0.5rem 1rem;
      border-bottom: 1px solid #e9ecef;
    }
    .fight:last-child {
      border-bottom: none;
    }
    .fight-status {
      font-weight: bold;
      margin-left: 5px;
      color: #007bff;
    }
    .fight-title {
      font-weight: 500;
    }
