@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;700;900&display=swap');

*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff;
  color: #0a0a0a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.font-mono {
  font-family: 'Space Grotesk', monospace;
}

/* Neo-Brutalist Utility Classes */
.brutal-border {
  border: 2px solid #0a0a0a;
}

.brutal-border-3 {
  border: 3px solid #0a0a0a;
}

.brutal-shadow {
  box-shadow: 4px 4px 0px 0px #0a0a0a;
}

.brutal-shadow-lg {
  box-shadow: 8px 8px 0px 0px #0a0a0a;
}

.brutal-shadow-yellow {
  box-shadow: 4px 4px 0px 0px #FFD700;
}

.brutal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.75rem;
  border: 2px solid #0a0a0a;
  background-color: #0a0a0a;
  color: #ffffff;
  box-shadow: 3px 3px 0px 0px #FFD700;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.brutal-btn:hover {
  background-color: #FFD700;
  color: #0a0a0a;
  box-shadow: 5px 5px 0px 0px #0a0a0a;
  transform: translate(-2px, -2px);
}

.brutal-btn-yellow {
  background-color: #FFD700;
  color: #0a0a0a;
  box-shadow: 3px 3px 0px 0px #0a0a0a;
}

.brutal-btn-yellow:hover {
  background-color: #FFC700;
  box-shadow: 5px 5px 0px 0px #0a0a0a;
  transform: translate(-2px, -2px);
}

.brutal-card {
  background: #ffffff;
  border: 2px solid #0a0a0a;
  border-radius: 1.25rem;
  box-shadow: 6px 6px 0px 0px #0a0a0a;
  transition: all 0.25s ease;
  overflow: hidden;
}

.brutal-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px 0px #0a0a0a;
}

.brutal-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 9999px;
  border: 1.5px solid #0a0a0a;
  background-color: rgba(255, 215, 0, 0.2);
  color: #0a0a0a;
}

/* Sensei LMS Style Customizations */
.sensei-message {
  border: 2px solid #0a0a0a !important;
  border-radius: 0.75rem !important;
  box-shadow: 4px 4px 0px 0px #0a0a0a !important;
  font-weight: 700 !important;
  padding: 1rem 1.25rem !important;
  margin-bottom: 1.5rem !important;
}

.sensei-message.alert {
  background-color: #fff9db !important;
  color: #0a0a0a !important;
}

.sensei-message.tick {
  background-color: #e6fcf5 !important;
  color: #087f5b !important;
}

#sensei-quiz-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 1.5rem 0 !important;
}

#sensei-quiz-list > li {
  background: #ffffff;
  border: 2px solid #0a0a0a;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 4px 4px 0px 0px #0a0a0a;
}

#sensei-quiz-list > li h4,
#sensei-quiz-list > li h3,
#sensei-quiz-list > li .question-title {
  font-size: 1.125rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #0a0a0a;
  line-height: 1.4;
}

#sensei-quiz-list ul.answers {
  list-style: none !important;
  padding: 0 !important;
  margin-top: 1rem !important;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

#sensei-quiz-list ul.answers li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.25rem;
  border: 2px solid #0a0a0a;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.15s ease;
  background: #fdfdfd;
  font-weight: 600;
  font-size: 0.9375rem;
}

#sensei-quiz-list ul.answers li:hover {
  background: #fff9db;
  transform: translateY(-1px);
}

#sensei-quiz-list ul.answers li input[type="radio"],
#sensei-quiz-list ul.answers li input[type="checkbox"] {
  accent-color: #0a0a0a;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  flex-shrink: 0;
}

#sensei-quiz-list ul.answers li label {
  cursor: pointer;
  width: 100%;
  margin: 0;
}

.sensei-quiz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #0a0a0a;
}

.sensei-quiz-actions input[type="submit"],
.sensei-quiz-actions button,
.sensei-submit-quiz,
.sensei-reset-quiz,
.sensei-save-quiz {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0.875rem 2rem !important;
  font-weight: 900 !important;
  font-size: 0.875rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border-radius: 0.75rem !important;
  border: 2px solid #0a0a0a !important;
  background-color: #FFD700 !important;
  color: #0a0a0a !important;
  box-shadow: 4px 4px 0px 0px #0a0a0a !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

.sensei-quiz-actions input[type="submit"]:hover,
.sensei-quiz-actions button:hover,
.sensei-submit-quiz:hover,
.sensei-reset-quiz:hover,
.sensei-save-quiz:hover {
  background-color: #0a0a0a !important;
  color: #FFD700 !important;
  transform: translate(-2px, -2px) !important;
  box-shadow: 6px 6px 0px 0px #0a0a0a !important;
}

