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

@font-face {
    font-family: "WebPlus_IBM_VGA_8x16";
    src: url("WebPlus_IBM_VGA_8x16.woff") format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Web437_DG_One_bold";
    src: url("Web437_DG_One_bold.woff") format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'WebPlus_IBM_VGA_8x16', 'gohu', 'Fira Code', 'Courier New', monospace;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ascii-art {
    margin: 0 0 1rem 0;
    color: #ffffff;
    text-align: center;
}

.name {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-family: 'WebPlus_IBM_VGA_8x16', 'gohu', 'Fira Code', 'Courier New', monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
    border: 1px solid #ffffff;
    transition: all 0.2s ease;
    font-family: 'WebPlus_IBM_VGA_8x16', 'gohu', 'Fira Code', 'Courier New', monospace;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.link:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-1px);
}

.domain {
    font-size: 0.9rem;
    color: #ffffff;
    margin-top: 1.5rem;
    font-family: 'WebPlus_IBM_VGA_8x16', 'gohu', 'Fira Code', 'Courier New', monospace;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.8;
}

.nickname {
    font-size: 1rem;
    color: #ffffff;
    margin-top: 1rem;
    font-family: 'WebPlus_IBM_VGA_8x16', 'gohu', 'Fira Code', 'Courier New', monospace;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .name {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .links {
        gap: 0.8rem;
    }

    .link {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }

    .domain {
        font-size: 0.8rem;
    }
}