/* style.css - 魔幻魔方界面样式 */
body {
    margin: 0;
    overflow: hidden;
    font-family: 'Microsoft YaHei', 'Segoe UI', 'Poppins', sans-serif;
}

#info {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #f0e6d0;
    background: rgba(20, 20, 40, 0.7);
    padding: 10px 20px;
    border-radius: 40px;
    backdrop-filter: blur(8px);
    pointer-events: none;
    z-index: 10;
    font-size: 14px;
    letter-spacing: 2px;
    border-left: 3px solid #ffb56b;
}

#instruction {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 245, 220, 0.9);
    background: rgba(0, 0, 0, 0.55);
    padding: 8px 20px;
    width: fit-content;
    margin: 0 auto;
    border-radius: 60px;
    font-size: 14px;
    backdrop-filter: blur(5px);
    pointer-events: none;
    z-index: 10;
    font-family: monospace;
    transition: opacity 0.6s;
}

#status {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffcc88;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: bold;
    backdrop-filter: blur(4px);
    pointer-events: none;
    z-index: 10;
    font-family: monospace;
}

@media (max-width: 600px) {
    #info, #status {
        font-size: 10px;
        padding: 5px 12px;
    }
    #instruction {
        font-size: 10px;
        bottom: 18px;
    }
}