 body {
      background: url("https://i0.wp.com/brawlstar.store/wp-content/uploads/2024/09/brawl_stars_stickers-001-1.jpg?fit=1024%2C1024&ssl=1") center/cover no-repeat;
      position: relative;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background: inherit;
      filter: blur(10px);
      z-index: -1;
    }
    .progress-wrapper {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      border: 10px solid #22c55e; 
      display: flex;
      align-items: center;
      justify-content: center;
      background: #1e293b;
      color: white;
      font-size: 2rem;
      font-weight: bold;
      box-shadow: 0 0 20px rgba(34,197,94,0.7);
    }
    .fade-in {
      animation: fadeIn 0.5s ease-in-out;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.8); }
      to { opacity: 1; transform: scale(1); }
    }