@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

#crazy_coder-progress-wrapper {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #FFBDBD 0%, #DDF6D2 55%, #FFBDBD 100%);
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  box-sizing: border-box;
}

.crazy_coder-container {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 26px;
  border: 1.5px solid rgba(255, 189, 189, 0.7);
  box-shadow: 0 0 32px rgba(255, 189, 189, 0.5);
  padding: 32px 26px;
  max-width: 960px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(8px);
}

.crazy_coder-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.crazy_coder-subtitle {
  color: #444;
  margin-bottom: 22px;
}

.crazy_coder-section-title {
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  margin: 16px 0 8px;
  border-left: 4px solid #FFBDBD;
  padding-left: 8px;
}

.crazy_coder-input,
.crazy_coder-select,
textarea.crazy_coder-input {
  padding: 11px 13px;
  border-radius: 12px;
  border: 1px solid rgba(255, 189, 189, 0.55);
  background: rgba(255, 255, 255, 0.96);
  font-size: 0.95rem;
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.crazy_coder-input:focus,
.crazy_coder-select:focus {
  outline: none;
  border-color: #FFBDBD;
  box-shadow: 0 0 10px rgba(255, 189, 189, 0.8);
}

.crazy_coder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
}

.crazy_coder-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.crazy_coder-btn,
.crazy_coder-btn-outline {
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

.crazy_coder-btn {
  background: linear-gradient(135deg, #FFBDBD, #FFD4D4);
  color: #333;
  border: none;
  box-shadow: 0 0 14px rgba(255, 189, 189, 0.6);
}

.crazy_coder-btn:hover {
  transform: translateY(-1.5px);
}

.crazy_coder-btn-outline {
  background: transparent;
  border: 2px solid #FFBDBD;
  color: #FF7F7F;
}

.crazy_coder-btn-outline:hover {
  background: #FFBDBD;
  color: #333;
}

.crazy_coder-output {
  background: rgba(255, 255, 255, 0.95);
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 0 18px rgba(255, 189, 189, 0.35);
  width: 100%;
  max-width: 860px;
  margin: 26px auto 0;
  text-align: left;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #222;
  white-space: pre-line;
}
