/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./src/styles/globals.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #f5f5f5;
  background-color: #0d0d0d;
  min-height: 100vh;
}
body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
body::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 9999px;
}
body::-webkit-scrollbar-thumb {
  background: #404040;
  border-radius: 9999px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #666666;
}

h1, h2, h3, h4, h5, h6 {
  color: #f5f5f5;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: #f5f5f5;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  color: #f5f5f5;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: #f5f5f5;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #b3b3b3;
  margin-bottom: 1rem;
}

a {
  color: #bb8fce;
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover {
  color: #9b59b6;
}

code {
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.875rem;
  background: #1a1a1a;
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
}

pre {
  background: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 1.5rem;
  overflow-x: auto;
}
pre::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
pre::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 9999px;
}
pre::-webkit-scrollbar-thumb {
  background: #404040;
  border-radius: 9999px;
}
pre::-webkit-scrollbar-thumb:hover {
  background: #666666;
}
pre code {
  background: transparent;
  padding: 0;
}

button {
  font-family: inherit;
}

input, textarea, select {
  width: 100%;
  padding: 0.5rem 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  color: #f5f5f5;
  background: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 8px;
  transition: all 150ms ease;
}
input::placeholder, textarea::placeholder, select::placeholder {
  color: #666666;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #9b59b6;
  box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.1);
}
input:disabled, textarea:disabled, select:disabled {
  background: #0d0d0d;
  color: #444444;
  cursor: not-allowed;
}

::selection {
  background: #9b59b6;
  color: #f5f5f5;
}

:focus-visible {
  outline: 2px solid #9b59b6;
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: #f5f5f5;
}

.text-secondary {
  color: #b3b3b3;
}

.text-muted {
  color: #666666;
}

.text-purple {
  color: #9b59b6;
}

.text-brown {
  color: #cd853f;
}

.bg-dark {
  background-color: #0d0d0d;
}

.bg-secondary {
  background-color: #1a1a1a;
}

.bg-card {
  background-color: #242424;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.gap-sm {
  gap: 0.5rem;
}

.gap-md {
  gap: 1rem;
}

.gap-lg {
  gap: 1.5rem;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mt-md {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.p-sm {
  padding: 0.5rem;
}

.p-md {
  padding: 1rem;
}

.p-lg {
  padding: 1.5rem;
}

.p-xl {
  padding: 2rem;
}

.rounded-sm {
  border-radius: 4px;
}

.rounded-md {
  border-radius: 8px;
}

.rounded-lg {
  border-radius: 12px;
}

.rounded-full {
  border-radius: 9999px;
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 1s ease-in-out infinite;
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.3s ease-out;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gradient-text {
  background: linear-gradient(135deg, #6c3483 0%, #8b4513 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-purple {
  box-shadow: 0 0 20px rgba(155, 89, 182, 0.3);
}

.glow-brown {
  box-shadow: 0 0 20px rgba(139, 69, 19, 0.3);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: #2d2d2d;
  color: #f5f5f5;
  border-radius: 9999px;
}
.badge.badge-purple {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(155, 89, 182, 0.1);
  color: #bb8fce;
  border-radius: 9999px;
}
.badge.badge-brown {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(139, 69, 19, 0.1);
  color: #cd853f;
  border-radius: 9999px;
}
.badge.badge-success {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  border-radius: 9999px;
}
.badge.badge-warning {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(243, 156, 18, 0.2);
  color: #f39c12;
  border-radius: 9999px;
}
.badge.badge-error {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border-radius: 9999px;
}

.difficulty {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: #2d2d2d;
  color: #f5f5f5;
  border-radius: 9999px;
}
.difficulty.beginner {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  border-radius: 9999px;
}
.difficulty.intermediate {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(243, 156, 18, 0.2);
  color: #f39c12;
  border-radius: 9999px;
}
.difficulty.advanced {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border-radius: 9999px;
}
