.about-page {
    all: initial !important;
    box-sizing: border-box !important;
  }
/* 页眉设计 */
.fan-header {
    text-align: center;
    position: relative;
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0, 0);
    border-radius: 20px;
    margin-bottom: 2rem;
}

.deco-ears::before,
.deco-ears::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 60px;
    background: url('../images/deco-ears.png') no-repeat;
    top: -20px;
}

.deco-ears::before { left: 15%; transform: rotate(-15deg); }
.deco-ears::after { right: 15%; transform: rotate(15deg); }

.subtitle {
    color: var(--fan-brown);
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* 卡片通用样式 */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

[class*="-card"] {
    background-color: var(--current-card);
    backdrop-filter: blur(12px) saturate(180%);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid var(--fan-pink);
    transition: transform 0.3s ease;
}

[class*="-card"]:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--fan-pink);
    margin-bottom: 1rem;
}

/* 动画效果 */
.heartbeat { animation: heartbeat 1.5s infinite; }
.floating { animation: floating 3s ease-in-out infinite; }
.spin { animation: spin 4s linear infinite; }

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* 响应式优化 */
@media (max-width: 768px) {
    .about-page {
        padding: 0 0.5rem;
    }
    
    .role-list {
        grid-template-columns: 1fr;
    }
}

/* 按钮样式 */
.btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
}

.discord {
    background: #5865F2;
    color: white;
}

.qq {
    background: #12B7F5;
    color: white;
}

.btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}








/* 主容器样式 */
.pan-page {
    position: relative;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    overflow: hidden;
    
}

/* 网盘外层容器 */
.frame-wrapper {
    position: absolute;
    top: 80px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 16px;
    background-color: var(--current-card);
    backdrop-filter: blur(12px) saturate(180%);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  
}

/* 网盘容器 */
.alist-container {
    width: 100%;
    height: 100%;
    border: none;
    transform: scale(1.02); /* 微幅放大 */
    transform: translateZ(0);  /* 触发GPU渲染优化 */
    -webkit-font-smoothing: antialiased;  /* 启用抗锯齿 */
  
}

/* 加载提示 */
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    z-index: 10;
}