    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: radial-gradient(circle at top, #141e30, #243b55);
      color: #fff;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 40px 20px;
    }

    header {
      font-size: 3rem;
      font-weight: 800;
      text-align: center;
      background: linear-gradient(to right, #30cfd0, #330867);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 50px;
      animation: float 4s ease-in-out infinite;
      letter-spacing: 2px;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    #main {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
      width: 100%;
      max-width: 1100px;
    }

    .player {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 18px;
      padding: 30px;
      width: 340px;
      text-align: center;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(10px);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .player:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .player::before {
      content: attr(data-name);
      position: absolute;
      top: -16px;
      left: 20px;
      background: linear-gradient(to right, #ffdd00, #ff9900);
      color: #111;
      font-weight: bold;
      font-size: 14px;
      padding: 5px 14px;
      border-radius: 12px;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    }

    .player h2 {
      font-size: 22px;
      color: #00ffe5;
      margin-bottom: 15px;
      text-shadow: 1px 1px 3px #000;
    }

    .player img {
      width: 150px;
      height: 150px;
      margin-top: 20px;
      border-radius: 15px;
      border: 3px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease;
    }

    .player img:hover {
      transform: scale(1.08) rotate(4deg);
    }

    .player button {
      margin-top: 30px;
      padding: 15px 40px;
      font-size: 17px;
      font-weight: 600;
      color: #fff;
      background: linear-gradient(135deg, #ff416c, #ff4b2b);
      border: none;
      border-radius: 50px;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(255, 65, 108, 0.5);
      position: relative;
      overflow: hidden;
      z-index: 1;
      transition: all 0.4s ease-in-out;
    }

    .player button::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent);
      transition: all 0.5s ease;
      z-index: -1;
    }

    .player button:hover::before {
      left: 100%;
    }

    .player button:hover {
      transform: scale(1.05);
      background: linear-gradient(135deg, #36d1dc, #5b86e5);
      box-shadow: 0 6px 25px rgba(54, 209, 220, 0.6);
    }

    .player-footer-text {
      margin-top: 18px;
      font-size: 14px;
      color: #ccc;
      font-style: italic;
    }

    @media (max-width: 768px) {
      header {
        font-size: 2.2rem;
      }

      .player {
        width: 100%;
      }
    }
    @media (max-width: 480px) {
  .player img {
    width: 100px;
    height: 100px;
  }

  .player button {
    font-size: 14px;
    padding: 10px 24px;
  }

  .player-footer-text {
    font-size: 12px;
  }

  body {
    padding: 20px 10px;
  }
}
