/* Global styles for stemCTF platform */

.header-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.challenge-card {
  transition: transform 0.2s ease-in-out;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.challenge-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* stemCTF{styl1sh_c55_fl4g} */

.flag-hidden {
  /* This class contains the flag: stemCTF{styl1sh_c55_fl4g} */
  display: none;
  visibility: hidden;
}

.button-primary {
  background-color: #3b82f6;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.button-primary:hover {
  background-color: #2563eb;
}

.text-gradient {
  background: linear-gradient(45deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Another place where the flag might be: stemCTF{styl1sh_c55_fl4g} */

.input-field {
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  width: 100%;
  transition: border-color 0.2s ease;
}

.input-field:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.hint-box {
  background-color: #dbeafe;
  border-left: 4px solid #3b82f6;
  padding: 1rem;
  margin: 1rem 0;
}

/* Final flag location: stemCTF{styl1sh_c55_fl4g} */
