body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f8f9fa;
  color: #333;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

h1 {
  text-align: center;
  color: #0001fe;
  margin-bottom: 40px;
  padding: 0 10px;
  word-wrap: break-word;
}

.section-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 15px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section {
  background-color: #ffffff;
  border-left: 5px solid #0001fe;
  border-radius: 6px;
  margin-bottom: 30px;
  padding: 20px 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

.section:hover {
  transform: translateY(-2px);
}

.section-title {
  font-size: 20px;
  font-weight: bold;
  color: #0001fe;
  margin-bottom: 10px;
  word-wrap: break-word;
}

.section-content {
  font-size: 16px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

#floatingEmoji {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1000;
  font-size: 32px;
  text-align: center;
  line-height: 50px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  user-select: none;
}

#textBox {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: none;
  max-width: 300px;
  font-family: sans-serif;
  white-space: pre-wrap;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  body {
    padding: 15px 10px;
  }
  .section-container {
    max-width: 100%;
    padding: 0 10px;
  }
  .section {
    padding: 18px 20px;
  }
  .section-title {
    font-size: 18px;
  }
  .section-content {
    font-size: 15px;
  }
}
