/*
  matrix-style.css
  Matrix and terminal-inspired theme for the "Real Me" page.
*/

body {
    background-color: #000;
    color: #0f0;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Hide scrollbars */
}

#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.terminal-window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.85);
    border: 2px solid #0f0;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    z-index: 2;
    padding: 20px;
}

.terminal-header {
    background-color: #0f0;
    color: #000;
    padding: 5px 10px;
    font-weight: bold;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    margin: -20px -20px 20px -20px;
}

.terminal-content p {
    margin: 0 0 15px 0;
}

.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 15px 0;
}

.prompt {
    display: inline-block;
}

.prompt:before {
    content: '>';
    margin-right: 10px;
}

.download-link {
    color: #0f0;
    text-decoration: none;
    background-color: #333;
    padding: 5px 10px;
    border: 1px solid #0f0;
    border-radius: 3px;
    display: inline-block;
}

.download-link:hover {
    background-color: #0f0;
    color: #000;
}

.alt-link {
    display: block;
    margin-top: 20px;
    font-size: 0.9em;
    color: #aaa;
}

.alt-link a {
    color: #0f0;
    text-decoration: underline;
}
