    body {
      margin: 0;
      min-height: 100vh;
      background: #1a1103;
      color: #d49c3a;
      font-family: 'VT323', monospace;
      padding: 30px;
      overflow: hidden;
      position: relative;
    }

    .crt-scanlines::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: repeating-linear-gradient(0deg, rgba(0,0,0,0.15) 1px, transparent 2px);
      pointer-events: none;
      z-index: 5;
    }

    .main-container {
      border: 2px solid #5a441e;
      height: calc(100vh - 60px);
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .header-container {
      position: relative;
      flex-shrink: 0;
    }

    .top-right-widgets {
      position: absolute;
      top: -20px;
      right: 25px;
      display: flex;
      gap: 6px;
    }

    .widget {
      border: 2px solid #5a441e;
      background: #1a1103;
      padding: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .widget-data-scroller { height: 80px; width: 130px; }
    .widget-stats { height: 80px; width: 65px; flex-direction: column; justify-content: space-around; font-size: 22px; line-height: 1; display: flex; }
    .widget-logo { height: 80px; width: 80px; }

    .main-content {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 20px;
      padding: 20px;
      flex-grow: 1;
      overflow: hidden;
    }

    .dialogue-area {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      height: 100%;
    }

    .history-scroll {
      flex-grow: 1;
      overflow-y: auto;
      padding-right: 15px;
      font-size: 24px;
      line-height: 1.5;
    }

    .terminal-line {
      margin-bottom: 5px;
      text-shadow: 0 0 5px rgba(212, 156, 58, 0.4);
      white-space: pre-wrap;
    }
    .terminal-line.input { color: #f0c885; }
    .terminal-line.output { color: #d49c3a; }
    .terminal-line.error { color: #ff6b6b; }
    .terminal-line.green { color: #77FF6B; }

    .cursor {
      width: 12px;
      height: 24px;
      background: #f0c885;
      animation: blink 1s step-end infinite;
      display: inline-block;
    }
    @keyframes blink { 50% { opacity: 0; } }

.credits-area {
  overflow: hidden;
  font-size: 24px;
  color: #a0782c;
  text-shadow: 0 0 5px rgba(160,120,44,0.4);
  mask-image: linear-gradient(transparent, black 30%);
  height: 100%;
}

.credit-name {
  text-align: right;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  animation: rise 0.3s ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

    /* Data scroller */
    .data-container {
      width: 100%;
      height: 100%;
      display: flex;
      overflow: hidden;
      font-size: 10px;
      line-height: 1;
      letter-spacing: 1px;
    }

    .data-column {
      width: 50%;
      height: 200%;
    }

    .scroll-up { animation: scrollUp 10s linear infinite; }
    .scroll-down { animation: scrollDown 12s linear infinite; }
    
    .history-scroll::-webkit-scrollbar {
  display: none;
}

.history-scroll {
  -ms-overflow-style: none; 
  scrollbar-width: none; 
}

    @keyframes scrollUp { from { transform: translateY(0%);} to { transform: translateY(-50%);} }
    @keyframes scrollDown { from { transform: translateY(-50%);} to { transform: translateY(0%);} }