@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;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    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);

}

#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;

}

.skill {
    padding: 25px;
    width: 100%;
}

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

.skill #skillWap {
    display: none;
}

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: 800px) {

    .index-logo {
        display: none;
    }
}

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

        width: calc(50% - 20px);


    }
}

@media (max-width: 800px) {
    .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%;
    }

    .tanChiShe {
        width: 100%;
    }

    .description {
        font-size: 4vw;
    }

    .welcome {
        font-size: 10vw;
        margin: 2vw 0;

    }
    .iconContainer {
  
     margin-top: 4vw;

}
.projectItem{
    padding: 10px;
}
    .projectItemLeft p {
        font-size: 13px;
    }

    .projectItemLeft h1 {

        font-size: 18px;
    }

    .projectItem:hover h1 {

        font-size: 20px;

    }

    .skill #skillWap {
        display: block;
    }

    .skill #skillPc {
        display: none;
    }













}





.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%;
}
/* ===== 服务器导航 emoji 图标（由导航页整合而来） ===== */
.navList .projectItemRight .nav-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 39px;
    width: 39px;
    font-size: 36px;
    line-height: 1;
    transition: transform 0.4s ease;
}
.navList .projectItem:hover .projectItemRight .nav-emoji {
    transform: rotate(40deg);
}
/* 移动端导航卡片布局：两列 / 超窄一列 */
@media (max-width: 800px) {
    .navList .projectItem {
        width: calc(50% - 18px);
        margin: 9px;
    }
}
@media (max-width: 420px) {
    .navList .projectItem {
        width: calc(100% - 30px);
        margin: 8px 15px;
    }
}
/* ============================================================
 *  羽连创想 · 粉蓝白服务器导航站改造
 * ============================================================ */
/* 布局：去掉左侧个人信息栏，改为顶部居中的单列结构 */
.zyyo-main {
    display: block;
    max-width: 1000px;
    padding-bottom: 70px;
    text-align: center;
}
content {
    width: 100%;
}
/* 主题切换开关固定右上角 */
.theme-switch {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 99;
    margin: 0;
}
/* ---------- 顶部 Hero ---------- */
.hero {
    padding: 30px 10px 6px;
    animation: heroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroIn {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-title {
    font-size: clamp(1.5rem, 4.6vw, 2.6rem);
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--main_text_color);
    margin: 0 0 12px;
    background: var(--gradient);
    background-size: 250% auto;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: heroShine 6s linear infinite;
}
.hero-title .hero-domain {
    white-space: nowrap;
}
@keyframes heroShine {
    0%   { background-position: 0% center; }
    100% { background-position: 250% center; }
}
.hero-logo-wrap {
    display: inline-block;
    padding: 16px 22px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 16px 40px rgba(91, 206, 250, 0.2),
        0 6px 20px rgba(245, 169, 184, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    animation: logoFloat 4.5s ease-in-out infinite;
    position: relative;
}
.hero-logo-wrap::before {
    content: '';
    position: absolute;
    top: 8px; left: 18%;
    width: 42%; height: 40%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    filter: blur(12px);
    pointer-events: none;
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-9px); }
}
.hero-logo {
    display: block;
    width: min(560px, 86vw);
    height: auto;
    border-radius: 16px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.35);
    filter: drop-shadow(0 8px 18px rgba(91, 206, 250, 0.35));
}
.hero-sub {
    margin-top: 24px;
    font-size: 1.05rem;
    letter-spacing: 2px;
    color: var(--main_text_color);
    opacity: 0.9;
}
.hero-sub-domain {
    font-weight: 700;
    background: linear-gradient(120deg, #5BCEFA, #F5A9B8);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
/* 导航标题居中 */
content .title {
    justify-content: center;
    margin-top: 34px;
}
/* 卡片微调：粉蓝白描边 + hover 光晕 */
.navList .projectItem {
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow:
        0 8px 24px rgba(91, 206, 250, 0.12),
        0 4px 14px rgba(245, 169, 184, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.navList .projectItem:hover {
    box-shadow:
        0 18px 44px rgba(91, 206, 250, 0.2),
        0 8px 22px rgba(245, 169, 184, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
/* 页脚品牌信息 */
footer {
    line-height: 1.7;
}
.footer-brand {
    font-weight: 700;
    background: linear-gradient(120deg, #5BCEFA, #F5A9B8);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
/* ---------- 暗色模式（粉蓝紫深色） ---------- */
html[data-theme="Dark"] {
    --main_bg_color: linear-gradient(160deg, #0a0620 0%, #140e38 45%, #0b1830 100%);
    --main_text_color: #eef2ff;
    --gradient: linear-gradient(120deg, #4fc3f7, #f76cc6 35%, #ffffff 55%, #f76cc6 70%, #4fc3f7);
    --purple_text_color: #7ee0ff;
    --text_bg_color: rgba(20, 20, 45, 0.7);
    --item_bg_color: rgba(255, 255, 255, 0.08);
    --item_hover_color: rgba(255, 255, 255, 0.14);
    --item_left_title_color: #ffffff;
    --item_left_text_color: rgba(205, 214, 255, 0.8);
    --footer_text_color: rgba(180, 195, 235, 0.6);
    --left_tag_item: linear-gradient(50deg, #1f2327, #000000);
    --card_filter: 0px;
    --back_filter: 0px;
    --back_filter_color: #000000;
    --fill: #7ee0ff;
}
html[data-theme="Dark"] .hero-logo-wrap {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
html[data-theme="Dark"] .navList .projectItem {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
/* 移动端适配 */
@media (max-width: 800px) {
    .hero-logo { width: min(460px, 86vw); }
    .hero { padding-top: 24px; }
}
@media (max-width: 420px) {
    .hero-logo { width: 86vw; }
    .hero-title { letter-spacing: 2px; }
    .hero-sub { font-size: 0.95rem; }
}
/* 卡片整体居中 */
.projectList { justify-content: center; }
/* ============================================================
 *  梦想之城风格（仿 mxzc3853.com）
 *  顶部渐变进度条 + 居中Logo + 欢迎语 + 文艺句 + 橙色引用语
 * ============================================================ */
/* 浅色清新背景（亮色模式下） */
body {
    background: linear-gradient(165deg, #fdf6fb 0%, #eef7ff 42%, #f3ebff 100%);
}
html[data-theme="Dark"] body {
    background: var(--main_bg_color);
}
/* 顶部蓝粉渐变进度条 */
.hero-bar {
    height: 8px;
    width: 100%;
    max-width: 560px;
    margin: 0 auto 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, #5BCEFA 0%, #F5A9B8 30%, #FFFFFF 50%, #F5A9B8 70%, #5BCEFA 100%);
    background-size: 300% 100%;
    animation: heroBarFlow 5s linear infinite;
    box-shadow: 0 4px 16px rgba(91, 206, 250, 0.4);
}
@keyframes heroBarFlow {
    0%   { background-position: 0% 0; }
    100% { background-position: 300% 0; }
}
/* 欢迎语区 */
.hero-welcome {
    margin-top: 20px;
    font-size: clamp(1.3rem, 4.2vw, 2rem);
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--main_text_color);
}
.hero-welcome .brand {
    background: var(--gradient);
    background-size: 250% auto;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: heroShine 6s linear infinite;
}
.hero-tag {
    display: inline-block;
    margin-left: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 999px;
    vertical-align: middle;
    color: var(--main_text_color);
    background: linear-gradient(120deg, rgba(91, 206, 250, 0.28), rgba(245, 169, 184, 0.28));
    border: 1px solid rgba(255, 255, 255, 0.8);
}
.hero-greet {
    margin-top: 14px;
    font-size: clamp(1.2rem, 4.2vw, 1.7rem);
    font-weight: 700;
    letter-spacing: 0;
    color: #14151a;
    opacity: 1;
    font-family: "b", "a", sans-serif;
}
.hero-greet .hero-domain {
    font-weight: 400;
    font-family: "title", "b", sans-serif;
    background: linear-gradient(90deg, #5BCEFA 0%, #6A9BFF 30%, #FFFFFF 50%, #F5A9B8 70%, #5BCEFA 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    white-space: nowrap;
    animation: heroShine 6s linear infinite;
}
.hero-line {
    margin-top: 8px;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    color: var(--main_text_color);
    opacity: 0.75;
}
/* 橙色引用语 */
.hero-quote {
    margin: 26px auto 0;
    max-width: 640px;
    padding: 0 18px;
    font-size: clamp(0.95rem, 3.2vw, 1.08rem);
    line-height: 1.8;
    color: #f08a2e;
    font-style: italic;
    letter-spacing: 1px;
}
/* 暗色模式下引用语提亮 */
html[data-theme="Dark"] .hero-quote {
    color: #ffb26b;
}
/* ===== 打字机效果（仿 mxzc3853.com） ===== */
.type-cursor {
    display: inline-block;
    margin-left: 2px;
    color: #f08a2e;
    font-style: normal;
    animation: typeBlink 0.8s steps(1) infinite;
}
@keyframes typeBlink {
    50% { opacity: 0; }
}
html[data-theme="Dark"] .type-cursor {
    color: #ffb26b;
}
/* ===== 液态玻璃卡片（所有导航卡片） ===== */
.navList .projectItem {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.34));
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 12px 32px rgba(91, 206, 250, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -14px 34px rgba(245, 169, 184, 0.14);
}
.navList .projectItem::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -80%;
    width: 55%;
    height: 140%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    animation: liquidShine 4.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes liquidShine {
    0%   { left: -80%; }
    55%  { left: 140%; }
    100% { left: 140%; }
}
.navList .projectItem:hover::before {
    animation-duration: 2s;
}
.navList .projectItemLeft,
.navList .projectItemRight {
    position: relative;
    z-index: 2;
}
html[data-theme="Dark"] .navList .projectItem {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
html[data-theme="Dark"] .navList .projectItem::before {
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}
/* ============================================================
 *  梦想之城式卡片 · 界面紧凑 · 导航标题靠左
 * ============================================================ */
/* 导航标题靠左 */
content .title {
    justify-content: flex-start;
    margin-top: 22px;
}
/* Hero 区域更紧凑 */
.hero { padding: 20px 10px 2px; }
.hero-bar { height: 6px; max-width: 480px; margin: 0 auto 16px; }
.hero-logo-wrap { padding: 12px 18px; }
.hero-logo { width: min(440px, 84vw); }
.hero-welcome { margin-top: 14px; }
.hero-greet { margin-top: 8px; }
.hero-line { margin-top: 6px; }
.hero-quote { margin: 16px auto 0; }
/* 卡片：竖版放大（图标上 / 标题 / 描述，居中，梦想之城式） */
.navList .projectItem {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 168px;
    width: calc(33.333% - 18px);
    padding: 22px 14px;
    text-align: center;
}
.navList .projectItemRight {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.navList .projectItemRight .nav-emoji {
    font-size: 46px;
    height: 52px;
    width: 52px;
}
.navList .projectItemLeft {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.navList .projectItemLeft h1 {
    font-size: 19px;
    font-weight: 700;
}
.navList .projectItemLeft p {
    margin-top: 8px;
    font-size: 13px;
}
/* hover 覆盖：竖版不收缩，只微动 */
.navList .projectItem:hover .projectItemLeft { width: 100%; }
.navList .projectItem:hover .projectItemRight { width: 100%; }
.navList .projectItem:hover .projectItemRight .nav-emoji { transform: rotate(10deg) scale(1.1); }
.navList .projectItem:hover h1 { font-size: 19px; }
/* 响应式：平板两列 / 手机两列 / 超窄一列 */
@media (max-width: 1150px) {
    .navList .projectItem {
        width: calc(50% - 18px);
        min-height: 150px;
    }
}
@media (max-width: 800px) {
    .navList .projectItem {
        width: calc(50% - 18px);
        min-height: 148px;
        margin: 9px;
    }
}
@media (max-width: 420px) {
    .navList .projectItem {
        width: calc(100% - 30px);
        min-height: 136px;
        margin: 8px 15px;
    }
}
/* ============================================================
 *  手机版更紧凑（缩小界面 & 商标）
 * ============================================================ */
@media (max-width: 800px) {
    .hero { padding: 14px 8px 0; }
    .hero-bar { height: 5px; max-width: 300px; margin: 0 auto 12px; }
    .hero-logo-wrap { padding: 8px 12px; border-radius: 20px; }
    .hero-logo { width: min(240px, 64vw); }
    .hero-welcome { margin-top: 10px; font-size: clamp(1.05rem, 4.2vw, 1.3rem); letter-spacing: 1px; }
    .hero-tag { font-size: 0.68rem; padding: 3px 9px; margin-left: 5px; }
    .hero-greet { margin-top: 6px; font-size: clamp(0.92rem, 3.6vw, 1.08rem); }
    .hero-line { margin-top: 4px; font-size: 0.8rem; letter-spacing: 1px; }
    .hero-quote { margin: 10px auto 0; font-size: 0.8rem; line-height: 1.6; padding: 0 10px; }
    content .title { margin-top: 12px; font-size: 22px; }
    .navList .projectItem { padding: 14px 10px; min-height: 122px; }
    .navList .projectItemRight { margin-bottom: 5px; }
    .navList .projectItemRight .nav-emoji { font-size: 32px; height: 36px; width: 36px; }
    .navList .projectItemLeft h1 { font-size: 16px; }
    .navList .projectItemLeft p { font-size: 11px; margin-top: 4px; }
}
@media (max-width: 420px) {
    .hero-logo { width: min(200px, 58vw); }
    .hero-welcome { font-size: 1rem; }
}
/* ============================================================
 *  进度条拉长 + 粉蓝白蓝粉无缝循环流动
 *  去Logo卡片（毛玻璃框），只留透明PNG本体 + 漂浮
 * ============================================================ */
/* 进度条：拉长到全宽，粉蓝白蓝粉两周期无缝流动 */
.hero-bar {
    width: 100%;
    max-width: 1000px;
    height: 10px;
    margin: 0 auto 20px;
    background: linear-gradient(90deg,
        #F5A9B8 0%, #5BCEFA 25%, #FFFFFF 50%, #5BCEFA 75%, #F5A9B8 100%);
    background-size: 200% 100%;
    animation: heroBarFlow 6s linear infinite;
    box-shadow: 0 4px 16px rgba(91, 206, 250, 0.35);
}
@keyframes heroBarFlow {
    0%   { background-position: 0% 0; }
    100% { background-position: -200% 0; }
}
/* Logo：去掉毛玻璃卡片/边框/阴影，只留透明 PNG 本体，保留漂浮 */
.hero-logo-wrap {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 6px 10px;
}
.hero-logo-wrap::before { display: none; }
.hero-logo {
    background: transparent;
    border-radius: 0;
    filter: drop-shadow(0 10px 22px rgba(91, 206, 250, 0.28));
}
html[data-theme="Dark"] .hero-logo-wrap {
    background: transparent;
    border: none;
    box-shadow: none;
}
@media (max-width: 800px) {
    .hero-bar { height: 7px; margin-bottom: 14px; }
}
