* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial;
}

/* ✅ App级背景 */
body {
    min-height: 100vh;
    width: 100%;
    margin: 0;

    background: radial-gradient(circle at top, #ffe3ee, #ffffff);
    overflow-x: hidden;

    /* 🔥 关键：让页面“有呼吸空间” */
    padding: 24px 0 40px;
}

/* 🌸 背景 */
.bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,120,170,0.22), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(255,180,210,0.22), transparent 45%);
    filter: blur(80px);
    z-index: -1;
}

/* 📱 App容器 */
.app {
    width: 92%;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* 💕 主卡（App核心视觉） */
.main-card {
    text-align: center;
    padding: 22px;
    border-radius: 28px;

    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.08);

    /* 🔥 关键：压缩感，让内容更“集中” */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* logo */
.logo {
    font-size: 46px;
}

/* 标题 */
h1 {
    font-size: 26px;
}

/* 副标题 */
.subtitle {
    font-size: 13px;
    color: #666;
}

/* 在线人数 */
.online {
    font-size: 13px;
    color: #444;
}

/* 🔥 按钮 */
.big-btn {
    display: block;
    padding: 16px;
    border-radius: 20px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: 0.2s;
}

/* 主按钮 */
.big-btn.primary {
    background: linear-gradient(135deg,#ff4d7d,#ff9ac1);
    color: white;
    box-shadow: 0 18px 40px rgba(255,77,125,0.35);
    animation: pulse 2.2s infinite;
}

/* 次按钮 */
.big-btn:not(.primary) {
    background: rgba(255,255,255,0.85);
    color: #333;
}

/* hint */
.hint {
    margin-top: 6px;
    font-size: 13px;
    color: #666;
    text-align: center;
}

/* stats（🔥关键：收口底部空白） */
.stats {
    margin-top: 6px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.6);
    font-size: 12px;
    color: #444;
    line-height: 1.6;
}

/* 💓 呼吸动画 */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* 📱 手机适配 */
@media (max-width: 768px) {
    .app {
        width: 95%;
        margin: 10px auto;
    }
}