* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background: #ffd6e6;
}

/* Layout */
.game-ui {
  display: flex;
  height: 100vh;
}

/* Sidebar */
.menu-panel {
  width: 300px;
  padding:80px;
  background: #ffb2cf;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;


  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

/* Logo */
.logo {
  width: 170px;
  height: 165px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 8px 0 #ff9ecb;

  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 200%;
  height: 200%;
}

/* Buttons */
.menu-btn {
  text-decoration: none;
  bottom: 20px;
  width: 200px;
  padding: 30px;
  border: none;
  border-radius: 35px;

  background: #ff8fc6;
  color: white;

  font-family: "Baloo 2", cursive;
  font-size: 30px;
  letter-spacing: 2px;


  cursor: pointer;
  box-shadow: 0 6px 0 #ff6fb3;

  transition: transform 0.08s, box-shadow 0.08s;
}

/* Hover (visual) */
.menu-btn:hover {
  filter: brightness(1.05);
}

/* Click animation */
.menu-btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #ff6fb3;

}

/* Game Area */
.game-area {
  flex: 1;
  background:
    repeating-linear-gradient(
      45deg,
      #ffd6e6,
      #ffd6e6 30px,
      #ffe4ef 30px,
      #ffe4ef 60px
    );
}





