/*remove default browser margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background: #000000;
    color: #00ff00;
    overflow-x: hidden; /* no horizontal scrolling */
    cursor: none; /* I build my own! */
}

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

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
    position: fixed;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: #00ff00;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cursor-circle {
    width: 100%;
    height: 100%;
    border: 2px solid #00ff00;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.15s ease-out;
}

.content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 2rem; /* root em */
}

#hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #00ff00;
}

#hero p {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: #00ff00;
}

.terminal-prompt {
    margin-top: 2rem;
    font-size: 1.2rem;
}

.prompt-symbol {
    color: #00ff00;
    margin-right: 0.5rem;
}

.typing-text {
    color: cyan;
    border-right: 5px solid cyan;
    animation: blink 1s infinite; 
}

@keyframes blink {
    0%, 100% { border-color: cyan; }
    50% { border-color: transparent;}
}