/* Note: some are from my ricing knowledge, and those animations curves are from https://cubic-bezier.com and https://matthewlein.com/tools/ceaser it's kinda spaghetti of stuff so kindly ignore the source; why this gymnastics? I JUST DIDN'T WANTED TO USE A static site generator (yet)*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: clip;
}

body {
    background: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.hero-wrap {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 3rem;
}

.cat-area {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.ascii-box {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.ascii-box pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 18px;
    line-height: 1.05;
    color: #fff;
    white-space: pre;
    pointer-events: none;
    user-select: none;
    margin: 0;
}

.text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-block h1 {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.3px;
    white-space: nowrap;
    margin-bottom: 6px;
}

.name-style {
    white-space: nowrap;
    display: inline-block;
}

.sub {
    color: #fff;
    opacity: 0.6; /* Keeps color palette pure white while dropping contrast naturally */
    font-size: 0.9rem;
}

.link-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1rem;
    flex-wrap: wrap;
}

.nav-links a,
.content-stuff p a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dashed #fff;
    transition: background 0.3s ease, color 0.3s ease;
    padding: 0.2rem 0;
}

.nav-links a:hover,
.content-stuff p a:hover {
    background: #fff;
    color: #000;
}

.content-stuff {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 5rem 1.5rem 8rem;
}

.inner-text {
    width: 100%;
    max-width: 680px;
}

.content-stuff h2 {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 2px;
    margin-top: 60px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.content-stuff h2::before {
    content: "> ";
    color: #fff;
    margin-right: 10px;
}

.content-stuff p {
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.8;
}

.content-stuff ul {
    list-style: none;
    margin-bottom: 24px;
}

.content-stuff ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    color: #fff;
}

.content-stuff ul li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #fff;
}

.content-stuff hr {
    border: 0;
    height: 1px;
    background: transparent;
    border-top: 1px dashed #fff; 
    margin: 60px 0;
}

.anim1,
.anim2,
.anim3,
.anim4 {
    opacity: 0;
    transform: translateY(20px);
    animation: slideMe 0.95s cubic-bezier(0.12, 0.71, 0.33, 1) forwards;
}

.anim1 {
    animation-delay: 0.05s;
}

.anim2 {
    animation-delay: 0.2s;
}

.anim3 {
    animation-delay: 0.4s;
}

.anim4 {
    animation-delay: 0.65s;
}

@keyframes slideMe {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Media Queries */
@media (max-width: 980px) {
    .hero-wrap {
        padding-left: 6%;
        padding-right: 6%;
        padding-top: 2rem;
    }

    .ascii-box pre {
        font-size: 15px;
    }

    .text-block h1 {
        font-size: 1.25rem;
        white-space: nowrap;
    }
}

@media (max-width: 680px) {
    .hero-wrap {
        padding-top: 2rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .cat-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }

    .ascii-box pre {
        font-size: 12px;
    }

    .text-block h1 {
        font-size: 1.3rem;
        white-space: normal;
    }

    .name-style {
        white-space: normal;
    }

    .link-holder {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }

    .nav-links {
        gap: 2rem;
        font-size: 0.9rem;
    }

    .content-stuff {
        padding: 3rem 1.5rem 6rem;
    }
}

@media (max-width: 480px) {
    .ascii-box pre {
        font-size: 9.5px;
    }

    .text-block h1 {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1.4rem;
    }
}

@media (min-width: 1400px) {
    .ascii-box pre {
        font-size: 22px;
    }

    .text-block h1 {
        font-size: 1.6rem;
    }

    .cat-area {
        gap: 2.2rem;
    }
}
.container {
    width: 100%;
    max-width: 720px;
    margin: 60px auto;
    padding: 0 20px;

    opacity: 0;
    transform: translateY(20px);
    animation: slideMe 0.95s cubic-bezier(0.12, 0.71, 0.33, 1) forwards;
}

.container h2 {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
                 "Liberation Mono", "Courier New", monospace;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.container ul {
    list-style: none;
}

.container li {
    margin-bottom: 12px;
}

.container a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dashed #fff;
}

.container a:hover {
    background: #fff;
    color: #000;
}

.footer {
    margin-top: 60px;
    opacity: 0.6;
}
