.terminal-container {
    max-width: 100%;
    background: #1a1a1a;
    border: 8px solid #333;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.1), inset 0 0 20px rgba(0, 255, 0, 0.05);
    position: relative;
}

.screen {
    width: 100%;
    height: 100%;
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
}

/* CRT scanline effect */
.screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 6px, /* Larger scanlines */
        rgba(0, 255, 0, 0.02) 6px,
        rgba(0, 255, 0, 0.02) 12px
    );
    pointer-events: none;
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(100, 1fr); /* 100 columns minimum */
    gap: 10px; /* Tightened gap for density */
    padding: 0px; /* Reduced padding to fit more numbers */
    position: relative;
    z-index: 1;
}

.number {
    font-family: 'Courier New', Courier, monospace;
    font-size: 24px; /* Smaller font to fit 100+ columns */
    color: #18bc9c;
    opacity: 0.5;
    text-align: center;
    text-shadow: 0 0 6px rgba(24, 188, 156, 0.6);
    transition: transform 0.1s ease-out;
    cursor: default;
}

/* Flicker effect */
@keyframes flicker {
    0% { opacity: 1; }
    50% { opacity: 0.85; }
    100% { opacity: 1; }
}

.screen {
    animation: flicker 4s infinite;
}