body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

.game-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
}

header {
  width: 100%;
  background-color: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.status-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.status-icon {
  width: 30px;
}

.status-value {
  font-size: 20px;
  font-weight: bold;
}

main {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.egg-container {
  text-align: center;
}

.egg-image {
  width: 200px;
  cursor: pointer;
}

.menu {
  width: 100%;
  background-color: #fff;
  padding: 10px 0;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  gap: 30px;
}

.menu-icon {
  width: 50px;
  cursor: pointer;
}

.page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.page.hidden {
  display: none;
}

.page h2 {
  font-size: 24px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
}

button:hover {
  background-color: #0056b3;
}

#referral-link {
  margin-top: 20px;
  padding: 10px;
  font-size: 14px;
  width: 60%;
}