body {
    font-family: sans-serif;
    background: #f8f4ee;
    color: #333;
    margin: 0;
    padding: 20px;
    text-align: center;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .game-area {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .cat-area img {
    width: 300px;
    max-width: 100%;
    height: auto;
  }
  
  .status-area {
    margin: 20px 0;
    display: none;
  }
  
  .button-area {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .button-area button {
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    background: #ffd97d;
    cursor: pointer;
    font-size: 3rem;
  }
  
  .button-area button:hover {
    opacity: 0.9;
  }
  
  .message-area {
    font-weight: bold;
  }

 .retry-area {
  margin-top: 16px;
  text-align: center;
  display: none;
}

.retry-area button {
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
background: #b8e986;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
}

.retry-area button:hover {
  opacity: 0.9;
}

.retry-area button:active {
  transform: scale(0.95);
}