:root {
  --pc-panel: #0f1726;
  --pc-ink: #eaf1ff;
  --pc-muted: #a6b6d8;
  --pc-blue: #70a6ff;
  --pc-red: #ff5478;
  --pc-ring: rgba(112, 166, 255, .25);
}

.pc-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 16px;
  color: var(--pc-ink)
}

.pc-title {
  text-align: center;
  margin: 0 0 18px;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.1;
  color: var(--pc-blue) !important;
  text-shadow: 0 3px 18px rgba(112, 166, 255, .25);
}

.pc-title:after {
  content: "";
  display: block;
  width: 96px;
  height: 6px;
  border-radius: 6px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, var(--pc-blue), transparent);
}

.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}

@media (max-width:900px) {
  .pc-grid {
    grid-template-columns: 1fr
  }
}

.pc-card {
  background: var(--pc-panel);
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 0 0 1px var(--pc-ring), 0 12px 40px rgba(0, 0, 0, .35), inset 0 0 30px rgba(112, 166, 255, .08);
  position: relative;
}

.pc-pros:before,
.pc-cons:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  border: 1px solid transparent;
}

.pc-pros:before {
  box-shadow: 0 0 0 2px rgba(112, 166, 255, .35), inset 0 0 24px rgba(112, 166, 255, .08)
}

.pc-cons:before {
  box-shadow: 0 0 0 2px rgba(255, 84, 120, .32), inset 0 0 24px rgba(255, 84, 120, .08)
}

.pc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 28px;
  margin: 2px 0 12px;
  color: var(--pc-ink)
}

.pc-badge span:last-child {
  background: #0b1220;
  border-radius: 8px;
  padding: 6px 12px;
  box-shadow: inset 0 0 0 1px var(--pc-ring)
}

.pc-list {
  list-style: none;
  margin: 0;
  padding: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px
}

.pc-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  line-height: 1.45
}

.pc-ico {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  flex: 0 0 22px;
  display: inline-grid;
  place-items: center;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .06), inset 0 0 12px rgba(255, 255, 255, .06)
}

.pc-ico.ok {
  background: radial-gradient(60% 60% at 50% 40%, rgba(112, 166, 255, .35), rgba(112, 166, 255, .18));
  box-shadow: 0 0 0 1px rgba(112, 166, 255, .45), inset 0 0 14px rgba(112, 166, 255, .28)
}

.pc-ico.no {
  background: radial-gradient(60% 60% at 50% 40%, rgba(255, 84, 120, .35), rgba(255, 84, 120, .18));
  box-shadow: 0 0 0 1px rgba(255, 84, 120, .45), inset 0 0 14px rgba(255, 84, 120, .28)
}

.pc-ico.ok:before,
.pc-ico.ok:after,
.pc-ico.no:before,
.pc-ico.no:after {
  content: "";
  position: absolute;
  background: #0b0e17;
  border-radius: 2px
}

.pc-ico.ok:before {
  width: 10px;
  height: 2px;
  transform: rotate(50deg) translate(-1px, 8px);
}

.pc-ico.ok:after {
  width: 16px;
  height: 2px;
  transform: rotate(-45deg) translate(-3px, 1px);
}

.pc-ico.no:before {
  width: 16px;
  height: 2px;
  transform: rotate(45deg)
}

.pc-ico.no:after {
  width: 16px;
  height: 2px;
  transform: rotate(-45deg)
}

.pc-ico.ok:after,
.pc-pros .pc-ico.ok:before {
    left: 8px;
    bottom: 12px;
}