.region-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: #123331;
  border: 1px solid #42665c;
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 22px;
  color: #f1ede1;
}
.region-bar > div > strong {
  font-size: 13px;
  letter-spacing: 0.09em;
  color: #d8f24b;
}
.region-bar small {
  display: block;
  color: #adc1b9;
  font-size: 12px;
  margin-top: 5px;
}
.region-counts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex: 1;
  gap: 16px;
  min-width: 270px;
}
.region-counts > div {
  border-left: 1px solid #42665c;
  padding-left: 16px;
}
.region-counts span {
  font-size: 14px;
}
.region-counts strong {
  display: block;
  font-size: 29px;
  color: #d8f24b;
  margin-top: 3px;
  font-variant-numeric: tabular-nums;
}
.fan-insights {
  background: linear-gradient(130deg, #173e35, #123331);
  border: 1px solid #52765b;
  border-radius: 12px;
  padding: 22px;
  color: #f1ede1;
  margin-bottom: 18px;
}
.insight-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.insight-heading h2 {
  font-size: 26px;
  margin: 0;
}
.insight-heading span {
  font-size: 12px;
  color: #d8f24b;
}
.insight-context {
  font-size: 13px;
  color: #adc1b9;
  line-height: 1.6;
}
.fan-insights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fan-insights li {
  padding: 16px 0;
  border-top: 1px solid #42665c;
  line-height: 1.8;
  font-size: 15px;
}
.fan-insights li:last-child {
  padding-bottom: 0;
}
.fan-insights strong {
  color: #d8f24b;
}
.insight-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.07em;
  color: #adc1b9;
  margin-bottom: 4px;
}
@media (max-width: 540px) {
  .region-bar {
    padding: 16px;
    gap: 16px;
  }
  .region-counts {
    min-width: 0;
    width: 100%;
    flex-basis: 100%;
    gap: 8px;
  }
  .region-counts > div {
    padding-left: 8px;
  }
  .region-counts span {
    font-size: 12px;
  }
  .fan-insights {
    padding: 18px;
  }
}
.profile-summary-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #f1ede1;
}
.profile-summary-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  flex: 1 1 190px;
  min-width: 0;
}
.profile-avatar {
  width: 46px;
  height: 46px;
  background: #ce6b33;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 22px;
}
.profile-summary-identity strong {
  display: block;
  overflow-wrap: anywhere;
}
.profile-summary-bar small {
  display: block;
  color: #adc1b9;
  font-size: 12px;
  line-height: 1.5;
}
.profile-summary-stats {
  display: flex;
  flex: 3 1 400px;
  gap: 12px;
  padding: 18px;
  flex-wrap: wrap;
}
.profile-summary-stats > div {
  flex: 1 1 65px;
  border-left: 1px solid #42665c;
  padding-left: 10px;
}
.profile-summary-stats strong {
  font-size: 24px;
  font-variant-numeric: tabular-nums;
}
.predict-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0 24px;
  padding: 12px 16px;
  background: #123331;
  border: 1px solid #42665c;
  border-radius: 10px;
}
.predict-entry-label {
  color: #d8f24b;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.predict-modes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 4px;
  background: #0c2523;
  border-radius: 8px;
}
.predict-modes button {
  font: inherit;
  min-height: 44px;
  padding: 9px 20px;
  border-radius: 5px;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  color: #b9ccc3;
  white-space: nowrap;
}
.predict-modes button[aria-pressed="true"] {
  background: #d8f24b;
  color: #0c2523;
}
.predict-modes button:hover {
  border-color: #8fac83;
}
.predict-modes button span {
  margin-left: 8px;
  opacity: 0.75;
}
.predict-modes button:focus-visible {
  outline: 2px solid #d8f24b;
  outline-offset: 3px;
}
@media (max-width: 420px) {
  .predict-entry {
    gap: 10px;
    padding: 12px;
  }
  .predict-modes {
    flex: 1;
  }
  .predict-modes button {
    flex: 1;
    padding: 9px 12px;
  }
}
.membership {
  color: #f1ede1;
  max-width: 1000px;
  margin: auto;
}
.membership h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  max-width: 22em;
}
.membership p {
  color: #adc1b9;
  line-height: 1.7;
}
.membership-kicker {
  color: #d8f24b !important;
  letter-spacing: 0.12em;
  font-size: 13px;
}
.membership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.membership article {
  padding: 26px;
  border: 1px solid #42665c;
  background: #123331;
  border-radius: 12px;
}
.membership .membership-plus {
  border-color: #d8f24b;
}
.membership-price {
  font-size: 28px;
  display: block;
  margin: 18px 0;
  color: #d8f24b;
}
.membership li {
  line-height: 1.65;
  margin: 12px 0;
}
.membership button {
  padding: 12px 18px;
  min-height: 44px;
  font: inherit;
  background: #d8f24b;
  color: #0c2523;
  border: 1px solid #d8f24b;
  border-radius: 6px;
  cursor: pointer;
}
.membership button:disabled {
  background: #294b3c;
  color: #c3d1c8;
  border-color: #52776d;
  cursor: not-allowed;
}
.membership .membership-secondary {
  background: transparent;
  color: #f1ede1;
  border-color: #78988b;
}
.membership-awards {
  display: flex;
  gap: 16px;
  margin: 24px 0;
}
.membership-awards > div {
  flex: 1;
  background: #123331;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.membership-awards strong {
  font-size: 32px;
  display: block;
  color: #d8f24b;
}
.membership-awards small {
  color: #adc1b9;
}
@media (max-width: 640px) {
  .membership-grid {
    grid-template-columns: 1fr;
  }
  .membership-awards {
    gap: 8px;
  }
  .membership-awards > div {
    padding: 12px 6px;
  }
}
.billing-toggle {
  display: flex;
  gap: 6px;
  margin: 16px 0;
}
.membership .billing-toggle button {
  background: transparent;
  color: #adc1b9;
  border-color: #52776d;
  flex: 1;
  padding: 8px;
}
.membership .billing-toggle button[aria-pressed="true"] {
  background: #d8f24b;
  color: #0c2523;
  border-color: #d8f24b;
}
.membership-price small {
  font-size: 15px;
  color: #adc1b9;
}
.global-predictions {
  padding: 6px 0 22px;
  color: #f1ede1;
}
.global-predictions > div {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}
.global-predictions span {
  font-size: 15px;
  color: #adc1b9;
}
.global-predictions strong {
  font-size: clamp(32px, 5vw, 46px);
  color: #d8f24b;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.global-predictions small {
  display: block;
  margin-top: 8px;
  color: #adc1b9;
  font-size: 12px;
}
.region-bar {
  margin-bottom: 44px;
  gap: 18px;
}
.region-actions {
  border-right: 1px solid #42665c;
  padding-right: 18px;
}
.region-actions .predict-entry {
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  gap: 8px;
  flex-direction: column;
  align-items: stretch;
}
.region-actions .predict-entry-label {
  font-size: 12px;
}
.region-actions .predict-modes button {
  padding: 9px 12px;
}
@media (max-width: 760px) {
  .region-actions {
    border-right: 0;
    border-bottom: 1px solid #42665c;
    padding: 0 0 14px;
    width: 100%;
  }
  .region-actions .predict-entry {
    flex-direction: row;
    align-items: center;
  }
  .region-bar {
    margin-bottom: 36px;
  }
}
.settlement-alert {
  background: #5c2c22;
  color: #fff;
  padding: 14px;
  border: 1px solid #efa86c;
  position: sticky;
  top: 0;
  z-index: 10;
}
