.ss-ca-map-game {
  width: 640px;
  min-height: 480px;
  margin: 0 auto 18px;
  border: 1px solid #8fb7ce;
  background: #f6fbff;
  color: #1f3543;
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
  box-shadow: 0 2px 8px rgba(24, 58, 78, 0.16);
}

.ss-ca-shell {
  min-height: 480px;
  box-sizing: border-box;
  padding: 14px;
  background: linear-gradient(#ffffff, #eef8ff);
}

.ss-ca-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid #bfd8e7;
}

.ss-ca-title {
  margin: 0;
  color: #0a5f8a;
  font-size: 22px;
  line-height: 1.2;
}

.ss-ca-stats {
  display: flex;
  gap: 7px;
  white-space: nowrap;
}

.ss-ca-pill {
  padding: 5px 8px;
  border: 1px solid #b6d5e8;
  border-radius: 4px;
  background: #e9f5fd;
  color: #21485e;
  font-size: 13px;
  font-weight: bold;
}

.ss-ca-layout {
  display: grid;
  grid-template-columns: 405px 1fr;
  gap: 12px;
  margin-top: 12px;
}

.ss-ca-map {
  position: relative;
  height: 330px;
  border: 1px solid #bfd8e7;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(#dff3ff, #f6fcff);
}

.ss-ca-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ss-ca-target {
  position: absolute;
  min-width: 82px;
  min-height: 30px;
  box-sizing: border-box;
  padding: 5px 7px;
  border: 2px dashed #9cbfd2;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  color: #617f91;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.ss-ca-target.is-over {
  border-color: #0a73a8;
  background: #e0f3ff;
}

.ss-ca-target.is-filled {
  border-style: solid;
  border-color: #78b462;
  background: #e8f8e4;
  color: #2f681e;
}

.ss-ca-target[data-id="pacific"] { left: 14px; top: 130px; }
.ss-ca-target[data-id="sacramento"] { left: 176px; top: 88px; }
.ss-ca-target[data-id="san-francisco"] { left: 94px; top: 140px; }
.ss-ca-target[data-id="central-valley"] { left: 202px; top: 166px; }
.ss-ca-target[data-id="sierra-nevada"] { left: 278px; top: 122px; }
.ss-ca-target[data-id="los-angeles"] { left: 224px; top: 260px; }
.ss-ca-target[data-id="san-diego"] { left: 290px; top: 288px; }
.ss-ca-target[data-id="death-valley"] { left: 300px; top: 205px; }

.ss-ca-bank {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ss-ca-label {
  min-height: 32px;
  box-sizing: border-box;
  padding: 7px 9px;
  border: 1px solid #87aec5;
  border-radius: 4px;
  background: #ffffff;
  color: #084e75;
  cursor: grab;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
}

.ss-ca-label:active {
  cursor: grabbing;
}

.ss-ca-label.is-selected {
  border-color: #0a73a8;
  background: #dff2ff;
  box-shadow: inset 0 0 0 1px #0a73a8;
}

.ss-ca-label.is-used {
  display: none;
}

.ss-ca-feedback {
  min-height: 36px;
  margin-top: 12px;
  box-sizing: border-box;
  padding: 9px 10px;
  border: 1px solid #e0cf86;
  border-radius: 4px;
  background: #fffced;
  color: #5c4d12;
  font-size: 15px;
  line-height: 1.3;
}

.ss-ca-feedback.is-good {
  border-color: #92c97b;
  background: #effbea;
  color: #276514;
}

.ss-ca-feedback.is-bad {
  border-color: #dfa099;
  background: #fff0ee;
  color: #8d271b;
}

.ss-ca-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.ss-ca-button {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid #075f8d;
  border-radius: 4px;
  background: #0b74aa;
  color: #ffffff;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
}

@media (max-width: 700px) {
  .ss-ca-map-game {
    width: 100%;
  }

  .ss-ca-top,
  .ss-ca-layout {
    display: block;
  }

  .ss-ca-bank {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 10px;
  }
}
