.container {
	  max-width: 1184px;
/*   max-width: 800px;
  margin: auto;
  padding: 20px; */
}
#content { text-align: center; margin-bottom: 30px; }
#head { text-align: center;
    margin-bottom: 40px;
    padding: 40px 1px;
    background: linear-gradient(219deg, #FB0E76 0%, #910694 100%) !important;
    border-radius: 12px;
    color: #ffffff !important;
    box-shadow: 0 4px 6px rgba(233, 30, 99, 0.1) !important; }


h1 { font-size: 45px !important;
    font-weight: 700 !important;
    margin-bottom: 10px;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important; 
}




.sub-title { font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto; }

/* INPUT CARD */
.input-card {
  background: #f9f9f9;
  border: 1px solid #f3c6cf;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
}

/* TEXTAREA */
#textInput {
  width: 100%;
  min-height: 90px;
  border-radius: 10px;
  border: 1px solid #f3c6cf;
  padding: 14px;
  font-size: 16px;
  outline: none;
  resize: none;
  background: #fff;
  transition: 0.2s ease;
}

/* FOCUS EFFECT (subtle premium feel) */
#textInput:focus {
  border-color: #e91e63;
  box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.15);
}
/* h1 {
  color: white;
  text-align: center;
  margin-bottom: 20px;
} */

/* #textInput {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: none;
  margin-bottom: 20px;
  font-size: 16px;
} */

/* BOX */
.box {
  background: #eaeaea;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 20px;
}
.preview-text {
  font-family: 
    'Noto Sans SC',
    'Noto Serif SC',
    'Ma Shan Zheng',
    'Zhi Mang Xing',
    sans-serif;

  white-space: pre-wrap;
  word-break: break-word;
}

/* COPY ICON */
/* .copy {
  cursor: pointer;
  font-size: 18px;
} */

.copy {
  cursor: pointer;
  font-size: 18px;
  color: #666;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hover */
.copy:hover {
  color: #e91e63;
  transform: scale(1.15);
}

/* click press */
.copy:active {
  transform: scale(0.9);
}

/* success state */
.copy.copied {
  color: #4caf50;
}