* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  :root {
    --green: #00ff66;
    --dark: #050505;
    --accent: #17ffb5;
  }
  
  body {
    min-height: 100vh;
    background: radial-gradient(circle at top, #202a20 0%, #000 60%);
    color: var(--green);
    font-family: "Fira Code", "Courier New", monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
  }
  
  .crt {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: 
      repeating-linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 3px
      );
    mix-blend-mode: soft-light;
    opacity: 0.4;
    z-index: 1;
  }
  
  .scanline {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    opacity: 0.03;
    animation: scan 6s linear infinite;
    pointer-events: none;
    z-index: 2;
  }
  
  @keyframes scan {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(100%);
    }
  }
  
  .container {
    position: relative;
    z-index: 3;
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 102, 0.4);
    padding: 24px 28px;
    max-width: 680px;
    width: 100%;
    background: radial-gradient(circle at top left, #082010 0%, #020402 60%);
    box-shadow:
      0 0 20px rgba(0, 0, 0, 0.9),
      0 0 40px rgba(0, 255, 102, 0.2);
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .logo {
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--accent);
  }
  
  .status-pill {
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 102, 0.4);
    padding: 4px 10px;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
  }
  
  .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 6px var(--green);
  }
  
  h1 {
    font-size: 2rem;
    margin-bottom: 8px;
    text-shadow: 0 0 8px rgba(0, 255, 102, 0.4);
  }
  
  .subtitle {
    font-size: 0.9rem;
    color: rgba(0, 255, 102, 0.7);
    margin-bottom: 20px;
    max-width: 540px;
    line-height: 1.5;
  }
  
  .prompt-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-top: 12px;
  }
  
  .prompt-user {
    color: var(--accent);
  }
  .prompt-path {
    color: rgba(0, 255, 102, 0.7);
  }
  
  .link-dev {
    color: var(--green);
    text-decoration: none;
    border-bottom: 1px dashed rgba(0, 255, 102, 0.5);
    padding-bottom: 2px;
    cursor: pointer;
    position: relative;
  }
  
  .link-dev::after {
    content: "_";
    position: absolute;
    right: -8px;
    animation: blink 1s steps(1) infinite;
  }
  
  @keyframes blink {
    0%, 50% {
      opacity: 1;
    }
    50.01%, 100% {
      opacity: 0;
    }
  }
  
  .hint {
    margin-top: 28px;
    font-size: 0.75rem;
    color: rgba(0, 255, 102, 0.6);
    opacity: 0.8;
  }
  
  /* OVERLAY /dev/null */
  
  .overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, #071810 0%, #000 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-out;
    z-index: 999;
  }
  
  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  
  .egg-window {
    border-radius: 18px;
    border: 1px solid rgba(0, 255, 102, 0.4);
    background: #020503;
    width: min(860px, 100% - 40px);
    max-height: calc(100vh - 80px);
    padding: 16px 18px 18px;
    box-shadow:
      0 0 24px rgba(0, 0, 0, 1),
      0 0 40px rgba(0, 255, 102, 0.25);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .egg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  
  .egg-title {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0, 255, 102, 0.8);
  }
  
  .egg-buttons {
    display: flex;
    gap: 6px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.4);
  }
  
  .dot.red {
    background: #ff4b4b;
  }
  
  .dot.yellow {
    background: #ffc857;
  }
  
  .dot.green {
    background: #39e75f;
  }
  
  .close-btn {
    margin-left: 8px;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 102, 0.4);
    background: transparent;
    color: var(--green);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  
  .egg-body {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 16px;
    flex: 1;
    min-height: 280px;
  }
  
  .terminal {
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 102, 0.4);
    padding: 12px;
    background: radial-gradient(circle at top left, #061b0e 0%, #020302 70%);
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .terminal-line {
    white-space: pre-wrap;
    word-break: break-word;
  }
  
  .terminal-tag {
    color: var(--accent);
  }
  
  .game-panel {
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 102, 0.4);
    padding: 10px;
    background: radial-gradient(circle at top right, #041712 0%, #010101 80%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .game-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 4px;
  }
  
  .game-help {
    font-size: 0.7rem;
    color: rgba(0, 255, 102, 0.7);
  }
  
  canvas {
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 102, 0.4);
    background: #000000;
  }
  
  @media (max-width: 800px) {
    .egg-body {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 1.6rem;
    }
  
    .container {
      padding: 18px 16px;
    }
  
    .subtitle {
      font-size: 0.8rem;
    }
  
    .prompt-line {
      font-size: 0.8rem;
    }
  }
  