/* Terminal Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --terminal-green: #00ff00;
    --terminal-bg: #0a0a0a;
}

body {
    font-family: 'VT323', 'Courier New', monospace;
    background: var(--terminal-bg);
    color: var(--terminal-green);
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
    position: relative;
    font-size: 20px;
    line-height: 1.4;
}

/* Dithered Canvas Background */
canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--terminal-bg);
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    z-index: 2;
    opacity: 0.4;
    mix-blend-mode: lighten;
    pointer-events: none;
}

/* CRT Effect - Scanlines */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent 50%,
        rgba(0, 255, 0, 0.02) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 2;
}

/* Terminal Body - Fullscreen */
.terminal-body {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    background: var(--terminal-bg);
    z-index: 1;
}

.terminal-content {
    font-size: 18px;
    margin: 0 auto;
}

/* Title */
.title {
    font-family: 'VT323', monospace;
    font-size: 36px;
    color: var(--terminal-green);
    margin-bottom: 20px;
    font-weight: normal;
}

/* Subtitle */
.subtitle {
    font-family: 'VT323', monospace;
    font-size: 20px;
    color: var(--terminal-green);
    margin-bottom: 30px;
}

/* Products List */
.products-list {
    margin: 20px 0 40px 0;
}

.product-item {
    margin: 0 0;
    padding: 0px 0;
}

.product-link {
    font-family: 'VT323', monospace;
    font-size: 20px;
    color: var(--terminal-green);
    text-decoration: none;
    display: inline-block;
}

.product-link:hover {
    text-decoration: underline;
}

.product-desc {
    font-family: 'VT323', monospace;
    font-size: 20px;
    color: var(--terminal-green);
}

/* Scrollbar Styling */
.terminal-body::-webkit-scrollbar {
    width: 12px;
    background: var(--terminal-bg);
}

.terminal-body::-webkit-scrollbar-track {
    background: rgba(0, 255, 0, 0.05);
}

.terminal-body::-webkit-scrollbar-thumb {
    background: var(--terminal-green);
}

