 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: #050b05;
      color: #00ff66;
      font-family: 'Courier New', Courier, monospace;
      display: flex;
      flex-direction: column;
      height: 100vh;
      padding: 15px;
      overflow: hidden;
      text-shadow: 0 0 5px rgba(0, 255, 102, 0.6);
    }

    /* Visual CRT Overlay Effect */
    body::before {
      content: " ";
      display: block;
      position: absolute;
      top: 0; left: 0; bottom: 0; right: 0;
      background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
      background-size: 100% 4px;
      z-index: 10;
      pointer-events: none;
    }

    .main-container {
      display: flex;
      flex: 1;
      gap: 15px;
      height: calc(100% - 60px);
    }

    .panel {
      border: 2px solid #00ff66;
      border-radius: 4px;
      padding: 15px;
      display: flex;
      flex-direction: column;
      background-color: rgba(0, 20, 0, 0.4);
      box-shadow: inset 0 0 10px rgba(0, 255, 102, 0.2);
    }

    .left-panel {
      flex: 1.2;
      align-items: center;
      justify-content: space-between;
      text-align: center;
      overflow-y: auto;
    }

    .right-panel {
      flex: 1;
      overflow-y: auto;
    }

    .stats-header {
      width: 100%;
    }

    .loc-counter {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .pps-counter {
      font-size: 1rem;
      opacity: 0.8;
    }

    /* Interactive Computer Button */
    .pc-button {
      background: transparent;
      border: 1px dashed #00ff66;
      color: #00ff66;
      font-family: inherit;
      padding: 10px;
      cursor: pointer;
      font-size: 0.65rem;
      white-space: pre;
      line-height: 1.1;
      user-select: none;
      transition: transform 0.05s, border-color 0.1s;
      outline: none;
      margin: 10px 0;
    }

    .pc-button:active {
      transform: scale(0.96);
      border-style: solid;
      background-color: rgba(0, 255, 102, 0.1);
    }

    /* Workplace ASCII Visualizer */
    .workplace-area {
      width: 100%;
      border-top: 1px dashed #00ff66;
      padding-top: 10px;
      margin-top: 5px;
      flex: 1;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .workplace-title {
      font-size: 0.8rem;
      margin-bottom: 8px;
      opacity: 0.8;
    }

    .workers-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      width: 100%;
    }

    .ascii-worker {
      font-size: 0.55rem;
      white-space: pre;
      line-height: 1;
      background: rgba(0, 255, 102, 0.05);
      border: 1px solid rgba(0, 255, 102, 0.3);
      padding: 4px;
      border-radius: 3px;
      animation: popIn 0.2s ease-out;
    }

    @keyframes popIn {
      from { transform: scale(0); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    .instructions {
      font-size: 0.75rem;
      opacity: 0.7;
      margin-top: 5px;
    }

    /* Terminal Console */
    .console-logs {
      flex: 1;
      overflow-y: auto;
      margin-bottom: 10px;
      font-size: 0.9rem;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .log-entry {
      word-break: break-all;
    }

    .log-cmd { color: #88ff88; }
    .log-error { color: #ff5555; }
    .log-success { color: #ffff55; }

    .command-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      border-top: 1px solid #00ff66;
      padding-top: 10px;
      height: 45px;
    }

    .prompt-symbol {
      font-weight: bold;
    }

    .cmd-input {
      background: transparent;
      border: none;
      color: #00ff66;
      font-family: inherit;
      font-size: 1rem;
      width: 100%;
      outline: none;
      text-shadow: inherit;
    }

    /* Scrollbars */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #050b05; }
    ::-webkit-scrollbar-thumb { background: #00ff66; border-radius: 3px; }