.party-name-generator-tool {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
  font-family: Arial, sans-serif;
  color: #1f1633;
}

.party-name-generator-tool * {
  box-sizing: border-box;
}

.pnt-card {
  background: #ffffff;
  border: 1px solid #eadfff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 45px rgba(48, 28, 95, 0.12);
}

.pnt-header {
  text-align: center;
  margin-bottom: 24px;
}

.pnt-label {
  display: inline-block;
  background: #6d3df5;
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pnt-header h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.15;
  color: #1b1238;
}

.pnt-header p {
  max-width: 680px;
  margin: 0 auto;
  color: #645875;
  font-size: 16px;
  line-height: 1.6;
}

.pnt-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 18px;
}

.pnt-field label {
  display: block;
  margin-bottom: 8px;
  color: #24183f;
  font-size: 14px;
  font-weight: 700;
}

.pnt-field select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #ddd3f4;
  border-radius: 14px;
  background: #ffffff;
  color: #211735;
  font-size: 15px;
  outline: none;
}

.pnt-field select:focus {
  border-color: #6d3df5;
  box-shadow: 0 0 0 4px rgba(109, 61, 245, 0.12);
}

.pnt-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.pnt-buttons button {
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: 0.2s ease;
}

.pnt-buttons button:hover {
  transform: translateY(-2px);
}

.pnt-generate-btn {
  background: #6d3df5;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(109, 61, 245, 0.25);
}

.pnt-copy-btn {
  background: #1f1732;
  color: #ffffff;
}

.pnt-reset-btn {
  background: #eee8ff;
  color: #291b4a;
}

.pnt-message {
  min-height: 22px;
  margin-bottom: 12px;
  color: #4d3d6f;
  font-size: 14px;
  font-weight: 700;
}

.pnt-output-box {
  background: #fbf9ff;
  border: 1px solid #eee6ff;
  border-radius: 20px;
  padding: 18px;
}

.pnt-output-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.pnt-output-header h3 {
  margin: 0;
  font-size: 20px;
  color: #1b1238;
}

.pnt-total {
  background: #f0eaff;
  color: #5b35c8;
  border-radius: 50px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
}

.pnt-results {
  display: grid;
  gap: 12px;
}

.pnt-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #eee7ff;
  border-radius: 16px;
  padding: 14px;
  color: #201634;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.pnt-number {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6d3df5;
  color: #ffffff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.pnt-empty {
  background: #ffffff;
  border: 1px dashed #d8c9ff;
  color: #716485;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .pnt-form {
    grid-template-columns: 1fr;
  }

  .pnt-card {
    padding: 22px;
  }

  .pnt-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pnt-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .party-name-generator-tool {
    padding: 10px;
  }

  .pnt-card {
    padding: 18px;
    border-radius: 18px;
  }

  .pnt-output-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .pnt-result-item {
    align-items: flex-start;
    font-size: 15px;
  }
}