@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

#crazy_coder-keyword-wrapper {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top,
      rgba(111,121,255,1) 0%,
      rgba(111,121,255,0.85) 25%,
      rgba(111,121,255,0.55) 60%,
      #FAFAFA 95%);
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  box-sizing: border-box;
  box-shadow: inset 0 0 120px rgba(111,121,255,0.35);
}

.crazy_coder-container {
  background: rgba(255,255,255,0.35);
  border: 1.5px solid rgba(111,121,255,0.45);
  border-radius: 28px;
  box-shadow:
     0 20px 50px rgba(111,121,255,0.40),
     0 0 40px rgba(111,121,255,0.25) inset;
  padding: 36px 30px;
  max-width: 980px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(12px);
}

.crazy_coder-title {
  font-size: 2.1rem;
  color: #111;
}

.crazy_coder-subtitle {
  color: #333;
  margin-bottom: 22px;
}

.crazy_coder-section-title {
  text-align: left;
  font-size: 1rem;
  margin: 18px 0 8px;
  color: #222;
  font-weight: 600;
  border-left: 4px solid #6F79FF;
  padding-left: 8px;
}

.crazy_coder-input,
.crazy_coder-select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(111,121,255,0.45);
  background: rgba(255,255,255,0.9);
  width: 100%;
  font-size: 0.98rem;
  box-sizing: border-box;
}

.crazy_coder-input:focus,
.crazy_coder-select:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(111,121,255,0.6);
}

.crazy_coder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 12px;
}

.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 20px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 0.95rem;
}

.crazy_coder-btn {
  background: linear-gradient(135deg, #6F79FF, #9AA3FF);
  color: #fff;
  border: none;
  box-shadow: 0 12px 25px rgba(111,121,255,0.45);
}

.crazy_coder-btn:hover {
  transform: translateY(-2px);
}

.crazy_coder-btn-outline {
  background: transparent;
  border: 2px solid #6F79FF;
  color: #6F79FF;
}

.crazy_coder-btn-outline:hover {
  background: #6F79FF;
  color: #fff;
}

.crazy_coder-output {
  background: rgba(255,255,255,0.95);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(111,121,255,0.35);
  box-shadow: 0 14px 32px rgba(111,121,255,0.25);
  margin-top: 25px;
  font-size: 0.95rem;
  line-height: 1.5;
  white-space: pre-line;
  color: #000;
  width: 100%;
  box-sizing: border-box;
}
