/* LovingMemory VPS端 - 主樣式 */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #000;
    font-family: Arial, sans-serif;
}

/* ⚠️ 關鍵：流程容器預設隱藏 */
.flow-container {
    display: none !important;
    position: fixed;
    inset: 0;
    z-index: 1000;
}

/* ⚠️ 關鍵：只有 active 的流程容器才顯示 */
.flow-container.active {
    display: block !important;
}

/* 確保圖片和按鈕正確顯示 */
.flow-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.flow-container button {
    font-weight: bold;
    transition: all 0.3s;
}

.flow-container button:hover {
    transform: scale(1.05);
}

.flow-container button:active {
    transform: scale(0.95);
}

