/* ─── Nokia widget ────────────────────────────────────────────── */

.nokia-real-widget {
  position: relative;
  display: inline-block;
  width: 260px;
  user-select: none;
}

.phone-bg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(10px 15px 15px rgba(0,0,0,0.6));
  pointer-events: none;
}

.working-screen {
  position: absolute;
  z-index: 1;
  top: 24%;
  left: 21%;
  width: 59%;
  height: 22%;
  background-color: #c8d4cc;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(0,0,0,0.07) 1px, rgba(0,0,0,0.07) 2px),
    radial-gradient(circle at center, rgba(255,255,255,0.4) 0%, rgba(0,0,0,0) 90%);
  filter: brightness(1.05) contrast(1.05);
  box-shadow: 0 0 0 2px #c8d4cc;
  display: flex;
  flex-direction: column;
}

.working-screen .screen-title {
  background: transparent;
  font-family: 'Silkscreen', 'VT323', monospace;
  font-size: 13.5px;
  font-weight: bold;
  text-align: center;
  padding: 1px 6px;
  margin-top: 6px;
  margin-bottom: 2px;
  color: #000;
}

.working-screen .screen-list {
  list-style: none;
  padding: 0 4px;
  margin: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'Silkscreen', 'VT323', monospace;
  font-size: 13.5px;
  line-height: 1.1;
}

.working-screen .screen-list li {
  padding: 1px 4px;
  color: #000;
  font-weight: bold;
}

.working-screen .screen-list li.active {
  background: #3c1a7a; /* was blue — now purple */
  color: #fff;
  font-weight: bold;
}

.working-screen .screen-softkey-bar {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
  margin-top: auto;
  font-family: 'Silkscreen', 'VT323', monospace;
  font-size: 13.5px;
  color: #000;
  font-weight: bold;
  background: transparent;
}

.hitbox {
  position: absolute;
  z-index: 3;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(0,0,0,0.01);
}

.d-pad-up    { top: 51%; left: 42%; width: 16%; height: 5%; }
.d-pad-down  { top: 58%; left: 42%; width: 16%; height: 5%; }
.left-softkey { top: 51%; left: 20%; width: 15%; height: 5%; }