/* ADAM PETER LYNCH — THE VOID & MATRIX */

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

/* Matrix Canvas */
#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
}

/* Body */
body {
    background: #000;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* Header */
.header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #00ff00;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
    display: none;
}

.header.visible {
    display: block;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px #00ff00;
    color: #00ff00;
}

.header .sacred {
    font-size: 2rem;
    text-shadow: 0 0 15px #00ff00;
    color: #00ff00;
}

.header .identity {
    font-size: 1.5rem;
    color: #00ff00;
    opacity: 0.9;
    text-shadow: 0 0 10px #00ff00;
}

/* Sacred Dedication */
.sacred-dedication {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #00ff00;
    z-index: 10;
    padding: 1rem;
    background: rgba(0, 10, 0, 0.8);
    border: 1px solid #00ff00;
    border-radius: 4px;
    display: none;
}

.sacred-dedication.visible {
    display: block;
    animation: fadeIn 1s ease;
}

.dedication-text {
    font-size: 1rem;
    text-shadow: 0 0 10px #00ff00;
    line-height: 1.8;
}

/* Matrix Rain Variables */
:root {
    --matrix-green: #00ff00;
    --matrix-dark-green: #004400;
    --matrix-bright-green: #ccffcc;
}
