:root {
    font-family: Montserrat, serif;
    scrollbar-width: none; /* Firefox */
    font-size: 1.2dvw;
    -webkit-text-size-adjust: none; /* Ã­ÂÂ¬Ã«Â¡Â¬, Ã¬â€šÂ¬Ã­Å’Å’Ã«Â¦Â¬, Ã¬ËœÂ¤Ã­Å½ËœÃ«ÂÂ¼ Ã¬â€¹Â Ã«Â²â€žÃ¬Â â€ž */
    -ms-text-size-adjust: none; /* IE */
    -moz-text-size-adjust: none; /* Ã­Å’Å’Ã¬ÂÂ´Ã¬â€“Â´Ã­ÂÂ­Ã¬Å Â¤ */
    --mv-width: 50rem;

    /* ===== Type scale tokens =====
       rem is viewport-relative here (root font-size: 1.2dvw), so desktop and
       mobile use different absolute values. Tokens are redefined per breakpoint
       below; usage sites only reference var(--fs-*). */
    --fs-3xs: 0.4rem;
    --fs-2xs: 0.5rem;
    --fs-xs: 0.7rem;
    --fs-sm: 0.85rem;
    --fs-base: 1rem;
    --fs-md: 1.2rem;
    --fs-lg: 1.5rem;
    --fs-xl: 2rem;
    --fs-2xl: 3rem;
    --fs-3xl: 4.5rem;
}

@media (max-width: 600px) {
    :root {
        --fs-3xs: 0.6rem;
        --fs-2xs: 0.7rem;
        --fs-xs: 1.5rem;
        --fs-sm: 1.7rem;
        --fs-base: 2rem;
        --fs-md: 2.4rem;
        --fs-lg: 2.8rem;
        --fs-xl: 3.2rem;
        --fs-2xl: 4.5rem;
        --fs-3xl: 7rem;
    }
}

html, body {
    margin: 0;
    padding: 0;
    font-family: Montserrat, serif;
    background-color: #000000;
    scrollbar-width: none; /* Firefox */
    color: white;
    scroll-behavior: smooth;
    font-size: 1.2dvw;
}

.z-index_top {
    z-index: 99;
}

.background_image {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    object-fit: cover;
    z-index: -1;
}

.background_black {
    display: flex;
    position: relative;
    width: 55rem;

    background: black;
}

.background_Linear_color {
    display: none;
}

.full_div {
    display: flex;
    position: absolute;
    width: 100vw;
    min-height: 100dvh;
    padding: 2rem 3rem;
    box-sizing: border-box;
    align-items: center;
    scrollbar-width: none; /* Firefox */
}

.pc_menu {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.menu_bar {
    width: 100%;
    justify-items: center;
    align-items: center;
    justify-content: space-between;
}

.main_title {
    left: 0;
    width: 8rem;
    cursor: pointer;
}

.main_title:hover {
    left: 0;
    filter: brightness(125%);
}


.nav_icons {
    gap: 0.6rem;
    filter: grayscale(100%);
    z-index: 80;
}


.nav_icons > img {
    width: 1.1rem;
    cursor: pointer;
    z-index: 99;
    opacity: 0.3;
    transition: opacity 0.2s;
}

.nav_icons > img:hover {
    opacity: 1;
    filter: brightness(1.5);
}


.menu_list {
    margin-top: 1rem;
    gap: 0.4rem;
    width: fit-content;
    cursor: pointer;
}

.menu_list > a {
    color: white;
    text-decoration: none;
    opacity: 0.25;
    font-size: var(--fs-sm);
    width: fit-content;
    z-index: 99;
}

.menu_list > a:hover {
    transition: opacity 0.3s ease-in-out;

    opacity: 1;
}

.nav_bar {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin: 0 0 0.5rem;
}

.mobile_bottom_nav {
    display: none;
}

.pc_bottom_nav {
    display: flex;
    width: 100%;
    flex-direction: column;
    box-sizing: border-box;

    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.bottom_hr {
    width: 92%;
    border-top: 0.1rem solid #131313;
    margin-top: 3rem;
}

.bottom_partners {
    display: flex;
    justify-items: center;
    align-items: center;
    width: 30rem;
    overflow-x: hidden;
    gap: 2rem;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
}

.moving_partners {
    display: flex;
    width: 40rem;
    gap: 2rem;
    animation: marquee 7s linear infinite;
}

.bottom_image_logo {
    width: 3rem;
    margin-right: 0.1rem;
}

.bottom_icons {
    margin-left: 2rem;
    gap: 0.3rem;
}

.bottom_icons > img {
    height: 1.2rem;
}

.moving_partners > img {
    height: 2rem;
    opacity: 15%;
    justify-items: center;
    align-items: center;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-43rem);
    }
}

.main_h1 {
    font-family: IBMPlexMonoLight, monospace;
    font-weight: 600;
    font-size: var(--fs-xl);
    color: #2BD52D;
    text-align: center;
    margin-top: 15rem;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.main_h2 {
    margin: 0;
    font-family: IBMPlexMonoLight, monospace;
    font-size: var(--fs-md);
    text-align: center;

}

.mobile_main_info {
    display: none;

}

#main_section {
    position: absolute;
    width: 100%;
    justify-items: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

#menu_section {
    width: 100%;
    justify-items: center;
    align-items: center;
    z-index: 4;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.main_buttons {
    width: 20rem;
    margin-top: 2rem;
    gap: 1rem;
}

.check_buttons {
    width: 30rem;
    margin-top: 2rem;
    gap: 1rem;
}

.type_in {

    border-radius: 0.2rem;
    width: 20rem;
    height: 20rem;
    padding: 1.5rem;
    scrollbar-width: none; /* Firefox */
    font-family: IBMPlexMonoRegular, monospace;
    font-weight: 400;
    font-size: 1.4dvw;
    color: #ffffff;
    background-color: transparent;
    overflow-wrap: break-word;
    text-align: left;
    border: rgba(255, 255, 255, 0.11) solid 0.12rem;
    resize: none;
}

.type_in:focus {
    outline: none;
}

.type_in:hover {
    background-color: #1313133e;
    border: rgba(255, 255, 255, 0.177) solid 0.12rem;
}

.column_flex {
    display: flex;
    flex-direction: column;
}

.row_flex {
    display: flex;
    flex-direction: row;
}

.space_between {
    justify-content: space-between;
}

.center {
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;

}


.arrow_button {
    width: 2rem;
    height: 2rem;
    border-radius: 0.2rem;
    border: rgba(37, 37, 37, 0.64) solid 0.12rem;
    background-color: rgba(0, 0, 0, 0.47);
    background-size: 0.7rem;
    background-position: center center;
    background-repeat: no-repeat;
}

.arrow_button:hover {
    background-color: #0A1508;
    border: rgba(43, 213, 45, 0.1) solid 0.12rem;
}

.arrow_button:active {
    background-color: #0A1508;
    border: #03311A solid 0.12rem;
}


.left_arrow {
    background-image: url('../img/left_arrow.svg')
}

.right_arrow {
    background-image: url('../img/right_arrow.svg');
}


.background_div {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100dvw;
    height: 100dvh;
    z-index: -1;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    z-index: -2;
    left: 0;
}

/*onchain page*/


.on_chain_page_dog_pc {
    position: absolute;
    overflow: visible;
    margin-left: 50rem;
    margin-top: 5rem;
}

.on_chain_page_dog_pc > img {
    width: 27rem;
    transform: translateX(3.1rem);
}

.mv-progress-div {
    width: 37.5rem;
}

.mv-progress {
    width: 98%;
    height: 1.5rem;
    background: #000;
    overflow: hidden;
    position: relative;
}

.mv-progress-bar {
    background: linear-gradient(90deg, black 40%, #00BD39 0);
    background-size: 0.8rem 100%;
    height: 2rem;
    width: 37.5rem;
    position: absolute;
}

.progress_div {

    width: 23rem;
    display: none;
    margin-top: 1rem;
}

.progress-bar {
    background: linear-gradient(90deg, black 10%, #00BD39 0);
    background-size: 2rem 100%;
    height: 2rem;
    width: 2%;
    position: absolute;
}

.progress_div > p {
    font-size: var(--fs-md);
    color: #00BD39;
}

.progress {
    width: 98%;
    height: 2rem;
    background: #000;
    overflow: hidden;
    position: relative;
    border: 0.1rem solid rgba(0, 255, 34, 0.37);
    border-radius: 0.5rem;

}

.input_number {
    font-size: var(--fs-md);
    font-family: IBMPlexMonoLight, monospace;
    font-weight: 400;
    color: white;
    border: none;
    text-align: right;
    align-items: center;
    justify-items: center;
    display: block;
    margin: 0;
    background-color: transparent;
    cursor: default;
}

.input_number::-webkit-inner-spin-button,
.input_number::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.input_number:focus {
    outline: none;
}

.check_menus {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    width: 20rem;
    justify-content: center;
    align-items: center;
    justify-items: center;
    align-content: center;
    gap: 2rem;
}

.check_menu {
    display: flex;
    justify-items: center;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 0;
}

.check_box {

    border: 0.6rem solid #181818;
    vertical-align: middle;
    border-radius: 0.1rem;
    appearance: none;
    margin: 0;
    cursor: pointer;
}

.check_box:checked {

    transition: border 0.2s ease;
    border: 0.6rem solid #ffffff;
    border-radius: 0.1rem;
    cursor: pointer;
}

.check_box:checked + label {
    padding-left: 0.5rem;
    transition: color 0.2s ease;
    color: #ffffff;
    cursor: pointer;
}

.check_box + label {
    padding-left: 0.5rem;
    color: #727272;
    font-size: var(--fs-base);
    cursor: pointer;
}

.check_box + label:hover {
    padding-left: 0.5rem;
    color: #a2a2a2;
    font-size: var(--fs-base);
    cursor: pointer;
}

.check_menu > input {
    margin: 0;
}

.nav_bar_mobile {
    display: none;
}


.upload_image {
    border-radius: 0.2rem;
    display: flex;
    width: 23rem;
    height: 23rem;
    overflow: scroll;
    justify-items: center;
    align-items: center;
    background-color: #0d0d0d7a;
    border: 0.12rem solid #252525;
    scrollbar-width: none; /* Firefox */

}

.upload_image:hover {
    border: 0.12rem solid #3a3a3a;
    background-color: #0d0d0d48;

}


.gen_upload {
    width: 25rem;
    height: 25rem;
    border-radius: 0.2rem;
}

.contents_input {
    width: 100%;

    align-items: center;
    align-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


.contents_input > label > a {
    display: block;
    font-family: Montserrat, monospace;
    color: #252525;
    font-size: var(--fs-lg);
    margin: 0;
    cursor: pointer;
}

.upload_img_logo {
    opacity: 0.153;
    width: 2rem;
    cursor: pointer;
}

.generate_result {
    display: none;
    width: 100%;
    height: 100%;
}

.generate_result_img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.generate_result_txt {
    letter-spacing: 0.4em;
    line-height: 98%;
    font-family: IBMPlexMonoLight, monospace;
    color: #2BD52D;
}

.font_size {
    text-align: left;
    color: #444746;
    font-size: var(--fs-md);
    margin-right: 1rem;
}


.info {
    text-align: left;
    color: #444746;
    font-size: var(--fs-md);
    margin: 1rem 0 0 0;
}

.after_gen {
    display: none;
    width: 23rem;
    flex-direction: column;
    gap: 1rem;
}

.after_gen_png {
    display: flex;
    width: 26rem;
    flex-direction: column;
    gap: 1rem;
}

/*check page*/


.loading {
    display: none;
    /*width: 30rem;*/
    height: 23rem;
    justify-content: center;
    align-items: center;
    justify-items: center;
    width: 100%;
}

.loading > img {
    width: 18rem;
}

.loading_mini {
    display: none;
    width: 100%;
    height: 23rem;
    justify-content: center;
    align-items: center;
    justify-items: center;
}

.loading_mini > img {
    width: 20rem;
}

.loading-screen {
    display: none;
    position: absolute;
    /*z-index: 99;*/
    width: 100dvw;
    height: 100dvh;
    justify-content: center;
    justify-items: center;
    text-align: center;

}

.loading_img {
    width: 30rem;
    animation: shine 2s linear 1s infinite alternate;

}

.code-animation {
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

.typing-text {
    font-size: var(--fs-xl);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.65);
}

.typing-text::after {
    content: "|";
    animation: blink 0.8s step-end infinite;
}

@keyframes bounce {
    from {
        background: url('../img/heart.webp') center;
        background-size: cover;
        width: 98%;
        transform: translate(0.2rem, 0.2rem);
    }
    to {
        background: url('../img/heart.webp') center;
        background-size: cover;
        transform: none;
    }
}

@keyframes bounce_mobile {
    from {
        background: url('../img/heart.webp') center;
        width: 98%;
        height: 98%;
        background-size: cover;
        transform: translate(1rem, 0.6rem);
    }
    to {
        background: url('../img/heart.webp') center;
        background-size: cover;
        transform: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.loading-bar {
    width: 40rem;
    height: 0.3rem;
    background: #1a1a1a;
    border-radius: 0.3rem;
    overflow: hidden;
    position: relative;
}

.loading-item {
    display: flex;
    flex-direction: column;
}

.loading-bar::after {
    content: "";
    display: block;
    width: 40%;
    height: 100%;
    background: #00ff22;
    animation: loading 0.8s ease infinite;
    box-shadow: 0 0 1.4rem #00ff22;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(250%);
    }
}

@keyframes shine {
    from {
        filter: drop-shadow(0 0 7rem rgba(43, 255, 80, 0.34));
    }
    to {
        filter: drop-shadow(0 0 7rem rgba(43, 255, 80, 0.11));
    }
}

/* Particles */
#particles-js {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.search_div {
    display: flex;
    width: 30rem;
    height: 3rem;
    justify-items: center;
    align-items: center;
    align-content: center;
    border-radius: 0.2rem;
    border: #252525 solid 0.12rem;
    overflow: hidden;
}

.search_div:hover {
    border: #434343 solid 0.12rem;
}

.search_div:focus-within {
    border-color: #9b9b9b;
}

.search_div > input {
    font-size: var(--fs-lg);
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    width: 100%;
    height: 100%;
    background: transparent;
    color: white;
    border: none;
    padding-left: 0.8rem;
    outline: none;
    text-align: left !important;
    resize: none;
    white-space: nowrap;
    overflow-x: auto;
    caret-color: #66D04B;
    box-sizing: border-box;
}

.search_div > input::placeholder {
    opacity: 0.3;
    color: rgba(253, 253, 253, 0.457);
    font-size: var(--fs-lg);
}

.search_div > input:focus::placeholder {
    opacity: 0;
}

.search_div > input:focus {
    opacity: 1;
    outline: none;
    color: rgb(212 212 212);
}

.records {
    width: 38rem;
    margin-top: 2rem;
}

.all_records_title {
    display: none;
    margin: 1rem 0 2rem 1rem;
    text-align: left;
    font-size: var(--fs-md);
    color: #434845;
}

.transactions_div {
    /*width: 34rem;*/
    width: 100%;
    border: #0A1508 solid 0.12rem;
    padding: 1rem;
    box-sizing: border-box;
    border-radius: 0.2rem;
    gap: 0.5rem;
    cursor: pointer;
}

.feeds_div {
    cursor: default;
    width: 34rem;
}

.transaction_div {
    width: 38rem;
    gap: 0.5rem;
}

.transaction {
    width: 8.6rem;
    height: 6.4rem;
    padding: 0.5rem;
    box-sizing: border-box;
    background: rgba(63, 177, 85, 0.08);
    clip-path: polygon(0.5rem 0, 100% 0, 100% 100%, 0 100%, 0 0.5rem);
    border-radius: 0.2rem;
}

.transaction:active {
    background: rgba(48, 181, 84, 0.12);
}

.transaction:hover {
    background: rgba(48, 181, 84, 0.12);
}

.sig_title {
    color: #37815C;
    font-size: var(--fs-xs);
    margin: 0;
}

.signature {
    font-size: var(--fs-2xs);
    height: 3.2rem;
    margin: 0.5rem 0 0;
    color: white;
    word-break: break-all;
}

.transaction_bottom_div {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.date {
    color: #37815D;
    font-size: var(--fs-3xs);
}

.copy {
    width: 0.8rem;
}

.page_menu {
    width: 100%;
    gap: 3rem;
    justify-content: center;
    margin-top: 1rem;
    align-items: center;
    justify-items: center;
}

.page_num {
    gap: 1rem;
    display: flex;
    margin: 0;
    color: #ffffff;
    font-size: var(--fs-md);
}

/*about page*/


/*buttons*/


.green_button {
    display: flex;
    cursor: pointer;
    width: 100%;
    height: 3rem;
    justify-items: center;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 0.2rem;
    background: rgba(43, 213, 45, 0.1);
    border: rgba(43, 213, 45, 0.3) solid 0.12rem;

}

.green_button > p {
    font-size: var(--fs-lg);
    margin: 0;
    padding-bottom: 0.26rem;
    color: #2BD52D;
}

.green_button:hover {
    background: rgba(43, 213, 45, 0.2);
    border: rgba(43, 213, 45, 0.6) solid 0.12rem;
}

.re_gen {
    margin-top: 1rem;
    background: rgba(29, 33, 29, 0.2);
    border: #161616 solid 0.12rem;

}

.img_button {
    display: flex;

    width: 100%;
    height: 3rem;
    justify-items: center;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 0.2rem;
    border: rgba(43, 213, 45, 0.15) solid 0.12rem;
    cursor: pointer;


}

.img_button > div {
    gap: 0.5rem;
    justify-items: center;
    align-items: center;
    align-content: center;
}

.img_button > div > img {
    height: 1.2rem;
    margin: 0;
    padding: 0;
}

.img_button > div > p {
    font-size: var(--fs-lg);
    margin: 0;
    padding: 0;
    color: #989898;
}

.img_button > div > a {
    font-size: var(--fs-lg);
}

.img_button:hover {

    background: rgba(43, 213, 45, 0.1);
    border: rgba(43, 213, 45, 0.6) solid 0.12rem;

}

.img_button:active {
    background: rgba(255, 255, 255, 0.04);

}

.simple_button_green {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 78, 37, 0.7), rgba(8, 57, 34, 0.55));
    justify-items: center;
    align-items: center;
    align-content: center;
    border-radius: 2rem;
    border: rgba(43, 213, 45, 0.1) solid 0.2rem;
    cursor: pointer;
}

.simple_button_green > p {
    font-size: var(--fs-2xl);
    margin: 0;
    padding: 0;
    color: #ffffff;
}


.connected_button {
    display: flex;
    justify-content: center;
    right: 0;
    width: 14rem;
    height: 2.8rem;
    justify-items: center;
    align-items: center;
    align-content: center;
    border-radius: 0.2rem;
    background: rgba(43, 213, 45, 0.1);
    border: rgba(43, 213, 45, 0.43) solid 0.12rem;
    cursor: pointer;
}

.green {
    width: 1rem;
    height: 1rem;
    border-radius: 2rem;
    background: #00BD39;
    margin-right: 1rem;
}

.connected_button > p {
    font-size: var(--fs-base);
    margin: 0;
    padding: 0;
    color: #ffffff;
}

.connect_button {
    display: flex;
    justify-content: center;
    right: 0;
    width: 12rem;
    height: 2.8rem;
    font-size: var(--fs-base);
    color: #D9D9D9;
    font-family: Montserrat, serif;
    border-radius: 0.2rem;
    border-width: 0.12rem;
    border-style: solid;
    border-color: rgb(22, 22, 22);
    cursor: pointer;
}

.connect_button:hover {
    transition: background-color 0.1s ease;
    background: rgba(43, 213, 45, 0.1);
    border: rgba(43, 213, 45, 0.6) solid 0.12rem;

}

.connect_button:active {
    background: rgba(255, 255, 255, 0.04);

}

.code_in_button {
    width: 23rem;
    margin-top: 1rem;

}

.simple_button {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(35, 35, 35, 0.4);
    justify-items: center;
    align-items: center;
    align-content: center;
    border-radius: 2rem;
    border: rgba(33, 36, 33, 0.43) solid 0.1rem;
    cursor: pointer;

}

.simple_button > p {
    font-size: var(--fs-2xl);
    margin: 0;
    padding: 0;
    color: #ffffff;
}

.img_download {
    font-size: var(--fs-3xl);
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: #2BD52D;
}

.img_button_green {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 3rem;
    background: rgba(43, 213, 45, 0.1);
    justify-items: center;
    align-items: center;
    align-content: center;
    border-radius: 0.2rem;
    border: rgba(43, 213, 45, 0.1) solid 0.12rem;

    cursor: pointer;
}

.img_button_green:active {
    background: rgba(255, 255, 255, 0.04);
}

.img_button_green > div {
    height: 3rem;
    gap: 0.5rem;
    justify-items: center;
    align-items: center;
    align-content: center;
}

.img_button_green > div > img {
    height: 1.2rem;
    margin: 0;
    padding: 0;
}

.img_button_green > div > p {
    font-size: var(--fs-lg);
    margin: 0;
    padding: 0;
    color: #2BD52D;
}


/*gen page*/
.retry {
    margin-top: 5rem;
    width: 25rem;
}

.gen_menus {
    margin-top: 1rem;
    margin-bottom: 1rem;
    gap: 1rem;
}

.manage_info {
    text-align: left;
    color: #444746;
    font-size: var(--fs-md);
}

.navigator_menu {
    display: none;
}

.gen_menu {
    gap: 0.5rem;
}

.check_div {
    display: flex;
    justify-content: left;
    text-align: left;
    align-items: center;
    width: 25.5rem;
    gap: 0.5rem;
}

.check_title {
    color: #444746;
    font-size: var(--fs-md);
    margin: 0;
}

.check {
    cursor: pointer;
    text-indent: -9999px;
    width: 2.8rem;
    left: 0.1rem;
    height: 1.6rem;
    border: 0.12rem #444746 solid;
    background: #000000;
    display: block;
    border-radius: 0.2rem;
    position: relative;
}

.check:after {
    content: '';
    position: absolute;
    top: 0.1rem;
    left: 0.1rem;
    width: 1.1rem;
    height: 1.2rem;
    border: 0.12rem #FFF solid;
    background: #FFF;
    border-radius: 0.2rem;
    transition: 0.2s;
}

input:checked + .check:after {
    left: 1.3rem;
}

.see_code_in {
    display: none;
    flex-direction: column;
}

.goto_all_records {
    display: none;
    clip-path: polygon(
            100% 0, 100% 100%,
            0.7rem 100%, 0 50%,
            0.7rem 0
    );
    width: 6rem;
    background: linear-gradient(#252525, #171817);
    margin: 0 0 1rem 0;
    padding: 0;
    text-align: left;
    border-radius: 0.2rem;
}

.goto_all_records > p {
    font-size: var(--fs-base);
    color: #727272;
    padding: 0;
    margin: 0.1rem 0 0.1rem 1rem;
    cursor: pointer;

}

.goto_all_records:hover {
    filter: brightness(125%);
}

.record {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 26rem;
    background-color: #000000;
    border-radius: 0.2rem;
    border: rgba(43, 213, 45, 0.3) solid 0.12rem;
    padding: 2rem;
    box-sizing: border-box;
    margin: 0;
}


.hidden_txt {
    display: none;
}


.coded_in_text {
    margin: 0;
    width: 100%;
    display: none;
    font-size: var(--fs-md);
    text-wrap: wrap;
    word-break: break-word;
    color: #2BD52D;
}

.coded_in_ascii {
    display: none;
    line-height: 1;
    letter-spacing: 0.4em;
    text-rendering: optimizeLegibility;
    font-family: IBMPlexMonoLight, monospace;
    color: #2BD52D;
    width: 34rem;
    background: black;
}

.records_list {
    display: none;
    flex-direction: column;
}

.coded_page_bottom_menu {
    width: 100%;
    bottom: 0;
    justify-content: space-between;
    margin-top: 2rem;
    display: flex;
}

.coded_page_sig_title {
    font-size: var(--fs-base);
    color: #333333;
    margin: 0 0.5rem 0 0;
}

.coded_page_tx_id {
    font-size: var(--fs-base);
    color: #ffffff;
    margin: 0;
}

.coded_page_link_menu {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.coded_page_link_menu > img {
    height: 1rem;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.coded_page_link_menu > p {
    font-size: var(--fs-base);
    color: #FFF;
    font-weight: 400;
    padding: 0;
    margin: 0;
    cursor: pointer;
}


input[type=checkbox] {
    height: 0;
    width: 0;
    margin: 0;
    visibility: hidden;
}

.about_div {
    display: flex;
    flex-direction: column;
    width: 44rem;
}

.about_title {
    font-size: var(--fs-xl);
    margin: 5rem 0 0;
    font-family: Montserrat, monospace;
    font-weight: 400;

}

.token_image {
    width: 20rem;
    margin: 7rem;
}

.about_text {
    font-family: Montserrat, serif;
    line-height: 1.4;
    font-size: var(--fs-base);
    text-wrap: wrap;
    text-align: left;
    margin: 0 0 2rem;

}

.about_text_little_big {
    font-family: Montserrat, serif;
    font-size: var(--fs-lg);
    text-wrap: wrap;
    font-weight: 400;

    margin: 2rem 0;

}

.about_big {
    font-family: Montserrat, serif;

    font-size: var(--fs-lg);
    text-wrap: wrap;
    font-weight: 400;
    text-align: center;
    margin: 2rem;

    color: #00BD39;
}

.about_info {
    justify-content: center;
    align-items: center;
    width: 44rem;
    justify-items: center;
    display: flex;
    flex-direction: column;
}

.ca_div {
    width: 40rem;
    background: linear-gradient(rgba(9, 151, 80, 0.1), rgba(4, 173, 66, 0.1));
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    gap: 1rem;
}

.ca_div > p {

    font-size: var(--fs-base);
}

.copy_ca {
    width: 2rem;

}

.about_img {
    width: 30rem;
}


.code_in_hub_title {
    width: 18rem;
}

.cupid_img {
    width: 15rem;
}

.message {
    text-align: center;
    font-size: var(--fs-md);
    text-wrap: wrap;
    word-break: break-word;
}

.letter_menu {
    margin-top: 2rem;
    position: relative;
    display: flex;
    width: 23rem;
    justify-content: space-between;
    justify-items: center;
    align-items: center;
    margin-bottom: 1rem;
}

.letter_item {
    background-color: #000000;
    color: white;
    border: rgba(255, 255, 255, 0.11) solid 0.12rem;
    border-radius: 1rem;
    display: flex;
    position: relative;
    width: 9rem;
    height: 3rem;
    padding: 0 1rem;

}

.letter_item:focus {
    outline: none;
}

.letter_item:hover {
    background-color: #1313133e;
    border: rgba(255, 255, 255, 0.177) solid 0.12rem;
}

.letter_menu_title {
    font-size: var(--fs-xl);
    color: green;
    margin: 0;
}

.letter_info {
    justify-content: space-between;
}

.letter_menu_item {
    width: 8rem;
    height: 3rem;
    font-size: var(--fs-md);
    margin: 0;
    word-break: break-all;
}

.feed_div {
    width: 34rem;
    background: #000000;
    margin-bottom: 1rem;
    padding: 1rem;
    color: white;
    border-radius: 1rem;
    border: green 0.1rem solid;
    word-wrap: break-word;
    font-family: "Kode Mono", monospace;
    box-sizing: border-box;
}

.feed_handle {
    font-family: "Kode Mono", monospace;
    padding: 1rem;
    font-size: var(--fs-base);
    background: green;
    color: black;
}

.feed_tx {
    display: none;
}

.feed_text {
    font-family: "Kode Mono", monospace;
    white-space: break-spaces;
    font-size: var(--fs-base);
    padding: 1rem;
    color: white;
}

.feed_reply {
    font-family: "Kode Mono", monospace;
    white-space: break-spaces;
    font-size: var(--fs-base);
    padding: 1rem;
    background: green;
    color: black;
}

.bottom_feed_links {
    width: 100%;
    display: flex;
    font-size: var(--fs-base);
    flex-direction: row;
    justify-content: space-between;
    font-family: "Kode Mono", monospace;
}

.feed_image {
    text-align: center;
    line-height: 1;
    letter-spacing: 0.4em;
    text-rendering: optimizeLegibility;
    font-family: IBMPlexMonoLight, monospace;
}

.q_tab {
    font-size: var(--fs-base);
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.q_tab.active {
    border-bottom: 2px solid white;
    cursor: default;
}

.q_brain {
    padding: 1rem;
    width: 34rem;
}

.q_div_padding {
    padding: 1rem;
    box-sizing: border-box;

}

.q_menu_div {
    cursor: default;
    width: 34rem;
    display: flex;
    background: green;
    font-family: "Kode Mono", monospace;
    justify-content: space-evenly;
    padding: 1rem;
    box-sizing: border-box;
    border-radius: 0.3rem;
    border: green solid 0.12rem;
}

.q_top_menu_div {
    cursor: default;
    width: 34rem;
    display: flex;
    background: black;
    font-family: "Kode Mono", monospace;
    justify-content: space-evenly;
    padding: 1rem;
    box-sizing: border-box;
    border-radius: 0.3rem;
    border: green solid 0.12rem;
}

.q_page_btn {
    font-size: var(--fs-base);
    cursor: pointer;
}

.diary_list_div {
    padding: 1rem;
    display: flex;
    width: 34rem;
    flex-direction: row;
    overflow: scroll;
}

.diary_div {
    padding: 2rem;
    margin-right: 1rem;
    min-width: 30rem;
    border: green solid 0.12rem;
    border-radius: 1rem;
    box-sizing: border-box;
}

.diary {
    white-space: break-spaces;
}

.diary_tx {
    display: none;
}


.root_green_div {
    border: #00BD39 solid 0.1rem;
    margin: 2rem 9.4rem
}


.mv_console_div {
    scrollbar-width: none;
    padding: 0 2rem;
    color: #00ff22;
    min-height: 41.7rem;
    overflow-y: scroll;
    box-sizing: border-box;
    border-bottom: #00BD39 solid 0.1rem;
}

.music_tx_display {
    font-family: "Pixelify Sans", monospace;
    width: 18rem;
    word-wrap: break-word;
    font-size: var(--fs-sm);
}

.music_div {
    scrollbar-width: none;
    display: block;
    width: var(--mv-width);
    height: 10rem;
    overflow: scroll;
    border-right: #00BD39 solid 0.1rem;
    font-family: "Pixelify Sans", monospace;
    color: #00ff22;
    padding: 0.5rem;
    box-sizing: border-box;
}

.music_links > a:link {
    color: #00ff22;
}

.music_base {
    white-space: break-spaces;
    word-wrap: break-word;
}

.mv_left_menu_div {
    box-sizing: border-box;
    width: var(--mv-width);
    border-right: 0.1rem #00BD39 solid;
    border-bottom: #00BD39 solid 0.1rem;
    display: flex;
    align-items: center;
}

.left_top_menu {
    height: 3rem;
    display: flex;
    flex-direction: row;
    width: 100%;
    border-bottom: #00BD39 solid 0.1rem;
}

.mv_top_logo_div {
    display: flex;
    align-items: center;
    border-right: 0.1rem #00BD39 solid;
}

.top_logo {
    width: 2.3rem;
    padding: 0.5rem 0.8rem 0.5rem 0.8rem;

    display: block;
}

.play_progress {
    align-items: center;
}

.play_progress_div {
    border-right: 0.1rem #00ff22 solid;
}

.play_button {
    font-family: "Pixelify Sans", monospace;
    font-size: 1em;
    text-align: center;
    width: 5rem;
    height: 1.5rem;
    background: #00ff22;
    border: none;
    margin-left: 1rem;
    cursor: pointer;
}

.mv_display {
    box-sizing: border-box;
    width: var(--mv-width);
    font-family: IBMPlexMonoLight, monospace;
    line-height: 0.8;
    letter-spacing: 0.1em;
    white-space: pre;
    font-size: var(--fs-3xs);
    color: #00ff22;
    background-color: black;
    border-right: #00BD39 solid 0.1rem;
    border-bottom: #00BD39 solid 0.1rem;
    /* display: block; */
    margin: 0;
}

.mv_right_menu_div {
    height: 3rem;
    width: 100%;

}

.mv_right_top_div {
    height: 3rem;
    border-bottom: #00BD39 solid 0.1rem;
    width: 100%;
}

.close_mv {
    width: 3.28rem;
    margin: 0;
    cursor: pointer;
    display: flex;
}

.close_mv > p {
    font-family: "Silkscreen", monospace;
    color: #00ff22;
    font-size: var(--fs-lg);
    line-height: 0;
}

.mv_right_status_div {
    display: flex;
    height: 3rem;
    width: 20rem;
    font-size: var(--fs-base);
    font-family: "Silkscreen", monospace;
    color: black;
    background-color: #06c809;
}

.mv_time {
    font-family: "Pixelify Sans", monospace;
    color: #00ff22;
    font-size: var(--fs-md);
}

.green_panel {
    background-color: #06c809;
    display: flex;
}

.green_panel > p {
    font-family: "Silkscreen", monospace;
    color: black;
    font-size: var(--fs-base);
    line-height: 1;

}

.how_to_check_div {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
}

.how_to_check_div > p {
    font-family: "Pixelify Sans", monospace;
    color: #00BD39;
    font-size: var(--fs-md);
}

.about_on_chain_div {
    gap: 1.5rem;
}

.about_on_chain_text {
    font-family: "Pixelify Sans", monospace;
    color: #00ff22;
    font-size: var(--fs-base);
    text-align: center;
}

.code_in_logo {
    width: 20rem;
    margin-top: 4rem;
}

.network_img {
    width: 12rem;
    border: #00BD39 solid 0.1rem;
}

.check_ascii_title {
    display: flex;
    color: #00ff22;
    font-size: var(--fs-2xs);
    transform: translateY(3rem);
    background: black;
}

.check_on_chain_box {
    border: #00BD39 solid 0.1rem;
    padding: 3rem;
    border-radius: 1rem;
}

.check_on_chain_box > p {
    font-family: "Silkscreen", monospace;
    color: #00ff22;
}

.explain_ix_div {
    border: #0a9100 solid 0.1rem;
    padding: 0.3rem 1.5rem;
    border-radius: 1rem;
    height: 12rem;
    overflow-y: scroll;
    scrollbar-width: none;
}

.explain_ix {
    font-family: "Silkscreen", monospace;
    color: #06c809;
    font-size: var(--fs-sm);
}

.about_iq_logo {
    width: 12rem;
}

.about_iq_div {
    display: flex;
    width: 100%;
    padding: 4rem;
    box-sizing: border-box;
    flex-direction: column;
}

.about_box_group {
    margin-bottom: 6rem;
}

.about_box {
    padding: 0 1rem;
    box-sizing: border-box;
}

.about_title {
    width: 13rem;
    height: 100%;
    margin: 0;
}

.about_title > p {

    color: #06c809;
    font-size: var(--fs-md);
    font-family: "Pixelify Sans", monospace;
}

.about_explain {
    width: 40rem;
}

.about_explain > p {
    color: #06c809;
    font-size: var(--fs-base);
    font-family: "Pixelify Sans", monospace;

}

.about_box:hover {
    background-color: #06c809;
    color: black;
}

.about_box:hover p {
    color: black;
}

.roadmap_img {
    width: 50rem;
    margin-bottom: 5rem;
}
.ca_pre{
    background: #06c809;
    color: black;
    font-family: 'Silkscreen', monospace;
    width: fit-content;
    padding: 1rem;
    margin-top: 2rem;
    text-align: center;
    font-size: var(--fs-base);
}
@media (max-width: 600px) {
    .cupid_img {
        width: 25rem;
    }

    .message {
        text-align: center;
        font-size: var(--fs-base);
        text-wrap: wrap;
        word-break: break-word;
    }

    .letter_menu_title {
        font-size: var(--fs-xl);
        color: green;
        margin: 0;
    }

    .letter_info {
        justify-content: space-between;
    }

    .letter_menu_item {
        width: 13rem;
        height: 10rem;
        font-size: var(--fs-xl);
        margin: 0;
        word-break: break-all;
    }

    .letter_menu {
        margin-top: 2rem;
        position: relative;
        display: flex;
        width: 98%;
        justify-content: space-between;
        justify-items: center;
        align-items: center;
        margin-bottom: 1rem;
    }

    .letter_item {
        background-color: #000000;
        color: white;
        border: rgba(255, 255, 255, 0.11) solid 0.12rem;
        border-radius: 1rem;
        display: flex;
        position: relative;
        width: 27rem;

        height: 10rem;
        padding: 0 4rem;
        box-sizing: border-box;

    }

    .letter_item:focus {
        outline: none;
    }

    .letter_item:hover {
        background-color: #1313133e;
        border: rgba(255, 255, 255, 0.177) solid 0.12rem;
    }

    /* Loading Screen */
    .loading-screen {
        display: none;
        position: absolute;
        /*z-index: 99;*/
        width: 100dvw;
        height: 100dvh;
        justify-content: center;
        justify-items: center;
        text-align: center;

    }

    .loading-item {
        display: flex;
        flex-direction: column;
    }

    .loading_img {
        width: 50rem;
        animation: shine 2s linear 1s infinite alternate;

    }

    .code-animation {
        opacity: 0;
        animation: fadeIn 0.3s ease forwards;
    }

    .typing-text {
        font-size: var(--fs-xl);
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.65);
    }


    .background_image {
        display: flex;
        position: relative;
        margin-top: 12rem;
        height: 100dvh;
width: auto;
    }


    .about_text_little_big {

        font-family: Montserrat, serif;
        font-size: var(--fs-xl);
        text-wrap: wrap;
        font-weight: 400;

        margin: 2rem 0;
    }

    .about_big {
        font-family: Montserrat, serif;

        font-size: var(--fs-xl);
        text-wrap: wrap;
        font-weight: 400;
        text-align: center;
        margin: 2rem;

        color: #00BD39;;
    }

    .about_img {
        width: 100%;
    }

    .about_div {
        display: flex;
        flex-direction: column;
        width: 99%
    }

    .about_title {
        font-size: var(--fs-3xl);
        margin: 0;
        font-family: Montserrat, monospace;
        font-weight: 400;

    }

    .token_image {
        width: 34rem;
        margin: 7rem;
    }

    .progress_div {
        width: 95%;
        margin-top: 2rem;
        display: none;
    }

    .progress {
        width: 100%;
        height: 5rem;
        background: #000;
        overflow: hidden;
        position: relative;
        border: 0.1rem solid rgba(0, 255, 34, 0.37);
        border-radius: 3rem;

    }

    .progress-bar {
        background: linear-gradient(90deg, black 10%, rgba(0, 255, 34, 0.38) 0);
        background-size: 10rem 100%;
        height: 5rem;
        width: 2%;
        position: absolute;
    }

    .progress_div > p {
        font-size: var(--fs-xl);
        color: #00BD39;
    }

    .retry {
        margin-top: unset;
        width: unset;
    }

    .gen_menus {
        gap: 3rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .pc_bottom_nav {
        display: none;
    }

    .mobile_title {
        width: 35rem;
        margin-top: 14rem;
        margin-bottom: 34rem;
    }

    .nav_bar_mobile {
        display: flex;
    }


    .type_in {

        border-radius: 0.42rem;
        width: 53rem;
        height: 53rem;
        padding: 6rem;
        scrollbar-width: none; /* Firefox */
        font-family: IBMPlexMonoRegular, monospace;
        font-weight: 400;
        font-size: 4dvw;
        color: #ffffff;
        background-color: transparent;
        overflow-wrap: break-word;
        text-align: left;
        border: 0.3rem solid #252525;
        resize: none;
        cursor: text;
    }

    .type_in:focus {
        outline: none;
    }

    .type_in:hover {
        background-color: #1313133e;
        border: 0.3rem solid #252525;
    }


    .font_size {
        width: 98%;
        text-align: left;
        color: #444746;
        font-size: var(--fs-xl);
    }

    .pc_menu {
        display: none;
    }

    .pc_main_info {
        display: none;
    }

    .nav_icons {
        gap: 2rem;
        margin-right: 2rem;
    }

    .nav_icons:hover {
        filter: brightness(125%);
    }

    .nav_icons > img {
        width: 7rem;
    }


    .main_h1 {
        font-family: IBMPlexMonoMedium, monospace;
        font-weight: 600;
        font-size: var(--fs-3xl);
        color: #2BD52D;
        text-align: center;
        text-transform: uppercase;
        margin: 0 0 5rem;
    }

    .main_h2 {
        margin: 0;
        font-family: IBMPlexMonoLight, monospace;
        font-size: var(--fs-lg);
        text-align: center;
    }

    .background_dog_image {
        display: flex;
        position: relative;
        margin-top: 9rem;
        width: 55rem;
    }

    .background_black {
        display: flex;
        position: relative;
        width: 55rem;
        background: black;
    }

    .background_Linear_color {
        position: relative;
        display: flex;
        bottom: 0;
        width: 100%;
        height: 40%;
        background: linear-gradient(black, #192920 90%);
    }

    .full_div {
        display: flex;

        position: absolute;
        width: 100vw;
        min-height: 100dvh;
        padding: 8rem 9rem;
        box-sizing: border-box;
        align-items: center;
        scrollbar-width: none; /* Firefox */
        justify-content: space-between;
    }

    .nav_icon {
        width: 1.5rem;
        cursor: pointer;
    }

    .navigator_menu {
        height: 95rem;
        transform: translate(-8rem, 13rem);
        background-repeat: no-repeat;
        background-size: contain;
        width: 47.7rem;
        position: absolute;
        display: none;
        flex-direction: column;
        padding: 6rem;
        box-sizing: border-box;

        background-image: url('../img/navigator.svg');
        z-index: 99;
    }

    .navigator_menu_icons {
        filter: grayscale(100%);
        margin-top: 3rem;
        margin-bottom: 3rem;
        display: flex;
        align-content: center;
    }

    .navigator_menu_icons > img {
        width: 6rem;
    }

    .navigator_menu_list {
        gap: 2rem;
    }

    .navigator_menu_list > a {
        color: #ffffff;
        text-decoration: none;

        font-size: var(--fs-2xl);
        width: fit-content;
    }

    .navigator_menu_list > a:active {
        color: #01BB39;
    }

    .nav_bar {
        align-items: center;
        justify-content: space-between;
        height: 20rem;
        width: 100%;
    }

    .nav_title {
        width: 30rem;
    }

    .nav_connect {
        width: 18rem;
        height: 9rem;
    }

    .nav_menu_arrow {
        width: 4rem;
        margin-left: 2rem;
    }

    #main_section {
        position: unset;
        width: 100%;
        justify-items: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    #menu_section {
        width: 100%;
        justify-items: center;
        align-items: center;
        flex-direction: column;
    }

    .mobile_main_info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile_title {
        display: flex;
        width: 35rem;
        margin-top: 4rem;
        margin-bottom: 34rem;
    }

    .main_h1 {
        font-family: IBMPlexMono, monospace;
        font-weight: lighter;
        font-size: 7.2rem;
        color: #2BD52D;
        text-align: center;
        margin: 0 0 5rem;
    }

    .main_h2 {
        margin: 0;
        font-family: IBMPlexMonoLight, monospace;
        font-size: var(--fs-lg);
        text-align: center;
        background: black;
        box-shadow: 0 -4rem 3rem #000000;
    }


    .nav_icons {
        gap: 2.5rem;
        z-index: 99;
        opacity: 0.25;
        filter: none;
    }

    .menu_list > a {
        color: #91ffc5;
        text-decoration: none;
        opacity: 0.25;
        font-size: var(--fs-xl);
        width: fit-content;
        cursor: pointer;
        user-select: none;
    }

    .menu_list > a:hover {
        opacity: 0.25;
    }

    .mobile_bottom_nav {
        display: flex;

        margin-top: 10rem;

        width: 100%;
        box-sizing: border-box;
        justify-content: space-between;
    }

    .search_div {
        display: flex;
        width: 100%;
        height: 10rem;
        justify-items: center;
        align-items: center;
        align-content: center;
        border-radius: 0.42rem;
        border: #252525 solid 0.4rem;

    }

    .search_div > input {
        padding-left: 2rem;
        font-size: var(--fs-2xl);
        font-family: Montserrat, serif;
        font-weight: 400;
        background: transparent;
        width: 97%;
        color: white;
        border: none;
        resize: none;
        scrollbar-width: none;

    }

    .search_div > input::placeholder {
        font-size: var(--fs-2xl);
        color: rgba(253, 253, 253, 0.457);

    }

    .search_div > input:focus {
        opacity: 1;
        outline: none;
        color: rgb(102, 208, 75);
    }

    .search_div:hover {
        border: #404040 solid 0.4rem;
    }

    .check_buttons {
        width: 100%;
        margin-top: 2rem;
        gap: 1rem;
    }

    .input_number {
        font-size: var(--fs-xl);
        color: white;
        border: none;
        text-align: center;
        align-items: center;
        justify-items: center;
        display: block;
        margin: 0;
        background-color: transparent;
        cursor: default;
    }

    .input_number::-webkit-inner-spin-button,
    .input_number::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .input_number:focus {
        outline: none;
    }


    .green_button {
        display: flex;
        cursor: pointer;
        width: 100%;
        height: 10rem;
        justify-items: center;
        align-items: center;
        align-content: center;
        justify-content: center;
        border-radius: 0.4rem;
        border: rgba(43, 213, 45, 0.3) solid 0.42rem;

    }

    .green_button:hover {
        display: flex;
        cursor: pointer;
        width: 100%;
        height: 10rem;
        justify-items: center;
        align-items: center;
        align-content: center;
        justify-content: center;
        border-radius: 0.4rem;
        border: rgba(43, 213, 45, 0.3) solid 0.42rem;

    }

    .green_button > p {
        font-size: var(--fs-3xl);
        margin: 0;
        padding: 0;
        color: #2BD52D;
    }

    .re_gen {
        margin-top: 5rem;
        background: #161616;
        border: #161616 solid 0.42rem;
    }

    .simple_button_green {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 100%;
        justify-items: center;
        align-items: center;
        align-content: center;
        border-radius: 0.42rem;
        background: rgb(10, 21, 8);
        border: rgba(43, 213, 45, 0.1) solid 0.3rem;
        cursor: pointer;
    }

    .simple_button_green:hover {
        border-radius: 0.42rem;
        border: rgba(43, 213, 45, 0.43) solid 0.3rem;
    }


    .simple_button_green > p {
        font-size: var(--fs-xl);
        margin: 0;
        padding: 0;
        color: #ffffff;
    }

    .green {
        width: 0.7rem;
        height: 0.7rem;
        border-radius: 4rem;
        background: #00BD39;
        margin-right: 1rem;
    }

    .connected_button {
        display: flex;
        justify-content: center;
        cursor: pointer;
        width: 100%;
        height: 100%;

        justify-items: center;
        align-items: center;
        align-content: center;
        border-radius: 0.42rem;
        background: rgba(43, 213, 45, 0.1);
        border: rgba(43, 213, 45, 0.43) solid 0.3rem;

    }

    .connected_button > p {
        font-size: var(--fs-lg);
        margin: 0;
        padding: 0;
        color: #ffffff;
    }

    .simple_button {
        display: flex;
        justify-content: center;
        cursor: pointer;
        width: 100%;
        height: 100%;
        background: rgba(35, 35, 35, 0.4);
        justify-items: center;
        align-items: center;
        align-content: center;
        border-radius: 0.42rem;
        border: rgba(33, 36, 33, 0.43) solid 0.3rem;

    }

    .simple_button:hover {
        background: rgb(10, 21, 8);
        border-radius: 0.42rem;
        border: rgba(43, 213, 45, 0.3) solid 0.3rem

    }

    .simple_button > p {
        font-size: var(--fs-xl);
        margin: 0;
        padding: 0;
        color: #ffffff;
    }

    .img_button {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 10rem;
        justify-items: center;
        align-items: center;
        align-content: center;
        border-radius: 0.42rem;
        border: #161616 solid 0.3rem;

    }

    .img_button:hover {
        border-radius: 0.42rem;
        border: rgba(43, 213, 45, 0.3) solid 0.3rem;

    }

    .img_button > div {
        height: 4.5rem;
        gap: 2rem;
        justify-items: center;
        align-items: center;
        align-content: center;
    }

    .img_button > div > img {
        height: 3.7rem;
        margin: 0;
        padding: 0;
    }

    .img_button > div > p {
        font-size: var(--fs-2xl);
        margin: 0;
        padding: 0;
        color: #989898;
    }

    .img_button > div > a {
        font-size: var(--fs-2xl);
    }

    .img_download {
        font-size: var(--fs-2xl);
        margin: 0;
        padding: 0;
        text-decoration: none;
        color: #2BD52D;
    }

    .img_button_green {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 10rem;
        justify-items: center;
        align-items: center;
        align-content: center;
        border-radius: 0.42rem;
        border: rgba(43, 213, 45, 0.3) solid 0.3rem;

    }

    .img_button_green:hover {
        border-radius: 0.42rem;
        border: rgba(43, 213, 45, 0.3) solid 0.3rem;

    }

    .img_button_green > div {
        height: 4.2rem;
        gap: 2rem;
        justify-items: center;
        align-items: center;
        align-content: center;
    }

    .img_button_green > div > img {
        height: 3.7rem;
        margin: 0;
        padding: 0;
    }

    .img_button_green > div > p {
        font-size: var(--fs-2xl);
        margin: 0;
        padding: 0;
        color: #2BD52D;
    }

    .check_menus {
        margin-bottom: 4rem;
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        justify-items: center;
        align-content: center;
        gap: 4rem;
    }

    .check_menu {
        display: flex;
        justify-items: center;
        align-items: center;
        align-content: center;
        justify-content: left;
        gap: 1.5rem;
    }


    .check_box {

        border: 1.9rem solid #181818;
        vertical-align: middle;
        border-radius: 0.4rem;
        appearance: none;
        margin: 0;
        cursor: pointer;
    }

    .check_box:checked {

        transition: border 0.2s ease;
        border: 1.9rem solid #ffffff;
        border-radius: 0.4rem;
        cursor: pointer;
    }

    .check_box:checked + label {
        font-size: var(--fs-xl);
        padding-left: 0.5rem;
        transition: color 0.2s ease;
        color: #ffffff;
        cursor: pointer;
    }

    .check_box + label {
        font-size: var(--fs-xl);
        padding-left: 0.5rem;
        color: #727272;
        cursor: pointer;
    }

    .check_box + label:hover {
        font-size: var(--fs-xl);
        padding-left: 0.5rem;
        color: #a2a2a2;
        cursor: pointer;
    }

    .check_menu > input {
        margin: 0;
    }

    .main_buttons {
        width: 100%;
        margin-top: 6rem;
        margin-bottom: 4rem;
        gap: 4rem;
    }

    .on_chain_page_buttons {
        width: 100%;
        margin-top: 6rem;
        gap: 4rem;
    }

    .upload_image {
        border-radius: 0.42rem;
        display: flex;
        width: 65rem;
        height: 65rem;
        overflow: scroll;
        justify-items: center;
        align-items: center;
        border: 0.3rem solid #252525;
        scrollbar-width: none; /* Firefox */
        cursor: pointer;

    }

    .upload_image:hover {
        border: 0.3rem solid #4e4e4e;
    }


    .upload_img_logo {
        opacity: 0.053;
        width: 5.4rem;
        margin: 1rem;
        cursor: pointer;
    }

    .generate_result_txt {
        letter-spacing: 0.4em;
        line-height: 98%;
        font-family: IBMPlexMonoLight, monospace;
        color: #2BD52D;
    }


    .contents_input > label > a {
        display: block;
        font-family: Montserrat, monospace;
        color: #252525;
        font-size: var(--fs-2xl);
        margin: 0;
        cursor: pointer;
    }

    .info {
        width: 98%;
        text-align: left;
        color: #444746;
        font-size: var(--fs-xl);
        margin: 3rem 0 0 1rem;
    }

    .manage_info {
        font-size: var(--fs-md);
        margin: 0 1.8rem 0 0;
        width: 98%;
        text-align: left;
        color: #444746;

    }

    .records {
        width: 100%;
    }

    .records_list {
        display: none;
        flex-direction: column;
    }

    .all_records_title {
        display: flex;
        margin: 0 0 3rem 1rem;
        text-align: left;
        font-size: var(--fs-xl);
        color: #434845;
    }

    .transactions_div {
        width: 100%;
        gap: 2rem;
        border: unset;
    }

    .q_tab {
        font-size: var(--fs-base);
        cursor: pointer;
        border-bottom: 2px solid transparent;
    }

    .feed_div {
        width: 100%;
        background: #000000;
        margin-bottom: 1rem;
        padding: 2rem;
        color: white;
        border-radius: 1rem;
        border: green 0.1rem solid;
        word-wrap: break-word;
        font-family: "Kode Mono", monospace;
        box-sizing: border-box;
    }

    .feed_handle {
        font-size: var(--fs-base);
        font-family: "Kode Mono", monospace;
        padding: 1rem;
        background: green;
        color: black;
    }

    .feed_text {
        font-size: var(--fs-base);
        font-family: "Kode Mono", monospace;
        white-space: break-spaces;
        padding: 1rem;
        color: white;
    }

    .feed_reply {
        font-family: "Kode Mono", monospace;
        white-space: break-spaces;
        font-size: var(--fs-base);
        padding: 1rem;
        background: green;
        color: black;
    }

    .bottom_feed_links {
        width: 100%;
        display: flex;
        font-size: var(--fs-base);
        flex-direction: row;
        justify-content: space-between;
        font-family: "Kode Mono", monospace;
    }

    .feeds_div {
        width: 100%;
        cursor: default;
    }

    .q_top_menu_div {
        cursor: default;
        width: 63.5rem;
        display: flex;
        background: black;
        border: green solid 0.12rem;
        font-family: "Kode Mono", monospace;
        justify-content: space-evenly;
        padding: 2rem;
        box-sizing: border-box;
        border-radius: 0.3rem;
    }

    .q_div_padding {
        padding: 2rem;
        box-sizing: border-box;
    }

    .q_menu_div {
        cursor: default;
        width: 63.5rem;
        display: flex;
        background: green;
        border: green solid 0.12rem;
        font-family: "Kode Mono", monospace;
        justify-content: space-evenly;
        padding: 2rem;
        box-sizing: border-box;
        border-radius: 0.3rem;
    }

    .diary_list_div {
        padding: 2rem;
        display: flex;
        width: 63.5rem;
        flex-direction: row;
        overflow: scroll;
    }

    .diary_div {
        padding: 2rem;
        margin-right: 1rem;
        min-width: 200rem;
        border: green solid 0.12rem;
        border-radius: 1rem;
        box-sizing: border-box;
        font-size: var(--fs-base);
    }

    .q_brain {
        width: 63.5rem;
        padding: 2rem;
    }

    .q_page_btn {
        font-size: var(--fs-base);
        cursor: pointer;
    }

    .transaction_div {
        width: 100%;
        gap: 2rem;
    }

    .transaction {
        width: 23rem;
        height: 13rem;
        padding: 2rem;
        background: rgba(43, 213, 45, 0.1);
        clip-path: polygon(2rem 0, 100% 0, 100% 100%, 0 100%, 0 2rem);
        border-radius: 2.7rem 2rem 2rem 2rem;
    }

    .transaction:active {
        background: rgba(43, 213, 45, 0.2);
    }

    .sig_title {

        color: #37815C;
        font-size: var(--fs-sm);
        margin: 0;
    }

    .signature {
        font-size: var(--fs-sm);
        margin: 0.5rem 0 0;
        color: white;
    }

    .transaction_bottom_div {
        margin-top: 1rem;
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    .date {
        color: #37815D;
        font-size: var(--fs-sm);
    }

    .copy {
        width: 2rem;
    }

    .page_menu {
        width: 100%;
        gap: 3rem;
        justify-content: center;

        align-items: center;
        justify-items: center;
    }

    .page_num {
        gap: 1rem;
        display: flex;
        margin: 0;
        color: #ffffff;
        font-size: var(--fs-xl);
    }

    .total_page {
        opacity: 0.3;
    }

    .code_in_button {
        width: unset;
        margin-top: 2rem;
        transform: none;
    }

    .arrow_button {
        width: 5rem;
        height: 5rem;
        border-radius: 0.5rem;
        border: #252525 solid 0.3rem;
        background-color: #000000;
        background-size: 2rem;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .arrow_button:hover {
        border: #0A1508 solid 0.3rem;
        background-color: #0A1508;
    }


    .arrow_button:active {
        background-color: #03311A;
        border: #03311A solid 0.4rem;
    }

    .thin_arrow_button {
        display: flex;
        height: 3.5rem;
        transition: opacity 0.3s ease;
    }

    .see_code_in {
        display: none;
        flex-direction: column;
    }

    .goto_all_records {
        display: none;
        clip-path: polygon(
                100% 0, 100% 100%,
                1.4rem 100%, 0 50%,
                1.4rem 0
        );
        width: 15rem;
        background: linear-gradient(#252525, #171817);
        margin: 0 0 3rem 1rem;
        padding: 0;
        text-align: left;
        border-radius: 0.6rem;
    }

    .goto_all_records > p {
        font-size: var(--fs-lg);
        color: #727272;
        padding: 0;
        margin: 0.4rem 0 0.4rem 2.3rem;
    }

    .record {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        min-height: 55rem;
        background-color: #000000;
        border-radius: 0.42rem;
        border: rgba(43, 213, 45, 0.3) solid 0.3rem;
        padding: 5rem 5rem 3rem;
        box-sizing: border-box;
        margin: 0;
    }

    .hidden_txt {
        display: none;
    }

    .coded_in_text {
        margin: 0;
        width: unset;
        display: none;
        font-size: var(--fs-base);
        text-wrap: wrap;
        color: #2BD52D;
    }

    .coded_in_ascii {
        display: none;
        letter-spacing: 0.4em;
        line-height: 1;
        font-family: IBMPlexMonoLight, monospace;
        color: #2BD52D;
        width: 55.3rem;
        background: black;
    }

    .records_list {
        display: none;
        flex-direction: column;
    }

    .coded_page_bottom_menu {
        width: 100%;
        bottom: 0;
        justify-content: space-between;
        margin-top: 3rem;
        display: flex;
    }

    .coded_page_sig_title {
        font-size: var(--fs-base);
        color: #333333;
        margin: 0 1rem 0 0;
    }

    .coded_page_tx_id {
        font-size: var(--fs-base);
        color: #ffffff;
        margin: 0;
    }

    .coded_page_link_menu {
        display: flex;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .coded_page_link_menu > img {
        height: 2rem;
        padding: 0;
        margin: -0.5rem;
        cursor: pointer;
    }

    .coded_page_link_menu > p {
        font-size: var(--fs-base);
        color: #FFF;
        font-weight: 400;
        padding: 0;
        margin: 0;
    }

    .coded_page_link_menu:hover {
        filter: brightness(135%);
    }

    .check_div {
        display: flex;
        justify-content: left;
        text-align: left;
        align-items: center;
        width: 100%;
        gap: 1rem;
        margin: 4rem 0 0;
    }

    .check_title {
        color: #444746;
        font-size: var(--fs-lg);

        margin: 0 0 0 1.5rem;
        transform: translateY(-0.14rem);
    }

    .check {
        cursor: pointer;
        text-indent: -9999px;
        width: 6.5rem;
        height: 4.5rem;
        left: 0.4rem;
        border: #252525 solid 0.3rem;
        background: #000000;
        display: block;
        border-radius: 0.42rem;
        position: relative;
    }

    .check:after {
        content: '';
        position: absolute;
        top: 0.4rem;
        left: 0.4rem;
        width: 2.3rem;
        height: 3.1rem;
        border: 0.3rem #ffffff solid;
        background: #ffffff;
        border-radius: 0.4rem;
        transition: 0.2s;
    }

    input:checked + .check:after {
        left: 3.2rem;
    }

    .after_gen {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 3rem;
    }

    .after_gen_png {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 3rem;
    }

    .about_info {
        justify-content: center;
        align-items: center;
        width: 100%;
        justify-items: center;
        display: flex;
        flex-direction: column;
    }

    .ca_div {
        width: 100%;
        background: linear-gradient(rgba(9, 151, 80, 0.1), rgba(4, 173, 66, 0.1));
        padding-left: 2rem;
        padding-right: 2rem;
        box-sizing: border-box;
        gap: 1rem;
    }

    .ca_div > p {
        font-size: var(--fs-base);

    }

    .copy_ca {
        width: 5rem;

    }

    .about_text {
        font-family: Montserrat, serif;
        transform: translateX(2rem);
        line-height: 1.4;
        font-size: var(--fs-xl);
        text-wrap: auto;
        text-align: left;
        margin: 0;
        width: 97%;
    }

    .loading {
        display: none;
        width: 100%;
        height: 60rem;
        justify-content: center;
        align-items: center;
        justify-items: center;
    }

    .loading > img {
        width: 40rem;
    }

    .loading_mini {
        display: none;
        width: 100%;
        height: 50rem;
        justify-content: center;
        align-items: center;
        justify-items: center;
    }

    .loading_mini > img {
        width: 30rem;
    }

    .code_in_hub_title {
        width: 50rem;
    }


}

/* ═══════════════════════════════════════════════════════════════
   LANDING PAGE SECTIONS (lp_)
   ═══════════════════════════════════════════════════════════════ */

.lp_top_bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0 1.5rem;
    height: 2.8rem;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: rgba(43, 213, 45, 0.1) solid 0.06rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-sizing: border-box;
    margin: 0;
}

.lp_top_bar .main_title {
    width: 6rem;
}

.lp_top_bar_right {
    align-items: center;
    gap: 1.5rem;
}

.lp_top_bar_links {
    gap: 1.5rem;
}

.lp_top_bar_links a {
    font-family: Montserrat, serif;
    font-size: var(--fs-xs);
    color: white;
    text-decoration: none;
    opacity: 0.4;
    transition: opacity 0.2s;
    cursor: pointer;
}

.lp_top_bar_links a:hover {
    opacity: 1;
}

.lp_top_bar .nav_icons {
    filter: grayscale(100%);
}

.lp_top_bar .nav_icons img {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.lp_top_bar .nav_icons img:hover {
    opacity: 1;
}

.lp_section {
    position: relative;
    padding: 4rem 3rem;
    border-bottom: rgba(43, 213, 45, 0.15) solid 0.06rem;
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: clip;
}

.lp_hero {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
}
.lp_hero_grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 3rem;
}
.lp_hero_video {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}
/* Below ~900px the two columns get too cramped — stack them. */
@media (max-width: 900px) {
    .lp_hero { align-items: flex-start; }
    .lp_hero_grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .lp_hero_inner { max-width: 100%; }
    .lp_hero_video .crt_tv_wrap { width: 90%; max-width: 460px; margin: 0 auto; }
}

.lp_scroll_hint {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 90;
    transition: opacity 0.4s;
}

.lp_scroll_text {
    font-family: "Kode Mono", monospace;
    font-size: var(--fs-2xs);
    color: #2BD52D;
    letter-spacing: 0.2rem;
    opacity: 0.5;
}

.lp_scroll_line {
    width: 1px;
    height: 3rem;
    position: relative;
    overflow: hidden;
    background: rgba(43, 213, 45, 0.1);
}

.lp_scroll_line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #2BD52D);
    animation: lp_scroll_flow 1.5s ease-in-out infinite;
}

@keyframes lp_scroll_flow {
    0% { top: -100%; }
    100% { top: 100%; }
}

.lp_hero_inner {
    max-width: 38rem;
    min-width: 0;
}

.lp_hero_sub {
    font-family: Montserrat, serif;
    font-size: var(--fs-base);
    color: #a2a2a2;
    line-height: 1.6;
    margin-top: 1rem;
}

.lp_stat_num {
    font-family: IBMPlexMonoMedium, monospace;
    font-size: var(--fs-xl);
    color: white;
    line-height: 1;
}

.lp_stat_label {
    font-family: "Kode Mono", monospace;
    font-size: var(--fs-xs);
    color: #727272;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.lp_tag {
    font-family: "Kode Mono", monospace;
    font-size: var(--fs-xs);
    color: #2BD52D;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.lp_section_title {
    font-family: IBMPlexMonoMedium, monospace;
    font-size: var(--fs-xl);
    color: #2BD52D;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Cards Grid */
.lp_cards_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.lp_card {
    border: rgba(43, 213, 45, 0.2) solid 0.08rem;
    border-radius: 0.2rem;
    padding: 1.5rem;
    transition: border-color 0.3s, background 0.3s;
}

.lp_card:hover {
    border-color: rgba(43, 213, 45, 0.5);
    background: rgba(43, 213, 45, 0.05);
}

.lp_card_icon {
    font-size: var(--fs-xl);
    margin-bottom: 0.8rem;
}

.lp_card_icon:empty {
    display: none;
}

/* ===== Terminal-panel cards (About section) ===== */
.lp_card_term {
    position: relative;
    border: 0.07rem solid rgba(43, 213, 45, 0.16);
    border-radius: 0.2rem;
    padding: 1.4rem 1.6rem 1.5rem;
    background: rgba(255,255,255,0.014);
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Header row: > title .......... index, all on one aligned baseline */
.lp_card_term .lp_card_title {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    font-family: IBMPlexMonoMedium, monospace;
    font-size: var(--fs-md);
    color: #e9ffe9;
    letter-spacing: 0.01em;
    margin: 0;
    padding-bottom: 0.85rem;
    margin-bottom: 0.95rem;
    border-bottom: 0.07rem solid rgba(43,213,45,0.12);
    transition: border-color 0.3s ease;
}
.lp_card_term .lp_card_title::before {
    content: ">";
    color: rgba(43,213,45,0.65);
    font-weight: 700;
    transition: color 0.3s ease;
}
/* index number pinned to the end of the header row */
.lp_card_term .lp_card_title::after {
    content: attr(data-idx);
    margin-left: auto;
    font-size: var(--fs-xs);
    letter-spacing: 0.12em;
    color: rgba(43,213,45,0.3);
    transition: color 0.3s ease;
}

.lp_card_term .lp_card_desc {
    font-family: Montserrat, serif;
    font-size: var(--fs-sm);
    color: #9a9a9a;
    line-height: 1.6;
    margin: 0;
}

/* corner brackets — hidden at rest, drawn in on hover (no floating bits) */
.lp_card_term .lp_corner {
    position: absolute;
    width: 0.7rem; height: 0.7rem;
    border: 0.08rem solid rgba(43,213,45,0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.lp_card_term .lp_corner_tl { top: 0.45rem; left: 0.45rem; border-right: 0; border-bottom: 0; }
.lp_card_term .lp_corner_tr { top: 0.45rem; right: 0.45rem; border-left: 0; border-bottom: 0; }
.lp_card_term .lp_corner_bl { bottom: 0.45rem; left: 0.45rem; border-right: 0; border-top: 0; }
.lp_card_term .lp_corner_br { bottom: 0.45rem; right: 0.45rem; border-left: 0; border-top: 0; }

/* hover: refined light-up — border, faint inner glow, corners fade in */
.lp_card_term:hover {
    border-color: rgba(43,213,45,0.4);
    background: rgba(43,213,45,0.025);
    transform: translateY(-2px);
    box-shadow: 0 0 0 0.07rem rgba(43,213,45,0.08), 0 0.4rem 1.4rem rgba(0,0,0,0.4);
}
.lp_card_term:hover .lp_card_title { border-bottom-color: rgba(43,213,45,0.3); }
.lp_card_term:hover .lp_card_title::before { color: #2BD52D; }
.lp_card_term:hover .lp_card_title::after { color: rgba(43,213,45,0.65); }
.lp_card_term:hover .lp_corner { opacity: 1; }

/* ===== CRT scroll reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(10px);
    will-change: opacity, transform;
}
.reveal.in {
    animation: crt_reveal 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    animation-delay: var(--reveal-delay, 0ms);
}
@keyframes crt_reveal {
    0%   { opacity: 0;    transform: translateY(10px); filter: brightness(0.6); }
    70%  { opacity: 1;    transform: translateY(0);    filter: brightness(1); }
    /* brief power-on flicker, then settle */
    78%  { opacity: 0.55; }
    86%  { opacity: 1; }
    92%  { opacity: 0.8; }
    100% { opacity: 1;    transform: translateY(0);    filter: brightness(1); }
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
    .reveal.in { animation: none; }
}


.lp_card_title {
    font-family: IBMPlexMonoMedium, monospace;
    font-size: var(--fs-md);
    color: white;
    margin-bottom: 0.5rem;
}

.lp_card_desc {
    font-family: Montserrat, serif;
    font-size: var(--fs-sm);
    color: #989898;
    line-height: 1.5;
}

/* Roadmap */
.lp_roadmap_timeline {
    gap: 0;
    overflow-x: auto;
    margin-top: 2rem;
    scrollbar-width: none;
}

.lp_q_block {
    flex: 0 0 15rem;
    padding: 1.5rem;
    border: rgba(43, 213, 45, 0.15) solid 0.06rem;
    border-right: none;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s;
}

.lp_q_block:last-child {
    border-right: rgba(43, 213, 45, 0.15) solid 0.06rem;
}

.lp_q_block:hover {
    background: rgba(43, 213, 45, 0.05);
}

.lp_q_label {
    font-family: "Kode Mono", monospace;
    font-size: var(--fs-sm);
    color: #2BD52D;
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
}

.lp_q_items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.lp_q_items li {
    font-family: Montserrat, serif;
    font-size: var(--fs-sm);
    color: #a2a2a2;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.lp_check {
    color: #2BD52D;
    flex-shrink: 0;
}

.lp_dot {
    color: #727272;
    flex-shrink: 0;
}

/* Projects Grid */
.lp_projects_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.lp_project_card {
    border: rgba(43, 213, 45, 0.2) solid 0.08rem;
    border-radius: 0.2rem;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
}

.lp_project_card:hover {
    border-color: rgba(43, 213, 45, 0.5);
    transform: translateY(-0.2rem);
}

.lp_project_img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    background: #0d0d0d;
    display: block;
}

.lp_project_body {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lp_link_btn {
    font-family: "Kode Mono", monospace;
    font-size: var(--fs-xs);
    color: #2BD52D;
    text-decoration: none;
    border: rgba(43, 213, 45, 0.3) solid 0.06rem;
    padding: 0.4rem 0.8rem;
    border-radius: 0.15rem;
    transition: background 0.2s, border-color 0.2s;
    display: inline-block;
}

.lp_link_btn:hover {
    background: rgba(43, 213, 45, 0.15);
    border-color: rgba(43, 213, 45, 0.6);
}

/* Hopium */
.lp_hopium_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 1.5rem;
}

.lp_big_iq {
    font-family: IBMPlexMonoMedium, monospace;
    font-size: var(--fs-3xl);
    color: white;
    line-height: 0.9;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.lp_ca_block {
    border: rgba(43, 213, 45, 0.2) solid 0.06rem;
    border-left: #2BD52D solid 0.2rem;
    padding: 1.2rem;
}

.lp_ca_ticker {
    font-family: IBMPlexMonoMedium, monospace;
    font-size: var(--fs-xl);
    color: #2BD52D;
    line-height: 1;
}

.lp_ca_address {
    font-family: "Kode Mono", monospace;
    font-size: var(--fs-xs);
    color: #2BD52D;
    opacity: 0.8;
    word-break: break-all;
    line-height: 1.5;
}

.lp_perks_list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.lp_perks_list li {
    font-family: Montserrat, serif;
    font-size: var(--fs-sm);
    color: #a2a2a2;
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.lp_perks_list li::before {
    content: '→';
    color: #2BD52D;
    font-family: monospace;
    flex-shrink: 0;
}

.lp_hopium_stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.lp_h_stat {
    border: rgba(43, 213, 45, 0.15) solid 0.06rem;
    border-radius: 0.2rem;
    padding: 1.5rem 1.2rem;
    transition: border-color 0.3s;
}

.lp_h_stat:hover {
    border-color: rgba(43, 213, 45, 0.5);
}

.lp_h_stat_num {
    font-family: IBMPlexMonoMedium, monospace;
    font-size: var(--fs-xl);
    color: #2BD52D;
    line-height: 1;
}

.lp_h_stat_label {
    font-family: Montserrat, serif;
    font-size: var(--fs-xs);
    color: #727272;
    margin-top: 0.3rem;
}

/* Footer */
.lp_footer {
    padding: 2rem 3rem;
    border-top: rgba(43, 213, 45, 0.15) solid 0.06rem;
}

.lp_footer_top {
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: rgba(255, 255, 255, 0.08) solid 0.06rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.lp_footer_heading {
    font-family: "Kode Mono", monospace;
    font-size: var(--fs-xs);
    color: white;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.lp_footer a {
    font-family: Montserrat, serif;
    font-size: var(--fs-xs);
    color: #727272;
    text-decoration: none;
    transition: color 0.2s;
}

.lp_footer a:hover {
    color: #2BD52D;
}

.lp_footer_links {
    flex-wrap: wrap;
}

.lp_cta_btn {
    width: auto;
    padding: 0 1.2rem;
    white-space: nowrap;
}

.lp_cta_btn > p {
    font-size: var(--fs-base);
}

.lp_mobile_only {
    display: none;
}

/* ── LANDING PAGE MOBILE ── */
@media (max-width: 600px) {

    /*
     * Base rem on 600px mobile = 1.2dvw = ~4.7px
     * So 3rem ≈ 14px, 5rem ≈ 23px, 7rem ≈ 33px
     *
     * Principle: left-align everything, generous vertical rhythm,
     * no double-padding with .full_div (which adds 8rem 9rem on mobile).
     * Override lp_section padding to compensate.
     */

    /* ── Top Bar ── */
    .lp_top_bar {
        height: 10rem;
        padding: 0 3rem;
    }

    .lp_top_bar .main_title {
        width: 16rem;
    }

    .lp_top_bar_right {
        gap: 2rem;
    }

    .lp_top_bar_links a {
        font-size: var(--fs-base);
    }

    .lp_top_bar .nav_icons img {
        width: 3.5rem;
        height: 3.5rem;
    }

    /* ── Kill double padding from .full_div on lp sections ── */
    .lp_section {
        padding: 8rem 0;
        margin: 0;
    }

    /* ── HERO ── */
    .lp_hero {
        min-height: 85dvh;
        padding-top: 6rem;
        align-items: flex-start;
    }

    .lp_hero_inner {
        width: 100%;
        max-width: 100%;
    }

    /* Stack vertically on mobile: text first, TV below */
    .lp_hero_grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .lp_hero_video .crt_tv_wrap {
        width: 100%;
        max-width: 100%;
    }

    .lp_hero .main_h1 {
        font-size: var(--fs-3xl);
        margin-bottom: 2rem;
    }

    .lp_hero_sub {
        font-size: var(--fs-md);
        line-height: 1.6;
        margin-top: 2rem;
        color: #a2a2a2;
    }

    .lp_mobile_only {
        display: flex;
    }

    .lp_hero_ctas {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 2rem;
        margin-top: 5rem;
        width: 100%;
        max-width: 100%;
    }

    .lp_hero_ctas .green_button {
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box;
        min-width: 0;
        height: 8rem;
        padding: 0 !important;
    }

    .lp_hero_ctas .green_button > p {
        font-size: var(--fs-xl);
    }

    .lp_stats {
        display: flex;
        justify-content: space-between;
        margin-top: 6rem;
        gap: 2rem;
    }

    .lp_stat_num {
        font-size: var(--fs-3xl);
    }

    .lp_stat_label {
        font-size: var(--fs-xs);
        margin-top: 0.8rem;
    }

    .lp_scroll_text {
        font-size: var(--fs-sm);
    }

    .lp_scroll_line {
        height: 5rem;
    }

    /* ── Section header rhythm ── */
    .lp_tag {
        font-size: var(--fs-base);
        margin-bottom: 1.5rem;
    }

    .lp_section_title {
        font-size: var(--fs-3xl);
        margin-bottom: 2rem;
        line-height: 1.1;
    }

    .lp_section .about_text {
        font-size: var(--fs-md);
        line-height: 1.6;
        max-width: 100% !important;
    }

    /* ── Cards ── */
    .lp_cards_grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 5rem;
    }

    .lp_card {
        padding: 3.5rem;
        border-width: 0.15rem;
    }

    .lp_card_title {
        font-size: var(--fs-xl);
        margin-bottom: 1rem;
    }

    .lp_card_desc {
        font-size: var(--fs-base);
        line-height: 1.6;
    }

    /* ── Roadmap ── */
    .lp_roadmap_timeline {
        flex-direction: column;
        gap: 0;
        margin-top: 5rem;
    }

    .lp_q_block {
        flex: none;
        width: 100%;
        border-right: rgba(43, 213, 45, 0.15) solid 0.06rem;
        padding: 3.5rem;
    }

    .lp_q_label {
        font-size: var(--fs-md);
        margin-bottom: 1.5rem;
    }

    .lp_q_items {
        gap: 1rem;
    }

    .lp_q_items li {
        font-size: var(--fs-base);
        line-height: 1.5;
    }

    /* ── Projects ── */
    .lp_projects_grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 5rem;
    }

    .lp_project_img {
        height: 28rem;
    }

    .lp_project_body {
        padding: 3.5rem;
    }

    .lp_project_body .lp_tag {
        font-size: var(--fs-xs);
    }

    .lp_project_body .lp_card_title {
        font-size: var(--fs-xl);
    }

    .lp_project_body .lp_card_desc {
        font-size: var(--fs-base);
        line-height: 1.6;
    }

    .lp_link_btn {
        font-size: var(--fs-base);
        padding: 1.2rem 2rem;
    }

    .lp_project_links {
        gap: 1.5rem !important;
        margin-top: 2rem !important;
    }

    /* ── Hopium / Invest ── */
    .lp_hopium_wrap {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .lp_big_iq {
        font-size: 10rem;
        margin-bottom: 3rem;
    }

    .lp_ca_block {
        padding: 3rem;
    }

    .lp_ca_ticker {
        display: none;
    }

    .lp_ca_address {
        font-size: var(--fs-sm);
        margin-top: 0.5rem;
    }

    .lp_hopium_left .about_text {
        font-size: var(--fs-md);
        line-height: 1.6;
    }

    .lp_perks_list {
        margin-top: 3rem;
        gap: 1.5rem;
    }

    .lp_perks_list li {
        font-size: var(--fs-base);
        line-height: 1.5;
    }

    .lp_hopium_stats {
        gap: 2rem;
    }

    .lp_h_stat {
        padding: 3rem;
    }

    .lp_h_stat_num {
        font-size: var(--fs-2xl);
    }

    .lp_h_stat_label {
        font-size: var(--fs-sm);
        margin-top: 0.8rem;
    }

    /* ── Resources ── */
    .lp_card .lp_link_btn {
        margin-top: 2rem !important;
        font-size: var(--fs-base);
    }

    /* ── Footer ── */
    .lp_footer {
        padding: 5rem 0;
    }

    .lp_footer_top {
        flex-direction: column;
        gap: 4rem;
    }

    .lp_footer .lp_card_title {
        font-size: 4rem !important;
    }

    .lp_footer_heading {
        font-size: var(--fs-base);
        margin-bottom: 1.5rem;
    }

    .lp_footer a {
        font-size: var(--fs-base);
        line-height: 2;
    }

    .lp_footer_links {
        flex-direction: column;
        gap: 4rem;
    }

    .lp_footer_bottom {
        margin-top: 3rem;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .lp_footer_bottom p {
        font-size: 1.8rem !important;
    }
}
/* ============ CRT TV BROADCAST ============ */
#lp_broadcast { width: 100%; display: flex; flex-direction: column; align-items: center; padding-top: 0; margin-top: -1px; }
#lp_hero { border-bottom: none; }
#lp_broadcast .lp_tag,
#lp_broadcast .lp_section_title,
#lp_broadcast .about_text { align-self: center; text-align: center; }
.crt_tv_wrap { width: 90%; max-width: 500px; display: flex; flex-direction: column; align-items: center; gap: 2rem; margin-top: 1rem; }
@media (min-width: 1600px) {
    .crt_tv_wrap { max-width: 700px; }
}
/* TV inside the hero grid: fill the right column, capped */
.lp_hero_video .crt_tv_wrap { width: 100%; max-width: 520px; margin-top: 0; }
@media (min-width: 1600px) {
    .lp_hero_video .crt_tv_wrap { max-width: 600px; }
}
.crt_credit {
    position: relative;
    width: 100%;
    max-width: 820px;
    min-width: 0;
    padding: 10px;
    box-sizing: border-box;
    background: linear-gradient(180deg,#d9d2c4 0%,#b8ad95 55%,#8e8472 100%);
    border: 2px solid #3a3328;
    border-radius: 12px;
    box-shadow:
        0 8px 18px rgba(0,0,0,0.5),
        inset 0 2px 0 rgba(255,255,255,0.55),
        inset 0 -3px 0 rgba(0,0,0,0.3);
}
.crt_credit_screen {
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 4px;
    box-shadow: inset 0 0 14px rgba(0,0,0,0.9), inset 0 0 40px rgba(0,40,0,0.35);
    height: 1.8rem;
    width: 100%;
    display: flex; align-items: center;
    min-width: 0;
}
.crt_credit_screen::before {
    content: "";
    position: absolute; inset: 0; pointer-events: none; z-index: 2;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0,0,0,0.35) 0px,
        rgba(0,0,0,0.35) 1px,
        transparent 2px,
        transparent 3px
    );
}
.crt_credit_text {
    position: absolute;
    left: 0;
    top: 50%;
    white-space: nowrap;
    font-family: Consola, monospace;
    font-size: var(--fs-sm);
    color: #d6ffd6;
    text-shadow: 0 0 6px rgba(120,255,120,0.9), 0 0 2px rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: crt_marquee 14s linear infinite;
    will-change: transform;
}
.crt_credit_text > span { padding-right: 4rem; }
.crt_credit_text a { color: #baffba; text-decoration: underline; text-underline-offset: 2px; }
.crt_credit_text a:hover { color: #fff; }
@keyframes crt_marquee {
    0% { transform: translate(0, -50%); }
    100% { transform: translate(-50%, -50%); }
}
.crt_tv {
    position: relative;
    width: 100%;
    max-width: 820px;
    min-width: 0;
    flex-shrink: 0;
    background: linear-gradient(180deg,#d9d2c4 0%,#b8ad95 55%,#8e8472 100%);
    border-radius: 22px;
    padding: 22px 22px 18px 22px;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.55),
        inset 0 2px 0 rgba(255,255,255,0.6),
        inset 0 -4px 0 rgba(0,0,0,0.35);
    border: 2px solid #3a3328;
}
.crt_tv_bezel {
    position: relative;
    background: #1a1a1a;
    border-radius: 14px;
    padding: 14px;
    box-shadow:
        inset 0 0 0 3px #2b2b2b,
        inset 0 0 40px rgba(0,0,0,0.8);
}
.crt_screen {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #000;
    border-radius: 28px / 20px;
    overflow: hidden;
    box-shadow:
        inset 0 0 60px rgba(0,0,0,0.9),
        inset 0 0 120px rgba(0,30,0,0.4);
    contain: layout size;
}
.crt_tv, .crt_tv_bezel, .crt_screen { box-sizing: border-box; }
.crt_video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) saturate(1.1) brightness(1.02);
    transform: scale(1.02);
}
.crt_scanlines {
    position: absolute; inset: 0; pointer-events: none; z-index: 5;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0,0,0,0.22) 0px,
        rgba(0,0,0,0.22) 1px,
        transparent 2px,
        transparent 4px
    );
    mix-blend-mode: multiply;
}
.crt_flicker {
    position: absolute; inset: 0; pointer-events: none; z-index: 6;
    background: rgba(255,255,255,0.03);
    animation: crt_flicker 0.15s infinite;
}
@keyframes crt_flicker {
    0%,100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}
.crt_vignette {
    position: absolute; inset: 0; pointer-events: none; z-index: 7;
    background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.7) 100%);
}
.crt_noise {
    position: absolute; inset: 0; pointer-events: none; z-index: 4; opacity: 0.08;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.crt_static {
    position: absolute; inset: 0; pointer-events: none; z-index: 9;
    background: repeating-linear-gradient(180deg, rgba(255,255,255,0.5), rgba(0,0,0,0.5) 2px);
    opacity: 0; transition: opacity 0.2s;
}
.crt_static.on { opacity: 0.85; animation: crt_static_anim 0.12s steps(2) infinite; }
@keyframes crt_static_anim {
    0% { transform: translateY(0); }
    100% { transform: translateY(3px); }
}

.crt_label_tl, .crt_label_tr, .crt_label_bl, .crt_label_br {
    position: absolute; z-index: 8;
    font-family: Consola, monospace;
    color: #d6ffd6;
    text-shadow: 0 0 6px rgba(120,255,120,0.8), 0 0 2px rgba(255,255,255,0.6);
    font-size: var(--fs-sm);
    letter-spacing: 0.08em;
}
.crt_label_tl { top: 12px; left: 14px; }
.crt_label_tr { top: 12px; right: 14px; color: #ff8080; text-shadow: 0 0 6px rgba(255,60,60,0.8); animation: crt_rec 1s infinite; }
.crt_label_bl { bottom: 12px; left: 14px; }
.crt_label_br { bottom: 12px; right: 14px; }
@keyframes crt_rec { 50% { opacity: 0.2; } }

/* Big center play overlay  CRT / retro broadcast styling */
.crt_play_overlay {
    position: absolute; inset: 0; z-index: 10;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%);
    border: 0; padding: 0; margin: 0; cursor: pointer;
    font-family: Consola, monospace;
    transition: opacity 0.25s;
}
.crt_play_blink {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    animation: crt_rec 1.2s infinite;
}
.crt_play_text {
    font-size: var(--fs-base); letter-spacing: 0.22em; color: #d6ffd6;
    text-shadow: 0 0 10px rgba(120,255,120,0.95), 0 0 3px rgba(255,255,255,0.6);
    transition: transform 0.15s;
}
.crt_play_overlay:hover .crt_play_text { transform: scale(1.06); }
.crt_play_hint {
    font-size: var(--fs-xs); letter-spacing: 0.16em;
    color: rgba(214,255,214,0.7);
    text-shadow: 0 0 6px rgba(120,255,120,0.6);
}
.crt_screen.playing .crt_play_overlay { opacity: 0; pointer-events: none; }

/* Bottom control bar */
.crt_controls {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 11;
    display: flex; align-items: center; gap: 10px;
    padding: 8px 12px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0) 100%);
    font-family: Consola, monospace;
    opacity: 0; transition: opacity 0.25s;
}
.crt_tv_wrap:hover .crt_controls,
.crt_screen:not(.playing) .crt_controls { opacity: 1; }
.crt_ctrl_btn {
    flex: 0 0 auto;
    width: 30px; height: 30px; padding: 5px;
    background: transparent; border: 0; cursor: pointer;
    color: #d6ffd6;
    filter: drop-shadow(0 0 4px rgba(120,255,120,0.7));
}
.crt_ctrl_btn:hover { color: #2BD52D; }
.crt_ctrl_btn svg { width: 100%; height: 100%; display: block; }
.crt_ctrl_btn svg [fill="none"], .crt_ctrl_btn svg polyline, .crt_ctrl_btn svg line, .crt_ctrl_btn svg path {
    stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.crt_ctrl_btn svg polygon, .crt_ctrl_btn svg rect { fill: currentColor; }
/* play/pause + mute icon toggling driven by .playing / .muted on .crt_screen.
   Specificity must beat `.crt_ctrl_btn svg` (0,1,1), so qualify with .crt_ctrl_btn. */
.crt_ctrl_btn svg.crt_icon_pause,
.crt_ctrl_btn svg.crt_icon_muted { display: none; }
.crt_screen.playing .crt_ctrl_btn svg.crt_icon_play { display: none; }
.crt_screen.playing .crt_ctrl_btn svg.crt_icon_pause { display: block; }
.crt_screen.muted .crt_ctrl_btn svg.crt_icon_sound { display: none; }
.crt_screen.muted .crt_ctrl_btn svg.crt_icon_muted { display: block; }

.crt_ctrl_title {
    flex: 0 1 auto; min-width: 0;
    font-size: var(--fs-xs); color: #d6ffd6;
    letter-spacing: 0.08em; white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis;
    text-shadow: 0 0 5px rgba(120,255,120,0.7);
    max-width: 9rem;
}
.crt_seek {
    flex: 1 1 auto; height: 6px; border-radius: 3px;
    background: rgba(214,255,214,0.2);
    cursor: pointer; overflow: hidden;
}
.crt_seek_fill {
    height: 100%; width: 0%;
    background: #2BD52D;
    box-shadow: 0 0 8px rgba(43,213,45,0.9);
}
.crt_time {
    flex: 0 0 auto; font-size: var(--fs-xs); color: #d6ffd6;
    letter-spacing: 0.05em; white-space: nowrap;
    text-shadow: 0 0 5px rgba(120,255,120,0.7);
}

.crt_tv_panel {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 14px; padding: 6px 10px;
}
.crt_brand {
    font-family: Consola, monospace;
    font-size: var(--fs-sm);
    color: #2b2318;
    letter-spacing: 0.2em;
    font-weight: 700;
}
.crt_knobs { display: flex; gap: 12px; }
.crt_knob {
    position: relative;
    width: 38px; height: 38px; border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #666, #1a1a1a 70%);
    border: 2px solid #2b2318;
    box-shadow: inset -2px -2px 3px rgba(0,0,0,0.6), 0 2px 4px rgba(0,0,0,0.4);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.12s, box-shadow 0.2s;
    user-select: none;
}
.crt_knob:hover { transform: scale(1.05); }
.crt_knob:active { transform: scale(0.95); }
.crt_knob_label {
    font-family: Consola, monospace;
    font-size: var(--fs-xs);
    color: #d6ffd6;
    text-shadow: 0 0 4px rgba(120,255,120,0.9);
    letter-spacing: 0.05em;
    pointer-events: none;
}
.crt_knob.selected {
    box-shadow: inset -2px -2px 3px rgba(0,0,0,0.6), 0 0 0 2px rgba(120,255,120,0.5), 0 2px 4px rgba(0,0,0,0.4);
}
.crt_knob.active {
    box-shadow: inset -2px -2px 3px rgba(0,0,0,0.6), 0 0 12px rgba(120,255,120,0.9), 0 0 0 2px rgba(120,255,120,0.8);
}
.crt_knob.active .crt_knob_label { text-shadow: 0 0 8px rgba(120,255,120,1), 0 0 2px #fff; }
.crt_speaker {
    width: 120px; height: 22px;
    background-image: radial-gradient(circle, #2b2318 1.2px, transparent 1.6px);
    background-size: 6px 6px;
    border-radius: 4px;
}

.crt_channel_bar {
    display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
    margin-top: 0.5rem;
}
.crt_channel_btn {
    font-family: Consola, monospace;
    background: #c0c0c0;
    color: #000;
    border: 2px solid;
    border-color: #ffffff #404040 #404040 #ffffff;
    padding: 0.45rem 0.9rem;
    cursor: pointer;
    font-size: var(--fs-sm);
    letter-spacing: 0.05em;
    box-shadow: 1px 1px 0 #000;
}
.crt_channel_btn:active,
.crt_channel_btn.active {
    border-color: #404040 #ffffff #ffffff #404040;
    background: #a8a8a8;
}
.crt_controls { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.crt_btn {
    font-family: Consola, monospace;
    background: #c0c0c0;
    color: #000;
    border: 2px solid;
    border-color: #ffffff #404040 #404040 #ffffff;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: var(--fs-sm);
    letter-spacing: 0.05em;
    box-shadow: 1px 1px 0 #000;
}
.crt_btn:active { border-color: #404040 #ffffff #ffffff #404040; }

.crt_screen.off .crt_video { opacity: 0; }
.crt_screen.off { background: #000; }
.crt_screen.off::after {
    content: ""; position: absolute; left: 0; right: 0; top: 50%;
    height: 2px; background: #fff; box-shadow: 0 0 10px #fff;
    animation: crt_off_line 0.4s ease-out forwards;
}
@keyframes crt_off_line {
    0% { transform: scaleY(40) scaleX(1); opacity: 1; }
    60% { transform: scaleY(1) scaleX(1); opacity: 1; }
    100% { transform: scaleY(1) scaleX(0); opacity: 0; }
}

@media (max-width: 600px) {
    #lp_broadcast { overflow-x: hidden; }
    .crt_label_tl, .crt_label_tr, .crt_label_bl, .crt_label_br { font-size: var(--fs-2xs); }
    .crt_controls { gap: 7px; padding: 6px 8px 8px; opacity: 1; }
    .crt_ctrl_title { display: none; }
    .crt_ctrl_btn { width: 26px; height: 26px; padding: 4px; }
    .crt_time { font-size: var(--fs-xs); }
    .crt_play_text { font-size: 0.85rem; letter-spacing: 0.14em; }
    .crt_play_hint { font-size: var(--fs-3xs); letter-spacing: 0.1em; }
    .crt_speaker { width: 50px; height: 14px; background-size: 4px 4px; }
    .crt_brand { display: none; }
    .crt_knobs { gap: 10px; }
    .crt_knob { width: 32px; height: 32px; }
    .crt_knob_label { display: none; }
    .crt_tv_panel { margin-top: 12px; padding: 4px 10px; justify-content: space-between; }
    .crt_tv_wrap { width: 100%; max-width: 100%; padding: 0; box-sizing: border-box; }
    .crt_tv { max-width: 100%; padding: 8px 8px 6px 8px; border-radius: 12px; }
    .crt_tv_bezel { padding: 4px; }
    .crt_credit { width: 99%; max-width: 99%; padding: 6px 10px; border-radius: 10px; box-sizing: border-box; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
    .crt_credit::before {
        content: "";
        position: static;
        flex-shrink: 0;
        width: 14px; height: 14px; border-radius: 50%;
        background: radial-gradient(circle at 35% 35%, #ff5a3c, #7a1a0a 70%);
        box-shadow: 0 0 8px rgba(255,90,60,0.9), inset -1px -1px 2px rgba(0,0,0,0.6);
        transform: none;
        animation: crt_rec 1.2s infinite;
    }
    .crt_credit_screen { height: 4rem; flex: 1 1 auto; min-width: 0; }
    .crt_credit_text { font-size: var(--fs-xl); letter-spacing: 0.1em; animation-duration: 32s; }
}

/* === Tokenomics page ===
   Layout, color, border, and spacing only.
   Typography is delivered by composing existing lp_* classes on the markup
   (.lp_tag / .lp_card_title / .lp_card_desc / .lp_stat_num / .lp_stat_label / .about_text / .lp_hero_sub / .main_h1 / .lp_section_title).
   Two intentional exceptions: .tk_alloc_pct (numeric chip) and .tk_info_btn (icon glyph). */

.tk_fee_table {
    display: flex;
    flex-direction: column;
    border: rgba(43,213,45,0.25) solid 0.06rem;
    border-radius: 0.2rem;
    overflow: hidden;
    margin-top: 2rem;
}
.tk_fee_row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr 2fr;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-top: rgba(43,213,45,0.15) solid 0.06rem;
    align-items: center;
}
.tk_fee_row.tk_fee_head {
    border-top: none;
    background: rgba(43,213,45,0.06);
}
.tk_fee_row.tk_fee_head > * { margin: 0; }
.tk_fee_fee { color: #2BD52D; }

.tk_alloc_pct {
    display: inline-block;
    min-width: 2.8rem;
    padding: 0.1rem 0.4rem;
    margin-right: 0.6rem;
    border: rgba(43,213,45,0.5) solid 0.06rem;
    border-radius: 0.15rem;
    color: #2BD52D;
    text-align: center;
    vertical-align: 0.1rem;
}

.tk_flywheel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.tk_flywheel_step {
    padding: 0.5rem 0.9rem;
    border: rgba(43,213,45,0.4) solid 0.06rem;
    border-radius: 999px;
    white-space: nowrap;
    margin-bottom: 0;
    color: rgba(43,213,45,0.45);
    background: rgba(43,213,45,0.02);
    animation: tk_flywheel_pulse 5s linear infinite;
    animation-delay: calc(var(--i) * 1s);
    transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.tk_flywheel_arrow {
    color: rgba(43,213,45,0.25);
    animation: tk_flywheel_arrow_pulse 5s linear infinite;
    animation-delay: calc(var(--i) * 1s + 0.5s);
}
@keyframes tk_flywheel_pulse {
    0%, 100% { color: rgba(43,213,45,0.45); border-color: rgba(43,213,45,0.4); background: rgba(43,213,45,0.02); box-shadow: none; }
    20% { color: #2BD52D; border-color: #2BD52D; background: rgba(43,213,45,0.12); box-shadow: 0 0 0.6rem rgba(43,213,45,0.35); }
    40% { color: rgba(43,213,45,0.6); border-color: rgba(43,213,45,0.5); background: rgba(43,213,45,0.04); box-shadow: none; }
}
@keyframes tk_flywheel_arrow_pulse {
    0%, 100% { color: rgba(43,213,45,0.25); }
    20% { color: #2BD52D; text-shadow: 0 0 0.4rem rgba(43,213,45,0.5); }
    40% { color: rgba(43,213,45,0.4); text-shadow: none; }
}

.tk_info_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.95rem;
    height: 0.95rem;
    margin-left: 0.4rem;
    border: rgba(43,213,45,0.4) solid 0.05rem;
    border-radius: 50%;
    color: #2BD52D;
    opacity: 0.35;
    cursor: help;
    position: relative;
    vertical-align: 0.15rem;
    transition: opacity 0.2s;
    font-family: "Kode Mono", monospace;
    font-size: var(--fs-2xs);
    line-height: 1;
}
.tk_info_btn:hover,
.tk_info_btn:focus,
.tk_info_btn:focus-within {
    opacity: 1;
    outline: none;
}
.tk_info_tooltip {
    display: none;
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    width: 17rem;
    max-width: 80vw;
    padding: 0.7rem 0.85rem;
    background: #000;
    border: rgba(43,213,45,0.5) solid 0.06rem;
    border-radius: 0.2rem;
    text-align: left;
    z-index: 50;
    box-shadow: 0 0 0.6rem rgba(43,213,45,0.25);
}
.tk_info_tooltip span {
    display: block;
    margin-bottom: 0.4rem;
    color: #cfcfcf;
}
.tk_info_tooltip span:last-child { margin-bottom: 0; }
.tk_info_btn:hover .tk_info_tooltip,
.tk_info_btn:focus .tk_info_tooltip,
.tk_info_btn:focus-within .tk_info_tooltip {
    display: block;
}

@media (max-width: 720px) {
    .tk_fee_row { grid-template-columns: 1fr 1fr; }
    .tk_fee_row > :nth-child(4) { grid-column: 1 / span 2; }
    .tk_flywheel_step { padding: 0.4rem 0.7rem; }
}

/* === Tokenomics hero terminal === */
.tk_terminal {
    margin-top: 2.5rem;
    border: rgba(43,213,45,0.4) solid 0.06rem;
    border-radius: 0.4rem;
    background: #000;
    box-shadow: 0 0 1.4rem rgba(43,213,45,0.18), inset 0 0 1.6rem rgba(43,213,45,0.05);
    overflow: hidden;
}
.tk_terminal_bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.8rem;
    background: rgba(43,213,45,0.06);
    border-bottom: rgba(43,213,45,0.25) solid 0.06rem;
    font-family: "Kode Mono", monospace;
    font-size: var(--fs-2xs);
    color: rgba(43,213,45,0.7);
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}
.tk_terminal_dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    border: rgba(255,255,255,0.15) solid 0.05rem;
}
.tk_terminal_dot_red    { background: #ff5f56; }
.tk_terminal_dot_amber  { background: #ffbd2e; }
.tk_terminal_dot_green  { background: #27c93f; }
.tk_terminal_title { margin-left: 0.6rem; flex: 1; color: rgba(255,255,255,0.55); }
.tk_terminal_status {
    color: #ff8080;
    text-shadow: 0 0 0.4rem rgba(255,80,80,0.6);
    animation: crt_rec 1.2s infinite;
}
.tk_terminal_screen {
    position: relative;
    padding: 1.1rem 1.2rem;
    min-height: 12rem;
    background: radial-gradient(ellipse at center, rgba(43,213,45,0.04) 0%, rgba(0,0,0,0) 70%);
    overflow: hidden;
}
.tk_terminal_screen .crt_scanlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
}
.tk_terminal_lines {
    position: relative;
    font-family: "Kode Mono", monospace;
    font-size: var(--fs-sm);
    line-height: 1.7;
    color: rgba(43,213,45,0.85);
    text-shadow: 0 0 0.3rem rgba(43,213,45,0.35);
    white-space: pre-wrap;
    word-break: break-word;
}
.tk_term_cmd { color: #2BD52D; }
.tk_term_row { color: rgba(255,255,255,0.75); }
.tk_term_row.tk_term_active {
    color: #2BD52D;
    background: rgba(43,213,45,0.06);
    padding-left: 0.2rem;
    margin-left: -0.2rem;
}
.tk_term_dim { color: rgba(43,213,45,0.55); font-style: italic; }
.tk_term_caret {
    display: inline-block;
    color: #2BD52D;
    animation: blink 0.9s step-end infinite;
}
@media (max-width: 720px) {
    .tk_terminal_lines { font-size: 0.7rem; }
    .tk_terminal_screen { padding: 0.9rem 0.9rem; min-height: 14rem; }
    .tk_terminal_title { display: none; }
}

/* === Tokenomics allocation bar === */
.tk_alloc_bar_wrap {
    margin-top: 2rem;
}
.tk_alloc_bar {
    display: flex;
    width: 100%;
    height: 4.2rem;
    border: rgba(43,213,45,0.4) solid 0.06rem;
    border-radius: 0.25rem;
    overflow: hidden;
    background: #000;
    box-shadow: inset 0 0 0.8rem rgba(43,213,45,0.08);
}
.tk_alloc_seg {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.15rem;
    padding: 0 0.9rem;
    border: none;
    border-right: rgba(0,0,0,0.5) solid 0.06rem;
    color: #fff;
    background: rgba(43,213,45,0.18);
    cursor: pointer;
    transition: background 0.25s, box-shadow 0.25s, color 0.25s;
    font-family: "Kode Mono", monospace;
    text-align: left;
    overflow: hidden;
    min-width: 0;
}
.tk_alloc_seg:last-child { border-right: none; }
.tk_alloc_seg_buyback   { background: rgba(43,213,45,0.55); color: #000; }
.tk_alloc_seg_treasury  { background: rgba(43,213,45,0.32); }
.tk_alloc_seg_staking   { background: rgba(43,213,45,0.18); }
.tk_alloc_seg_lp        { background: rgba(43,213,45,0.08); }
.tk_alloc_seg:hover, .tk_alloc_seg.tk_alloc_active {
    box-shadow: inset 0 0 0 0.1rem #2BD52D, 0 0 1rem rgba(43,213,45,0.4);
    z-index: 1;
}
.tk_alloc_seg_pct {
    font-family: IBMPlexMonoMedium, monospace;
    font-size: var(--fs-base);
    line-height: 1;
}
.tk_alloc_seg_label {
    font-size: var(--fs-2xs);
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    opacity: 0.85;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.tk_alloc_hint {
    text-align: right;
    margin-top: 0.5rem;
    opacity: 0.6;
}

.tk_alloc_cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 1.2rem;
}
.tk_alloc_card {
    border: rgba(43,213,45,0.15) solid 0.06rem;
    border-left: rgba(43,213,45,0.4) solid 0.2rem;
    border-radius: 0.2rem;
    padding: 1rem 1.2rem;
    opacity: 0.45;
    transition: opacity 0.25s, border-color 0.25s, background 0.25s;
}
.tk_alloc_card:hover { opacity: 0.85; }
.tk_alloc_card.tk_alloc_card_active {
    opacity: 1;
    border-left-color: #2BD52D;
    background: rgba(43,213,45,0.04);
}
/* Info icon next to a section title - minimal outlined badge */
.tk_info_btn_title {
    width: 1.35rem;
    height: 1.35rem;
    margin-left: 0.7rem;
    font-family: "Kode Mono", monospace;
    font-size: var(--fs-xs);
    font-style: italic;
    font-weight: 400;
    vertical-align: 0.65rem;
    background: transparent;
    border: rgba(43,213,45,0.55) solid 0.06rem;
    color: rgba(43,213,45,0.85);
    opacity: 1;
    box-shadow: inset 0 0 0 0 rgba(43,213,45,0);
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}
.tk_info_btn_title::before {
    content: "";
    position: absolute;
    inset: -0.3rem;
    border-radius: 50%;
    border: rgba(43,213,45,0.18) solid 0.04rem;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.tk_info_btn_title:hover,
.tk_info_btn_title:focus,
.tk_info_btn_title:focus-within {
    background: #2BD52D;
    color: #000;
    border-color: #2BD52D;
    transform: translateY(-0.05rem);
    box-shadow: 0 0.2rem 0.6rem rgba(43,213,45,0.25);
}
.tk_info_btn_title:hover::before,
.tk_info_btn_title:focus::before,
.tk_info_btn_title:focus-within::before {
    opacity: 1;
    transform: scale(1.05);
}
.tk_info_tooltip_wide {
    width: 24rem;
    max-width: 90vw;
    padding: 1rem 1.1rem;
    left: 0;
    transform: none;
}
.tk_info_tooltip_wide .tk_info_label {
    display: block;
    font-family: "Kode Mono", monospace;
    font-size: var(--fs-2xs);
    color: rgba(43,213,45,0.7);
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}
.tk_info_tooltip_wide span:not(.tk_info_label) {
    display: block;
    margin-bottom: 0.5rem;
    color: #cfcfcf;
    font-family: Montserrat, serif;
    font-size: var(--fs-xs);
    line-height: 1.6;
}
.tk_info_tooltip_wide span:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
    .tk_alloc_bar { height: 3.4rem; }
    .tk_alloc_seg { padding: 0 0.5rem; }
    .tk_alloc_seg_pct { font-size: 0.9rem; }
    .tk_alloc_seg_label { font-size: 0.55rem; letter-spacing: 0.05rem; }
    .tk_alloc_seg_lp .tk_alloc_seg_label { display: none; }
}
