/* @🍮 */
/* === 全局变量和基础样式 === */
:root {
    --bg-color: #fce4ec;
    --primary-color: #ff80ab;
    --secondary-color: #f48fb1;
    --accent-color: #90caf9;
    --text-color: #444;
    --white-color: #fff;
    --border-radius: 18px;
    --phone-corner-radius: 0px;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --top-pinned-bg: #fff0f5;
    --online-status-color: #4CAF50;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    /* @🍮 锁定屏幕，禁止左右乱滑 */
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
