* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Comic Sans MS', 'Trebuchet MS', 'Segoe UI', sans-serif;
  background-color: #FAEEDA;
  background-image: radial-gradient(#854F0B 3px, transparent 3px);
  background-size: 28px 28px;
  min-height: 100vh;
  padding: 24px 16px;
}

.page {
  max-width: 620px;
  margin: 0 auto;
}

.card {
  background: #FFFFFF;
  border-radius: 24px;
}

.hero {
  text-align: center;
  padding: 40px 24px;
  margin-bottom: 20px;
}

.cloud-face {
  margin-bottom: 8px;
}

h1 {
  font-size: 28px;
  color: #26215C;
  margin: 0 0 10px;
}

.sparkle {
  display: inline-block;
}

.tagline {
  font-size: 16px;
  color: #534AB7;
  margin: 0;
  line-height: 1.5;
}

.mini-icons {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.mini-icons .icon {
  margin: 0 6px;
  display: inline-flex;
}

.soon-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.section {
  margin-bottom: 24px;
}

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  color: #4A1B0C;
  margin: 0 0 10px;
  padding: 5px 14px;
  background: #FFFFFF;
  border-radius: 20px;
}

.game-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.game-card:hover {
  transform: scale(1.02);
}

.game-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: #F4C0D1;
  color: #72243E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.game-title {
  font-size: 18px;
  font-weight: bold;
  color: #4B1528;
  margin: 0 0 4px;
}

.game-desc {
  font-size: 14px;
  color: #72243E;
  margin: 0;
}

.game-arrow {
  font-size: 20px;
  color: #72243E;
  margin-left: auto;
}

.soon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.soon-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 20px 8px;
  text-align: center;
  color: #3C3489;
}

.soon-card p {
  margin: 0;
  font-size: 13px;
}

.footer {
  text-align: center;
  margin-top: 8px;
}

.footer p {
  display: inline-block;
  color: #4B1528;
  font-size: 13px;
  margin: 0;
  padding: 6px 16px;
  background: #FFFFFF;
  border-radius: 20px;
}

@media (max-width: 400px) {
  h1 {
    font-size: 24px;
  }
  .soon-grid {
    gap: 8px;
  }
}

.idea-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 100;
}

.idea-toggle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 3px solid #5C3D2E;
  background: #F4C0D1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 16px rgba(92, 61, 46, 0.35);
  animation: idea-bounce 2.4s ease-in-out infinite;
}

.idea-toggle:hover {
  transform: scale(1.08);
}

@keyframes idea-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.idea-panel {
  width: 320px;
  background: #FFFFFF;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 4px 16px rgba(92, 61, 46, 0.25);
}

.idea-panel-title {
  font-size: 17px;
  font-weight: bold;
  color: #4A1B0C;
  margin: 0 0 14px;
  text-align: center;
}

.idea-panel input,
.idea-panel textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  border: 2px solid #F4C0D1;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 10px;
  resize: none;
}

.idea-panel input:focus,
.idea-panel textarea:focus {
  outline: none;
  border-color: #D4537E;
}

.idea-panel button[type="submit"] {
  width: 100%;
  background: #F4C0D1;
  color: #4B1528;
  font-family: inherit;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
}

.idea-panel button[type="submit"]:hover {
  background: #ED93B1;
}

.idea-thanks {
  font-size: 13px;
  color: #4B1528;
  text-align: center;
  margin: 0;
}

@media (max-width: 400px) {
  .idea-widget {
    right: 12px;
    bottom: 12px;
  }
  .idea-panel {
    width: 200px;
  }
}
