@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=IM+Fell+English:ital@0;1&display=swap');

:root {
    --bg: #030402;
    --panel: #0a0c08;
    --panel-raised: #0e120c;
    --green: #6fff8f;
    --green-dim: #3a8a52;
    --green-faint: #1f4a2e;
    --red: #ff4d3d;
    --red-dim: #be2514;
    --amber: #dba968;
    --line: #1e2a1e;
    --text-dim: var(--amber);
}

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

body {
    background: var(--bg);
    color: var(--green);
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.7;
    position: relative;
    font-size: 20px;

}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(180deg, rgba(111, 255, 143, 0.05) 0px, rgba(111, 255, 143, 0.05) 1px, transparent 1px, transparent 3px);
    pointer-events: none;
    z-index: 10;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 65%, rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
    z-index: 9;
}

a {
    color: inherit;
}

.frame {
    border: 1px solid var(--line);
    margin: 14px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.frame::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.55) 55%, transparent);
    pointer-events: none;
    z-index: 11;
    /* animation: sweep 9s ease-in-out infinite; */
}

@keyframes sweep {
    0% {
        top: -60px;
        opacity: 0;
    }

    4% {
        opacity: 0.9;
    }

    40% {
        opacity: 0.9;
    }

    46% {
        top: 100%;
        opacity: 0;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

header {
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
}

main {
    flex: 1;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.glyph {
    width: 24px;
    height: 24px;
    border: 1px solid var(--green-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--green)
}

.brand-name {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--green);
}

.brand-sub {
    font-size: 9px;
    color: var(--text-dim);
    letter-spacing: 1px;
    margin-top: 2px;
}

nav {
    display: flex;
    gap: 0;
    border: 1px solid var(--line);
}

nav a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-left: 1px solid var(--line);
    transition: color .15s, background .15s;
}

nav a:first-child {
    border-left: none;
}

nav a:hover {
    color: var(--green);
    background-color: var(--green-faint);
}

nav a.active {
    color: var(--bg);
    background-color: var(--green);
}

.hero {
    padding: 60px 40px 50px;
}

.hero h1 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--geen);
    text-shadow: 0 0 14px rgba(111, 255, 143, 0.35);
    margin-bottom: 16px;
}

.hero h1 .cursor {
    display: inline-block;
    width: 12px;
    height: 24px;
    background-color: var(--green);
    vertical-align: -2px;
    animation: blink 1s step-start infinite;
}

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

.hero p {
    color: var(--text-dim);
    font-size: 15px;
}

section {
    padding: 46px 40px;
}

.section-head {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 26px;
    gap: 14px;
}

.section-head::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: var(--line);
}

.section-head .tag {
    font-size: 10px;
    color: var(--bg);
    background-color: var(--green);
    padding: 3px 8px;
    letter-spacing: 1px;
    font-weight: 700;
}

.section-head h2 {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
}

table.records {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

table.records th {
    text-align: left;
    color: var(--text-dim);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 12px;
    border-bottom: 1px solid var(--line);
}

table.records td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    color: var(--green-dim);
    vertical-align: top;
}

table.records tr:hover td {
    background-color: var(--panel-raised);
}

table.records td.name {
    color: var(--geen);
}

table.records td.desc {
    color: var(--text-dim);
    max-width: 320px;
}

footer {
    padding: 20px 40px;
    text-align: center;
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--text-dim);
}