body {
    background-color: #000;
    color: #00ff00;
    font-family: 'Fira Code', monospace;
    font-size: 16px;
    line-height: 1.6;
    padding: 40px;
    max-width: 1000px;
    margin: auto;
}

h1, h2 {
    border-bottom: 1px solid #00ff00;
    padding-bottom: 5px;
    margin-top: 40px;
}

a {
    color: #00ff00;
    text-decoration: underline;
}

ul {
    list-style-type: square;
    padding-left: 20px;
}

.section {
    margin-top: 30px;
}

.contact {
    margin-bottom: 30px;
}

.job-title {
    font-weight: bold;
}

.location-date {
    font-style: italic;
    color: #66ff66;
}

.blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.monitor {
    background-color: #000;
    border: 12px solid #333;
    border-radius: 16px;
    padding: 30px 0 0 5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 5px #111;
}


.monitor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
            to bottom,
            rgba(0, 255, 0, 0.02),
            rgba(0, 255, 0, 0.02) 2px,
            transparent 2px,
            transparent 4px
    );
    pointer-events: none;
    z-index: 2;
}

.monitor::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(0, 255, 0, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.links-horizontal {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.links-horizontal a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}

.links-horizontal span {
    font-weight: bold;
}

.links-horizontal {
    position: relative;
    z-index: 3;
}
