* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 30px 20px;
}

.logo {
  width: 110px;
  object-fit: contain;
  margin-bottom: -35px;
  margin-top: 24px;
}

.game-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
  cursor: crosshair;
}

.butterfly-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

#gameCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 540px) {
  .game-wrapper {
    width: 240px;
    height: 240px;
  }

  .logo {
    width: 90px;
  }
}
