@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=EB+Garamond:wght@500&family=Great+Vibes&family=Roboto+Mono:wght@500&display=swap');

#crazy_coder-letter-wrapper {
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 30px 10px;
  box-sizing: border-box;
}

#crazy_coder-letter-wrapper .crazy_coder-container {
  background: rgba(20,20,20,0.92);
  border: 1px solid rgba(74,58,253,0.4);
  box-shadow: 0 0 25px rgba(74,58,253,0.3);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 700px;
}

#crazy_coder-letter-wrapper .crazy_coder-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

#crazy_coder-letter-wrapper .crazy_coder-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 20px;
}

#crazy_coder-letter-wrapper .crazy_coder-inputs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#crazy_coder-letter-wrapper .crazy_coder-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #cfcafc;
}

#crazy_coder-letter-wrapper .crazy_coder-input,
#crazy_coder-letter-wrapper .crazy_coder-select {
  border: 1px solid rgba(124,104,255,0.35);
  background: #0f0f10;
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: 0.3s;
}

#crazy_coder-letter-wrapper .crazy_coder-input:focus,
#crazy_coder-letter-wrapper .crazy_coder-select:focus {
  border-color: #4A3AFD;
  box-shadow: 0 0 10px rgba(74,58,253,0.6);
  outline: none;
}

#crazy_coder-letter-wrapper .crazy_coder-btn {
  margin-top: 10px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(90deg, #4A3AFD, #7C68FF);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#crazy_coder-letter-wrapper .crazy_coder-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 25px rgba(124,104,255,0.7);
}

#crazy_coder-letter-wrapper .crazy_coder-btn-outline {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(124,104,255,0.6);
  background: transparent;
  color: #e9e6ff;
  cursor: pointer;
  transition: 0.3s;
}
#crazy_coder-letter-wrapper .crazy_coder-btn-outline:hover {
  background: rgba(124,104,255,0.15);
}

#crazy_coder-letter-wrapper .crazy_coder-letter-output {
  margin-top: 20px;
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 24px;
  font-size: 1rem;
  min-height: 200px;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.1);
  white-space: pre-wrap;
  transition: background 0.3s ease, font-family 0.3s ease;
}

#crazy_coder-letter-wrapper .crazy_coder-letter-output.vintage {
  background: #fdf6e3;
  color: #3b2e1e;
  font-family: 'EB Garamond', serif;
  border: 1px solid #e6d8b4;
}

#crazy_coder-letter-wrapper .crazy_coder-letter-output.corporate {
  background: #fafafa;
  color: #1a1a1a;
  font-family: 'Roboto', sans-serif;
  border-left: 6px solid #4A3AFD;
}

#crazy_coder-letter-wrapper .crazy_coder-letter-output.clean {
  background: #ffffff;
  color: #111;
  font-family: 'Poppins', sans-serif;
}
