@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

#crazy_coder-bionic-reading-wrapper {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle, #6F79FF 0%, #FAFAFA 85%);
  color: #000;
  padding: 30px 10px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  min-height: 100vh;
  backdrop-filter: blur(6px);
}

.crazy_coder-container {
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(111,121,255,0.3);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(111,121,255,0.4);
  padding: 24px;
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.crazy_coder-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111;
}

.crazy_coder-subtitle {
  color: #444;
  margin-bottom: 20px;
}

.crazy_coder-section-title {
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin: 14px 0 8px;
  border-left: 4px solid #6F79FF;
  padding-left: 8px;
}

.crazy_coder-input,
.crazy_coder-select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(111,121,255,0.4);
  background: rgba(255,255,255,0.8);
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.crazy_coder-slider {
  width: 100%;
}

.crazy_coder-btn,
.crazy_coder-btn-outline {
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.crazy_coder-btn {
  background: linear-gradient(135deg, #6F79FF, #B4B8FF);
  color: white;
  border: none;
}

.crazy_coder-btn:hover {
  transform: scale(1.05);
}

.crazy_coder-btn-outline {
  background: transparent;
  border: 2px solid #6F79FF;
  color: #6F79FF;
}

.crazy_coder-btn-outline:hover {
  background: #6F79FF;
  color: white;
}

.crazy_coder-preview {
  margin-top: 25px;
}

.crazy_coder-preview-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
}

.crazy_coder-preview-output {
  background: rgba(255,255,255,0.9);
  border-radius: 14px;
  padding: 25px 22px;
  box-shadow: 0 0 18px rgba(111,121,255,0.25);
  width: 100%;
  max-width: 850px;
  text-align: left;
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.6;
  white-space: pre-line;
}
