:root {
    --bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --accent-color: #00ff00;
    /* Matrix-like green */
    --font-primary: 'Courier New', Courier, monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    line-height: 1.6;
    font-size: 18px;
    padding: 2rem;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    border-left: 5px solid var(--accent-color);
    padding-left: 2rem;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -2px;
    word-break: break-word;
    color: #fff;
    text-shadow: 4px 4px 0px #000, 6px 6px 0px var(--accent-color);
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    background-color: var(--accent-color);
    color: #000;
    display: inline-block;
    padding: 0.2rem 0.5rem;
    transform: rotate(-1deg);
}

.rant {
    margin-bottom: 4rem;
}

p,
li {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

strong {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    text-decoration-thickness: 3px;
}

.brutal-list {
    list-style: none;
    border: 2px solid var(--text-color);
    padding: 2rem;
}

.brutal-list li {
    margin-bottom: 1.5rem;
}

.brutal-list li::before {
    content: ">> ";
    color: var(--accent-color);
    font-weight: bold;
}

.big-text {
    font-size: 3.5rem;
    font-weight: bold;
    text-align: center;
    border: 4px solid var(--accent-color);
    padding: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: #fff;
    animation: flicker 4s infinite;
}

footer {
    margin-top: 5rem;
    border-top: 1px dashed var(--text-color);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Animations */
@keyframes flicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    52% {
        opacity: 0.2;
    }

    54% {
        opacity: 0.8;
    }
}

.code-block {
    background: #000;
    border: 1px solid var(--accent-color);
    padding: 1rem;
    font-family: monospace;
    color: var(--accent-color);
    margin-top: 1rem;
    overflow-x: auto;
    white-space: nowrap;
}

.comment {
    color: #666;
    font-style: italic;
}

.network-map {
    position: relative;
    height: 400px;
    border: 1px dashed var(--text-color);
    margin: 2rem 0;
    overflow: hidden;
    background: #0a0a0a;
}

.node {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--accent-color);
    background: #000;
    z-index: 2;
    box-shadow: 0 0 10px var(--accent-color);
    animation: float 3s infinite ease-in-out alternate;
}

.node:nth-child(even) {
    animation-duration: 4s;
    border-color: #fff;
    color: #fff;
}

.line {
    position: absolute;
    height: 2px;
    background: var(--text-color);
    z-index: 1;
    opacity: 0.5;
    transform-origin: left center;
}

@keyframes float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

.example-box {
    border: 1px solid #fff;
    padding: 1.5rem;
    margin-bottom: 2rem;
    background: #111;
}

.example-box h3 {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
        text-shadow: 2px 2px 0px #000, 4px 4px 0px var(--accent-color);
    }

    .container {
        border-left: none;
        padding-left: 0;
    }

    h2 {
        font-size: 1.5rem;
        transform: rotate(0);
    }

    .big-text {
        font-size: 2rem;
    }
}