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

:root {
    --bg: #0a0a0a;
    --bg-alt: #0f0f0f;
    --surface: #141414;
    --border: #2a2a2a;
    --border-accent: #8b1a1a;
    --text: #c4b998;
    --text-dim: #6b6352;
    --text-bright: #e8dcc8;
    --accent: #8b1a1a;
    --accent2: #1a5c3a;
    --accent3: #8b7d1a;
    --accent4: #1a3d6b;
    --red: #a83232;
    --green: #3a7a4f;
    --yellow: #b89b3e;
    --blue: #4a6d8c;
    --mono: 'IBM Plex Mono', 'Courier Prime', monospace;
    --sharp: 'Share Tech Mono', monospace;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #8b1a1a transparent;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--mono);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
}

#scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
}

::selection {
    background: var(--accent);
    color: var(--text-bright);
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-left: 1px solid var(--bg);
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 40px 40px;
    border-bottom: 1px solid var(--border);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.status-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-family: var(--sharp);
    font-size: 11px;
    letter-spacing: 3px;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    display: inline-block;
}

.status-dot.live {
    animation: blink 2.5s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.status-text {
    color: var(--green);
    text-transform: uppercase;
}

.status-text.dim {
    color: var(--text-dim);
}

.status-divider {
    color: var(--border);
}

h1 {
    font-family: var(--sharp);
    font-size: 72px;
    font-weight: 600;
    line-height: 0.9;
    color: var(--text-bright);
    letter-spacing: -2px;
    margin-bottom: 20px;
}

h1 .surname {
    color: var(--accent);
    font-size: 48px;
    letter-spacing: 8px;
}

.tagline {
    color: var(--yellow);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.origin-line {
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.sep {
    margin: 0 12px;
    color: var(--border);
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stamp-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stamp-border {
    border: 4px solid var(--accent);
    outline: 2px solid var(--accent);
    outline-offset: 12px;
    padding: 55px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transform: rotate(-3deg);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.stamp-border:hover {
    opacity: 1;
}

.stamp-top {
    font-family: var(--sharp);
    font-size: 18px;
    letter-spacing: 12px;
    color: var(--text-dim);
}

.stamp-main {
    font-family: var(--sharp);
    font-size: 82px;
    letter-spacing: 18px;
    color: var(--accent);
    line-height: 1;
    padding: 16px 0;
    border-top: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
}

.stamp-bottom {
    font-family: var(--sharp);
    font-size: 20px;
    letter-spacing: 8px;
    color: var(--text-dim);
}

section {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
}

.sec-num {
    font-family: var(--sharp);
    color: var(--accent);
    font-size: 12px;
    border: 1px solid var(--accent);
    padding: 2px 8px;
}

.section-header h2 {
    font-family: var(--sharp);
    font-size: 18px;
    letter-spacing: 6px;
    color: var(--text-bright);
    font-weight: 600;
}

.line-through {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-block {
    border: 1px solid var(--border);
    padding: 24px;
    background: var(--surface);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table tr {
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}

.data-table tr:last-child {
    border-bottom: none;
}

.data-table td {
    padding: 8px 0;
    font-size: 13px;
}

.data-table .key {
    color: var(--text-dim);
    font-size: 10px;
    letter-spacing: 3px;
    width: 120px;
    vertical-align: top;
    padding-top: 10px;
}

.desc-block p {
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text);
    line-height: 1.8;
}

.desc-block p:first-child {
    color: var(--text-bright);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.link-card {
    display: flex;
    flex-direction: column;
    padding: 20px 16px;
    border: 1px solid var(--border);
    background: var(--surface);
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
}

.link-card:hover {
    border-color: var(--accent);
    background: rgba(139, 26, 26, 0.05);
}

.link-icon {
    font-family: var(--sharp);
    font-size: 11px;
    color: var(--accent);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.link-name {
    color: var(--text-bright);
    font-size: 13px;
    margin-bottom: 4px;
}

.link-user {
    color: var(--text-dim);
    font-size: 11px;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.interest-card {
    border: 1px solid var(--border);
    padding: 24px;
    background: var(--surface);
}

.interest-card h3 {
    font-family: var(--sharp);
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.interest-card ul {
    list-style: none;
}

.interest-card li {
    padding: 6px 0;
    font-size: 13px;
    color: var(--text);
    border-left: 2px solid transparent;
    padding-left: 12px;
}

.interest-card li:hover {
    border-left-color: var(--accent);
}

.note {
    color: var(--yellow);
    margin-right: 6px;
}

.ideology-card {
    border-color: var(--border-accent);
}

.ideology-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.hammer {
    font-size: 42px;
    color: var(--red);
    line-height: 1;
}

.ideology-content p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text);
}

footer {
    border-top: 1px solid var(--border);
    padding: 20px 40px;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-dim);
}

@media (max-width: 800px) {
    #hero {
        padding: 40px 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    h1 {
        font-size: 48px;
    }

    h1 .surname {
        font-size: 32px;
    }

    .hero-right {
        display: none;
    }

    section {
        padding: 60px 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .interests-grid {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 20px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .links-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 36px;
    }

    h1 .surname {
        font-size: 24px;
        letter-spacing: 4px;
    }

}
