/* Terminal Theme */
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300;400;500&display=swap');

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

body {
    font-family: 'Source Code Pro', 'Courier New', monospace;
    background-color: #000000;
    color: #00ff00;
    line-height: 1.4;
    padding: 20px;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Terminal cursor */
.cursor::after {
    content: '█';
    animation: blink 1s infinite;
    color: #00ff00;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Headers */
h1, h2 {
    color: #00ff41;
    margin: 20px 0 10px 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 1.5em;
    border-bottom: 1px solid #00ff00;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.2em;
    margin-top: 30px;
}

/* Paragraphs and text */
p {
    margin: 10px 0;
    font-size: 0.9em;
    opacity: 0;
}

/* Bio section */
.bio {
    margin: 20px 0;
    padding: 10px 0;
    border-left: 2px solid #00ff00;
    padding-left: 10px;
}

/* Puzzle section */
.puzzle-section {
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid #333333;
}

/* Code blocks */
pre {
    background-color: #111111;
    border: 1px solid #333333;
    padding: 15px;
    margin: 15px 0;
    overflow-x: auto;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8em;
    line-height: 1.3;
    color: #00dd00;
}

code {
    background-color: #111111;
    padding: 2px 4px;
    border: 1px solid #333333;
    font-family: 'Source Code Pro', monospace;
    color: #00dd00;
}

/* Images */
.person-image {
    display: none; /* Hide images for terminal theme */
}

/* Hints */
.hint {
    color: #888888;
    font-style: italic;
    margin-top: 15px;
    padding: 10px;
    border-left: 2px solid #444444;
    padding-left: 10px;
}

/* Links */
a {
    color: #00aaff;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Lists */
ul {
    margin: 15px 0;
    padding-left: 20px;
}

li {
    margin: 8px 0;
    opacity: 0;
}

/* Input elements */
input, textarea, button {
    background-color: #111111;
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 8px;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9em;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #00ff41;
    box-shadow: 0 0 5px #00ff00;
}

button {
    cursor: pointer;
    margin: 10px 5px 10px 0;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #00ff00;
    color: #000000;
}

textarea {
    width: 100%;
    min-height: 100px;
    resize: vertical;
}

/* Result sections */
.result {
    margin: 15px 0;
    padding: 10px;
    border: 1px solid #333333;
    background-color: #111111;
}

/* Terminal prompt effect */
.terminal-line {
    opacity: 0;
    transform: translateX(-10px);
}

.terminal-line.show {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.5s ease-out;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00ff41;
} 