/* 样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 页面外部样式 */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fff5f5;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.cat-status {
    font-size: 24px;
    margin: 20px 0;
    color: #ff6b6b;
}

.cat-display {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.cat-image {
    width: 100%;
    height: 100%;
    background-image: url('../images/cat-happy.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.action-buttons {
    margin-top: 30px;
}

.action-btn {
    padding: 12px 25px;
    margin: 0 10px;
    border: none;
    border-radius: 25px;
    background-color: #ff9f9f;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background-color: #ff7f7f;
    transform: scale(1.05);
}
