@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

#crazy_coder-roster-wrapper {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle, #6F79FF 0%, #ffffff 85%);
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  box-sizing: border-box;
}

.crazy_coder-container {
  background: rgba(255,255,255,0.25);
  border: 1.5px solid rgba(111,121,255,0.35);
  border-radius: 24px;
  box-shadow: 0 0 35px rgba(111,121,255,0.35);
  padding: 36px 28px;
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

.crazy_coder-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.crazy_coder-subtitle {
  color: #555;
  margin-bottom: 25px;
}

.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.9);
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.25s ease;
}

.crazy_coder-input:focus,
.crazy_coder-select:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(111,121,255,0.5);
}

.crazy_coder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.crazy_coder-checkboxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 0;
}

.crazy_coder-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.crazy_coder-btn,
.crazy_coder-btn-outline {
  padding: 10px 18px;
  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;
  box-shadow: 0 0 14px rgba(111,121,255,0.4);
}

.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: 35px;
  display: flex;
  justify-content: center;
}

.crazy_coder-output {
  background: rgba(255,255,255,0.9);
  padding: 25px;
  border-radius: 14px;
  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;
}
