   

  body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #f0f0f0;
    font-family: 'Poppins', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 40px 20px 80px;
    user-select: none;
    position: relative;
  }

  .Title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #00ffe7, 0 0 30px #00ffe7;
    letter-spacing: 2px;
    text-align: center;
  }

  .moves-container {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .move-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 3px solid #00ffe7;
    height: 130px;
    width: 130px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0;
    transition: 
      transform 0.3s ease,
      box-shadow 0.3s ease,
      background-color 0.3s ease;
    box-shadow: 0 0 15px #00ffe7;
    position: relative;
    overflow: hidden;
  }

  .move-btn:hover {
    transform: scale(1.15);
    background-color: #00ffe7;
    box-shadow: 0 0 30px #00ffe7;
  }

  .move-btn img {
    height: 70px;
    pointer-events: none;
    filter: drop-shadow(0 0 5px #00ffe7);
    transition: filter 0.3s ease;
  }

  .move-btn:hover img {
    filter: drop-shadow(0 0 15px #fff);
  }

  .js-moves {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 40px;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    color: #00ffe7;
    text-shadow: 0 0 10px #00ffe7;
    min-height: 70px;
    transition: opacity 0.5s ease;
    flex-wrap: wrap;
  }

  .move-icon {
    height: 60px;
    filter: drop-shadow(0 0 5px #00ffe7);
  }

  .js-result {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 25px;
    color: #fff;
    text-shadow: 0 0 15px #00ff90;
    min-height: 40px;
    animation: glow 1.5s ease infinite alternate;
    text-align: center;
  }

  @keyframes glow {
    0% {
      text-shadow: 0 0 10px #00ff90, 0 0 20px #00ff90;
    }
    100% {
      text-shadow: 0 0 30px #00ff90, 0 0 60px #00ff90;
    }
  }

  .js-score {
    margin-top: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #00ffcc;
    text-shadow: 0 0 10px #00ffcc;
    min-height: 30px;
    text-align: center;
  }

  .reset-score-btn {
    background-color: #00ffe7;
    border: none;
    font-size: 1.1rem;
    padding: 10px 25px;
    cursor: pointer;
    margin-top: 40px;
    border-radius: 30px;
    font-weight: 700;
    color: #000;
    box-shadow: 0 0 20px #00ffe7;
    transition: 
      background-color 0.3s ease,
      color 0.3s ease,
      box-shadow 0.3s ease;
    align-self: center;
  }

  .reset-score-btn:hover {
    background-color: #00ccaa;
    color: #fff;
    box-shadow: 0 0 40px #00ccaa;
    transform: scale(1.05);
  }

  .footer-text {
    position: fixed;
    bottom: 15px;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #00ffe7;
    letter-spacing: 1.5px;
    text-shadow:
      0 0 5px #00ffe7,
      0 0 10px #00ffe7,
      0 0 20px #00ffea,
      0 0 30px #00ffaa,
      0 0 40px #00ffa0;
    animation: shineText 3s linear infinite;
    user-select: none;
  }
  @keyframes shineText {
    0% {
      text-shadow:
        0 0 5px #00ffe7,
        0 0 10px #00ffe7,
        0 0 20px #00ffea,
        0 0 30px #00ffaa,
        0 0 40px #00ffa0;
      color: #00ffe7;
    }
    50% {
      text-shadow:
        0 0 15px #00ffea,
        0 0 30px #00ffaa,
        0 0 50px #00ffa0,
        0 0 60px #00ff99,
        0 0 70px #00ff88;
      color: #00ff99;
    }
    100% {
      text-shadow:
        0 0 5px #00ffe7,
        0 0 10px #00ffe7,
        0 0 20px #00ffea,
        0 0 30px #00ffaa,
        0 0 40px #00ffa0;
      color: #00ffe7;
    }
  }


  @media (max-width: 600px) {
    .Title {
      font-size: 2rem;
    }

    .move-btn {
      height: 100px;
      width: 100px;
      margin-right: 8px;
    }

    .move-btn img {
      height: 55px;
    }

    .js-moves {
      font-size: 1.2rem;
      min-height: 60px;
      gap: 10px;
    }

    .move-icon {
      height: 45px;
    }

    .js-result {
      font-size: 1.5rem;
    }

    .js-score {
      font-size: 1.2rem;
    }

    .reset-score-btn {
      font-size: 1rem;
      padding: 8px 20px;
      margin-top: 30px;
    }
  }

  @media (max-width: 400px) {
    .move-btn {
      height: 90px;
      width: 90px;
      margin-right: 6px;
    }

    .move-btn img {
      height: 45px;
    }

    .js-moves {
      font-size: 1rem;
      min-height: 50px;
      gap: 8px;
    }

    .move-icon {
      height: 40px;
    }

    .js-result {
      font-size: 1.2rem;
    }

    .js-score {
      font-size: 1rem;
    }

    .reset-score-btn {
      font-size: 0.9rem;
      padding: 7px 16px;
      margin-top: 25px;
    }
  }