.pseb-wrap {
  color: #fff;
}

.pseb-head {
  margin: 0 0 10px;
}

.pseb-eventbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 193, 7, .28);
  border-radius: 12px;
  background: rgba(15, 15, 15, .82);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.pseb-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex-wrap: wrap;
}

.pseb-duration,
.pseb-topup-status {
  font-size: .94rem;
  font-weight: 800;
}

.pseb-topup-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.pseb-topup-status.is-available .pseb-topup-status-icon,
.pseb-topup-status.is-available .pseb-topup-status-text {
  color: #77e37a;
}

.pseb-topup-status.is-unavailable .pseb-topup-status-icon,
.pseb-topup-status.is-unavailable .pseb-topup-status-text {
  color: #ff6b6b;
}

.pseb-toolbar,
.pseb-prefbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pseb-prefbar {
  gap: 9px;
}

.pseb-topup-action {
  display: flex;
  justify-content: flex-end;
}

.pseb-calc-toggle,
.pseb-action-btn,
.pseb-chain-btn,
.pseb-custom-modal-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 193, 7, .38);
  border-radius: 999px;
  background: rgba(14, 14, 14, .92);
  color: #fff;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.pseb-calc-toggle:hover,
.pseb-action-btn:hover,
.pseb-chain-btn:hover,
.pseb-custom-modal-action:hover,
.pseb-help-trigger:hover {
  border-color: #ffc107;
  box-shadow: 0 0 0 1px rgba(255, 193, 7, .22);
}

.pseb-calc-toggle-track {
  position: relative;
  width: 42px;
  height: 23px;
  flex: 0 0 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  transition: background .2s ease;
}

.pseb-calc-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s ease;
}

.pseb-calc-toggle.is-active .pseb-calc-toggle-track {
  background: #ffc107;
}

.pseb-calc-toggle.is-active .pseb-calc-toggle-knob {
  transform: translateX(19px);
}

.pseb-calc-toggle-text {
  font-size: .75rem;
  font-weight: 800;
}

.pseb-help-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 193, 7, .38);
  border-radius: 50%;
  background: rgba(14, 14, 14, .92);
  color: #ffd700;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.pseb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.pseb-ranking-note {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: 28px;
  margin: 0 2px 8px;
  color: #ffd700;
  font-size: .76rem;
  font-weight: 800;
}

.pseb-ranking-note span {
  color: rgba(255, 255, 255, .68);
  font-weight: 700;
}

.pseb-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 193, 7, .42);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(24, 24, 24, .94), rgba(10, 10, 10, .9));
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .025);
}

.pseb-card.is-best-value {
  border-color: rgba(255, 215, 0, .78);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .28), 0 0 18px rgba(255, 193, 7, .08), inset 0 1px 0 rgba(255, 255, 255, .035);
}

.pseb-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 230, 110, .58), transparent);
  pointer-events: none;
}

.pseb-card-main {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 104px;
}

.pseb-card-media-col,
.pseb-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.pseb-card-media {
  position: relative;
  width: 100%;
  min-height: 96px;
}

.pseb-card-image {
  display: block;
  width: auto;
  max-width: 94px;
  height: auto;
  max-height: 94px;
  object-fit: contain;
}

.pseb-bundle-number {
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 7px;
  border: 1px solid rgba(255, 193, 7, .48);
  border-radius: 999px;
  background: rgba(18, 18, 18, .94);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
  text-shadow: 0 2px 7px rgba(0, 0, 0, .6);
}

.pseb-card-info {
  min-width: 0;
}

.pseb-card-title {
  margin: 0 0 8px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 1.6vw, 1.48rem);
  font-weight: 700;
  line-height: 1.13;
}

.pseb-chain-title {
  margin: -2px 0 9px;
  color: #d8d8d8;
  font-size: .92rem;
  font-weight: 700;
}

.pseb-price-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.pseb-price-original {
  position: relative;
  display: inline-flex;
  color: #d96464;
  font-size: .82rem;
  font-weight: 800;
  opacity: .96;
}

.pseb-price-original span {
  position: relative;
  display: inline-block;
  padding: 0 2px;
}

.pseb-price-original span::after {
  content: "";
  position: absolute;
  top: 52%;
  right: -3px;
  left: -3px;
  height: 2px;
  background: #ff6868;
  box-shadow: 0 0 4px rgba(255, 90, 90, .3);
  transform: rotate(-8deg);
}

.pseb-price-sale {
  color: #ffd700;
  font-size: 1.62rem;
  font-weight: 900;
  line-height: 1;
}

.pseb-discount-pill,
.pseb-value-ratio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.pseb-discount-pill {
  border: 1px solid rgba(255, 193, 7, .56);
  background: rgba(255, 193, 7, .07);
  color: #ffd700;
}

.pseb-limit {
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
}

.pseb-items-wrap,
.pseb-pact-wrap {
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 215, 0, .2);
}

.pseb-items-wrap {
  display: flex;
  flex-direction: column;
}

.pseb-card > .pseb-items-wrap,
.pseb-card > .pseb-pact-wrap,
.pseb-card > .pseb-chain {
  flex: 1 1 auto;
}

.pseb-card > .pseb-pact-wrap,
.pseb-card > .pseb-chain {
  display: flex;
  flex-direction: column;
}

.pseb-pact-bonus-items,
.pseb-chain-track {
  flex: 1 1 auto;
}

.pseb-items-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin: 0 0 7px;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
}

.pseb-items-heading-value {
  color: #ddd;
  font-size: .76rem;
  text-align: right;
}

.pseb-items {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 215, 0, .1);
}

.pseb-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 215, 0, .1);
}

.pseb-item-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.pseb-item-icon {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.pseb-item-icon--empty {
  border: 1px solid rgba(255, 193, 7, .28);
  border-radius: 7px;
  background: rgba(255, 255, 255, .05);
}

.pseb-item-main {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex-wrap: wrap;
}

.pseb-item-name {
  min-width: 0;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.pseb-item-qty {
  color: #ffd700;
  font-size: .8rem;
  font-weight: 900;
  white-space: nowrap;
}

.pseb-item-line-value {
  min-width: max-content;
  color: #ddd;
  font-size: .8rem;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.pseb-item-line-value-amount {
  color: #fff;
}

.pseb-items-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 11px;
  margin-top: auto;
  color: #fff;
  font-size: .9rem;
  font-weight: 900;
}

.pseb-items-total-values {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  min-width: 0;
  flex-wrap: wrap;
}

.pseb-ev-value,
.pseb-chain-total-ev {
  color: #ffd700;
  font-size: 1rem;
}

.pseb-value-ratio {
  border: 1px solid rgba(80, 210, 105, .55);
  background: rgba(52, 180, 79, .09);
  color: #67dc7b;
}

.pseb-value-ratio.is-low {
  border-color: rgba(255, 103, 103, .52);
  background: rgba(220, 75, 75, .09);
  color: #ff7c7c;
}

.pseb-savings-percent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border: 1px solid rgba(255, 193, 7, .48);
  border-radius: 999px;
  background: rgba(255, 193, 7, .08);
  color: #ffd700;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.pseb-savings-percent.is-low {
  border-color: rgba(255, 103, 103, .52);
  background: rgba(220, 75, 75, .09);
  color: #ff7c7c;
}

.pseb-chain-page {
  display: none;
}

.pseb-chain-page.is-active {
  display: block;
}

.pseb-chain-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 13px;
  flex-wrap: wrap;
}

.pseb-chain-btn {
  min-height: 34px;
  padding: 7px 11px;
  font-size: .76rem;
}

.pseb-chain-btn:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.pseb-chain-indicator {
  min-width: 58px;
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
  text-align: center;
}

.pseb-chain-note {
  margin: 13px 0 8px;
  color: #ffd700;
  font-size: .78rem;
  font-style: italic;
  line-height: 1.4;
  text-align: center;
}

.pseb-chain-totals {
  display: grid;
  gap: 7px;
  margin-top: 9px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 215, 0, .2);
  color: #ffd700;
  font-size: .86rem;
  font-weight: 900;
  text-align: center;
}

.pseb-chain-total-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}

.pseb-pact-main-item,
.pseb-pact-heroes {
  margin: 0;
  padding: 0;
}

.pseb-pact-main-item-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 0 2px;
  border-top: 1px solid rgba(255, 215, 0, .1);
  flex-wrap: wrap;
}

.pseb-pact-main-item-title {
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
}

.pseb-pact-main-item-qty {
  color: #ffd700;
  font-size: .8rem;
  font-weight: 900;
}

.pseb-pact-hero-list {
  display: flex;
  gap: 7px 11px;
  margin: 0;
  padding: 8px 0 0;
  border-top: 1px solid rgba(255, 215, 0, .1);
  list-style: none;
  flex-wrap: wrap;
}

.pseb-pact-hero-item {
  margin: 0;
  font-size: .8rem;
}

.pseb-pact-hero-item a {
  color: #ffd700;
  font-weight: 800;
  text-decoration: none;
}

.pseb-pact-hero-item a:hover {
  text-decoration: underline;
}

.pseb-pact-bonus-items {
  margin-top: 12px;
}

.pseb-pact-meta {
  display: grid;
  gap: 7px;
}

.pseb-choice-featured {
  display: grid;
  gap: 18px;
  margin: 0 0 26px;
}

.pseb-choice-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 193, 7, .68);
  border-radius: 15px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 193, 7, .08), transparent 30%),
    linear-gradient(145deg, rgba(25, 25, 25, .97), rgba(8, 8, 8, .94));
  box-shadow: 0 18px 42px rgba(0, 0, 0, .3), 0 0 22px rgba(255, 193, 7, .06);
}

.pseb-choice-card-accent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700 24%, #fff0a3 50%, #ffd700 76%, transparent);
  box-shadow: 0 0 13px rgba(255, 215, 0, .42);
}

.pseb-choice-header {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, .22);
}

.pseb-choice-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}

.pseb-choice-image {
  display: block;
  width: auto;
  max-width: 175px;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}

.pseb-choice-info {
  min-width: 0;
}

.pseb-choice-kicker {
  display: inline-flex;
  margin: 0 0 7px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 193, 7, .46);
  border-radius: 999px;
  background: rgba(255, 193, 7, .08);
  color: #ffd700;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
}

.pseb-choice-title {
  margin: 0 0 10px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  font-weight: 700;
  line-height: 1.08;
}

.pseb-choice-price-row {
  margin-bottom: 8px;
}

.pseb-choice-instructions {
  max-width: 700px;
  margin: 11px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.45;
}

.pseb-choice-groups {
  display: grid;
  gap: 17px;
  margin-top: 20px;
}

.pseb-choice-group {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 215, 0, .16);
  border-radius: 11px;
  background: rgba(0, 0, 0, .22);
}

.pseb-choice-group-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 11px;
}

.pseb-choice-group-heading strong {
  color: #fff;
  font-size: 1rem;
}

.pseb-choice-group-heading span {
  color: rgba(255, 255, 255, .58);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pseb-choice-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}

.pseb-choice-option {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 76px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 10px;
  background: rgba(22, 22, 22, .88);
  color: #fff;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.pseb-choice-option:hover {
  border-color: rgba(255, 193, 7, .54);
  background: rgba(34, 30, 18, .9);
  transform: translateY(-1px);
}

.pseb-choice-option.is-selected {
  border-color: #ffd700;
  background: linear-gradient(145deg, rgba(78, 60, 5, .36), rgba(25, 22, 12, .92));
  box-shadow: 0 0 0 1px rgba(255, 215, 0, .18), 0 7px 18px rgba(0, 0, 0, .2);
}

.pseb-choice-option.is-optimal:not(.is-selected) {
  border-color: rgba(91, 216, 113, .5);
}

.pseb-choice-option-check {
  position: absolute;
  top: 6px;
  right: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #ffd700;
  color: #111;
  font-size: .7rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .18s ease, transform .18s ease;
}

.pseb-choice-option.is-selected .pseb-choice-option-check {
  opacity: 1;
  transform: scale(1);
}

.pseb-choice-option-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}

.pseb-choice-option-icon {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.pseb-choice-option-icon--empty {
  border: 1px solid rgba(255, 193, 7, .3);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

.pseb-choice-option-copy {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex-wrap: wrap;
}

.pseb-choice-option-name {
  min-width: 0;
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.pseb-choice-option-qty,
.pseb-choice-option-value {
  color: #ffd700;
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
}

.pseb-choice-option-value {
  padding-right: 17px;
}

.pseb-choice-optimal-label {
  grid-column: 2 / -1;
  color: #69df7d;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.pseb-choice-optimal-label[hidden] {
  display: none;
}

.pseb-choice-evaluation {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .9fr) auto;
  align-items: stretch;
  gap: 12px;
  margin-top: 20px;
}

.pseb-choice-evaluation-block {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 215, 0, .2);
  border-radius: 10px;
  background: rgba(0, 0, 0, .3);
  flex-wrap: wrap;
}

.pseb-choice-evaluation-current {
  border-color: rgba(255, 215, 0, .44);
}

.pseb-choice-evaluation-current.is-low {
  border-color: rgba(255, 103, 103, .48);
}

.pseb-choice-evaluation-label {
  color: rgba(255, 255, 255, .7);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pseb-choice-selected-value,
.pseb-choice-best-value {
  color: #ffd700;
  font-size: 1.18rem;
  font-weight: 900;
}

.pseb-choice-selected-dollar,
.pseb-choice-selected-percent,
.pseb-choice-selected-ratio,
.pseb-choice-best-savings {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid rgba(91, 216, 113, .46);
  border-radius: 999px;
  background: rgba(64, 190, 87, .08);
  color: #69df7d;
  font-size: .7rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.pseb-choice-evaluation-current.is-low .pseb-choice-selected-dollar,
.pseb-choice-evaluation-current.is-low .pseb-choice-selected-percent,
.pseb-choice-evaluation-current.is-low .pseb-choice-selected-ratio {
  border-color: rgba(255, 103, 103, .48);
  background: rgba(220, 75, 75, .08);
  color: #ff7c7c;
}

.pseb-choice-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 193, 7, .5);
  border-radius: 10px;
  background: rgba(255, 193, 7, .08);
  color: #ffd700;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
  transition: border-color .18s ease, background .18s ease;
}

.pseb-choice-reset:hover {
  border-color: #ffd700;
  background: rgba(255, 193, 7, .14);
}

.pseb-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.pseb-modal.is-open {
  display: flex;
}

.pseb-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .74);
  backdrop-filter: blur(2px);
}

.pseb-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 30px));
  max-width: 760px;
  max-height: min(80vh, 760px);
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, .28);
  border-radius: 16px;
  background: #111;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .44);
  color: #fff;
}

.pseb-modal-scroll {
  max-height: min(80vh, 760px);
  padding: 22px;
  overflow: auto;
}

.pseb-modal-title {
  margin: 0 0 10px;
  color: #ffd700;
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1.2;
}

.pseb-modal-dates {
  margin-bottom: 14px;
  color: #ddd;
}

.pseb-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.pseb-custom-modal-message,
.pseb-help-copy {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

.pseb-help-copy p {
  margin: 0 0 15px;
}

.pseb-custom-modal-action-wrap {
  margin-top: 26px;
  text-align: center;
}

.pseb-modal-open {
  overflow: hidden;
}

.pseb-notice {
  padding: 14px 16px;
  border: 1px solid rgba(255, 215, 0, .22);
  border-radius: 10px;
  background: rgba(255, 215, 0, .06);
  color: #fff;
}

@media (max-width: 1050px) {
  .pseb-eventbar {
    grid-template-columns: 1fr auto;
  }

  .pseb-toolbar {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .pseb-topup-action {
    grid-column: 2;
    grid-row: 1;
  }

  .pseb-card-main {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
  }

  .pseb-card-image {
    max-width: 78px;
    max-height: 78px;
  }

  .pseb-card-media {
    min-height: 82px;
  }

  .pseb-choice-evaluation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pseb-choice-reset {
    grid-column: 1 / -1;
    min-height: 44px;
  }
}

@media (max-width: 860px) {
  .pseb-grid {
    grid-template-columns: 1fr;
  }

  .pseb-card-main {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 16px;
  }

  .pseb-card-image {
    max-width: 94px;
    max-height: 94px;
  }

  .pseb-card-media {
    min-height: 96px;
  }

  .pseb-choice-header {
    grid-template-columns: 145px minmax(0, 1fr);
    gap: 18px;
  }

  .pseb-choice-media {
    min-height: 120px;
  }

  .pseb-choice-image {
    max-width: 135px;
    max-height: 125px;
  }
}

@media (max-width: 640px) {
  .pseb-eventbar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 13px;
  }

  .pseb-meta-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .pseb-toolbar,
  .pseb-topup-action {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    justify-content: stretch;
  }

  .pseb-prefbar {
    width: 100%;
  }

  .pseb-calc-toggle {
    flex: 1 1 auto;
  }

  .pseb-action-btn {
    width: 100%;
  }

  .pseb-card {
    padding: 14px;
  }

  .pseb-choice-card {
    padding: 15px;
  }

  .pseb-choice-header {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 16px;
  }

  .pseb-choice-media {
    justify-content: flex-start;
    min-height: 88px;
  }

  .pseb-choice-image {
    max-width: 120px;
    max-height: 100px;
  }

  .pseb-choice-title {
    font-size: 1.55rem;
  }

  .pseb-choice-group {
    padding: 12px;
  }

  .pseb-choice-options,
  .pseb-choice-evaluation {
    grid-template-columns: 1fr;
  }

  .pseb-choice-reset {
    grid-column: auto;
  }

  .pseb-choice-evaluation-block {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .pseb-ranking-note {
    align-items: flex-end;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 9px;
  }

  .pseb-card-main {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
    min-height: 80px;
  }

  .pseb-card-media {
    min-height: 74px;
  }

  .pseb-card-image {
    max-width: 72px;
    max-height: 72px;
  }

  .pseb-bundle-number {
    min-width: 31px;
    height: 31px;
    padding: 0 5px;
    font-size: .82rem;
  }

  .pseb-card-title {
    font-size: 1.13rem;
  }

  .pseb-price-sale {
    font-size: 1.36rem;
  }

  .pseb-items-total {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .pseb-items-total-values {
    width: 100%;
    justify-content: space-between;
  }

  .pseb-modal {
    padding: 5vw;
  }

  .pseb-modal-dialog {
    width: 90vw;
    max-width: 90vw;
    max-height: 90vh;
  }

  .pseb-modal-scroll {
    max-height: 90vh;
    padding: 18px;
  }
}

@media (max-width: 420px) {
  .pseb-card-main {
    grid-template-columns: 1fr;
  }

  .pseb-card-media {
    justify-content: flex-start;
  }

  .pseb-card-image {
    margin-left: 36px;
  }

  .pseb-item {
    grid-template-columns: 26px minmax(0, 1fr) auto;
    gap: 7px;
  }

  .pseb-item-icon-wrap {
    width: 26px;
    height: 26px;
  }

  .pseb-item-icon {
    width: 22px;
    height: 22px;
  }
}
