/* 全体背景 */
body {
  font-family: 'Segoe UI', 'Helvetica Neue', 'Arial', sans-serif;
  background: linear-gradient(135deg, #c3e8f8, #f9f9f9);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* メインコンテナ */
.container {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 400px;
  text-align: center;
  transition: transform 0.3s ease;
}

.container:hover {
  transform: translateY(-5px);
}

/* タイトル */
h1 {
  font-size: 2rem;
  color: #0077cc;
  margin-bottom: 25px;
}

/* ユーザ情報カード */
.user-info {
  background: #f0f4f8;
  padding: 20px 15px;
  border-radius: 15px;
  margin-bottom: 25px;
}

.user-info p {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #333;
}

.user-info span {
  font-weight: bold;
  color: #0077cc;
}

/* トロフィー */
.trophies {
  font-size: 2rem;
  margin-top: 10px;
}

/* 戻るボタン */
button {
  background-color: #0077cc;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #005fa3;
  transform: translateY(-2px);
}

/* レスポンシブ調整 */
@media (max-width: 500px) {
  .container {
    padding: 25px 20px;
  }

  h1 {
    font-size: 1.5rem;
  }

  .user-info p {
    font-size: 1rem;
  }

  .trophies {
    font-size: 1.5rem;
  }

  button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
