@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');

#crazy_coder-scp-wrapper {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle, #6F79FF 0%, #ffffff 85%);
  padding: 50px 15px;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  box-sizing: border-box;
}

.crazy_coder-container {
  background: rgba(255, 255, 255, 0.35);
  border: 1.5px solid rgba(111,121,255,0.35);
  border-radius: 28px;
  box-shadow: 0 0 40px rgba(111,121,255,0.3);
  padding: 40px 32px;
  max-width: 950px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.7s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.crazy_coder-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.crazy_coder-subtitle {
  color: #444;
  font-size: 1rem;
  margin-bottom: 30px;
}

.crazy_coder-section {
  background: rgba(255,255,255,0.55);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 0 12px rgba(111,121,255,0.2);
  margin-bottom: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crazy_coder-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(111,121,255,0.35);
}

.crazy_coder-section-title {
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin: 10px 0 12px;
  border-left: 4px solid #6F79FF;
  padding-left: 8px;
}

.crazy_coder-input,
.crazy_coder-select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(111,121,255,0.4);
  background: rgba(255,255,255,0.9);
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.crazy_coder-input:focus,
.crazy_coder-select:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(111,121,255,0.6);
  transform: scale(1.01);
}

textarea.crazy_coder-input {
  resize: vertical;
  line-height: 1.5;
}

.crazy_coder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.crazy_coder-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.crazy_coder-btn,
.crazy_coder-btn-outline {
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
}

.crazy_coder-btn {
  background: linear-gradient(135deg, #6F79FF, #B4B8FF);
  color: white;
  border: none;
  box-shadow: 0 0 18px rgba(111,121,255,0.4);
}

.crazy_coder-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(111,121,255,0.55);
}

.crazy_coder-btn-outline {
  background: transparent;
  border: 2px solid #6F79FF;
  color: #6F79FF;
}

.crazy_coder-btn-outline:hover {
  background: #6F79FF;
  color: white;
  transform: scale(1.05);
}

.crazy_coder-preview {
  margin-top: 35px;
  display: flex;
  justify-content: center;
}

.crazy_coder-output {
  background: rgba(255,255,255,0.95);
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(111,121,255,0.25);
  text-align: left;
  width: 100%;
  max-width: 850px;
  white-space: pre-line;
  font-family: 'Courier New', monospace;
  font-size: 0.97rem;
  line-height: 1.65;
  color: #111;
  border-left: 5px solid #6F79FF;
  animation: fadeIn 0.5s ease;
}
