/* Full page styling for Confetti Cannon */
.simple { background: #fff; height: 100vh; overflow: hidden; }
.center-wrap { width: 100%; height: 100%; box-sizing: border-box; }

.meme-title {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  z-index: 10;
  display: block;
  margin: 0;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 24px;
  color: #111827;
  font-weight: 600;
  text-align: center;
}

.content-area { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }

#canvas-container { width: 100vw; height: 100vh; position: relative; }
#confetti-canvas { width: 100%; height: 100%; }

.instruction { position: fixed; bottom: 12px; left: 50%; transform: translateX(-50%); text-align:center; color:#6b7280; font-size:14px; background: rgba(255,255,255,0.9); padding: 6px 12px; border-radius: 8px; }