@font-face {
    font-family: "a";
    /*中文字体*/
    src: url();
    font-display: swap;
}


@font-face {
    font-family: "b";

    src: url(../fonts/Ubuntu-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: "title";
    /*英文字体*/
    src: url(../fonts/Pacifico-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: "cover-hand";
    src: url("../fonts/Bradley-Hand-Bold.ttf");
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: text;
    transition: background-color 0.2s ease;
}

a:hover,
a:link,
a:visited,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    border: none;
    color: inherit;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/* 设置滚动条样式 */
::-webkit-scrollbar {
    width: 0px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main_text_color, #000000);
    border-radius: 8px;
    height: 20%;
}

::-webkit-scrollbar-track {
    background-color: var(--main_bg_color, linear-gradient(50deg, #a2d0ff, #ffffff));
}



html[data-theme="Dark"] {
    
    --main_text_color: #fff;
    --gradient:linear-gradient(120deg, rgb(133, 62, 255), #f76cc6 30%, rgb(255, 255, 255) 60%);
    --purple_text_color: #747bff;
    --text_bg_color: rgb(26, 4, 48);
    --item_bg_color: rgb(19, 20, 24);
    --item_hover_color: rgb(19, 23, 27);
    --item_left_title_color: rgb(255, 255, 255);
    --item_left_text_color: rgb(142, 142, 142);
    --footer_text_color: #646464;
    --left_tag_item: linear-gradient(50deg, #1f2327, #000000);
    --card_filter: 0px;
    --back_filter: 0px;
    --back_filter_color: #000000;
    --fill:#ffffff;
}






body {
    height: 100%;
    min-height: 100vh;
    width: 100%;
    position: relative;
    font-family: "b",  "a", sans-serif;
    background: var(--main_bg_color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: color 0.1s ease;
    color: var(--main_text_color);

}

@media (prefers-reduced-motion: no-preference) {
    body[data-reveal-enabled="true"]:not(.admin-page) [data-reveal] {
        opacity: 0;
        transform: translate3d(var(--reveal-offset-x, 0px), var(--reveal-offset-y, -52px), 0) scale(0.97);
        filter: blur(var(--reveal-blur, 14px));
        transition:
            opacity var(--reveal-duration, 1080ms) cubic-bezier(0.19, 1, 0.22, 1),
            transform var(--reveal-duration, 1080ms) cubic-bezier(0.19, 1, 0.22, 1),
            filter var(--reveal-duration, 1080ms) cubic-bezier(0.19, 1, 0.22, 1);
        transition-delay: var(--reveal-delay, 0ms);
        will-change: transform, opacity, filter;
    }

    body[data-reveal-enabled="true"]:not(.admin-page).page-ready [data-reveal] {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }

    body[data-reveal-enabled="true"]:not(.admin-page) .cover-card[data-reveal] {
        filter: none;
        transition:
            opacity var(--reveal-duration, 1080ms) cubic-bezier(0.19, 1, 0.22, 1),
            transform var(--reveal-duration, 1080ms) cubic-bezier(0.19, 1, 0.22, 1);
    }
}

.layout-frame {
    position: relative;
    left: var(--layout-x, 0px);
    top: var(--layout-y, 0px);
}

#zyyo-loading {
    background: radial-gradient(white, #d8eaff);
    background-size: 100%;
    background-position: center;

    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999999;
    margin-top: 0px;
    top: 0px;
    pointer-events: none;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}



#zyyo-loading-center {
    height: 150px;
    width: 150px;
    position: relative;
    border-radius: 50%;
    background: #472eff;

    animation: zoom 1s linear infinite;
}

@keyframes zoom {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}




.zyyo-filter {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--back_filter_color);
    backdrop-filter:  blur(var(--back_filter));
    -webkit-backdrop-filter: blur(var(--back_filter));
    z-index: -99999999;
   
}

.zyyo-main {
    width: 100%;
    margin: 0 auto;
    transition: transform 0.5s ease;
    max-width: 1150px;
    position: relative;
    display: flex;
    flex-direction: row;
}


.zyyo-left {
    overflow-y: scroll;
    width: 230px;
    height: 100vh;
    display: flex;
    padding: 0 15px;
    position: sticky;
    top: 0;
    left: 0;
    align-items: center;
    flex-direction: column;
}


.zyyo-left::-webkit-scrollbar {
    display: none;
}


.logo {
    flex-shrink: 0;
    width: 90%;
    position: relative;
    aspect-ratio: 1/1;
    margin-top: 50px;
    background-size: cover;
    border-radius: 50%;
}



.left-div {
    flex-shrink: 0;
    width: 100%;
    border-radius: 13px;
    margin-top: 15px;
    padding: 20px;
    backdrop-filter: blur(var(--card_filter));
    -webkit-backdrop-filter: blur(var(--card_filter));
    background: var(--item_bg_color);
}

.left-des {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-des-item {
    display: flex;
    align-items: center;
    line-height: 20px;
    font-size: 15px;
    margin-bottom: 5px;
    overflow: hidden;
}

.left-des-item i,.left-des-item svg{
    width: 16px;
    height: 16px;
    fill:var(--fill);
   font-size: 18px;
    margin-right: 10px;
}
.left-tag {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 14px;
}

.left-tag-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 28px;
    margin: 0px 5px 5px 0;
    padding: 10px;
    font-size: 13px;
    border-radius: 10px;
    background: var(--left_tag_item);
}

#line {
    width: 100%;
    height: 200px;
    font-size: 13px;
    padding-left: 8px;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

#line li {
    list-style: none;
    position: relative;
    padding: 15px 0px 0px 15px;
    border-left: 2px solid #d5d5d5;
    border-radius: 0;
    scroll-snap-align: end;
    color: var(--main_text_color);
}



.focus {
    width: 8px;
    height: 8px;
    border-radius: 22px;
    background-color: rgb(255 255 255);
    border: 2px solid #fff;
    position: absolute;
    left: -5px;
    top: 50%;
}

#line li:first-child .focus:first-child {
    background-color: #aaffcd;
    animation: focus 1.8s ease infinite;
}

#line::-webkit-scrollbar {
    display: none;
}



.zyyo-right {
    width: calc(100% - 230px);
    display: flex;
    padding: 20px;
  position: relative;
    padding-bottom: 50px;
    flex-direction: column;
}
.welcome {

    font-size: 65px;
    font-weight: 800;
    margin: 20px 0;
}

.index-logo {
    flex-shrink: 0;
    width: 40%;
    margin-top: 30px;
    position: relative;
    max-width: 200px;
    aspect-ratio: 1/1;
    background-size: cover;
    border-radius: 50%;
    border: 0.5px solid #ffffff;
}
.description {

    font-size: 20px;
    margin-top: 7px;
}



.gradientText {

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200%;
    background-position: 0%;
    font-family: "title";
    animation: backgroundSizeAnimation 10s ease-in-out infinite;
      background-image:  var(--gradient);
}

@keyframes backgroundSizeAnimation {
    0% {
        background-position: 100%;
    }

    25% {
        background-position: 50%;
    }

    50% {
        background-position: 0%;
    }

    75% {
        background-position: 50%;
    }

    100% {
        background-position: 100%;
    }

}

.purpleText {
    color: var(--purple_text_color);
    font-weight: 800;
}

.textBackground {
    font-weight: 800;
    background: var(--text_bg_color);
    border-radius: 5px;
    font-size: 17px;
    margin: 0 3px;
    padding: 2px 4px;
}

.iconContainer {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    overflow-x: scroll;
    margin-top: 20px;

}

.iconContainer::-webkit-scrollbar {
    display: none;
}



.iconItem {
    width: 49px;
    height: 43px;
    box-sizing: border-box;
    border-radius: 7px;
    display: flex;
    margin-left: 10px;

    backdrop-filter: blur(var(--card_filter));
    -webkit-backdrop-filter: blur(var(--card_filter));
    background: var(--item_bg_color);
    align-items: center;
    justify-content: center;
    transition: width 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}
.iconItem i,.iconItem svg{
    width: 22px;
    height: 22px;
    fill:var(--fill);
    font-size: 22px;
     margin-right: 3px;
}
.switch {
    width: 55px;
    height: 43px;
    box-sizing: border-box;
    border-radius: 7px;
    display: flex;
    margin-left: 10px;
    backdrop-filter: blur(var(--card_filter));-webkit-backdrop-filter: blur(var(--card_filter));
    background: var(--item_bg_color);

    align-items: center;
    justify-content: center;
    transition: width 1s ease, opacity 1s ease, transform 1s ease;
    flex-shrink: 0;
}

.iconTip {
    white-space: nowrap;
    display: none;
}





.iconItem:hover {
    width: 95px;
    transform: translateY(-2px);
    background: var(--item_hover_color);
}


.iconItem:hover .iconTip {
    display: block;
}

.switch:hover {
    width: 55px;
    /* transform: translateY(-2px); */
    background: var(--item_hover_color);
}

.tanChiShe {
    width: 85%;
}

.tanChiShe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 800;
    margin: 20px 0;
    transition: transform 0.4s ease;
}
.title i ,.title svg{
    margin-right: 8px;
    height: 26px;
    width: 26px;
   fill:var(--fill);
}
.title:hover {
    transform: translateY(-5px);
}

.projectList {
    display: flex;
    flex-wrap: wrap;
}

.projectItem {
    margin: 7px;
    display: flex;
    background-color: var(--item_bg_color);
    border-radius: 8px;
    padding: 15px;
    height: 95px;
    width: calc(25% - 15px);
    backdrop-filter: blur(var(--card_filter));-webkit-backdrop-filter: blur(var(--card_filter));
    -webkit-backdrop-filter: blur(var(--card_filter));-webkit-backdrop-filter: blur(var(--card_filter));
    transition: opacity 0.3s ease, background-color 0.3s ease, border 0.3s ease, transform 0.2s ease;


}

.projectItem {
    display: flex;
    background-color: var(--item_bg_color);
    border-radius: 8px;
    padding: 15px;
    height: 100px;
    width: calc(25% - 15px);
    backdrop-filter: blur(var(--card_filter));-webkit-backdrop-filter: blur(var(--card_filter));
    transition: opacity 0.5s ease, background-color 0.2s ease, border 0.2s ease, transform 0.3s ease;

}


.projectItem:hover {
    box-shadow: 0 8px 16px -4px #2c2d300c;
    transform: translateY(-2px);

}

.projectItem.pressed {
    transform: scale(0.9);
    /* 缩小到原来的0.9倍 */
    background-color: var(--item_hover_color);
}

.projectItem:hover .projectItemLeft {
    width: 100%;
}

.projectItem:hover .projectItemRight {
    width: 0%;
}

.projectItem:hover .projectItemRight img {
    transform: rotate(40deg);
}

.projectItem:hover h1 {
    font-size: 18px;
}

.projectItemLeft p {
    font-size: 12px;
    margin-top: 15px;
    color: var(--item_left_text_color);
}


.projectItemLeft h1 {
    font-weight: normal;
    font-size: 16px;
    margin: 0px;

    transition: font-size 0.4s ease;
    color: var(--item_left_title_color);
}

.projectItemLeft {
    transition: width 0.4s ease;
    height: 100%;
    width: 80%;
}


.projectItemRight {
    overflow: hidden;
    transition: width 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 100%;
}

.projectItemRight img {

    height: 39px;
    width: 39px;

}

footer {
    position: absolute;
    padding: 10px;
    text-align: center;
    width: 100%;
    backdrop-filter: blur(var(--card_filter));
    -webkit-backdrop-filter: blur(var(--card_filter));
    background: var(--item_bg_color);
    color: var(--footer_text_color);
    font-size: 13px;
    bottom: 0;
}

@media (min-width: 960px) {

    .index-logo {
        display: none;
    }
}

@media (max-width: 1150px) {
    .a {
        width: calc(50% - 20px);
    }
.projectItem{
    margin: 10px;
}
    .b {

        width: calc(50% - 20px);


    }
}

@media (max-width: 960px) {
    body {
        background-attachment: scroll;
        overflow-x: hidden;
    }

    .layout-frame {
        left: 0 !important;
        top: 0 !important;
        width: auto !important;
        height: auto !important;
    }

    .zyyo-main {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .zyyo-left {
        display: none;
    }

    .a .projectItemRight {
        display: none;

    }

    .a .projectItemRight img {
        display: none;

    }

    .a .projectItemLeft {
        width: 100%;
    }

    .a {
        width: calc(50% - 18px);
        margin: 9px;
    }

    .b {
        height: 110px;
        margin: 8px 15px;
        width: calc(100% - 30px);
    }



    .zyyo-right {
        width: 100%;
        padding: 18px;
        padding-bottom: 44px;
        overflow: hidden;
    }

    header {
        width: 100% !important;
        margin: 0;
    }

    .index-logo {
        width: min(58vw, 220px);
        max-width: 220px;
        margin: 20px auto 18px;
    }

    .tanChiShe {
        width: 100%;
    }

    .description {
        font-size: 16px;
        line-height: 1.6;
        overflow-wrap: anywhere;
    }

    .welcome {
        font-size: 42px;
        line-height: 1.1;
        margin: 14px 0;
        max-width: 100%;
        overflow-wrap: anywhere;

    }
    .iconContainer {
        height: auto;
        flex-wrap: wrap;
        gap: 10px;
        overflow: visible;
        margin-top: 18px;

}
.iconItem,
.switch {
    margin-left: 0;
}

.projectList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.projectItem{
    width: auto !important;
    height: auto !important;
    min-height: 112px;
    margin: 0 !important;
    padding: 14px;
}
    .projectItemLeft p {
        font-size: 13px;
    }

    .projectItemLeft h1 {

        font-size: 18px;
    }

    .projectItem:hover h1 {

        font-size: 20px;

    }

    footer {
        position: relative;
        bottom: auto;
        margin-top: 20px;
    }

}

@media (max-width: 640px) {
    .zyyo-right {
        padding: 16px;
    }

    .welcome {
        font-size: 34px;
    }

    .a {
        width: auto !important;
    }

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

    .projectItem {
        min-height: 112px;
    }

    .title {
        font-size: 22px;
    }
}

body:not(.admin-page) {
    overflow-x: hidden;
}

body:not(.admin-page) .layout-frame {
    left: 0 !important;
    top: 0 !important;
}

body:not(.admin-page)::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    background:
        linear-gradient(115deg, rgb(6 9 16 / 72%) 0%, rgb(31 37 46 / 44%) 42%, rgb(7 12 18 / 68%) 100%),
        repeating-linear-gradient(90deg, rgb(255 255 255 / 0.035) 0 1px, transparent 1px 92px),
        repeating-linear-gradient(0deg, rgb(255 255 255 / 0.026) 0 1px, transparent 1px 92px);
}

body:not(.admin-page)::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        linear-gradient(180deg, transparent 0%, rgb(5 8 13 / 58%) 74%, rgb(5 8 13 / 82%) 100%),
        linear-gradient(135deg, rgb(242 213 126 / 13%) 0%, transparent 36%, rgb(73 198 229 / 13%) 72%, transparent 100%);
}

body:not(.admin-page) .zyyo-main {
    max-width: 1180px;
    gap: 22px;
    padding: 34px 18px 80px;
    display: grid;
    grid-template-columns: 1fr;
}

body:not(.admin-page) .zyyo-left {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0;
    position: relative;
    top: auto;
    left: auto;
    display: grid;
    grid-template-columns: 128px minmax(190px, 0.7fr) 1fr;
    gap: 16px;
    align-items: stretch;
    overflow: visible;
}

body:not(.admin-page) .logo,
body:not(.admin-page) .index-logo {
    width: 128px !important;
    max-width: none;
    margin: 0;
    border: 1px solid rgb(255 255 255 / 55%);
    box-shadow: 0 24px 60px rgb(0 0 0 / 28%), inset 0 0 0 8px rgb(255 255 255 / 7%);
}

body:not(.admin-page) .left-div,
body:not(.admin-page) header,
body:not(.admin-page) .projectItem,
body:not(.admin-page) footer {
    border: 1px solid rgb(255 255 255 / 14%);
    box-shadow: 0 18px 48px rgb(0 0 0 / 18%);
}

body:not(.admin-page) .left-div {
    width: auto !important;
    margin-top: 0;
    padding: 18px;
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgb(255 255 255 / 12%), rgb(255 255 255 / 5%)),
        var(--item_bg_color);
}

body:not(.admin-page) .left-des-item {
    font-size: 14px;
    letter-spacing: 0;
    color: rgb(255 255 255 / 86%);
}

body:not(.admin-page) .left-tag {
    align-content: center;
    gap: 8px;
}

body:not(.admin-page) .left-tag-item {
    width: auto !important;
    min-width: 0;
    height: 30px;
    margin: 0;
    border-radius: 999px;
    border: 1px solid rgb(255 255 255 / 12%);
    background: rgb(255 255 255 / 9%);
    color: rgb(255 255 255 / 88%);
}

body:not(.admin-page) .zyyo-right {
    width: 100%;
    padding: 0;
    gap: 8px;
}

body:not(.admin-page) header {
    width: auto !important;
    height: auto !important;
    min-height: 330px;
    padding: 36px;
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgb(255 255 255 / 16%), rgb(255 255 255 / 5%)),
        var(--item_bg_color);
    backdrop-filter: blur(var(--card_filter)) saturate(140%);
    -webkit-backdrop-filter: blur(var(--card_filter)) saturate(140%);
}

body:not(.admin-page) .hero-eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 999px;
    background: rgb(255 255 255 / 9%);
    color: rgb(255 255 255 / 76%);
    font-size: 12px;
    line-height: 1;
}

body:not(.admin-page) .welcome {
    max-width: 760px;
    margin: 22px 0 14px;
    font-size: clamp(54px, 8vw, 92px);
    line-height: 0.98;
}

body:not(.admin-page) .gradientText {
    filter: drop-shadow(0 14px 30px rgb(0 0 0 / 22%));
}

body:not(.admin-page) .description {
    max-width: 620px;
    color: rgb(255 255 255 / 82%);
    font-size: 18px;
    line-height: 1.7;
}

body:not(.admin-page) .iconContainer {
    margin-top: 28px;
    gap: 12px;
    overflow: visible;
}

body:not(.admin-page) .iconItem,
body:not(.admin-page) .switch {
    width: 52px !important;
    height: 48px;
    margin-left: 0;
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 16px;
    background: rgb(255 255 255 / 10%);
}

body:not(.admin-page) .iconItem:hover {
    width: 112px !important;
    transform: translateY(-4px);
    background: rgb(255 255 255 / 16%);
}

body:not(.admin-page) content {
    display: block;
    padding-top: 8px;
}

body:not(.admin-page) .home-section {
    margin-top: 24px;
}

body:not(.admin-page) .title {
    width: auto !important;
    height: auto !important;
    margin: 0 0 14px;
    color: rgb(255 255 255 / 92%);
    font-size: 22px;
}

body:not(.admin-page) .title::after {
    content: "";
    flex: 1;
    height: 1px;
    margin-left: 16px;
    background: linear-gradient(90deg, rgb(255 255 255 / 25%), transparent);
}

body:not(.admin-page) .home-section + .home-section {
    margin-top: 38px;
}

body:not(.admin-page) .projectList {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

body:not(.admin-page) .projectItem {
    position: relative;
    width: auto !important;
    min-height: 148px;
    height: auto !important;
    margin: 0;
    padding: 18px;
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgb(255 255 255 / 13%), rgb(255 255 255 / 4%)),
        var(--item_bg_color);
    backdrop-filter: blur(var(--card_filter)) saturate(150%);
    -webkit-backdrop-filter: blur(var(--card_filter)) saturate(150%);
    overflow: hidden;
}

body:not(.admin-page) .projectItem.a:first-child {
    grid-column: span 2;
}

body:not(.admin-page) .projectItem.a {
    grid-column: span 2;
}

body:not(.admin-page) .projectItem.b {
    grid-column: span 2;
    min-height: 154px;
}

body:not(.admin-page) .projectItem::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgb(242 213 126 / 14%), transparent 42%, rgb(73 198 229 / 12%));
    opacity: 0;
    transition: opacity 0.35s ease;
}

body:not(.admin-page) .projectItem:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgb(0 0 0 / 28%);
}

body:not(.admin-page) .projectItem:hover::before {
    opacity: 1;
}

body:not(.admin-page) .projectItemLeft {
    position: relative;
    z-index: 1;
    width: calc(100% - 54px);
}

body:not(.admin-page) .projectItemLeft h1 {
    margin-top: 14px;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

body:not(.admin-page) .projectItem:hover h1 {
    font-size: 20px;
}

body:not(.admin-page) .projectItemLeft p {
    margin-top: 12px;
    color: rgb(255 255 255 / 72%);
    font-size: 13px;
    line-height: 1.65;
}

body:not(.admin-page) .projectIndex {
    display: inline-flex;
    color: rgb(255 255 255 / 48%);
    font-size: 12px;
    font-weight: 700;
}

body:not(.admin-page) .projectArrow {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 50%;
    background: rgb(255 255 255 / 10%);
    color: rgb(255 255 255 / 78%);
}

body:not(.admin-page) .projectItemRight {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    opacity: 0.78;
}

body:not(.admin-page) .projectItem:hover .projectItemLeft,
body:not(.admin-page) .projectItem:hover .projectItemRight {
    width: calc(100% - 54px);
}

body:not(.admin-page) .projectItem:hover .projectItemRight {
    width: 54px;
}

body:not(.admin-page) .projectItemRight img {
    width: 48px;
    height: 48px;
    transition: transform 0.35s ease;
}

body:not(.admin-page) .projectItem:hover .projectItemRight img {
    transform: rotate(8deg) scale(1.08);
}

body:not(.admin-page) footer {
    position: relative;
    width: auto !important;
    height: auto !important;
    max-width: 1220px;
    margin: 0 auto 22px;
    border-radius: 18px;
    background: rgb(14 18 25 / 52%);
}

@media (max-width: 1150px) {
    body:not(.admin-page) .projectList {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body:not(.admin-page) .projectItem.a,
    body:not(.admin-page) .projectItem.a:first-child,
    body:not(.admin-page) .projectItem.b {
        grid-column: span 1;
    }
}

@media (max-width: 960px) {
    body:not(.admin-page) .zyyo-main {
        padding: 14px;
    }

    body:not(.admin-page) .zyyo-left {
        grid-template-columns: 104px 1fr;
    }

    body:not(.admin-page) .left-tag {
        grid-column: 1 / -1;
    }

    body:not(.admin-page) .zyyo-right {
        width: 100%;
    }

    body:not(.admin-page) header {
        padding: 24px;
        border-radius: 24px;
    }

    body:not(.admin-page) .welcome {
        font-size: clamp(40px, 13vw, 64px);
    }

    body:not(.admin-page) .projectList {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body:not(.admin-page) .projectItem.a,
    body:not(.admin-page) .projectItem.a:first-child,
    body:not(.admin-page) .projectItem.b {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    body:not(.admin-page) .zyyo-left {
        grid-template-columns: 1fr;
    }

    body:not(.admin-page) .logo {
        justify-self: center;
        width: min(42vw, 150px) !important;
    }

    body:not(.admin-page) .projectList {
        grid-template-columns: 1fr;
    }

body:not(.admin-page) .projectItem,
    body:not(.admin-page) .projectItem.b,
    body:not(.admin-page) .projectItem.a:first-child {
        grid-column: auto;
        min-height: 142px;
    }
}

body:not(.admin-page) {
    --main_text_color: #18202c;
    --gradient: linear-gradient(110deg, #ef6f61 0%, #bf8198 36%, #4fbad2 72%, #35b7b5 100%);
    --item_bg_color: rgb(255 255 255 / 72%);
    --item_hover_color: rgb(255 255 255 / 92%);
    --item_left_title_color: #18202c;
    --item_left_text_color: #526071;
    --footer_text_color: #697586;
    --left_tag_item: rgb(255 255 255 / 70%);
    --card_filter: 22px;
    --back_filter: 0px;
    --back_filter_color: transparent;
    --fill: #2b3442;
    background: #f4f6f8;
    color: var(--main_text_color);
}

body:not(.admin-page)::before {
    background:
        linear-gradient(110deg, rgb(255 255 255 / 42%), transparent 46%, rgb(255 255 255 / 34%)),
        repeating-linear-gradient(90deg, rgb(23 32 45 / 0.026) 0 1px, transparent 1px 110px);
}

body:not(.admin-page)::after {
    background:
        linear-gradient(180deg, transparent 0%, rgb(244 246 248 / 28%) 76%, rgb(244 246 248 / 58%) 100%);
}

body:not(.admin-page) .zyyo-filter {
    display: none;
}

body:not(.admin-page) .cover-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 4vw, 56px);
}

body:not(.admin-page) .cover-card {
    width: min(1120px, 100%);
    min-height: min(560px, calc(100vh - 90px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 6vw, 70px);
    border: 1px solid rgb(22 31 45 / 10%);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgb(255 255 255 / 84%), rgb(255 255 255 / 58%)),
        rgb(255 255 255 / 72%);
    box-shadow: 0 34px 90px rgb(61 72 88 / 16%);
    backdrop-filter: blur(24px) saturate(125%);
    -webkit-backdrop-filter: blur(24px) saturate(125%);
}

body:not(.admin-page) .cover-kicker,
body:not(.admin-page) .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 9px 13px;
    border: 0;
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgb(255 255 255 / 86%), rgb(255 255 255 / 54%)),
        rgb(255 255 255 / 60%);
    box-shadow:
        inset 0 0 0 1px rgb(255 255 255 / 80%),
        0 10px 28px rgb(53 74 96 / 10%);
    color: #506073;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1;
}

body:not(.admin-page) .cover-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef6f61, #35b7b5);
    box-shadow: 0 0 0 4px rgb(53 183 181 / 12%);
}

body:not(.admin-page) .cover-kicker-line {
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, rgb(80 96 115 / 18%), rgb(80 96 115 / 42%), rgb(80 96 115 / 18%));
}

body:not(.admin-page) .cover-card h1 {
    width: min(100%, 980px);
    max-width: 980px;
    margin: 26px 0 22px;
    line-height: 1;
}

body:not(.admin-page) .cover-wordmark {
    display: block;
    width: min(100%, 1060px);
    min-height: 0;
}

body:not(.admin-page) .cover-wordmark-reveal {
    display: block;
    width: 100%;
    overflow: visible;
}

body:not(.admin-page) .cover-signature {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1120 / 260;
    filter: none;
}

body:not(.admin-page) .cover-signature-svg {
    aspect-ratio: 1180 / 240;
    overflow: visible;
    transform: translateZ(0);
}

body:not(.admin-page) .cover-signature-ink {
    filter: none;
    --signature-start-delay: 760ms;
}

body:not(.admin-page) .cover-signature-ink path {
    fill: none;
    stroke: #111b24;
    stroke-width: 13;
    stroke-opacity: .96;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 100 104;
    stroke-dashoffset: 104;
    opacity: 0;
    will-change: stroke-dashoffset, opacity;
    animation: signature-write var(--duration) cubic-bezier(.28, .02, .22, 1) calc(var(--signature-start-delay) + var(--delay)) forwards;
}

body:not(.admin-page) .cover-signature-ink .h-left-stroke {
    clip-path: url("#h-left-write-clip");
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    opacity: 1;
    animation: none;
}

body:not(.admin-page) .h-left-write-clip-rect {
    transform: none;
}

body:not(.admin-page) .cover-signature-ink .comma-stroke {
    stroke-width: 14;
    animation-timing-function: cubic-bezier(.34, 0, .14, 1);
}

@keyframes signature-write {
    0% {
        opacity: 1;
        stroke-dashoffset: 104;
    }

    8% {
        opacity: .92;
    }

    24%,
    100% {
        opacity: 1;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    body:not(.admin-page) .cover-signature-ink path {
        animation: none;
        opacity: 1;
        stroke-dashoffset: 0;
    }

}



body:not(.admin-page) .cover-card p {
    max-width: 680px;
    margin: 0 0 10px;
    color: #344154;
    font-size: clamp(18px, 2.3vw, 27px);
    line-height: 1.55;
    font-weight: 700;
}

body:not(.admin-page) .cover-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 44px;
}

body:not(.admin-page) .cover-action {
    width: 168px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 22px;
    border: 1px solid rgb(31 43 58 / 10%);
    border-radius: 18px;
    background: rgb(255 255 255 / 72%);
    color: #223044;
    font-weight: 800;
    box-shadow: 0 12px 28px rgb(50 64 82 / 8%);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

body:not(.admin-page) .cover-action:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 20px 38px rgb(50 64 82 / 14%);
}

body:not(.admin-page) .cover-action.primary {
    background: #18202c;
    color: #fff;
}

body:not(.admin-page) .cover-action svg {
    display: block;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    fill: currentColor;
}

body:not(.admin-page) .cover-action .icon-home {
    width: 23px;
    height: 23px;
}

body:not(.admin-page) .cover-location {
    position: absolute;
    right: 0;
    left: 0;
    bottom: clamp(34px, 7vh, 78px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin: 0 auto;
    transform: none;
    color: #626a76;
    font-size: clamp(15px, 1.55vw, 20px);
    font-weight: 650;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
}

body:not(.admin-page) .cover-location svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body:not(.admin-page) .zyyo-main {
    scroll-margin-top: 24px;
}

body:not(.admin-page) .left-div,
body:not(.admin-page) header,
body:not(.admin-page) .projectItem,
body:not(.admin-page) footer {
    border-color: rgb(31 43 58 / 9%);
    box-shadow: 0 24px 64px rgb(60 72 88 / 11%);
}

body:not(.admin-page) header,
body:not(.admin-page) .left-div,
body:not(.admin-page) .projectItem {
    background:
        linear-gradient(145deg, rgb(255 255 255 / 86%), rgb(255 255 255 / 58%)),
        var(--item_bg_color);
}

body:not(.admin-page) .description,
body:not(.admin-page) .left-des-item,
body:not(.admin-page) .title {
    color: #344154;
}

body:not(.admin-page) .left-tag-item,
body:not(.admin-page) .iconItem,
body:not(.admin-page) .switch {
    border-color: rgb(31 43 58 / 9%);
    background: rgb(255 255 255 / 70%);
    color: #344154;
}

body:not(.admin-page) .title::after {
    background: linear-gradient(90deg, rgb(31 43 58 / 14%), transparent);
}

body:not(.admin-page) .projectItem::before {
    background: linear-gradient(135deg, rgb(255 230 190 / 38%), transparent 44%, rgb(172 226 235 / 32%));
}

body:not(.admin-page) .projectItemLeft h1 {
    color: #18202c;
}

body:not(.admin-page) .projectItemLeft p {
    color: #526071;
}

body:not(.admin-page) .projectIndex,
body:not(.admin-page) .projectArrow {
    color: #697586;
}

body:not(.admin-page) .projectArrow {
    border-color: rgb(31 43 58 / 9%);
    background: rgb(255 255 255 / 72%);
}

body:not(.admin-page) footer {
    background: rgb(255 255 255 / 68%);
}

@media (max-width: 760px) {
    body:not(.admin-page) .cover-page {
        align-items: stretch;
        padding: 14px;
    }

    body:not(.admin-page) .cover-card {
        min-height: calc(100vh - 28px);
        border-radius: 26px;
        padding: 28px 22px;
    }

    body:not(.admin-page) .cover-card h1 {
        margin: 22px 0 18px;
    }

    body:not(.admin-page) .cover-card p {
        font-size: 17px;
    }

    body:not(.admin-page) .cover-wordmark {
        min-height: 118px;
    }

    body:not(.admin-page) .cover-signature-stroke {
        stroke-width: 15;
    }

    body:not(.admin-page) .cover-signature-stroke:nth-last-child(1) {
        stroke-width: 10;
    }

    body:not(.admin-page) .cover-actions {
        gap: 10px;
        margin-top: 32px;
    }

    body:not(.admin-page) .cover-action {
        flex: 1 1 calc(50% - 10px);
        padding: 0 14px;
    }

    body:not(.admin-page) .cover-action.primary {
        flex-basis: 100%;
    }
}

@keyframes coverSignatureWrite {
    to {
        stroke-dashoffset: 0;
    }
}





.tc {
    position: fixed;
   
    display: flex;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(20, 20, 20, 0.5);
    z-index: 99999;
    align-items: center;
    top: 0;
    justify-content: center;
    flex-direction: column;
}

.tc-main {
    z-index: 100000;
    
    width: 80%;
    max-width: 300px;
    min-height: 200px;
    background-color: #ffffff;
    border-radius: 15px;

    display: flex;
    transition: transform 0.2s linear;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: translateY(30%) scale(0.5);

}

.tc-img {
    width: 100%;
    height: 100%;
}

.tc.active {
    visibility: visible;
}

.tc-main.active {

    transform: translateY(0) scale(1);

}









.onoffswitch {
    position: relative;
    width: 38px;
    height: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    border-radius: 50px;
}

.onoffswitch-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200%;
    height: 100%;
    margin-left: -100%;
    transition: margin 0.2s ease-in 0s;
}

.onoffswitch-inner:before,
.onoffswitch-inner:after {
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    width: 50%;
    height: 100%;
    padding: 0;
    font-size: 12px;
    color: white;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}

.onoffswitch-inner:before {
    content: "";
    background-color: rgb(110 110 110 / 50%);
    color: #FFFFFF;
    text-align: left;
}

.onoffswitch-inner:after {
    content: "";
    background-color: #272727;
    color: #FAFAFA;
    text-align: right;
}

.onoffswitch-switch {
    display: block;
    height: 70%;
    aspect-ratio: 1/1;
    background: #FFFFFF;
    position: absolute;
    top: 12.5%;
    bottom: 12.5%;
    right: 5px;

    border-radius: 20px;
    transition: right 0.2s ease-in 0s;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
    right: 50%;
}
