/* CRYPTIC CODE SOLVER - Section Styles */
.cryptic-code-solver {
  padding: 60px 20px;
  background: linear-gradient(135deg,#8e2de2,#4a00e0);
  border-radius: 20px;
  color: #fff;
  font-family: 'Urbanist', sans-serif;
  text-align: center;
  margin-bottom: 40px;
}

.ccs-card {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  color: #222;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  text-align: center;
}

#ccsInput {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  margin-bottom: 12px;
  resize: none;
}

.btn {
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.decode-btn {
  background: linear-gradient(90deg,#36d1dc,#5b86e5);
}

.ccs-output {
  margin-top: 16px;
  font-size: 16px;
  color: #111;
  text-align: left;
  word-wrap: break-word;
}
