body {
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    padding: 40px;
    background: url("images/bg.png") no-repeat center center fixed;
    background-size: cover;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 透明跳转卡片 */
.card {
    position: relative;
    background: transparent;
    padding: 18px 20px;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, background 0.25s ease;
}

.card:hover {
    transform: translateX(8px);
    background: rgba(255,255,255,0.1);
}

/* 波纹效果 */
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255,255,255,0.4);
    animation: ripple-effect 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.desc {
    margin-top: 4px;
    font-size: 14px;
    color: #eee;
}

/* 圆角玻璃风右键菜单 */
#customMenu {
    position: fixed;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    display: none;
    z-index: 9999;

    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);

    transition: 0.2s ease;
}

#customMenu:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.05);
}
