body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #fff8dc, #ffe4e1);
  padding: 20px;
  text-align: center;
}

h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

#emojiTray {
  position: relative;
  width: 600px;
  height: 600px;
  border: 3px dashed #ff9800;
  margin: 0 auto 20px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.tile {
  position: absolute;
  font-size: 3em;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  user-select: none;
}

.locked {
  opacity: 0.4;
  pointer-events: none;
}

#scoreBoard {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}

#controls {
  margin-bottom: 20px;
}

#controls button,
#controls select {
  margin: 5px;
  padding: 8px 12px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  background: #ffcc80;
  cursor: pointer;
}

#controls button:disabled {
  background: #ddd;
  cursor: not-allowed;
}

#advocacyPopup {
  background: #fff3cd;
  border: 1px solid #ffeeba;
  padding: 15px;
  margin-top: 20px;
  font-size: 1em;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: none;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

#advocacyPopup.hidden {
  display: none;
}

#snackTip {
  margin-top: 10px;
  font-style: italic;
  color: #555;
}
