/* 让所有卡片背景变透明 */
.card {
    background-color: rgba(255, 255, 255, 0.05) !important; /* 极低透明度 */
    backdrop-filter: blur(12px) saturate(180%); /* 毛玻璃模糊效果 */
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1) !important; /* 淡淡的边框感 */
    border-radius: 12px !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); /* 阴影增加立体感 */
}


/* 让文字在深色背景下更清晰 */
.card-title, .text-gray-500, .text-gray-400 {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* 隐藏底部默认多余的文字，让页面更干净 */
footer {
    display: none !important;
}



