@import url('https://fonts.googleapis.com/css2?family=Space+Mono&display=swap');

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

html {
    height: 100%;
    background: #151515;
}

/* Scanlines effect */
html::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
        linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 9999;
}

body {
    display: table;
    width: 100%;
    height: 100%;
    background: #151515;
    color: #ffffff;
    font-family: 'Space Mono', monospace;
    font-size: 19px;
    line-height: 2;
}

.container {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

.content {
    width: 50%;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Header */
header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 320px;
    height: 230px;
    background: #333;
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
}

.header-content h1 {
    font-size: 2.5em;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

/* Links */
.links {
    list-style: none;
}

.links li {
    margin: 0.25rem 0;
}

.links a,
a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.links a:hover,
a:hover {
    opacity: 0.7;
}

/* Divider */
hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin: 1.5rem 0;
}

/* Bio section */
.bio {
    margin: 1rem 0;
}

.bio p {
    margin-bottom: 1rem;
}

/* Contact section */
.contact {
    list-style: none;
}

.contact li {
    margin: 0.25rem 0;
}

/* Footer */
footer {
    margin-top: 2rem;
    opacity: 0.7;
}

/* Scrollbar hide */
::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
}

/* Responsive */
@media (max-width: 768px) {
    .content {
        width: 90%;
    }

    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-content h1 {
        font-size: 2em;
    }

    body {
        font-size: 16px;
    }
}