* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1a1a;
    font-family: 'VT323', monospace;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 18px;
}

.container {
    width: 100%;
    max-width: 800px;
}

.monitor {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.screen {
    background-color: #001100;
    border-radius: 5px;
    padding: 20px;
    color: #00ff00;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 5px #00ff00;
    font-size: 32px;
}

.question {
    margin-bottom: 30px;
    padding: 15px;
    border: 1px solid #00ff00;
    border-radius: 5px;
}

.question h2 {
    margin-bottom: 10px;
    color: #00ff00;
    font-size: 24px;
}

.question p {
    font-size: 20px;
    margin-bottom: 15px;
}

.answers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.answers label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    padding: 5px;
    transition: background-color 0.3s;
    font-size: 18px;
}

.answers label:hover {
    background-color: rgba(0, 255, 0, 0.1);
}

input[type="radio"] {
    accent-color: #00ff00;
    margin-top: 3px;
    transform: scale(1.2);
}

.code-display {
    margin-bottom: 30px;
    padding: 15px;
    border: 2px solid #ff0000;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.code-display h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ff0000;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

#code-output {
    font-size: 32px;
    letter-spacing: 5px;
    margin-top: 10px;
    font-family: 'VT323', monospace;
    min-height: 40px;
    color: #ff0000;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
} 