:root {
  --blue: #1766da;
  --mint: #4fd7bf;
  --ink: #22242b;
  --muted: #aeb6c2;
  --line: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #eef2f7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
}

button {
  font: inherit;
}

.phone-shell {
  position: relative;
  width: min(100vw, 430px);
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(25, 35, 60, 0.18);
}

.app-view[hidden] {
  display: none !important;
}

.app-view:not(#characterSetupPanel):not(#earningsPanel) {
  padding-top: 62px;
}

.character-setup-panel {
  min-height: 100vh;
  height: 100vh;
  overflow-y: auto;
  padding: 28px 20px 36px;
  color: #20242b;
  background:
    linear-gradient(180deg, #f5fbff 0%, #ffffff 34%),
    #fff;
}

.setup-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.setup-topbar > div {
  min-width: 0;
}

.setup-topbar span {
  display: block;
  color: #7c8795;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.setup-topbar h1 {
  margin: 8px 0 0;
  color: #20242b;
  font-size: clamp(34px, 9vw, 48px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.random-character-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #d9e0ea;
  border-radius: 999px;
  color: #1f6fd3;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(31, 67, 112, 0.08);
  font-size: 15px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
}

.setup-form {
  display: grid;
  gap: 14px;
}

.setup-field {
  display: grid;
  gap: 8px;
  margin-top: 0;
}

.setup-field > span {
  color: #525b68;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 820;
}

.setup-field input,
.setup-field select {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid #e1e7ef;
  border-radius: 16px;
  outline: 0;
  color: #20242b;
  background: #f8fafc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 22px;
  line-height: 1;
  font-weight: 830;
  letter-spacing: 0;
}

.setup-field input:focus,
.setup-field select:focus {
  border-color: #74b6ff;
  box-shadow: 0 0 0 4px rgba(47, 131, 247, 0.12);
  background: #fff;
}

.setup-field select {
  font-size: 20px;
}

.setup-city-field {
  margin-top: 0;
}

.gender-toggle,
.difficulty-toggle {
  width: 100%;
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 5px;
  overflow: hidden;
  border: 1px solid #e1e7ef;
  border-radius: 16px;
  background: #f1f5f9;
}

.gender-toggle {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.difficulty-toggle {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gender-toggle button,
.difficulty-toggle button {
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  color: #6b7480;
  background: transparent;
  font-size: 16px;
  line-height: 1;
  font-weight: 850;
}

.gender-toggle button.active,
.difficulty-toggle button.active {
  color: #fff;
  background: #20242b;
  box-shadow: 0 8px 18px rgba(20, 28, 40, 0.18);
}

.difficulty-note {
  color: #7c8795;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 760;
}

.start-game-button {
  width: 100%;
  min-height: 60px;
  margin-top: 28px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: #1f6fd3;
  box-shadow: 0 14px 28px rgba(31, 111, 211, 0.24);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.top-panel {
  position: relative;
  padding: 22px 16px 10px;
  background: #fff;
}

.top-panel::before {
  display: none;
}

.top-panel[hidden] {
  display: none;
}

.global-balance-chip {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 70;
  max-width: 190px;
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid #e7eaf0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #22242b;
  box-shadow: 0 10px 24px rgba(31, 48, 76, 0.12);
  backdrop-filter: blur(10px);
}

.global-balance-chip[hidden] {
  display: none;
}

.global-balance-chip strong {
  min-width: 0;
  overflow: hidden;
  color: #22242b;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.install-prompt-card {
  position: fixed;
  right: max(12px, calc((100vw - 430px) / 2 + 12px));
  bottom: 92px;
  z-index: 80;
  width: min(340px, calc(100vw - 24px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #e1e7ef;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(24, 38, 62, 0.18);
}

.install-prompt-card[hidden] {
  display: none !important;
}

.install-prompt-card strong,
.install-prompt-card span {
  display: block;
  line-height: 1.15;
}

.install-prompt-card strong {
  color: #20242b;
  font-size: 15px;
  font-weight: 900;
}

.install-prompt-card span {
  margin-top: 3px;
  color: #6b7480;
  font-size: 12px;
  font-weight: 720;
}

.install-prompt-card button {
  min-height: 38px;
  border: 0;
  border-radius: 12px;
  font-weight: 900;
}

#installAppButton {
  padding: 0 16px;
  color: #fff;
  background: #1f6fd3;
}

#dismissInstallButton {
  width: 38px;
  color: #6b7480;
  background: #f1f5f9;
  font-size: 22px;
  line-height: 1;
}

.coin-pill {
  position: relative;
  z-index: 1;
  margin-left: auto;
  width: auto;
  min-width: 144px;
  max-width: 210px;
  height: 40px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border: 1px solid #e7eaf0;
  border-radius: 999px;
  background: #fff;
  color: #22242b;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(31, 48, 76, 0.08);
}

.coin-pill[hidden] {
  display: none;
}

.earnings-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.earnings-heading {
  min-width: 0;
  padding-top: 4px;
}

.earnings-heading span,
.balance-chip span {
  display: block;
  color: #858b96;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 760;
}

.earnings-heading h1 {
  margin: 6px 0 0;
  color: #22242b;
  font-size: 38px;
  line-height: 1;
  font-weight: 860;
  letter-spacing: 0;
}

.balance-chip {
  min-width: 156px;
  max-width: 190px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border: 1px solid #e7eaf0;
  border-radius: 18px;
  background: #fff;
}

.balance-symbol {
  width: 34px;
  height: 34px;
  display: grid !important;
  place-items: center;
  border: 1px solid #e7eaf0;
  border-radius: 50%;
  color: #22242b !important;
  font-size: 22px !important;
  line-height: 1 !important;
  font-weight: 850 !important;
}

.balance-pill .balance-symbol {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  font-size: 18px !important;
}

.balance-pill strong {
  min-width: 0;
  color: #22242b;
  font-size: clamp(15px, 4vw, 18px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.balance-chip strong {
  display: block;
  margin-top: 5px;
  color: #22242b;
  font-size: clamp(16px, 4.2vw, 20px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.leaf-icon {
  width: 16px;
  height: 12px;
  border-radius: 12px 2px 12px 2px;
  background: #385068;
  transform: rotate(-24deg);
}

.bank-card {
  position: relative;
  z-index: 1;
  margin-top: 84px;
  min-height: 118px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 26px;
  color: #202a36;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 34px rgba(3, 18, 30, 0.16);
  backdrop-filter: blur(10px);
}

.bank-card p {
  margin: 0 0 8px;
  color: #5a6676;
  font-size: 17px;
  font-weight: 750;
}

.bank-card strong {
  display: block;
  color: #111827;
  font-size: clamp(40px, 12vw, 56px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.earn-card {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding: 26px 20px 20px;
  border-radius: 24px;
  background: rgba(94, 103, 148, 0.62);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
}

.profile-card {
  display: grid;
  gap: 18px;
}

.profile-main,
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.profile-card span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.profile-card strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 820;
  white-space: nowrap;
}

.earn-row strong {
  margin-right: 8px;
  color: #fff;
  font-size: 24px;
}

.earn-row span,
.level-row span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 500;
}

.level-row {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.level-row strong {
  color: #fff;
  font-size: 22px;
}

.boost {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.boost strong {
  color: var(--mint);
  font-size: 19px;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 11px solid var(--mint);
}

.progress-track {
  margin-top: 16px;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.progress-track span {
  display: block;
  width: 8%;
  height: 100%;
  background: var(--mint);
  transition: width 180ms ease;
}

.xp-status {
  display: block;
  margin: 8px 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  text-align: right;
}

.tap-zone {
  position: relative;
  height: calc(100dvh - 104px);
  min-height: 0;
  overflow-y: auto;
  display: block;
  padding: 18px 16px 112px;
  text-align: center;
  background: #fff;
}

.business-panel {
  height: 100dvh;
  min-height: 100dvh;
  overflow-y: auto;
  padding: 0 16px 104px;
  background: #fff;
  overscroll-behavior: contain;
}

.business-panel h1 {
  margin: 0 0 22px 4px;
  padding-top: 4px;
  color: #292a2e;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: 0;
}

.business-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px 4px;
  padding-top: 4px;
}

.business-title-row h1 {
  margin: 0;
  padding: 0;
}

.help-bubble {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #edf1f7;
  color: #3974c4;
  font-size: 21px;
  line-height: 1;
  font-weight: 850;
  cursor: pointer;
  box-shadow: inset 0 -2px 0 rgba(39, 52, 72, 0.05);
}

.help-bubble[aria-expanded="true"] {
  background: #2f83f7;
  color: #fff;
}

.business-help-panel {
  margin: -10px 4px 16px;
  padding: 15px 16px;
  border-radius: 18px;
  background: #f5f7fb;
  border: 1px solid #e5eaf2;
}

.business-help-panel p {
  margin: 0;
  color: #5f6874;
  font-size: 16px;
  line-height: 1.35;
}

.business-help-panel p + p {
  margin-top: 8px;
}

.create-business-panel,
.market-business-panel,
.factory-business-panel,
.logistics-business-panel,
.construction-business-panel,
.construction-detail-panel,
.auto-business-panel,
.auto-rental-panel,
.auto-garage-panel,
.auto-detail-panel,
.courier-detail-panel,
.cargo-fleet-panel,
.warehouse-network-panel,
.textile-factory-panel,
.food-factory-panel,
.furniture-factory-panel,
.motorcycle-purchase-panel,
.car-purchase-panel,
.transit-purchase-panel,
.grocery-detail-panel,
.clothing-detail-panel,
.liquor-detail-panel,
.buffet-detail-panel,
.bakery-detail-panel,
.jewelry-detail-panel,
.furniture-store-panel,
.store-panel,
.bank-panel,
.politics-panel,
.edo-panel,
.work-panel,
.relationships-panel,
.investment-panel,
.profile-panel {
  height: 100dvh;
  min-height: 100dvh;
  overflow-y: auto;
  padding: 22px 16px 132px;
  background: #fff;
  overscroll-behavior: contain;
}

.back-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 0 28px -4px;
  border: 0;
  background: transparent;
  color: #28292d;
  cursor: pointer;
}

.back-button svg {
  width: 43px;
  height: 43px;
}

.back-button path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.create-business-panel h1,
.market-business-panel h1,
.factory-business-panel h1,
.logistics-business-panel h1,
.construction-business-panel h1,
.construction-detail-panel h1,
.auto-business-panel h1,
.auto-rental-panel h1,
.auto-garage-panel h1,
.auto-detail-panel h1,
.courier-detail-panel h1,
.cargo-fleet-panel h1,
.warehouse-network-panel h1,
.textile-factory-panel h1,
.food-factory-panel h1,
.furniture-factory-panel h1,
.motorcycle-purchase-panel h1,
.car-purchase-panel h1,
.transit-purchase-panel h1,
.grocery-detail-panel h1,
.clothing-detail-panel h1,
.liquor-detail-panel h1,
.buffet-detail-panel h1,
.bakery-detail-panel h1,
.jewelry-detail-panel h1,
.furniture-store-panel h1,
.store-panel h1,
.bank-panel h1,
.politics-panel h1,
.investment-panel h1,
.edo-panel h1,
.work-panel h1,
.relationships-panel h1,
.profile-panel h1 {
  max-width: 370px;
  margin: 0 0 34px;
  color: #292a2e;
  font-size: clamp(42px, 12vw, 58px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0;
}

.grocery-summary {
  padding: 22px 18px;
  border-radius: 22px;
  background: #edf1f7;
}

.grocery-summary span {
  display: block;
  color: #57c993;
  font-size: 18px;
  line-height: 1.2;
}

.grocery-summary strong {
  display: block;
  margin-top: 8px;
  color: #292a2e;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 750;
}

.factory-upgrade-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.factory-upgrade-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 10px 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid #dfe6f0;
  border-radius: 18px;
  background: #f7f9fd;
}

.factory-upgrade-card span {
  display: block;
  color: #57c993;
  font-size: 16px;
  font-weight: 750;
}

.factory-upgrade-card strong {
  display: block;
  margin-top: 5px;
  color: #292a2e;
  font-size: 23px;
  line-height: 1.12;
}

.factory-upgrade-card b {
  font: inherit;
}

.factory-upgrade-card p {
  margin: 5px 0 0;
  color: #777c86;
  font-size: 16px;
  line-height: 1.2;
}

.factory-upgrade-card button {
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  background: #2f83f7;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

.factory-upgrade-card button:disabled {
  background: #cbd5e1;
  cursor: default;
}

.factory-upgrade-card small {
  grid-column: 1 / -1;
  color: #697280;
  font-size: 15px;
  line-height: 1.25;
}

.fleet-maintenance-card {
  margin-top: 12px;
}

.fleet-maintenance-card button {
  width: 100%;
  min-height: 48px;
  margin-top: 14px;
  border: 0;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 780;
  cursor: pointer;
}

.fleet-maintenance-card button:disabled {
  color: #8d97a6;
  cursor: not-allowed;
}

.jewelry-sales-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.jewelry-sales-controls button {
  min-height: 52px;
  border: 0;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 780;
  cursor: pointer;
}

.jewelry-sales-controls .pause-active {
  background: #262a33;
  color: #fff;
}

.jewelry-sales-controls button:disabled {
  background: #dbe2ec;
  color: #8d97a6;
  cursor: not-allowed;
}

.product-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.product-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: #edf1f7;
}

.product-card[hidden] {
  display: none;
}

.product-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #25282d;
}

.product-icon.vehicle-photo,
.product-icon.asset-photo {
  overflow: hidden;
  background: #edf1f7;
}

.product-icon.vehicle-photo img,
.product-icon.asset-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.product-icon.food {
  background: #ffbd47;
}

.product-icon.drink {
  background: #69c8ff;
}

.product-icon.beer {
  background: #ffd15c;
}

.product-icon.whiskey {
  background: #c27a35;
  color: #fff;
}

.product-icon.cigarette {
  background: #40444d;
  color: #fff;
}

.product-icon.water {
  background: #69c8ff;
}

.product-icon.toast {
  background: #f2a75d;
}

.product-icon.gum {
  background: #f48ab7;
}

.product-icon.bread,
.product-icon.bagel,
.product-icon.pastry {
  background: #d99b56;
}

.product-icon.fabric {
  background: linear-gradient(135deg, #dff4ff, #8fd3ff);
  color: #203245;
}

.product-icon.shoe-material {
  background: linear-gradient(135deg, #fff1dd, #e5b077);
  color: #4f2d1d;
}

.product-icon.clothes {
  background: linear-gradient(135deg, #2dd4bf, #137f73);
  color: #fff;
}

.product-icon.shoes {
  background: linear-gradient(135deg, #f0f3f7, #c6ced8);
  color: #17181d;
}

.product-icon.factory-food {
  background: #f2a75d;
}

.product-icon.wood {
  background: #9b6a3c;
  color: #fff;
}

.product-icon.furniture-set {
  background: linear-gradient(135deg, #b98755, #674124);
  color: #fff;
}

.product-icon.auto {
  background: #272727;
  color: #fff;
}

.product-icon.economy-car {
  background: linear-gradient(135deg, #dcfff1, #68c99d);
  color: #18322a;
}

.product-icon.sedan-car {
  background: linear-gradient(135deg, #e6dfd2, #b7a58b);
  color: #25303a;
}

.product-icon.suv-car {
  background: linear-gradient(135deg, #314c3f, #10231c);
  color: #ecf5ed;
}

.product-icon.gold,
.product-icon.quarter-gold,
.product-icon.full-gold,
.product-icon.ring,
.product-icon.bracelet {
  background: linear-gradient(135deg, #ffe36e, #c89018);
}

.product-icon svg {
  width: 46px;
  height: 46px;
}

.product-icon .icon-fill {
  fill: rgba(255, 255, 255, 0.24);
  stroke: none;
}

.product-icon .icon-solid {
  fill: currentColor;
  stroke: none;
}

.product-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon .icon-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon .icon-brown {
  fill: #78452c;
  stroke: none;
}

.product-icon .icon-brown-light {
  fill: #b97647;
  stroke: none;
}

.product-icon .icon-brown-dark {
  fill: #4c2d1e;
  stroke: none;
}

.product-icon .icon-black {
  fill: #17181d;
  stroke: none;
}

.product-icon .icon-sole {
  fill: #f8f5ee;
  stroke: none;
}

.product-icon .icon-cream {
  fill: rgba(255, 242, 224, 0.72);
  stroke: none;
}

.product-icon .icon-dark-line {
  fill: none;
  stroke: #17181d;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon .icon-brown-line {
  fill: none;
  stroke: #5a3322;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon .icon-light-line {
  fill: none;
  stroke: rgba(255, 245, 232, 0.88);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon .icon-economy-body {
  fill: #68c99d;
  stroke: #18322a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon .icon-economy-window {
  fill: #e9fbff;
  stroke: #18322a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon .icon-economy-trim,
.product-icon .icon-economy-light {
  fill: none;
  stroke: #18322a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon .icon-economy-light {
  stroke: #f9f1d2;
}

.product-icon .icon-economy-tire {
  fill: #18322a;
  stroke: none;
}

.product-icon .icon-economy-hub {
  fill: #f4f0e9;
  stroke: none;
}

.product-icon .icon-sedan-body {
  fill: #b7a58b;
  stroke: #26313b;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon .icon-sedan-window {
  fill: #d8e4ed;
  stroke: #26313b;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon .icon-sedan-hood,
.product-icon .icon-sedan-trunk,
.product-icon .icon-sedan-line {
  fill: none;
  stroke: #26313b;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon .icon-sedan-light {
  fill: none;
  stroke: #fff2c2;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon .icon-sedan-tire {
  fill: #26313b;
  stroke: none;
}

.product-icon .icon-sedan-hub {
  fill: #f4f0e9;
  stroke: none;
}

.product-icon .icon-suv-body {
  fill: #29483a;
  stroke: #edf7ee;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon .icon-suv-roof,
.product-icon .icon-suv-line {
  fill: none;
  stroke: #edf7ee;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon .icon-suv-window {
  fill: #b9d2cf;
  stroke: #edf7ee;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon .icon-suv-light {
  fill: none;
  stroke: #ffb25b;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-icon .icon-suv-tire {
  fill: #111816;
  stroke: none;
}

.product-icon .icon-suv-hub {
  fill: #6f8d80;
  stroke: none;
}

.product-card h2 {
  margin: 3px 0 5px;
  color: #292a2e;
  font-size: 27px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.product-card p {
  margin: 0;
  color: #777c86;
  font-size: 18px;
  line-height: 1.25;
}

.product-card .sell-price {
  margin-top: 5px;
  color: #b07a16;
  font-weight: 800;
}

.product-card span {
  display: block;
  margin-top: 10px;
  color: #777c86;
  font-size: 18px;
}

.product-card span strong {
  color: #292a2e;
}

.product-card .purchase-limit {
  display: block;
  margin-top: 6px;
  color: #657080;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 750;
}

.product-card .rental-info {
  display: block;
  margin-top: 6px;
  color: #2f83f7;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 780;
}

.product-purchase-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 10px;
  align-items: center;
}

.product-purchase-row.single-action-row {
  grid-template-columns: 1fr;
}

.gold-trade-row {
  grid-template-columns: 128px minmax(0, 1fr) minmax(0, 1fr);
}

.quantity-stepper {
  height: 48px;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  color: #292a2e;
}

.quantity-stepper button {
  height: 48px;
  border: 0;
  background: transparent;
  color: #2f83f7;
  font-size: 24px;
  font-weight: 850;
  cursor: pointer;
}

.quantity-stepper span {
  margin: 0;
  min-width: 0;
  padding: 8px 4px;
  border-radius: 12px;
  color: #292a2e;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  cursor: text;
  outline: none;
  user-select: text;
}

.quantity-stepper span:focus {
  background: #eaf2ff;
  box-shadow: inset 0 0 0 2px rgba(47, 131, 247, 0.25);
}

.product-buy-button,
.product-action-button {
  min-height: 48px;
  border: 0;
  border-radius: 18px;
  background: #2f83f7;
  color: #fff;
  font-size: 19px;
  font-weight: 760;
  cursor: pointer;
}

.product-sell-button {
  min-height: 48px;
  border: 0;
  border-radius: 18px;
  background: #262a33;
  color: #fff;
  font-size: 19px;
  font-weight: 760;
  cursor: pointer;
}

.market-option-list {
  display: grid;
  gap: 16px;
}

.grocery-summary + .market-option-list {
  margin-top: 18px;
}

.panel-status {
  margin: -18px 0 18px;
  color: #777c86;
  font-size: 18px;
  line-height: 1.3;
}

.market-option-card {
  width: 100%;
  min-height: 112px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 0;
  border-radius: 22px;
  background: #edf1f7;
  color: #292a2e;
  text-align: left;
  cursor: pointer;
}

.market-option-card:active {
  transform: scale(0.99);
}

.motorcycle-option-button,
.car-option-button,
.transit-option-button {
  grid-template-columns: 104px minmax(0, 1fr);
}

.category-icon.motorcycle-photo,
.category-icon.car-photo,
.category-icon.transit-photo {
  width: 98px;
  height: 72px;
  overflow: hidden;
  border-radius: 16px;
  background: #f5f7fa;
}

.category-icon.motorcycle-photo img,
.category-icon.car-photo img,
.category-icon.transit-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.logistics-option-card {
  cursor: default;
}

.logistics-option-card:active {
  transform: none;
}

.market-option-card strong {
  display: block;
  color: #292a2e;
  font-size: 27px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.market-option-card small {
  display: block;
  margin-top: 8px;
  color: #777c86;
  font-size: 18px;
  line-height: 1.2;
}

.construction-section-title {
  margin: 24px 2px 12px;
}

.construction-section-title h2 {
  margin: 0;
  color: #292a2e;
  font-size: 26px;
  line-height: 1.15;
}

.construction-project-list {
  display: grid;
  gap: 14px;
}

.empty-project-state {
  margin: 0;
  padding: 16px;
  border-radius: 18px;
  background: #edf1f7;
  color: #777c86;
  font-size: 17px;
  line-height: 1.3;
}

.construction-project-card {
  width: 100%;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 0;
  border-radius: 20px;
  background: #edf1f7;
  color: inherit;
  text-align: left;
}

.category-icon.construction-photo {
  width: 62px;
  height: 62px;
  overflow: hidden;
  border-radius: 16px;
  background: #f5f7fa;
}

.category-icon.construction-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

button.construction-project-card {
  cursor: pointer;
}

button.construction-project-card:active {
  transform: scale(0.99);
}

.construction-project-card strong {
  display: block;
  color: #292a2e;
  font-size: 24px;
  line-height: 1.12;
}

.construction-project-card small {
  display: block;
  margin-top: 7px;
  color: #777c86;
  font-size: 16px;
  line-height: 1.25;
}

.construction-project-card .project-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 10px;
  margin-top: 10px;
  color: #48505b;
  font-size: 15px;
  font-weight: 750;
}

.project-progress-track {
  display: block;
  height: 8px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #d8e0ea;
}

.project-progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #57c993;
}

.project-deliver-button {
  grid-column: 1 / -1;
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  background: #2f83f7;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

.project-deliver-button:disabled {
  background: #cbd5e1;
  color: #738095;
  cursor: default;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.category-card {
  min-width: 0;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px 13px 14px;
  border: 0;
  border-radius: 20px;
  background: #edf1f7;
  color: #292a2e;
  text-align: left;
  cursor: pointer;
}

.category-card:active {
  transform: scale(0.98);
}

.category-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #25282d;
}

.category-icon svg {
  width: 42px;
  height: 42px;
}

.category-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-card strong {
  display: block;
  margin-top: auto;
  color: #292a2e;
  font-size: clamp(20px, 5.4vw, 27px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.category-card > span:last-child {
  display: block;
  margin-top: 8px;
  color: #777c86;
  font-size: clamp(15px, 4vw, 18px);
  line-height: 1.25;
}

.category-icon.store {
  background: linear-gradient(135deg, #2fdd7d, #1fca74);
}

.category-icon.clothing {
  background: linear-gradient(135deg, #ff8fb1, #f05a84);
  color: #fff;
}

.category-icon.liquor {
  background: linear-gradient(135deg, #9b5cff, #3b1979);
  color: #fff;
}

.category-icon.buffet {
  background: #54d6c0;
}

.category-icon.bakery {
  background: #f2a75d;
}

.category-icon.jewelry {
  background: linear-gradient(135deg, #f7d65a, #c68a18);
}

.category-icon.furniture {
  background: linear-gradient(135deg, #b98755, #674124);
  color: #fff;
}

.category-icon.taxi {
  background: #ffc633;
}

.category-icon.logistics {
  background: linear-gradient(135deg, #4dc8ff, #2f83f7);
  color: #fff;
}

.category-icon.motorcycle {
  background: linear-gradient(135deg, #b9f5d0, #31c982);
}

.category-icon.transport {
  background: #ff946e;
}

.category-icon.factory {
  background: #3e7fb5;
}

.category-icon.construction {
  background: #fb3d5f;
}

.category-icon.auto {
  background: #272727;
  color: #fff;
}

.category-icon.tech {
  background: linear-gradient(135deg, #7554da, #27105c);
  color: #fff;
}

.category-icon.bank {
  background: #cbd5e1;
}

.hourly-card {
  padding: 30px 22px 27px;
  border-radius: 24px;
  background: #edf1f7;
}

.hourly-card strong {
  display: block;
  color: #28292d;
  font-size: clamp(46px, 13vw, 62px);
  line-height: 0.98;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.hourly-card span {
  display: block;
  margin-top: 16px;
  color: #57c993;
  font-size: 22px;
  line-height: 1.15;
}

.sales-report-card {
  margin-top: 12px;
  padding: 18px 18px 17px;
  border-radius: 22px;
  background: #f5f7fb;
  border: 1px solid #e5eaf2;
}

.sales-report-card span {
  display: block;
  color: #7b8390;
  font-size: 15px;
  font-weight: 760;
}

.sales-report-card strong {
  display: block;
  margin-top: 6px;
  color: #292a2e;
  font-size: 30px;
  line-height: 1;
  font-weight: 850;
}

.sales-report-card p {
  margin: 10px 0 0;
  color: #646b76;
  font-size: 16px;
  line-height: 1.35;
}

.economy-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  background: #fff;
  text-align: left;
}

.economy-card div {
  min-width: 0;
}

.economy-card span {
  display: block;
  color: #858b96;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.15;
}

.economy-card strong {
  display: block;
  margin-top: 0;
  color: #292a2e;
  font-size: 20px;
  line-height: 1;
  font-weight: 850;
}

.economy-card-header {
  padding: 10px 0 16px;
  border-bottom: 1px solid #e8ebf0;
}

.economy-card-header strong {
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.1;
}

.economy-card-header strong.crisis {
  color: #292a2e;
}

.economy-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid #eef0f4;
}

.economy-metric strong {
  text-align: right;
}

.economy-agenda {
  padding: 17px 0 0;
}

.economy-agenda strong {
  margin-top: 8px;
  color: #3f4650;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

.time-skip-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 18px;
}

.time-skip-actions button {
  min-height: 48px;
  border: 1px solid #dfe3ea;
  border-radius: 16px;
  background: #fff;
  color: #292a2e;
  font-size: 18px;
  font-weight: 760;
  cursor: pointer;
}

.newspaper-card {
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid #e8ecf2;
  border-radius: 20px;
  background: #fff;
  text-align: left;
}

.newspaper-toggle {
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  color: #292a2e;
  text-align: left;
  cursor: pointer;
}

.newspaper-toggle img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(30, 36, 50, 0.12);
}

.newspaper-toggle strong,
.newspaper-toggle small {
  display: block;
}

.newspaper-toggle strong {
  color: #292a2e;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 880;
}

.newspaper-toggle small {
  margin-top: 5px;
  color: #858b96;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 720;
}

.newspaper-toggle em {
  color: #b7c0cb;
  font-style: normal;
  font-size: 34px;
  line-height: 1;
  transition: transform 160ms ease;
}

.newspaper-toggle[aria-expanded="true"] em {
  transform: rotate(90deg);
}

.newspaper-panel {
  padding: 0 14px 14px;
}

.newspaper-panel[hidden] {
  display: none;
}

.newspaper-headline-list {
  display: grid;
  gap: 10px;
  padding-top: 2px;
}

.newspaper-headline-list article {
  padding: 12px 13px;
  border: 1px solid #eef0f4;
  border-radius: 15px;
  background: #f8fafc;
}

.newspaper-headline-list span {
  display: block;
  color: #1f6fd3;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 850;
  text-transform: uppercase;
}

.newspaper-headline-list strong {
  display: block;
  margin-top: 6px;
  color: #292a2e;
  font-size: 17px;
  line-height: 1.18;
  font-weight: 850;
}

.newspaper-headline-list p {
  margin: 6px 0 0;
  color: #626b77;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 620;
}

.newspaper-page {
  height: 100vh;
  min-height: 100dvh;
  overflow-y: auto;
  padding: 20px 18px 104px;
  background: #fff;
  overscroll-behavior: contain;
}

.newspaper-page-masthead {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 3px double #25272d;
}

.newspaper-page-masthead img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.newspaper-page-masthead span {
  color: #777;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 850;
  text-transform: uppercase;
}

.newspaper-page-masthead h1 {
  margin: 5px 0 0;
  color: #1f2024;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

.newspaper-page-masthead p {
  margin: 6px 0 0;
  color: #5b6068;
  font-size: 13px;
  line-height: 1.25;
}

.newspaper-article-list {
  display: grid;
  gap: 18px;
  padding-top: 18px;
}

.newspaper-article-list article {
  padding-bottom: 17px;
  border-bottom: 1px solid #d9dde4;
}

.newspaper-article-list span {
  display: block;
  color: #a33a2b;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.newspaper-article-list h2 {
  margin: 7px 0 0;
  color: #20242b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.newspaper-article-list p {
  margin: 9px 0 0;
  color: #41464f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.45;
}

.business-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

.business-actions button {
  min-width: 0;
  min-height: 58px;
  border: 0;
  border-radius: 20px;
  font-size: 21px;
  letter-spacing: 0;
  cursor: pointer;
}

.primary-action {
  background: #2f83f7;
  color: #fff;
}

.secondary-action {
  background: #edf1f7;
  color: #3974c4;
  box-shadow: inset 0 -2px 0 rgba(39, 52, 72, 0.05);
}

.companies-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 42px 4px 18px;
}

.companies-header h2 {
  margin: 0;
  color: #292a2e;
  font-size: 33px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0;
}

.companies-header span {
  color: #d1d5dc;
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
}

#companyCount {
  display: none;
}

.company-list {
  display: grid;
  gap: 20px;
}

.company-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 48px;
  gap: 14px;
  min-height: 146px;
  padding: 15px 14px 17px;
  border-radius: 18px;
  background: #edf1f7;
  cursor: pointer;
}

.company-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  align-self: start;
  border-radius: 50%;
  color: #22252b;
}

.company-icon svg {
  width: 34px;
  height: 34px;
}

.company-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-icon.store {
  background: #29d17b;
}

.company-icon.liquor {
  background: #5f37b7;
  color: #fff;
}

.company-icon.buffet {
  background: #54d6c0;
}

.company-icon.bakery {
  background: #f2a75d;
}

.company-icon.jewelry {
  background: #d9a42b;
}

.company-icon.furniture {
  background: #8a5a35;
  color: #fff;
}

.company-icon.logistics {
  background: #2f83f7;
  color: #fff;
}

.company-icon.factory {
  background: #3c80ba;
}

.company-icon.construction {
  background: #fb3d5f;
  color: #fff;
}

.company-icon.auto {
  background: #272727;
  color: #fff;
}

.company-icon.transport {
  background: #ff936c;
}

.company-info {
  min-width: 0;
}

.company-info h3 {
  margin: 6px 0 2px;
  color: #05070a;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.company-info p {
  margin: 0;
  color: #898d94;
  font-size: 20px;
  line-height: 1.2;
}

.company-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 13px;
  margin-top: 19px;
  color: #c9d0d9;
  font-size: 17px;
  line-height: 1;
}

.company-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.company-meta svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: #d5dde7;
}

.company-info > strong {
  display: block;
  margin-top: 16px;
  color: #05070a;
  font-size: 30px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.company-info > strong span {
  color: #7d8086;
  font-size: 20px;
  font-weight: 500;
}

.company-next {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  align-self: center;
  border: 0;
  border-radius: 50%;
  background: #d8e0ea;
  color: #fff;
  cursor: pointer;
}

.company-next svg {
  width: 31px;
  height: 31px;
}

.company-next path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.work-header > div {
  min-width: 0;
}

.work-header span,
.work-summary-grid span,
.work-status-card span,
.work-section-title span,
.job-card small,
.life-event-list span {
  display: block;
  color: #858b96;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 750;
}

.work-header h1 {
  margin-bottom: 0;
}

.work-header > strong {
  flex: 0 0 auto;
  margin-top: 5px;
  padding: 9px 12px;
  border: 1px solid #e7eaf0;
  border-radius: 16px;
  color: #292a2e;
  background: #fff;
  font-size: 17px;
  line-height: 1;
  font-weight: 850;
}

.work-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.work-summary-grid article,
.work-status-card,
.job-card,
.life-event-list article,
.store-status-card,
.shop-card,
.gambling-card,
.gambling-game-card {
  border: 1px solid #e8ecf2;
  border-radius: 18px;
  background: #f7f9fc;
}

.work-summary-grid article {
  min-height: 96px;
  padding: 14px;
}

.work-summary-grid strong {
  display: block;
  margin-top: 8px;
  color: #292a2e;
  font-size: clamp(20px, 6vw, 28px);
  line-height: 1.04;
  font-weight: 850;
  word-break: break-word;
}

.work-status-card {
  padding: 15px 16px;
  margin-bottom: 24px;
}

.work-status-card p {
  margin: 7px 0 0;
  color: #4f5662;
  font-size: 16px;
  line-height: 1.35;
}

.work-section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 24px 2px 12px;
}

.work-section-title h2 {
  margin: 0;
  color: #292a2e;
  font-size: 28px;
  line-height: 1;
  font-weight: 820;
}

.work-section-title span {
  text-align: right;
}

.job-list {
  display: grid;
  gap: 16px;
}

.job-category-section {
  display: grid;
  gap: 10px;
}

.job-category-section > h3 {
  margin: 2px 2px 0;
  color: #292a2e;
  font-size: 19px;
  line-height: 1;
  font-weight: 880;
}

.job-category-list {
  display: grid;
  gap: 10px;
}

.job-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 96px;
  align-items: center;
  gap: 12px;
  padding: 15px;
  text-align: left;
}

.job-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #edf3fa;
  color: #2f6fbe;
}

.job-icon svg {
  width: 27px;
  height: 27px;
}

.job-icon path,
.job-icon rect,
.job-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.job-icon.hand,
.job-icon.squeegee {
  background: #fff7df;
  color: #c58a1e;
}

.job-icon.basket,
.job-icon.tray,
.job-icon.bike {
  background: #eef8f0;
  color: #2f9f67;
}

.job-icon.network,
.job-icon.star,
.job-icon.building {
  background: #fff1f6;
  color: #d94d76;
}

.job-icon.calculator,
.job-icon.code {
  background: #f3f0ff;
  color: #7258d6;
}

.job-card h3 {
  margin: 0;
  color: #292a2e;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 850;
}

.job-card strong {
  display: block;
  margin-top: 7px;
  color: #20242b;
  font-size: 20px;
  line-height: 1;
  font-weight: 850;
}

.job-card strong span {
  color: #858b96;
  font-size: 14px;
  font-weight: 650;
}

.job-card p {
  margin: 8px 0 0;
  color: #68717d;
  font-size: 14px;
  line-height: 1.28;
}

.job-card small {
  margin-top: 7px;
  color: #8b929d;
}

.job-card button {
  align-self: center;
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  background: #2f83f7;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.job-card.is-active {
  border-color: rgba(47, 131, 247, 0.35);
  background: #eef5ff;
}

.job-card.is-active button {
  background: #d8e7fb;
  color: #2f6fbe;
}

.job-card.is-locked {
  opacity: 0.62;
}

.job-card.is-locked button {
  background: #d8e0ea;
  color: #7b8796;
  cursor: not-allowed;
}

.life-event-list {
  display: grid;
  gap: 10px;
}

.life-event-list article {
  padding: 13px 14px;
}

.life-event-list strong {
  display: block;
  margin-top: 5px;
  color: #3f4650;
  font-size: 15px;
  line-height: 1.32;
  font-weight: 650;
}

.life-event-age {
  display: block;
  margin-bottom: 6px;
  color: #d33b35;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
}

.life-event-note {
  display: block;
  color: #636873;
  font-size: 18px;
  line-height: 1.38;
  font-weight: 560;
}

.life-event-note + .life-event-note {
  margin-top: 5px;
}

.life-events-card {
  margin-top: 20px;
  text-align: left;
}

.compact-history-header {
  padding-bottom: 13px;
}

.job-panel {
  margin-top: 14px;
  border: 1px solid #e8ecf2;
  border-radius: 20px;
  overflow: hidden;
  background: #f7f9fc;
}

.job-panel.illegal {
  background: #fbf6f3;
}

.job-panel-toggle {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  border: 0;
  background: transparent;
  color: #292a2e;
  text-align: left;
  cursor: pointer;
}

.job-panel-toggle strong {
  display: block;
  color: #292a2e;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 850;
}

.job-panel-toggle small {
  display: block;
  margin-top: 6px;
  color: #858b96;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 720;
}

.panel-chevron {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d8e0ea;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  transition: transform 160ms ease;
}

.job-panel-toggle[aria-expanded="true"] .panel-chevron {
  transform: rotate(180deg);
}

.job-panel-body {
  padding: 0 12px 12px;
}

.illegal-job-list {
  display: grid;
  gap: 12px;
}

.illegal-job-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 12px;
  padding: 15px;
  border: 1px solid #eadfd8;
  border-radius: 18px;
  background: #fff;
}

.illegal-job-main {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.illegal-job-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #7b2d25;
  background: #fff2ee;
}

.illegal-job-icon svg {
  width: 25px;
  height: 25px;
}

.illegal-job-icon path,
.illegal-job-icon rect,
.illegal-job-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.illegal-job-icon.lock {
  color: #4c3f38;
  background: #f0ece8;
}

.illegal-job-icon.warning,
.illegal-job-icon.mask {
  color: #8b2428;
  background: #fff0f0;
}

.illegal-job-icon.storage,
.illegal-job-icon.delivery {
  color: #5a3b1e;
  background: #fff5df;
}

.illegal-job-card h3 {
  margin: 0;
  color: #292a2e;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 850;
}

.illegal-job-card strong {
  display: block;
  margin-top: 7px;
  color: #20242b;
  font-size: 20px;
  line-height: 1;
  font-weight: 850;
}

.illegal-job-card p {
  margin: 8px 0 0;
  color: #7b6257;
  font-size: 14px;
  line-height: 1.28;
}

.illegal-job-card button {
  align-self: center;
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  background: #292a2e;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.illegal-job-card.is-locked {
  opacity: 0.62;
}

.illegal-job-card.is-locked button {
  background: #d8e0ea;
  color: #7b8796;
  cursor: not-allowed;
}

.profile-page-header {
  margin-bottom: 18px;
}

.profile-page-header span,
.profile-summary-grid span,
.life-bar-card span,
.life-choice-card span,
.school-status-card span,
.education-card p {
  display: block;
  color: #858b96;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 750;
}

.profile-page-header h1 {
  margin-bottom: 0;
}

.profile-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.profile-summary-grid article,
.life-bar-card,
.life-choice-card,
.school-status-card,
.education-card {
  border: 1px solid #e8ecf2;
  border-radius: 18px;
  background: #f7f9fc;
}

.profile-summary-grid article {
  min-height: 88px;
  padding: 14px;
}

.profile-summary-grid strong,
.life-bar-card strong,
.school-status-card strong {
  display: block;
  margin-top: 8px;
  color: #292a2e;
  font-size: clamp(20px, 6vw, 28px);
  line-height: 1.04;
  font-weight: 850;
  word-break: break-word;
}

.life-bars {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.life-bar-card {
  padding: 14px;
}

.life-bar-card > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.life-bar-track {
  height: 10px;
  overflow: hidden;
  margin-top: 12px;
  border-radius: 999px;
  background: #dfe6ef;
}

.life-bar-track span {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  transition: width 180ms ease;
}

.life-bar-card.health .life-bar-track span {
  background: #34b27a;
}

.life-bar-card.morale .life-bar-track span {
  background: #2f83f7;
}

.life-bar-card.reputation .life-bar-track span {
  background: #c59b35;
}

.life-bar-card.pressure .life-bar-track span {
  background: #ef5f4a;
}

.life-bar-card.guilt .life-bar-track span {
  background: #343a46;
}

.life-bar-card.energy .life-bar-track span {
  background: #7b61ff;
}

.activity-board {
  margin: 10px 0 22px;
}

.activity-board-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 2px 0 4px;
}

.activity-board-header span {
  color: #292a2e;
  font-size: 22px;
  line-height: 1;
  font-weight: 880;
}

.activity-board-header strong {
  color: #8b929d;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 760;
  text-align: right;
}

.activity-section,
.activity-link-row {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d3d8df;
  background: transparent;
  color: #292a2e;
  font-family: inherit;
}

.activity-section:first-of-type {
  border-top: 1px solid #d3d8df;
}

.activity-section summary,
.activity-link-row {
  min-height: 88px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  list-style: none;
  text-align: left;
  cursor: pointer;
}

.activity-section summary::-webkit-details-marker {
  display: none;
}

.activity-section summary::marker {
  content: "";
}

.activity-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #f1f5f9;
  color: #657385;
}

.activity-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.activity-icon.mind {
  color: #e65f83;
  background: #fff0f4;
}

.activity-icon.school {
  color: #2f83f7;
  background: #edf5ff;
}

.activity-icon.gambling {
  color: #7c5bd6;
  background: #f2edff;
}

.activity-icon.work {
  color: #334155;
  background: #eef2f6;
}

.activity-icon.relations {
  color: #d86b77;
  background: #fff0f1;
}

.activity-icon.shop {
  color: #d69b31;
  background: #fff7e6;
}

.activity-icon.assets {
  color: #2f9f67;
  background: #edf9f2;
}

.activity-copy strong,
.activity-copy small {
  display: block;
}

.activity-copy strong {
  color: #5d626b;
  font-size: clamp(24px, 6.6vw, 32px);
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0;
}

.activity-copy small {
  margin-top: 7px;
  color: #8e949d;
  font-size: clamp(14px, 4.2vw, 18px);
  line-height: 1.2;
  font-weight: 520;
}

.activity-chevron {
  color: #c7cbd1;
  font-size: 44px;
  line-height: 1;
  font-weight: 300;
  text-align: center;
  transform-origin: center;
  transition: transform 160ms ease;
}

.activity-section[open] .activity-chevron {
  transform: rotate(90deg);
}

.activity-section-body {
  padding: 2px 0 18px;
}

.activity-section-body .life-choice-card,
.activity-section-body .gambling-card,
.activity-section-body .school-status-card,
.activity-section-body .assets-card {
  margin: 0 0 14px;
}

.life-question-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(24, 29, 36, 0.58);
}

.life-question-overlay[hidden] {
  display: none;
}

.job-dismissal-overlay {
  position: fixed;
  inset: 0;
  z-index: 96;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(24, 29, 36, 0.62);
}

.job-dismissal-overlay[hidden] {
  display: none;
}

.job-dismissal-dialog {
  width: min(100%, 374px);
  padding: 24px 20px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.job-dismissal-dialog span {
  display: block;
  color: #9aa1aa;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 850;
  text-transform: uppercase;
}

.job-dismissal-dialog h2 {
  margin: 8px 0 12px;
  color: #ef2b25;
  font-size: 36px;
  line-height: 1;
  font-weight: 950;
}

.job-dismissal-dialog p {
  margin: 0 0 18px;
  color: #565d66;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 620;
}

.job-dismissal-dialog button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 13px;
  background: #ef2b25;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}

.life-question-dialog {
  width: min(100%, 380px);
  padding: 24px 20px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.life-question-dialog > span {
  display: block;
  color: #9aa1aa;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
}

.life-question-dialog h2 {
  margin: 6px 0 14px;
  color: #ef2b25;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
  text-align: center;
}

.life-question-dialog p {
  margin: 0 0 18px;
  color: #565d66;
  font-size: 20px;
  line-height: 1.38;
  font-weight: 560;
}

.life-question-options {
  display: grid;
  gap: 10px;
}

.life-question-options button {
  min-height: 58px;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: #ef2b25;
  color: #fff;
  text-align: center;
  cursor: pointer;
  box-shadow: inset 0 0 0 3px rgba(142, 0, 0, 0.22);
}

.life-question-options strong,
.life-question-options span {
  display: block;
}

.life-question-options strong {
  font-size: 17px;
  line-height: 1.15;
  font-weight: 900;
}

.life-question-options span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 720;
}

.life-question-dialog small {
  display: block;
  margin-top: 13px;
  color: #7a828c;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
}

.life-choice-card,
.assets-card {
  padding: 15px 16px;
  margin-bottom: 24px;
}

.life-choice-card p,
.assets-card p {
  margin: 7px 0 12px;
  color: #4f5662;
  font-size: 15px;
  line-height: 1.35;
}

.asset-category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 12px;
}

.asset-category-list button {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  border: 1px solid #e2e7ef;
  border-radius: 15px;
  background: #fff;
  color: #292a2e;
  text-align: left;
  cursor: pointer;
}

.asset-category-list button.active {
  border-color: #2f83f7;
  background: #eef6ff;
}

.asset-category-list span {
  color: #5d626b;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 820;
}

.asset-category-list strong {
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf1f7;
  color: #68717d;
  font-size: 13px;
  font-weight: 900;
}

.asset-category-list button.active strong {
  background: #2f83f7;
  color: #fff;
}

.asset-owned-list {
  display: grid;
  gap: 10px;
}

.asset-owned-card {
  position: relative;
  min-height: 118px;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 14px;
  border-radius: 17px;
  background: #20242b;
  color: #fff;
}

.asset-owned-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--shop-image);
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.asset-owned-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 13, 18, 0.06), rgba(10, 13, 18, 0.82));
}

.asset-owned-card > * {
  position: relative;
  z-index: 1;
}

.asset-owned-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 800;
}

.asset-owned-card strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
}

.asset-owned-card p,
.asset-empty-card p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.25;
}

.asset-empty-card {
  padding: 14px;
  border: 1px solid #e2e7ef;
  border-radius: 16px;
  background: #fff;
}

.asset-empty-card strong {
  color: #292a2e;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 850;
}

.asset-empty-card p {
  color: #68717d;
}

.edo-status-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid #e3e8ef;
  border-radius: 18px;
  background: #f7f9fc;
}

.edo-status-card span,
.edo-summary-grid span,
.edo-card span,
.edo-card small {
  display: block;
  color: #7c8795;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 820;
}

.edo-status-card p {
  margin: 7px 0 0;
  color: #4f5662;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 650;
}

.edo-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.edo-summary-grid article {
  min-height: 70px;
  padding: 12px;
  border-radius: 15px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e6ebf2;
}

.edo-summary-grid strong {
  display: block;
  margin-top: 8px;
  color: #292a2e;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.edo-list {
  display: grid;
  gap: 10px;
}

.edo-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 74px;
  align-items: center;
  gap: 12px;
  min-height: 96px;
  padding: 12px;
  border: 1px solid #e2e7ef;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(30, 51, 82, 0.06);
}

.edo-thumb {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  color: #2f83f7;
  background: #eef5ff;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
}

.edo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.edo-card h2 {
  margin: 5px 0 0;
  color: #292a2e;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 880;
}

.edo-card p {
  margin: 6px 0 0;
  color: #5f6874;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 650;
}

.edo-card small {
  margin-top: 5px;
  color: #2f83f7;
}

.edo-card button {
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: #20242b;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}

.edo-empty-card {
  padding: 17px;
  border: 1px dashed #d4dce7;
  border-radius: 18px;
  background: #f8fafc;
}

.edo-empty-card strong {
  display: block;
  color: #292a2e;
  font-size: 19px;
  line-height: 1.1;
  font-weight: 880;
}

.edo-empty-card p {
  margin: 8px 0 0;
  color: #68717d;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
}

.life-choice-list {
  display: grid;
  gap: 10px;
}

.life-choice-button {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #e2e7ef;
  border-radius: 16px;
  background: #fff;
  color: #292a2e;
  text-align: left;
  cursor: pointer;
}

.life-choice-button.is-active {
  border-color: #2f83f7;
  background: #eef6ff;
  box-shadow: inset 0 0 0 1px rgba(47, 131, 247, 0.16);
}

.life-choice-button.is-locked {
  opacity: 0.48;
  cursor: not-allowed;
}

.life-choice-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #edf3fa;
  color: #2f6fbe;
}

.life-choice-icon svg {
  width: 25px;
  height: 25px;
}

.life-choice-icon path,
.life-choice-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.life-choice-icon.dumbbell {
  background: #eef8f0;
  color: #2f9f67;
}

.life-choice-icon.medical {
  background: #fff0f0;
  color: #e25252;
}

.life-choice-icon.brain,
.life-choice-icon.book {
  background: #f3f0ff;
  color: #7258d6;
}

.life-choice-icon.heart {
  background: #fff1f6;
  color: #d94d76;
}

.life-choice-copy {
  min-width: 0;
}

.life-choice-button strong {
  display: block;
  color: #292a2e;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 850;
}

.life-choice-button small {
  display: block;
  margin-top: 5px;
  color: #68717d;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 650;
}

.life-choice-state {
  align-self: center;
  padding: 7px 9px;
  border-radius: 999px;
  background: #edf1f7;
  color: #68717d;
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
}

.life-choice-button.is-active .life-choice-state {
  background: #2f83f7;
  color: #fff;
}

.store-status-card,
.relationship-status-card {
  padding: 15px 16px;
  margin-bottom: 16px;
  border: 1px solid #e8ecf2;
  border-radius: 18px;
  background: #f7f9fc;
}

.store-status-card span,
.relationship-status-card span,
.relationship-card span {
  display: block;
  color: #858b96;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 750;
}

.investment-goal-card,
.investment-summary-card,
.stock-card {
  border: 1px solid #e8ecf2;
  border-radius: 18px;
  background: #f7f9fc;
}

.investment-goal-card {
  padding: 16px;
  margin-bottom: 12px;
}

.investment-panel .investment-goal-card,
.profile-page-header > span,
.work-header > div > span,
.earnings-heading > span,
.economy-card > .economy-card-header > span,
.relationship-status-card > span,
.social-status-card > span,
.social-block-header > span,
.store-panel > .profile-page-header > span,
.bank-panel > .profile-page-header > span,
.investment-panel > .profile-page-header > span,
.edo-panel > .profile-page-header > span,
.relationships-panel > .profile-page-header > span,
.profile-panel > .profile-page-header > span {
  display: none;
}

.investment-goal-card span,
.investment-summary-card span,
.stock-card span {
  display: block;
  color: #858b96;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 750;
}

.investment-goal-card h2 {
  margin: 7px 0 0;
  color: #292a2e;
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
}

.investment-goal-card p,
.investment-summary-card p {
  margin: 8px 0 0;
  color: #4f5662;
  font-size: 15px;
  line-height: 1.35;
}

.investment-goal-track {
  height: 10px;
  overflow: hidden;
  margin-top: 13px;
  border-radius: 999px;
  background: #dfe6ef;
}

.investment-goal-track span {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #2f83f7;
  transition: width 180ms ease;
}

.investment-summary-card {
  display: grid;
  gap: 12px;
  padding: 15px 16px;
  margin-bottom: 14px;
}

.investment-summary-card strong {
  display: block;
  margin-top: 7px;
  color: #292a2e;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.bank-panel {
  background:
    linear-gradient(180deg, #f5f8fc 0%, #ffffff 42%),
    #fff;
}

.bank-hero-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  padding: 22px 18px;
  margin-bottom: 15px;
  border: 1px solid rgba(32, 88, 138, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(37, 97, 146, 0.9), rgba(25, 45, 68, 0.92)),
    #203244;
  box-shadow: 0 18px 32px rgba(28, 52, 78, 0.16);
}

.bank-hero-panel::after {
  content: "";
  position: absolute;
  right: -52px;
  top: -58px;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.bank-hero-panel > * {
  position: relative;
  z-index: 1;
}

.bank-hero-panel span,
.bank-status-panel span,
.bank-action-panel > div > span,
.bank-overview-grid span,
.bank-amount-field span {
  display: block;
  color: #858b96;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 850;
}

.bank-hero-panel span {
  color: rgba(255, 255, 255, 0.72);
}

.bank-hero-panel strong {
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 1.02;
  font-weight: 930;
}

.bank-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 650;
}

.bank-dashboard {
  display: grid;
  gap: 13px;
  padding-bottom: 20px;
}

.bank-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.bank-overview-grid article {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(224, 232, 242, 0.95);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(30, 51, 82, 0.05);
}

.bank-overview-grid article:nth-child(5) {
  grid-column: 1 / -1;
  background: #f7f9fc;
}

.bank-overview-grid strong {
  display: block;
  margin-top: 8px;
  color: #292a2e;
  font-size: 20px;
  line-height: 1;
  font-weight: 930;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bank-action-board {
  display: grid;
  gap: 12px;
}

.bank-action-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 13px;
  padding: 16px;
  border: 1px solid #e8ecf2;
  border-radius: 22px;
  background: #f7f9fc;
  box-shadow: 0 12px 26px rgba(30, 51, 82, 0.06);
}

.bank-action-panel.savings {
  background:
    linear-gradient(135deg, rgba(35, 155, 99, 0.13), transparent 50%),
    #f7f9fc;
}

.bank-action-panel.loan {
  background:
    linear-gradient(135deg, rgba(217, 147, 47, 0.15), transparent 50%),
    #f7f9fc;
}

.bank-action-panel.is-locked {
  opacity: 0.72;
}

.bank-action-panel.is-locked::after {
  content: "18 yaş kilidi";
  position: absolute;
  right: 13px;
  top: 13px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #7d5b20;
  background: #fff4d8;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.bank-action-panel h2 {
  margin: 6px 0 0;
  color: #292a2e;
  font-size: 27px;
  line-height: 1;
  font-weight: 920;
}

.bank-action-panel p {
  margin: 8px 0 0;
  color: #5e6875;
  font-size: 14px;
  line-height: 1.32;
  font-weight: 650;
}

.bank-amount-field {
  display: grid;
  gap: 8px;
  padding: 13px 14px;
  border: 1px solid #dce5ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.bank-amount-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #20242b;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  font-weight: 930;
}

.bank-amount-field input:focus {
  background: #eef5ff;
}

.bank-amount-field input:disabled {
  color: #9aa5b4;
  cursor: not-allowed;
}

.bank-action-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.bank-action-buttons button {
  min-height: 50px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: #2f83f7;
  font-size: 15px;
  line-height: 1;
  font-weight: 880;
  cursor: pointer;
}

.bank-action-buttons button:nth-child(2) {
  color: #2f465f;
  background: #e6edf6;
}

.bank-action-buttons button:disabled {
  color: #8a94a3;
  background: #dfe6ef;
  cursor: not-allowed;
}

.bank-lock-panel {
  display: grid;
  gap: 7px;
  padding: 15px;
  border: 1px solid #f1d9a6;
  border-radius: 20px;
  background: #fff8e8;
}

.bank-lock-panel span {
  color: #9a752f;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 850;
}

.bank-lock-panel strong {
  color: #6d4e18;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 900;
}

.bank-lock-panel p {
  margin: 0;
  color: #7f6a44;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
}

.bank-status-panel {
  display: grid;
  gap: 7px;
  padding: 15px;
  border: 1px solid #e8ecf2;
  border-radius: 18px;
  background: #fff;
}

.bank-status-panel strong {
  color: #292a2e;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
}

.bank-status-panel p {
  margin: 0;
  color: #68717d;
  font-size: 13px;
  line-height: 1.32;
  font-weight: 650;
}

.politics-status-card,
.politics-metrics-grid article,
.politics-actions button {
  border: 1px solid #e8ecf2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(30, 51, 82, 0.05);
}

.politics-status-card {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  padding: 16px;
  background: #f7f9fc;
}

.politics-status-card span,
.politics-metrics-grid span {
  color: #858b96;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 850;
}

.politics-status-card strong {
  color: #292a2e;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 920;
}

.politics-status-card p {
  margin: 0;
  color: #5e6875;
  font-size: 14px;
  line-height: 1.34;
  font-weight: 650;
}

.politics-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.politics-metrics-grid article {
  min-width: 0;
  padding: 13px;
}

.politics-metrics-grid strong {
  display: block;
  margin-top: 7px;
  color: #292a2e;
  font-size: 20px;
  line-height: 1;
  font-weight: 920;
}

.politics-actions {
  display: grid;
  gap: 10px;
}

.politics-actions button {
  display: grid;
  gap: 7px;
  min-height: 74px;
  padding: 14px;
  text-align: left;
  cursor: pointer;
}

.politics-actions button strong {
  color: #292a2e;
  font-size: 17px;
  line-height: 1.08;
  font-weight: 900;
}

.politics-actions button span {
  color: #68717d;
  font-size: 13px;
  line-height: 1.28;
  font-weight: 650;
}

.investment-section-list {
  display: grid;
  gap: 13px;
  padding-bottom: 18px;
}

.investment-tool-section {
  overflow: hidden;
  border: 1px solid #e8ecf2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(30, 51, 82, 0.05);
}

.investment-tool-section > summary {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto 24px;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 10px 12px;
  color: #292a2e;
  list-style: none;
  cursor: pointer;
}

.investment-tool-section > summary::-webkit-details-marker {
  display: none;
}

.investment-tool-section > summary::marker {
  content: "";
}

.investment-tool-section[open] > summary {
  border-bottom: 1px solid #dfe6ef;
}

.investment-tool-section[open] > summary .activity-chevron {
  transform: rotate(90deg);
}

.investment-tool-section summary strong {
  display: block;
  color: #292a2e;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 900;
}

.investment-tool-section summary small {
  display: block;
  margin-top: 6px;
  color: #68717d;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 680;
}

.investment-section-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: #2f83f7;
  font-size: 17px;
  font-weight: 950;
}

.investment-section-icon.bank {
  background: #2b7b68;
}

.investment-section-icon.funds {
  background: #7c5bd6;
}

.investment-section-icon.market {
  background: #d9932f;
}

.investment-section-icon.real-estate {
  background: #7b5a36;
}

.investment-section-pill {
  justify-self: end;
  max-width: 116px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #2f465f;
  background: #e8eef6;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.investment-bank-body,
.investment-tool-grid {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.bank-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.bank-metrics-grid article {
  min-width: 0;
  padding: 11px 10px;
  border-radius: 15px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e3eaf3;
}

.bank-metrics-grid span,
.bank-actions-grid label span {
  display: block;
  color: #858b96;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 850;
}

.bank-metrics-grid strong {
  display: block;
  margin-top: 7px;
  color: #292a2e;
  font-size: 17px;
  line-height: 1;
  font-weight: 920;
}

.bank-actions-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px 96px;
  gap: 8px;
  align-items: end;
}

.bank-actions-grid label {
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: 10px;
  border-radius: 15px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #dfe6ef;
}

.bank-actions-grid input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #292a2e;
  background: transparent;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
}

.bank-actions-grid input:focus {
  background: #eaf2ff;
}

.bank-actions-grid button {
  min-height: 48px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: #2f83f7;
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  cursor: pointer;
}

.bank-actions-grid button:nth-of-type(2),
.bank-actions-grid button:nth-of-type(4) {
  color: #2f465f;
  background: #e6edf6;
}

.investment-bank-note {
  margin: 0;
  color: #4f5662;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
}

.investment-bank-note.muted {
  color: #858b96;
  font-size: 13px;
}

.real-estate-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 14px 12px;
  padding: 12px;
  border-radius: 16px;
  color: #2f465f;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e2e8f0;
}

.real-estate-status strong,
.real-estate-status span {
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
}

.real-estate-grid {
  display: grid;
  gap: 12px;
  padding: 0 14px 14px;
}

.real-estate-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 12px;
  align-items: end;
  min-height: 164px;
  padding: 15px;
  border-radius: 18px;
  color: #fff;
  background: #20242b;
  box-shadow: 0 12px 28px rgba(30, 51, 82, 0.12);
}

.real-estate-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(12, 16, 22, 0.78), rgba(12, 16, 22, 0.35)), var(--property-image);
  background-size: cover;
  background-position: center;
}

.real-estate-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 62%;
  background: linear-gradient(180deg, rgba(12, 16, 22, 0), rgba(12, 16, 22, 0.62));
}

.real-estate-card > * {
  position: relative;
  z-index: 1;
}

.real-estate-card span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.15;
  font-weight: 850;
}

.real-estate-card strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 920;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.real-estate-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.28;
  font-weight: 650;
}

.real-estate-card small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 780;
}

.real-estate-card button {
  align-self: center;
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  color: #20242b;
  background: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  cursor: pointer;
}

.real-estate-card.is-owned button {
  color: #fff;
  background: rgba(255, 255, 255, 0.28);
}

.stock-list-inner {
  display: grid;
  gap: 0;
  padding: 0 14px 10px;
}

.investment-tool-card {
  overflow: hidden;
  border: 1px solid #dfe6ef;
  border-radius: 18px;
  background: #fff;
}

.investment-tool-grid .stock-activity-section {
  border-bottom: 0;
}

.investment-tool-grid .stock-activity-section summary {
  padding-inline: 12px;
}

.investment-tool-grid .stock-section-body {
  padding: 0 12px 14px 82px;
}

.stock-analysis-card {
  padding: 16px;
  border: 1px solid #dfe6ef;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  box-shadow: 0 12px 28px rgba(30, 51, 82, 0.08);
}

.stock-analysis-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.stock-analysis-header h2 {
  margin: 6px 0 0;
  color: #292a2e;
  font-size: 27px;
  line-height: 1;
  font-weight: 920;
}

.stock-analysis-header p {
  margin: 7px 0 0;
  color: #68717d;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 650;
}

.stock-analysis-header strong {
  flex: 0 0 auto;
  color: #20242b;
  font-size: 25px;
  line-height: 1;
  font-weight: 930;
  text-align: right;
}

.stock-analysis-chart {
  width: 100%;
  height: 128px;
  display: block;
  margin-top: 14px;
  border-radius: 16px;
  background: #eef4fb;
}

.stock-analysis-grid-line {
  fill: none;
  stroke: rgba(104, 113, 125, 0.22);
  stroke-width: 2;
  stroke-dasharray: 7 7;
}

.stock-analysis-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 12px;
}

.stock-analysis-grid article {
  min-height: 64px;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e7edf5;
}

.stock-analysis-grid span {
  display: block;
  color: #858b96;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 800;
}

.stock-analysis-grid strong {
  display: block;
  margin-top: 7px;
  color: #292a2e;
  font-size: 15px;
  line-height: 1.05;
  font-weight: 900;
}

.stock-list {
  display: grid;
  gap: 13px;
  border-top: 0;
}

.stock-activity-section {
  display: block;
  width: 100%;
  border-bottom: 1px solid #d3d8df;
  background: transparent;
  color: #292a2e;
}

.stock-activity-section summary {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto 28px;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 14px 0;
  list-style: none;
  cursor: pointer;
}

.stock-activity-section summary::-webkit-details-marker {
  display: none;
}

.stock-activity-section summary::marker {
  content: "";
}

.stock-activity-section[open] .activity-chevron {
  transform: rotate(90deg);
}

.stock-activity-section.active summary {
  color: #1f6fd3;
}

.stock-symbol-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: #2f83f7;
  font-size: 17px;
  font-weight: 900;
}

.stock-activity-section:nth-of-type(2n) .stock-symbol-badge {
  background: #239b63;
}

.stock-activity-section:nth-of-type(3n) .stock-symbol-badge {
  background: #7c5bd6;
}

.stock-activity-section:nth-of-type(5n) .stock-symbol-badge {
  background: #d9932f;
}

.stock-summary-copy {
  min-width: 0;
}

.stock-summary-copy strong {
  display: block;
  color: #292a2e;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 860;
}

.stock-summary-copy small {
  display: block;
  margin-top: 6px;
  color: #68717d;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stock-summary-price {
  min-width: 86px;
  text-align: right;
}

.stock-summary-price strong,
.stock-summary-price small {
  display: block;
}

.stock-summary-price strong {
  color: #292a2e;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
}

.stock-summary-price small {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
}

.stock-change.up {
  color: #239b63;
}

.stock-change.down {
  color: #d94d4d;
}

.stock-section-body {
  padding: 0 0 16px 70px;
}

.stock-detail-note {
  margin: 0 0 10px;
  color: #5e6875;
  font-size: 14px;
  line-height: 1.32;
  font-weight: 680;
}

.stock-section-body .stock-analysis-chart {
  margin-top: 0;
}

.stock-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px 82px;
  gap: 8px;
  margin-top: 10px;
}

.stock-quantity-stepper {
  height: 40px;
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #dfe6ef;
}

.stock-quantity-stepper button {
  min-height: 40px;
  border: 0;
  background: transparent;
  color: #2f83f7;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.stock-quantity-stepper input {
  width: 100%;
  min-width: 0;
  height: 40px;
  border: 0;
  outline: 0;
  color: #292a2e;
  background: transparent;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
}

.stock-quantity-stepper input:focus {
  background: #eaf2ff;
}

.stock-actions > button {
  min-height: 42px;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: #2f83f7;
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  cursor: pointer;
}

.stock-actions > button:last-child {
  color: #2f465f;
  background: #e6edf6;
}

.store-status-card p,
.relationship-status-card p {
  margin: 7px 0 0;
  color: #4f5662;
  font-size: 15px;
  line-height: 1.35;
}

.store-expense-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 13px;
}

.store-expense-grid article {
  min-width: 0;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e3eaf3;
}

.store-expense-grid strong {
  display: block;
  margin-top: 5px;
  color: #292a2e;
  font-size: clamp(14px, 3.7vw, 17px);
  line-height: 1.05;
  font-weight: 850;
  word-break: break-word;
}

.shop-list,
.gambling-list {
  display: grid;
  gap: 12px;
}

.shop-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.shop-category-card {
  position: relative;
  min-height: 156px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 16px;
  border: 0;
  border-radius: 18px;
  background: #20242b;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.shop-category-card::before,
.shop-card.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--shop-image);
  background-size: cover;
  background-position: center;
  opacity: 0.56;
}

.shop-category-card::after,
.shop-card.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 13, 18, 0.1), rgba(10, 13, 18, 0.84));
}

.shop-category-card > *,
.shop-card.has-image > * {
  position: relative;
  z-index: 1;
}

.shop-category-card span,
.shop-category-card small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.15;
  font-weight: 800;
}

.shop-category-card strong {
  margin-top: 5px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.shop-category-card em {
  position: absolute;
  right: 13px;
  bottom: 12px;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
}

.shop-category-card.danger::after,
.shop-card.has-image.danger::after {
  background: linear-gradient(180deg, rgba(34, 8, 8, 0.18), rgba(34, 8, 8, 0.88));
}

.shop-panel-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid #e8ecf2;
  border-radius: 18px;
  background: #f7f9fc;
}

.shop-panel-header button {
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 13px;
  background: #e4ebf4;
  color: #4f5662;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.shop-panel-header span {
  display: block;
  color: #858b96;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 780;
}

.shop-panel-header strong {
  display: block;
  margin-top: 3px;
  color: #292a2e;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.gambling-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.gambling-panel-button {
  min-height: 74px;
  padding: 12px;
  border: 0;
  border-radius: 15px;
  color: #292a2e;
  background: #f1f5f9;
  text-align: left;
  cursor: pointer;
}

.gambling-panel-button.active {
  color: #0f4e9a;
  background: #eaf3ff;
  box-shadow: inset 0 0 0 2px #2f83f7;
}

.gambling-panel-button strong,
.gambling-panel-button span {
  display: block;
}

.gambling-panel-button strong {
  font-size: 15px;
  line-height: 1.05;
  font-weight: 900;
}

.gambling-panel-button span {
  margin-top: 6px;
  color: #68717d;
  font-size: 11px;
  line-height: 1.18;
  font-weight: 740;
}

.gambling-panel-empty,
.gambling-panel-detail {
  margin-top: 2px;
}

.gambling-panel-empty {
  padding: 14px;
  border-radius: 14px;
  color: #68717d;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 720;
}

.scratch-ticket-card {
  padding: 12px;
  border: 1px solid #e8ecf2;
  border-radius: 18px;
  background: #fff;
}

.scratch-ticket-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.scratch-ticket-header span,
.scratch-ticket-header strong {
  display: block;
  line-height: 1.1;
}

.scratch-ticket-header span {
  color: #292a2e;
  font-size: 20px;
  font-weight: 870;
}

.scratch-ticket-header strong {
  color: #858b96;
  font-size: 12px;
  font-weight: 760;
  text-align: right;
}

.scratch-ticket-card img {
  width: 100%;
  max-height: none;
  display: block;
  object-fit: contain;
  object-position: top center;
  border-radius: 14px;
  background: #f4f7fb;
}

.scratch-ticket-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.scratch-ticket-option {
  min-height: 152px;
  padding: 8px;
  border: 0;
  border-radius: 15px;
  background: #f1f5f9;
  color: #292a2e;
  text-align: left;
  cursor: pointer;
  display: grid;
  gap: 8px;
}

.scratch-ticket-option.active {
  background: #eaf3ff;
  box-shadow: inset 0 0 0 2px #2f83f7;
}

.scratch-ticket-info,
.scratch-ticket-info strong,
.scratch-ticket-info small {
  display: block;
}

.scratch-ticket-art {
  display: block;
  width: 100%;
  min-height: 92px;
  border-radius: 12px;
  background-image: url("assets/scratch-tickets.png");
  background-repeat: no-repeat;
  background-size: 214% 318%;
  background-position: var(--ticket-position);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.scratch-ticket-info {
  min-height: 48px;
}

.scratch-ticket-info strong {
  color: #1f6fd3;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
}

.scratch-ticket-info small {
  margin-top: 5px;
  color: #68717d;
  font-size: 11px;
  line-height: 1.12;
  font-weight: 720;
}

.scratch-play-area {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border-radius: 15px;
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px #e2e9f2;
}

.scratch-play-area > div:first-child span,
.scratch-play-area > div:first-child strong,
.scratch-play-area > div:first-child p {
  display: block;
}

.scratch-play-area > div:first-child span {
  color: #858b96;
  font-size: 12px;
  font-weight: 760;
}

.scratch-play-area > div:first-child strong {
  margin-top: 4px;
  color: #292a2e;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 880;
}

.scratch-play-area > div:first-child p {
  margin: 6px 0 0;
  color: #5a6370;
  font-size: 13px;
  line-height: 1.28;
  font-weight: 650;
}

.scratch-symbol-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.scratch-cell {
  position: relative;
  min-height: 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 13px;
  color: #20242b;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(220, 226, 235, 0.92)),
    #e5eaf1;
  font-size: 13px;
  line-height: 1.05;
  font-weight: 900;
  text-align: center;
  touch-action: none;
  cursor: grab;
}

.scratch-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(45deg, #cfd6df 0 6px, #e7ebf0 6px 12px);
}

.scratch-cell::after {
  content: "Kazı";
  position: absolute;
  z-index: 2;
  color: #768090;
  font-size: 12px;
  font-weight: 900;
}

.scratch-cell.is-revealed {
  background: #fff7d6;
  box-shadow: inset 0 0 0 2px #f5d36d;
  cursor: default;
}

.scratch-cell.is-revealed::before,
.scratch-cell.is-revealed::after {
  display: none;
}

.scratch-cell span {
  position: relative;
  z-index: 3;
}

.scratch-play-area > button {
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: #1f6fd3;
  font-size: 16px;
  line-height: 1;
  font-weight: 880;
  cursor: pointer;
}

.scratch-play-area > button:disabled,
.sports-odd:disabled,
.bet-slip button:disabled,
.bet-slip input:disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.sports-bet-card {
  padding: 12px;
  border: 1px solid #173653;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(21, 69, 108, 0.96), rgba(9, 38, 66, 0.98)),
    #0b2d4d;
  color: #fff;
  box-shadow: 0 14px 28px rgba(16, 45, 75, 0.16);
}

.sports-bet-topbar,
.sports-market-header,
.bet-slip-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.sports-bet-topbar {
  margin-bottom: 10px;
}

.sports-bet-topbar span {
  color: #e7f2ff;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.sports-bet-topbar strong {
  min-height: 34px;
  padding: 0 10px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #0d3155;
  background: #dbeafe;
  font-size: 12px;
  font-weight: 850;
}

.featured-match {
  min-height: 116px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(7, 20, 35, 0.18), rgba(5, 36, 20, 0.42)),
    linear-gradient(135deg, #1d5f96, #10476e 52%, #1b7b4d);
  text-align: center;
}

.team-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px 18px 22px 22px;
  color: #fff;
  background: #2368a2;
  font-size: 27px;
  line-height: 1;
  font-weight: 950;
}

.team-badge.away {
  background: #bd2d35;
}

.featured-match span,
.featured-match small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 800;
}

.featured-match strong {
  display: block;
  margin: 5px 0;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  font-weight: 950;
}

.sports-month-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 760;
}

.sports-market-header {
  display: grid;
  grid-template-columns: minmax(82px, 1.35fr) repeat(5, 1fr);
  margin: 12px 0 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
  text-align: center;
}

.sports-market-header span:first-child {
  text-align: left;
}

.sports-match-list {
  display: grid;
  gap: 6px;
}

.sports-match-row {
  display: grid;
  grid-template-columns: minmax(82px, 1.35fr) 5fr;
  gap: 6px;
  align-items: stretch;
}

.sports-match-name {
  display: grid;
  align-content: center;
  min-height: 56px;
  padding: 7px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.sports-match-name strong,
.sports-match-name span {
  display: block;
}

.sports-match-name strong {
  color: #fff;
  font-size: 11px;
  line-height: 1.05;
  font-weight: 900;
}

.sports-match-name span {
  margin: 2px 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
}

.sports-odds-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
}

.sports-odd {
  min-height: 56px;
  padding: 6px 4px;
  border: 0;
  border-radius: 10px;
  color: #dfeeff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.sports-odd.active {
  color: #092642;
  background: #4ade80;
}

.sports-odd span,
.sports-odd strong {
  display: block;
  line-height: 1;
}

.sports-odd span {
  font-size: 10px;
  font-weight: 850;
}

.sports-odd strong {
  margin-top: 7px;
  font-size: 16px;
  font-weight: 950;
}

.bet-slip {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(3, 22, 40, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.bet-slip span,
.bet-slip p,
.bet-slip strong {
  display: block;
}

.bet-slip span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 760;
}

.bet-slip strong {
  margin-top: 4px;
  color: #fff;
  font-size: 16px;
  line-height: 1.12;
  font-weight: 900;
}

.bet-slip p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.25;
}

.bet-slip-selections {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.bet-slip-selection {
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.bet-slip-selection strong {
  margin: 0;
  font-size: 12px;
}

.bet-slip-selection span,
.bet-slip-empty {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 760;
}

.bet-slip-empty {
  margin: 0;
}

.bet-slip label {
  display: grid;
  gap: 6px;
}

.bet-slip input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 11px;
  outline: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 17px;
  font-weight: 850;
  pointer-events: auto;
  user-select: text;
  touch-action: manipulation;
}

.bet-slip-summary {
  color: rgba(255, 255, 255, 0.76);
}

.bet-slip button {
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  color: #092642;
  background: #4ade80;
  font-size: 16px;
  line-height: 1;
  font-weight: 950;
  cursor: pointer;
}

.sports-coupon-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.sports-coupon-list > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
}

.sports-coupon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.sports-coupon strong,
.sports-coupon span,
.sports-coupon p {
  display: block;
}

.sports-coupon strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 900;
}

.sports-coupon span,
.sports-coupon p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.22;
  font-weight: 740;
}

.sports-coupon em {
  padding: 6px 8px;
  border-radius: 999px;
  color: #092642;
  background: #dbeafe;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.sports-coupon.won em {
  background: #4ade80;
}

.sports-coupon.lost em {
  color: #fff;
  background: #ef4444;
}

.shop-card,
.gambling-game-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 12px;
  padding: 15px;
}

.shop-card.has-image {
  position: relative;
  overflow: hidden;
  min-height: 156px;
  align-items: end;
  border: 0;
  background: #20242b;
  color: #fff;
}

.shop-card.has-image span,
.shop-card.has-image p,
.shop-card.has-image small {
  color: rgba(255, 255, 255, 0.78);
}

.shop-card.has-image h2 {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.shop-card.has-image button {
  background: rgba(255, 255, 255, 0.92);
  color: #20242b;
}

.shop-card.has-image.danger button {
  background: #ef4444;
  color: #fff;
}

.shop-card span {
  display: block;
  color: #858b96;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 750;
}

.shop-card h2,
.gambling-game-card h3 {
  margin: 4px 0 0;
  color: #292a2e;
  font-size: 21px;
  line-height: 1.08;
  font-weight: 850;
}

.shop-card p,
.gambling-game-card p {
  margin: 7px 0 0;
  color: #68717d;
  font-size: 14px;
  line-height: 1.28;
}

.shop-card small {
  display: block;
  margin-top: 6px;
  color: #68717d;
  font-size: 13px;
  line-height: 1.22;
  font-weight: 650;
}

.shop-card button,
.gambling-game-card button {
  align-self: center;
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  background: #2f83f7;
  color: #fff;
  font-size: 14px;
  line-height: 1.05;
  font-weight: 830;
  cursor: pointer;
}

.shop-card.is-owned {
  background: #eef5ff;
}

.shop-card.has-image.is-owned {
  background: #20242b;
}

.shop-card.is-owned button {
  background: #d8e0ea;
  color: #7b8796;
  cursor: not-allowed;
}

.gambling-card {
  padding: 15px 16px;
  margin: 16px 0 20px;
}

.gambling-card > span {
  display: block;
  color: #858b96;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 750;
}

.gambling-card > p {
  margin: 7px 0 13px;
  color: #4f5662;
  font-size: 15px;
  line-height: 1.35;
}

.gambling-game-card {
  grid-template-columns: minmax(0, 1fr) 74px;
  background: #fff;
}

.gambling-game-card button {
  background: #20242b;
}

.roulette-card {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #e8ecf2;
  border-radius: 18px;
  background: #fff;
}

.roulette-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.roulette-header span {
  display: block;
  color: #858b96;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 750;
}

.roulette-header h2 {
  margin: 4px 0 0;
  color: #292a2e;
  font-size: 23px;
  line-height: 1.05;
  font-weight: 870;
}

.roulette-header strong {
  flex: 0 0 auto;
  max-width: 138px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #155db8;
  background: #edf5ff;
  font-size: 12px;
  line-height: 1.12;
  font-weight: 850;
  text-align: center;
}

.roulette-live-table {
  position: relative;
  --roulette-wheel-size: min(72vw, 292px);
  --roulette-label-radius: calc(var(--roulette-wheel-size) * 0.43);
  --roulette-ball-radius: calc(var(--roulette-wheel-size) * 0.36);
  --roulette-ball-start-angle: 0deg;
  --roulette-ball-angle: 0deg;
  --roulette-ball-end-angle: -1800deg;
  min-height: calc(var(--roulette-wheel-size) + 26px);
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.3), rgba(7, 23, 43, 0.12) 36%, rgba(7, 23, 43, 0.5) 78%),
    #0d2f23;
}

.roulette-asset {
  display: none;
}

.roulette-wheel-fill {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: var(--roulette-wheel-size);
  height: var(--roulette-wheel-size);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, #124f34 0 18%, transparent 19%),
    conic-gradient(
      #1f9d66 0 9.72deg,
      #d33b35 9.72deg 19.44deg,
      #20242b 19.44deg 29.16deg,
      #d33b35 29.16deg 38.88deg,
      #20242b 38.88deg 48.6deg,
      #d33b35 48.6deg 58.32deg,
      #20242b 58.32deg 68.04deg,
      #d33b35 68.04deg 77.76deg,
      #20242b 77.76deg 87.48deg,
      #d33b35 87.48deg 97.2deg,
      #20242b 97.2deg 106.92deg,
      #d33b35 106.92deg 116.64deg,
      #20242b 116.64deg 126.36deg,
      #d33b35 126.36deg 136.08deg,
      #20242b 136.08deg 145.8deg,
      #d33b35 145.8deg 155.52deg,
      #20242b 155.52deg 165.24deg,
      #d33b35 165.24deg 174.96deg,
      #20242b 174.96deg 184.68deg,
      #d33b35 184.68deg 194.4deg,
      #20242b 194.4deg 204.12deg,
      #d33b35 204.12deg 213.84deg,
      #20242b 213.84deg 223.56deg,
      #d33b35 223.56deg 233.28deg,
      #20242b 233.28deg 243deg,
      #d33b35 243deg 252.72deg,
      #20242b 252.72deg 262.44deg,
      #d33b35 262.44deg 272.16deg,
      #20242b 272.16deg 281.88deg,
      #d33b35 281.88deg 291.6deg,
      #20242b 291.6deg 301.32deg,
      #d33b35 301.32deg 311.04deg,
      #20242b 311.04deg 320.76deg,
      #d33b35 320.76deg 330.48deg,
      #20242b 330.48deg 340.2deg,
      #d33b35 340.2deg 349.92deg,
      #20242b 349.92deg 360deg
    );
  box-shadow:
    inset 0 0 0 9px rgba(255, 255, 255, 0.18),
    inset 0 0 0 20px rgba(0, 0, 0, 0.16),
    0 16px 32px rgba(0, 0, 0, 0.22);
  opacity: 0.96;
}

.roulette-live-table.is-spinning .roulette-wheel-fill {
  animation: roulette-wheel-spin 3.2s cubic-bezier(0.14, 0.78, 0.17, 1);
}

.roulette-wheel-number-ring {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: var(--roulette-wheel-size);
  height: var(--roulette-wheel-size);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.roulette-live-table.is-spinning .roulette-wheel-number-ring {
  animation: roulette-wheel-spin 3.2s cubic-bezier(0.14, 0.78, 0.17, 1);
}

.roulette-wheel-number {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 16px;
  display: grid;
  place-items: center;
  margin: -8px 0 0 -10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 14, 22, 0.42);
  font-size: 8px;
  line-height: 1;
  font-weight: 950;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.72);
  transform: rotate(var(--angle)) translateY(calc(-1 * var(--roulette-label-radius))) rotate(var(--counter-angle));
}

.roulette-wheel-number.green {
  background: rgba(31, 157, 102, 0.88);
}

.roulette-wheel-number.is-result {
  box-shadow: 0 0 0 2px #fff, 0 0 18px rgba(255, 255, 255, 0.8);
}

.roulette-ball-orbit {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: var(--roulette-wheel-size);
  height: var(--roulette-wheel-size);
  margin: calc(var(--roulette-wheel-size) / -2) 0 0 calc(var(--roulette-wheel-size) / -2);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(var(--roulette-ball-angle));
  transform-origin: center;
  will-change: transform;
}

.roulette-ball {
  position: absolute;
  left: 50%;
  top: calc(50% - var(--roulette-ball-radius));
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 5px 7px rgba(0, 0, 0, 0.42));
}

.roulette-live-table.is-spinning .roulette-ball-orbit {
  animation: roulette-ball-track-spin 3.2s cubic-bezier(0.16, 0.72, 0.2, 1) both;
}

.roulette-live-table::after {
  content: attr(data-result);
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background: rgba(10, 20, 32, 0.76);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  font-size: 18px;
  font-weight: 900;
}

.roulette-live-table.is-spinning::after {
  opacity: 0;
}

@keyframes roulette-wheel-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(1800deg);
  }
}

@keyframes roulette-ball-track-spin {
  from {
    transform: rotate(var(--roulette-ball-start-angle));
  }
  to {
    transform: rotate(var(--roulette-ball-end-angle));
  }
}

.roulette-status {
  min-height: 40px;
  margin: 12px 0;
  color: #4f5662;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
}

.roulette-stake-field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.roulette-stake-field span {
  color: #858b96;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 760;
}

.roulette-stake-field input {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border: 1px solid #dfe7f1;
  border-radius: 14px;
  outline: 0;
  color: #20242b;
  background: #f8fafc;
  font-size: 19px;
  font-weight: 850;
}

.roulette-number-grid {
  display: grid;
  grid-template-columns: 42px repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(3, 35px);
  gap: 6px;
}

.roulette-number,
.roulette-outside-bet {
  border: 0;
  cursor: pointer;
}

.roulette-number {
  min-height: 35px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
}

.roulette-number.red {
  background: #d33b35;
}

.roulette-number.black {
  background: #20242b;
}

.roulette-number.green {
  background: #1f9d66;
}

.roulette-number.active,
.roulette-outside-bet.active {
  outline: 3px solid rgba(47, 131, 247, 0.28);
  box-shadow: 0 0 0 1px #2f83f7 inset;
}

.roulette-outside-bets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 10px;
}

.roulette-outside-bet {
  min-height: 54px;
  padding: 8px 6px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #292a2e;
}

.roulette-outside-bet strong,
.roulette-outside-bet span {
  display: block;
}

.roulette-outside-bet strong {
  font-size: 14px;
  line-height: 1.05;
  font-weight: 850;
}

.roulette-outside-bet span {
  margin-top: 4px;
  color: #697281;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 700;
}

.roulette-spin-button {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: #1f6fd3;
  font-size: 17px;
  font-weight: 880;
  cursor: pointer;
}

.blackjack-card {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #e8ecf2;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9) 44%, rgba(239, 245, 252, 0.92)),
    #fff;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.blackjack-card.is-playing,
.blackjack-card.is-animating {
  border-color: rgba(47, 131, 247, 0.28);
  box-shadow: 0 14px 34px rgba(24, 48, 84, 0.12);
}

.blackjack-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.blackjack-header span {
  display: block;
  color: #858b96;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 750;
}

.blackjack-header h2 {
  margin: 4px 0 0;
  color: #292a2e;
  font-size: 23px;
  line-height: 1.05;
  font-weight: 870;
}

.blackjack-header strong {
  flex: 0 0 auto;
  max-width: 120px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #155db8;
  background: #edf5ff;
  font-size: 12px;
  line-height: 1.12;
  font-weight: 850;
  text-align: center;
}

.blackjack-event-log {
  display: grid;
  gap: 7px;
  padding: 12px;
  border-radius: 14px;
  background: #f4f7fb;
  box-shadow: inset 0 0 0 1px rgba(28, 62, 96, 0.08);
}

.blackjack-event-log span {
  display: block;
  color: #4f5662;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 720;
}

.blackjack-event-log span:first-child {
  color: #20242b;
  font-size: 13px;
  font-weight: 850;
}

.blackjack-status {
  min-height: 40px;
  margin: 12px 0;
  color: #4f5662;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
}

.blackjack-stake-field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.blackjack-stake-field span {
  color: #858b96;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 760;
}

.blackjack-stake-field input {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border: 1px solid #dfe7f1;
  border-radius: 14px;
  outline: 0;
  color: #20242b;
  background: #f8fafc;
  font-size: 19px;
  font-weight: 850;
}

.blackjack-hands {
  display: grid;
  gap: 10px;
}

.blackjack-hands section {
  padding: 10px;
  border-radius: 14px;
  background: #f7f9fc;
}

.blackjack-hand-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.blackjack-hand-title span,
.blackjack-hand-title strong {
  font-size: 13px;
  line-height: 1.1;
  font-weight: 850;
}

.blackjack-hand-title span {
  color: #68717d;
}

.blackjack-hand-title strong {
  color: #20242b;
}

.blackjack-hand {
  min-height: 68px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  perspective: 460px;
}

.blackjack-split-hand {
  display: grid;
  gap: 5px;
  padding: 6px;
  border: 1px solid transparent;
  border-radius: 10px;
}

.blackjack-split-hand.active {
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.07);
}

.blackjack-split-hand small {
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
}

.blackjack-split-hand > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.blackjack-playing-card {
  width: 44px;
  height: 62px;
  display: grid;
  align-content: space-between;
  padding: 6px;
  border: 1px solid #d7dee9;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  box-shadow: 0 4px 9px rgba(30, 42, 62, 0.08);
  transform-origin: center bottom;
}

.blackjack-playing-card.is-fresh {
  animation: blackjack-card-deal 360ms cubic-bezier(0.18, 0.72, 0.24, 1) both;
  animation-delay: calc(var(--card-index, 0) * 70ms);
}

.blackjack-playing-card.red {
  color: #dc2626;
}

.blackjack-playing-card strong,
.blackjack-playing-card em {
  display: block;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}

.blackjack-playing-card em {
  justify-self: end;
  font-size: 18px;
}

.blackjack-playing-card.hidden-card {
  place-items: center;
  align-content: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 44%),
    repeating-linear-gradient(45deg, #1f2f46 0 6px, #172236 6px 12px);
  font-size: 24px;
  font-weight: 900;
}

.blackjack-playing-card.hidden-card.is-fresh {
  animation-name: blackjack-card-flip;
}

.blackjack-empty-hand {
  align-self: center;
  color: #8a94a3;
  font-size: 14px;
  font-weight: 760;
}

.blackjack-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.blackjack-actions button {
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: #20242b;
  font-size: 14px;
  line-height: 1.05;
  font-weight: 850;
  cursor: pointer;
}

.blackjack-actions button:first-child {
  background: #1f6fd3;
}

.blackjack-actions button:disabled {
  background: #d8e0ea;
  color: #7b8796;
  cursor: not-allowed;
}

@keyframes blackjack-card-deal {
  0% {
    opacity: 0;
    transform: translate3d(34px, -30px, 0) rotate(8deg) rotateY(22deg) scale(0.82);
  }
  72% {
    opacity: 1;
    transform: translate3d(-2px, 2px, 0) rotate(-1deg) rotateY(0deg) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) rotateY(0deg) scale(1);
  }
}

@keyframes blackjack-card-flip {
  0% {
    opacity: 0;
    transform: translate3d(30px, -26px, 0) rotateY(90deg) scale(0.82);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0deg) scale(1);
  }
}

.relationship-list {
  display: grid;
  gap: 12px;
}

.relationship-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 13px;
  padding: 15px;
  border: 1px solid #e8ecf2;
  border-radius: 18px;
  background: #f7f9fc;
}

.relationship-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dfe8f5;
  color: #2f6fbe;
  font-size: 24px;
  line-height: 1;
  font-weight: 850;
}

.relationship-info h2 {
  margin: 4px 0 0;
  color: #292a2e;
  font-size: 23px;
  line-height: 1.05;
  font-weight: 850;
}

.relationship-info p {
  margin: 7px 0 0;
  color: #68717d;
  font-size: 14px;
  line-height: 1.3;
}

.relationship-track {
  height: 9px;
  overflow: hidden;
  margin-top: 12px;
  border-radius: 999px;
  background: #dfe6ef;
}

.relationship-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #2f83f7;
}

.relationship-info > strong {
  display: block;
  margin-top: 8px;
  color: #3f4650;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 780;
}

.relationship-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.relationship-actions button {
  min-height: 40px;
  border: 0;
  border-radius: 13px;
  background: #fff;
  color: #2f6fbe;
  font-size: 14px;
  line-height: 1.05;
  font-weight: 800;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px #dbe5f0;
}

.relationship-topic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.relationship-topic-list button,
.relationship-gift-list button {
  min-height: 38px;
  border: 0;
  border-radius: 12px;
  background: #eef4fb;
  color: #34465d;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 760;
  text-align: left;
  cursor: pointer;
  padding: 9px 10px;
}

.relationship-gift-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.relationship-gift-list button {
  min-height: 48px;
}

.relationship-gift-list button span {
  color: #858b96;
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
}

.relationship-gift-list button strong {
  display: block;
  margin-top: 4px;
  color: #292a2e;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 900;
}

.relationship-gift-list p {
  margin: 0;
  padding: 11px;
  border-radius: 12px;
  color: #68717d;
  background: #f1f5f9;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 650;
}

.social-pressure-block {
  margin-top: 24px;
  padding-top: 4px;
}

.social-block-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 2px 12px;
}

.social-block-header span {
  color: #858b96;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.social-block-header h2 {
  margin: 0;
  color: #292a2e;
  font-size: 29px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
}

.social-status-card {
  padding: 15px 16px;
  margin-bottom: 14px;
  border: 1px solid #e8ecf2;
  border-radius: 18px;
  background: #f7f9fc;
}

.social-status-card span,
.social-summary-grid span,
.social-action-card span {
  display: block;
  color: #858b96;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 750;
}

.social-status-card p {
  margin: 7px 0 0;
  color: #4f5662;
  font-size: 15px;
  line-height: 1.35;
}

.social-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.social-summary-grid article {
  min-width: 0;
  padding: 12px 10px;
  border: 1px solid #e8ecf2;
  border-radius: 16px;
  background: #fff;
}

.social-summary-grid strong {
  display: block;
  margin-top: 7px;
  color: #292a2e;
  font-size: clamp(18px, 5vw, 24px);
  line-height: 1;
  font-weight: 900;
  word-break: break-word;
}

.social-summary-grid small {
  display: block;
  margin-top: 7px;
  color: #7c8490;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
}

.social-action-list {
  display: grid;
  gap: 12px;
}

.social-action-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 12px;
  padding: 15px;
  border: 1px solid #e8ecf2;
  border-radius: 18px;
  background: #f7f9fc;
}

.social-action-card h2 {
  margin: 6px 0 0;
  color: #292a2e;
  font-size: 21px;
  line-height: 1.08;
  font-weight: 850;
}

.social-action-card p {
  margin: 8px 0 0;
  color: #626b76;
  font-size: 14px;
  line-height: 1.32;
}

.social-action-card button {
  align-self: center;
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  background: #2f83f7;
  color: #fff;
  font-size: 14px;
  line-height: 1.05;
  font-weight: 850;
  cursor: pointer;
}

.social-action-card.danger {
  background: #fff4f0;
  border-color: #ffd8c7;
}

.social-action-card.danger button {
  background: #ef4f2f;
}

.school-status-card {
  display: grid;
  gap: 12px;
  padding: 15px 16px;
  margin-bottom: 24px;
}

.study-progress-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe6ef;
}

.study-progress-track span {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #2f83f7;
  transition: width 180ms ease;
}

.school-status-card p {
  margin: 0;
  color: #4f5662;
  font-size: 15px;
  line-height: 1.35;
}

.education-list {
  display: grid;
  gap: 12px;
}

.education-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 104px;
  align-items: center;
  gap: 12px;
  padding: 15px;
}

.education-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #edf3fa;
  color: #2f6fbe;
}

.education-icon svg {
  width: 27px;
  height: 27px;
}

.education-icon path,
.education-icon rect,
.education-icon circle,
.education-icon line,
.education-icon polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.education-icon.primary {
  background: #fff7df;
  color: #d19a24;
}

.education-icon.middleSchool {
  background: #eef8f0;
  color: #2f9f67;
}

.education-icon.highSchool {
  background: #f3f0ff;
  color: #7258d6;
}

.education-icon.associate {
  background: #eef6ff;
  color: #2f83f7;
}

.education-icon.bachelor {
  background: #fff1f6;
  color: #d94d76;
}

.education-icon.master {
  background: #fff0e8;
  color: #d66d32;
}

.education-card h3 {
  margin: 0;
  color: #292a2e;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 850;
}

.education-card strong {
  display: block;
  margin-top: 7px;
  color: #20242b;
  font-size: 20px;
  line-height: 1;
  font-weight: 850;
}

.education-card p {
  margin: 8px 0 0;
  line-height: 1.28;
}

.education-card button {
  align-self: center;
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  background: #2f83f7;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.education-card.is-active {
  border-color: rgba(47, 131, 247, 0.35);
  background: #eef5ff;
}

.education-card.is-complete {
  border-color: rgba(63, 180, 128, 0.4);
  background: #effaf4;
}

.education-card.is-active button,
.education-card.is-complete button,
.education-card.is-locked button {
  background: #d8e0ea;
  color: #7b8796;
  cursor: not-allowed;
}

.tab-bar {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 200;
  width: min(100vw, 430px);
  height: 82px;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  align-items: center;
  padding: 0 5px;
  transform: translateX(-50%);
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tab-bar button {
  min-width: 0;
  height: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: #b7c0cb;
  font-size: 9px;
}

.tab-bar button span {
  line-height: 1.05;
  text-align: center;
}

.tab-bar button[data-view="workPanel"],
.tab-bar button[data-view="storePanel"],
.tab-bar button[data-view="edoPanel"] {
  font-size: 10px;
}

.tab-bar svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.tab-bar .active {
  color: var(--blue);
}

.tab-bar .active svg {
  width: 29px;
  height: 29px;
  padding: 0;
  border-radius: 0;
  color: currentColor;
  background: transparent;
}

.tab-bar button[data-view="earningsPanel"] svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  background: #d9e1ec;
  color: #fff;
}

.tab-bar button[data-view="earningsPanel"].active svg {
  width: 37px;
  height: 37px;
  padding: 7px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
}

@media (max-width: 360px) {
  .top-panel {
    padding-inline: 10px;
  }

  .bank-card {
    padding-inline: 24px;
    border-radius: 28px;
  }

  .level-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .business-panel {
    padding-inline: 12px;
  }

  .business-panel h1 {
    font-size: 38px;
  }

  .create-business-panel,
  .market-business-panel,
  .factory-business-panel,
  .logistics-business-panel,
  .construction-business-panel,
  .construction-detail-panel,
  .auto-business-panel,
  .auto-rental-panel,
  .auto-garage-panel,
  .auto-detail-panel,
  .courier-detail-panel,
  .cargo-fleet-panel,
  .warehouse-network-panel,
  .textile-factory-panel,
  .food-factory-panel,
  .furniture-factory-panel,
  .motorcycle-purchase-panel,
  .car-purchase-panel,
  .transit-purchase-panel,
  .grocery-detail-panel,
  .clothing-detail-panel,
  .liquor-detail-panel,
  .buffet-detail-panel,
  .bakery-detail-panel,
  .jewelry-detail-panel,
.furniture-store-panel,
.store-panel,
.bank-panel,
.politics-panel,
.edo-panel,
.work-panel,
.relationships-panel,
.investment-panel,
  .profile-panel {
    padding-inline: 12px;
  }

  .create-business-panel h1,
  .market-business-panel h1,
  .factory-business-panel h1,
  .logistics-business-panel h1,
  .construction-business-panel h1,
  .construction-detail-panel h1,
  .auto-business-panel h1,
  .auto-rental-panel h1,
  .auto-garage-panel h1,
  .auto-detail-panel h1,
  .courier-detail-panel h1,
  .cargo-fleet-panel h1,
  .warehouse-network-panel h1,
  .textile-factory-panel h1,
  .food-factory-panel h1,
  .furniture-factory-panel h1,
  .motorcycle-purchase-panel h1,
  .car-purchase-panel h1,
  .transit-purchase-panel h1,
  .grocery-detail-panel h1,
  .clothing-detail-panel h1,
  .liquor-detail-panel h1,
  .buffet-detail-panel h1,
  .bakery-detail-panel h1,
  .jewelry-detail-panel h1,
  .furniture-store-panel h1,
  .store-panel h1,
  .bank-panel h1,
  .politics-panel h1,
  .edo-panel h1,
  .work-panel h1,
  .relationships-panel h1,
  .profile-panel h1 {
    font-size: 41px;
  }

  .product-card {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .factory-upgrade-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .factory-upgrade-card button {
    width: 100%;
  }

  .product-icon {
    width: 58px;
    height: 58px;
  }

  .product-icon svg {
    width: 37px;
    height: 37px;
  }

  .product-card h2 {
    font-size: 23px;
  }

  .product-purchase-row {
    grid-template-columns: 116px 1fr;
  }

  .job-card,
  .illegal-job-card,
  .relationship-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .relationship-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .job-card {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .job-card button {
    grid-column: 1 / -1;
  }

  .education-card {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .job-card button,
  .illegal-job-card button,
  .education-card button {
    width: 100%;
  }

  .education-card button {
    grid-column: 1 / -1;
  }

  .shop-category-grid,
  .asset-category-list,
  .shop-card.has-image {
    grid-template-columns: minmax(0, 1fr);
  }

  .edo-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .edo-thumb {
    width: 58px;
    height: 58px;
  }

  .edo-card button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .shop-card.has-image button {
    width: 100%;
  }

  .stock-activity-section summary {
    grid-template-columns: 52px minmax(0, 1fr) 26px;
    gap: 10px;
  }

  .stock-symbol-badge {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    font-size: 15px;
  }

  .stock-summary-price {
    grid-column: 2 / 3;
    text-align: left;
    min-width: 0;
  }

  .stock-actions {
    grid-template-columns: 1fr 1fr;
  }

  .stock-quantity-stepper {
    grid-column: 1 / -1;
  }

  .stock-section-body {
    padding-left: 0;
  }

  .investment-tool-section > summary {
    grid-template-columns: 50px minmax(0, 1fr) 24px;
    gap: 10px;
    padding-inline: 12px;
  }

  .investment-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 18px;
  }

  .investment-section-pill {
    grid-column: 2 / 3;
    justify-self: start;
    max-width: 100%;
  }

  .bank-metrics-grid,
  .bank-actions-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .investment-tool-grid .stock-section-body {
    padding-left: 12px;
  }

  .gold-trade-row {
    grid-template-columns: 1fr 1fr;
  }

  .gold-trade-row .quantity-stepper {
    grid-column: 1 / -1;
  }

  .market-option-card {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .construction-project-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .market-option-card strong {
    font-size: 23px;
  }

  .market-option-card small {
    font-size: 16px;
  }

  .category-grid {
    gap: 14px 12px;
  }

  .category-card {
    min-height: 166px;
    padding: 14px 11px;
  }

  .category-icon {
    width: 58px;
    height: 58px;
  }

  .category-icon svg {
    width: 37px;
    height: 37px;
  }

  .hourly-card {
    padding-inline: 18px;
  }

  .hourly-card strong {
    font-size: 42px;
  }

  .sales-report-card strong {
    font-size: 26px;
  }

  .business-actions button {
    min-height: 54px;
    font-size: 18px;
  }

  .company-card {
    grid-template-columns: 50px minmax(0, 1fr) 40px;
    gap: 10px;
  }

  .company-icon {
    width: 48px;
    height: 48px;
  }

  .company-info h3 {
    font-size: 21px;
  }

  .company-info p,
  .company-info > strong span {
    font-size: 18px;
  }

  .company-info > strong {
    font-size: 26px;
  }

  .company-next {
    width: 40px;
    height: 40px;
  }
}
