* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: #1a1a2e;
    font-family: system-ui, -apple-system, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px 100px;
}
.answer {
    font-size: clamp(48px, 10vw, 80px);
    font-weight: 900;
    color: #ff6b9d;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(255, 107, 157, 0.5);
    line-height: 1.2;
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.count-section { text-align: center; margin-bottom: 20px; width: 100%; }
.count-label { font-size: clamp(14px, 3vw, 18px); color: #aab; margin-bottom: 15px; }
.count-section img { max-width: 100%; height: auto; display: block; margin: 0 auto; }
.site-footer {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(18, 18, 18, 0.95);
    border-top: 1px solid rgba(255,255,255,0.10);
    padding: 12px 16px;
    display: flex; align-items: center; justify-content: center;
    gap: 10px; z-index: 999;
    backdrop-filter: blur(10px);
}
.site-footer a { text-decoration: none; color: inherit; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.footer-icon {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: bold; color: #fff; flex-shrink: 0;
}
.footer-text { text-align: left; }
.footer-title { font-size: clamp(12px, 2.5vw, 14px); font-weight: 600; color: #e0e0e0; line-height: 1.3; }
.footer-desc { font-size: clamp(10px, 2vw, 11px); color: #999; margin-top: 2px; line-height: 1.3; }
.footer-action {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #fff; border: none; border-radius: 20px; padding: 6px 16px;
    font-size: clamp(11px, 2.5vw, 13px); font-weight: 600;
    white-space: nowrap; flex-shrink: 0;
}
