body {
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'VT323', monospace;
    margin: 0;
    overflow: hidden;
}

.tv-container {
    background-color: #3a3a3a;
    border: 10px solid #2c2c2c;
    border-radius: 20px;
    box-shadow: 
        0 0 20px rgba(0,255,0,0.4), 
        inset 0 0 50px rgba(0,255,0,0.2);
    width: 400px;
    padding: 20px;
    position: relative;
}

.screen {
    background-color: #000;
    border: 5px solid #444;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(
            rgba(18, 16, 16, 0) 50%, 
            rgba(0, 0, 0, 0.25) 50%
        ),
        linear-gradient(
            90deg,
            rgba(255, 0, 0, 0.06), 
            rgba(0, 255, 0, 0.02), 
            rgba(0, 0, 255, 0.06)
        );
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 2;
}

.display {
    font-size: 4rem;
    color: #0f0;
    text-shadow: 0 0 10px #0f0;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.buttons button {
    background-color: #0f0;
    border: none;
    color: #000;
    padding: 10px 20px;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 10px #0f0;
}

.buttons button:hover {
    background-color: #0a0;
    transform: scale(1.05);
}

.tv-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.dial {
    width: 50px;
    height: 50px;
    background-color: #2c2c2c;
    border-radius: 50%;
    border: 3px solid #1a1a1a;
}

.speakers {
    width: 100px;
    height: 30px;
    background-color: #2c2c2c;
    display: flex;
    gap: 5px;
    padding: 5px;
}

.speakers::before {
    content: '';
    flex-grow: 1;
    background-color: #1a1a1a;
}

.speakers::after {
    content: '';
    flex-grow: 1;
    background-color: #1a1a1a;
}