body {
      background: #1c1c1c;
      font-family: 'Press Start 2P', cursive;
      color: #ffffff;
      text-align: center;
      padding: 40px 20px;
    }

    h1 {
      font-size: 1.2rem;
      margin-bottom: 20px;
      color: #800000;
      text-shadow: 2px 2px #ffcccc;
    }

    .cart-item {
      background: #2b2b2b;
      border: 2px solid #800000;
      border-radius: 8px;
      padding: 16px;
      margin: 20px auto;
      max-width: 320px;
      box-shadow: 0 0 8px rgba(255, 77, 77, 0.4);
      font-size: 0.6rem;
    }

    .cart-item p {
      margin-bottom: 10px;
    }

    .claimed {
      border-color: #00cc66;
      box-shadow: 0 0 8px rgba(0, 204, 102, 0.5);
    }

    .cart-item button {
      font-family: 'Press Start 2P', cursive;
      font-size: 0.6rem;
      padding: 8px 12px;
      border-radius: 6px;
      border: none;
      background: #ff4d4d;
      color: #fff;
      cursor: pointer;
      margin-top: 10px;
    }

    .cart-item button:hover {
      background: #ffffff;
      color: #800000;
    }

    button#back-btn {
      margin-top: 10px;
      font-size: 0.6rem;
      padding: 10px 16px;
      background: #ff4d4d;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    button#reset-btn {
      background: #800000;
    }

    button#back-btn:hover {
      background: #ffffff;
      color: #800000;
    }

    @media (max-width: 480px) {
      h1 { font-size: 1rem; }
      .cart-item { font-size: 0.5rem; padding: 14px; }
      .cart-item button, #back-btn, #reset-btn { font-size: 0.5rem; padding: 10px; }
    }