.keyboard-wrap {
  margin-top: auto;
  padding: 20px 0;
}

.keyboard-wrap #keyboard {
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.cK.cKey-backspace {
  background: linear-gradient(135deg, #a800a7 0%, #7a0077 100%) !important;
  background-image: url("https://www.jqueryscript.net/demo/ios-virtual-keyboard/images/light/delete.svg") !important;
  background-size: 20px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  box-shadow: 0 4px 0 #440041 !important;
  border-radius: 8px !important;
}

.cK.cKey-shift,
.cK.cKLine:last-child {
  display: none;
}

.cK.cKKey,
.cK.cKFunction {
  font-size: 18px;
  font-weight: 600;
  padding: 0 10px;
  min-width: 45px;
  height: 50px;
  line-height: 50px;
  border: none;
  border-radius: 8px;
  color: #440041;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  box-shadow: 0 4px 0 #a800a7;
  transition: all 0.2s ease;
  cursor: pointer;
  margin: 2px;
}

.cK.cKKey:hover,
.cK.cKFunction:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 0 #a800a7;
}

.cK.cKKey:active,
.cK.cKFunction:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 #a800a7;
}

.cKLine {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 2px 0;
}

.cKLine:first-child {
  justify-content: center;
}

.cKLine:nth-child(2) {
  justify-content: center;
  padding: 0 20px;
}

.cKLine:nth-child(3) {
  justify-content: center;
  padding: 0 40px;
}
