#cheatSheetSection {
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(16px);
  color: #f0f4ff;
  margin-top: 20px;
  width: 100%;
}

#cheatSheetSection h2 {
font-family: 'Lemon Milk', sans-serif;
    font-size: 1.5rem;
    color: #1dd1a1;
    text-align: center;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
    box-shadow: none;
    position: relative;
    top: -35px;
}

.cheat-dropdown {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  gap: 12px;
  flex-wrap: wrap;
}

.cheat-dropdown label {
  font-size: 1.1rem;
  color: #ffffffcc;
}

.cheat-dropdown select {
  padding: 10px 16px;
  font-size: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  outline: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.cheat-dropdown select:hover {
  border-color: #7d5fff;
  box-shadow: 0 0 10px #7d5fff55;
  background: rgba(255, 255, 255, 0.1);
}

.cheat-output {
  padding: 24px;
  border-left: 5px solid #506EEC;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  font-family: 'Montserrat', monospace;
  font-size: 1.1rem;
  white-space: pre-wrap;
  line-height: 3.1;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  color: #f0f4ff;
}
.cheat-dropdown select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px 16px;
  font-size: 1rem;
  border-radius: 12px;
  background-color: rgba(40, 40, 60, 0.8);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  outline: none;
  font-family: 'Montserrat', sans-serif;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Optional: arrow icon replacement */
.cheat-dropdown select:focus,
.cheat-dropdown select:hover {
  border-color: #7d5fff;
  box-shadow: 0 0 10px #7d5fff55;
  background-color: rgba(60, 60, 90, 0.9);
}
