* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                    "PingFang TC", "Microsoft JhengHei", sans-serif;
    background: linear-gradient(180deg, #426673, #2b1f1d);
    color: #fff;
    display: flex;
    justify-content: center;
}

.page {
    width: 100%;
    max-width: 420px;
    padding: 16px;
}

/* 顶部按钮 */
.top-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.icon-btn {
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 13px;
    cursor: pointer;
    background: transparent;
    color: #fff;
}

/* 个人信息卡 */
.profile-card {
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    margin-bottom: 18px;
}

.avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.desc {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
}

/* 横幅 */
.banner {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 16px;
}

.banner img {
    width: 100%;
    display: block;
}

/* 链接按钮 */

.link-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;   /* 文字居中 */
    padding: 14px 16px;

    gap: 10px;
    background: rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 12px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

.link-btn span {
    position: absolute;
    left: 16px;               /* 图标固定靠左 */
    font-size: 18px;
}


.link-btn:hover {
    background: rgba(255,255,255,0.2);
}

.icon {
    width: 20px;
    opacity: 0.9;
}

/* 底部安全区 */
.safe {
    height: 20px;
}
canvas#cyberGrid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#htous {
    font-size: 1.4rem;
    color: #ff00e6;
    font-weight: bold;
    filter: blur(0.6px);
    margin-bottom: 0px;
}

ul {
    list-style: none;
}

@keyframes jumpPulse {
    0% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-4px) scale(1.03);
    }
    60% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* 只给主按钮用 */
.link-btn.primary {
    animation: jumpPulse 1.8s ease-in-out infinite;
}
span img {
    width: 22px;
}