.author-content {
    justify-content: space-evenly !important;
}

.banner-title {
    z-index: 10;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
    width: 100%;
}

.banner-title h2 {
    position: relative;
    color: #fff;
    font-weight: 900;
    font-size: 90px;
    padding: 0;
    margin: 20px;
    line-height: 1;
    animation: text-animation 10s infinite;
    /* text-shadow: 
        0 0 150px #ff417d; */
}
@keyframes text-animation
{
    0%,20%,40%,60%,80%,100% 
    {
        text-shadow: none;
    }
    10%,30%,50%,70%,90%
    {
        color: #fff;
        text-shadow: 0 0 10px #03bcf4,
        0 0 10px #03bcf4,
        0 0 40px #03bcf4,
        0 0 80px #03bcf4,
        0 0 100px #03bcf4;
    }
}
@media screen and (max-width: 768px) {
    .banner-title h2 {   
            font-size: 32px !important;
        }
    .banner-title h3 {
            font-size: 20px !important;
        }
}

.banner-title h2:hover {
    text-shadow: 
        0 0 10px #25c2a0,
        0 0 20px #25c2a0,
        0 0 30px #25c2a0,
        0 0 40px #25c2a0,
        0 0 70px #25c2a0,
        0 0 80px #25c2a0,
        0 0 100px #25c2a0,
        0 0 150px #25c2a0;
}

.banner-title h3 {
    font-weight: 600;
    font-size: 30px;
    padding: 0;
    margin: 0;
    line-height: 1;
    color: #fff !important;
    letter-spacing: 2px;
}

/* canvas {
    display: block;
    margin-left: auto;
    margin-right: auto;
} */

h1 {
    display: none;
}

div#page {
    background: none !important;
    box-shadow: none;
    padding: 0;
    border: none;
}

/* 评论页面容器 */
#comments-page {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    margin-top: 1.5rem;
    justify-content: center;
}

/* 评论卡片基础样式 */
.comment-card {
    position: relative;
    width: calc(100% / 4 - 9px);
    border-radius: 12px;
    border: 1px solid var(--anzhiyu-card-border);
    padding: 20px;
    overflow: hidden;
    box-shadow: var(--anzhiyu-shadow-border);
    animation: slide-in .6s .4s backwards;
    background-color: var(--anzhiyu-card-bg);
    transition: all .3s ease-in-out;
}

.comment-card:hover {
    border: 1px solid var(--anzhiyu-main);
}

/* 评论信息区域 */
.comment-info {
    padding-bottom: 5px;
    border-bottom: 2px dashed var(--anzhiyu-theme-op);
}

.comment-information {
    display: flex;
    flex-direction: column;
}

.comment-user {
    font-weight: bold;
}

.comment-time {
    font-size: 12px;
    color: var(--anzhiyu-secondtext);
}

/* 评论内容 */
.comment-content {
    position: relative;
    z-index: 3;
    overflow: hidden;
    padding-top: 5px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* 头像样式 */
.avatar-wrapper {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    margin: 0 0 -4px;
    border-radius: 50%;
    opacity: 0.4;
    transition: all 0.3s ease-in-out;
    filter: blur(1px);
    background-size: cover;
    background-position: center;
}

.comment-card:hover .avatar-wrapper {
    transform: translateY(-50%) scale(1.1);
    opacity: 0.6;
}

/* 响应式布局 */
@media (max-width: 1024px) {
    .comment-card {
        width: calc(100% / 2 - 6px);
    }
}

@media (max-width: 768px) {
    .comment-card {
        width: 100%;
    }
    .banner-button-group {
        display: none;
    }
}