/* ============================================
   CATACOMB.EXE (raycaster easter egg)
   ============================================ */
.window-raycast { width: 662px; }

.rc-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px;
}

#rc-canvas {
    /* 320x200 internal, scaled 2x, crisp pixels */
    width: 640px;
    height: 400px;
    image-rendering: pixelated;
    background: #000;
    border: 2px inset var(--win-bg);
}

.rc-status {
    align-self: stretch;
    font-size: 11px;
    padding: 2px 4px;
    border: 1px inset var(--win-bg);
    background: var(--win-bg);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 16px icon: red brick wall with a gold doorway */
.icon-raycast-sm {
    width: 16px; height: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid #444;
    background:
        repeating-linear-gradient(180deg, transparent 0 3px, #3c0c08 3px 4px),
        repeating-linear-gradient(90deg, transparent 0 5px, #3c0c08 5px 6px),
        #8a2418;
}
.icon-raycast-sm::before {
    /* golden exit door */
    content: '';
    position: absolute;
    left: 5px; top: 4px;
    width: 6px; height: 12px;
    background: linear-gradient(180deg, #ffe680 0 20%, #e8b820 20% 100%);
    border: 1px solid #3a2410;
}
.icon-raycast-sm::after {
    /* doorknob */
    content: '';
    position: absolute;
    left: 10px; top: 10px;
    width: 2px; height: 2px;
    background: #3a2410;
}
