/* 彩蛋模态框样式 */
.easter-egg-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    animation: eggFadeIn 0.5s ease;
}

.easter-egg-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 2px solid #00ffcc;
    box-shadow: 0 0 40px rgba(0, 255, 204, 0.3);
}

.easter-egg-title {
    color: #00ffcc;
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.easter-egg-message {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.easter-egg-close {
    background: #ff3366;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.easter-egg-close:hover {
    background: #ff6699;
    transform: scale(1.05);
}

.easter-egg-secret {
    margin-top: 15px;
    color: #ffcc00;
    font-size: 14px;
    opacity: 0.8;
}

.secret-spot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.secret-spot:hover {
    background: rgba(0, 255, 204, 0.1);
    border-radius: 50%;
}

@keyframes eggFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes secretFound {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.egg-found {
    animation: secretFound 0.5s ease;
}

/* 音效状态提示 */
.audio-status {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}