/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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;
}
/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[9].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[9].use[5]!./src/components/ui/Button.module.scss ***!
  \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.Button_button__wf7LH {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 150ms ease;
  white-space: nowrap;
}
.Button_button__wf7LH:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.Button_button__wf7LH .Button_icon__l9wiG {
  display: flex;
  align-items: center;
  justify-content: center;
}
.Button_button__wf7LH .Button_spinner__UbZ3r {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: Button_spin__bMykP 0.6s linear infinite;
}

.Button_primary__KcBxk {
  background: linear-gradient(135deg, #6c3483 0%, #8b4513 100%);
  color: #f5f5f5;
}
.Button_primary__KcBxk:hover:not(:disabled) {
  box-shadow: 0 0 20px rgba(155, 89, 182, 0.3);
  transform: translateY(-1px);
}
.Button_primary__KcBxk:active:not(:disabled) {
  transform: translateY(0);
}

.Button_secondary__uUg9S {
  background: #2d2d2d;
  color: #f5f5f5;
  border: 1px solid #333333;
}
.Button_secondary__uUg9S:hover:not(:disabled) {
  background: #363636;
  border-color: #404040;
}

.Button_ghost___W6uF {
  background: transparent;
  color: #b3b3b3;
}
.Button_ghost___W6uF:hover:not(:disabled) {
  background: #2d2d2d;
  color: #f5f5f5;
}

.Button_danger__XTXJG {
  background: #e74c3c;
  color: #f5f5f5;
}
.Button_danger__XTXJG:hover:not(:disabled) {
  background: rgb(213.698630137, 43.8356164384, 26.301369863);
  box-shadow: 0 0 20px rgba(231, 76, 60, 0.3);
}

.Button_sm__fHY31 {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}
.Button_sm__fHY31 .Button_spinner__UbZ3r {
  width: 12px;
  height: 12px;
}

.Button_md__qwsc1 {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

.Button_lg__Qcncc {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.Button_lg__Qcncc .Button_spinner__UbZ3r {
  width: 20px;
  height: 20px;
}

@keyframes Button_spin__bMykP {
  to {
    transform: rotate(360deg);
  }
}
/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[9].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[9].use[5]!./src/components/ui/Card.module.scss ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.Card_card__nh0J5 {
  background: #242424;
  border: 1px solid #333333;
  border-radius: 12px;
  transition: all 250ms ease;
  width: 100%;
  text-align: left;
}
.Card_card__nh0J5:where(button) {
  cursor: pointer;
  font-family: inherit;
}

.Card_default__koaTZ:hover {
  border-color: #404040;
}

.Card_interactive__crhZh {
  cursor: pointer;
}
.Card_interactive__crhZh:hover {
  background: #2d2d2d;
  border-color: #6c3483;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}
.Card_interactive__crhZh:active {
  transform: translateY(0);
}

.Card_highlighted__uURzG {
  border-color: #9b59b6;
  background: linear-gradient(180deg, #242424 0%, rgba(108, 52, 131, 0.1) 100%);
}
.Card_highlighted__uURzG:hover {
  box-shadow: 0 0 20px rgba(155, 89, 182, 0.3);
}

.Card_padding-none__EW5lM {
  padding: 0;
}

.Card_padding-sm__TQH3L {
  padding: 0.5rem;
}

.Card_padding-md__sSk5s {
  padding: 1.5rem;
}

.Card_padding-lg__7sWsS {
  padding: 2rem;
}

.Card_cardHeader__lPXdZ {
  margin-bottom: 1rem;
}

.Card_cardTitle__5aXPv {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 0.25rem;
}

.Card_cardDescription__usS8G {
  font-size: 0.875rem;
  color: #b3b3b3;
  margin: 0;
}

.Card_cardContent__CTumB {
  color: #b3b3b3;
}

.Card_cardFooter__tsUfn {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333333;
  display: flex;
  align-items: center;
  gap: 1rem;
}
/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[9].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[9].use[5]!./src/components/ui/Input.module.scss ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.Input_inputWrapper__MU9KB {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}

.Input_label__vH3py {
  font-size: 0.875rem;
  font-weight: 500;
  color: #b3b3b3;
}

.Input_inputContainer__9muVd {
  position: relative;
  display: flex;
  align-items: center;
}
.Input_inputContainer__9muVd.Input_hasError__Y_6oA .Input_input__xDj0z {
  border-color: #e74c3c;
}
.Input_inputContainer__9muVd.Input_hasError__Y_6oA .Input_input__xDj0z:focus {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.Input_input__xDj0z {
  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_input__xDj0z::placeholder {
  color: #666666;
}
.Input_input__xDj0z:focus {
  outline: none;
  border-color: #9b59b6;
  box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.1);
}
.Input_input__xDj0z:disabled {
  background: #0d0d0d;
  color: #444444;
  cursor: not-allowed;
}
.Input_input__xDj0z.Input_hasLeftIcon__OHlna {
  padding-left: 40px;
}
.Input_input__xDj0z.Input_hasRightIcon__WaVp0 {
  padding-right: 40px;
}

.Input_leftIcon__ZiSJq,
.Input_rightIcon__VsqZL {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  pointer-events: none;
}

.Input_leftIcon__ZiSJq {
  left: 1rem;
}

.Input_rightIcon__VsqZL {
  right: 1rem;
}

.Input_error__9IdUI {
  font-size: 0.75rem;
  color: #e74c3c;
}

.Input_hint__CbG8d {
  font-size: 0.75rem;
  color: #666666;
}
/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[9].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[9].use[5]!./src/components/ui/Slider.module.scss ***!
  \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.Slider_sliderWrapper__5GGRa {
  width: 100%;
}

.Slider_header__EJqlo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.Slider_label__BtJkD {
  font-size: 0.875rem;
  font-weight: 500;
  color: #b3b3b3;
}

.Slider_value__oaRqU {
  font-size: 0.875rem;
  font-weight: 600;
  color: #bb8fce;
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
}

.Slider_sliderContainer__QQ7gs {
  position: relative;
  width: 100%;
}

.Slider_slider__469sR {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 9999px;
  background: #2d2d2d;
  cursor: pointer;
  transition: all 150ms ease;
}
.Slider_slider__469sR::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #9b59b6;
  cursor: pointer;
  border: 2px solid #0d0d0d;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 150ms ease;
  transition: all 150ms ease;
}
.Slider_slider__469sR::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(155, 89, 182, 0.3);
}
.Slider_slider__469sR::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #9b59b6;
  cursor: pointer;
  border: 2px solid #0d0d0d;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  -moz-transition: all 150ms ease;
  transition: all 150ms ease;
}
.Slider_slider__469sR::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(155, 89, 182, 0.3);
}
.Slider_slider__469sR:focus {
  outline: none;
}
.Slider_slider__469sR:focus::-webkit-slider-thumb {
  box-shadow: 0 0 20px rgba(155, 89, 182, 0.3);
}
.Slider_slider__469sR:focus::-moz-range-thumb {
  box-shadow: 0 0 20px rgba(155, 89, 182, 0.3);
}
/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[9].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[9].use[5]!./src/components/ui/Badge.module.scss ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.Badge_badge__Jm2Cp {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  border-radius: 9999px;
  white-space: nowrap;
}

.Badge_sm__t8_bA {
  padding: 0.125rem 0.375rem;
  font-size: 0.75rem;
}

.Badge_md__JmUPr {
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
}

.Badge_default__ABsSk {
  background: #2d2d2d;
  color: #b3b3b3;
}

.Badge_purple__6qw7W {
  background: rgba(155, 89, 182, 0.1);
  color: #bb8fce;
}

.Badge_brown__01PPp {
  background: rgba(139, 69, 19, 0.1);
  color: #cd853f;
}

.Badge_success__MW3sF {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
}

.Badge_warning__Px0cY {
  background: rgba(243, 156, 18, 0.15);
  color: #f39c12;
}

.Badge_error__MwqHb {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
}
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[9].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[9].use[5]!./src/components/ui/CodeBlock.module.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.CodeBlock_codeBlock__1gEHZ {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
}

.CodeBlock_languageSelector__n7ql1 {
  display: flex;
  gap: 2px;
  padding: 0.5rem;
  background: #0d0d0d;
  border-bottom: 1px solid #333333;
  overflow-x: auto;
}
.CodeBlock_languageSelector__n7ql1::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.CodeBlock_languageSelector__n7ql1::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 9999px;
}
.CodeBlock_languageSelector__n7ql1::-webkit-scrollbar-thumb {
  background: #404040;
  border-radius: 9999px;
}
.CodeBlock_languageSelector__n7ql1::-webkit-scrollbar-thumb:hover {
  background: #666666;
}
.CodeBlock_languageSelector__n7ql1::-webkit-scrollbar {
  height: 4px;
}

.CodeBlock_langButton__xJMvN {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 1rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #b3b3b3;
  cursor: pointer;
  transition: all 150ms ease;
  white-space: nowrap;
}
.CodeBlock_langButton__xJMvN:hover {
  background: #2d2d2d;
  color: #f5f5f5;
}
.CodeBlock_langButton__xJMvN.CodeBlock_active___asO7 {
  background: rgba(155, 89, 182, 0.1);
  border-color: #9b59b6;
  color: #bb8fce;
}

.CodeBlock_langIcon__3Cliy {
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 6px;
  background: #242424;
  border-radius: 4px;
}
.CodeBlock_active___asO7 .CodeBlock_langIcon__3Cliy {
  background: #9b59b6;
  color: white;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .CodeBlock_langLabel__Imsl2 {
    display: none;
  }
}

.CodeBlock_codeContainer__6FDHR {
  max-height: 400px;
  overflow: auto;
}
.CodeBlock_codeContainer__6FDHR::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.CodeBlock_codeContainer__6FDHR::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 9999px;
}
.CodeBlock_codeContainer__6FDHR::-webkit-scrollbar-thumb {
  background: #404040;
  border-radius: 9999px;
}
.CodeBlock_codeContainer__6FDHR::-webkit-scrollbar-thumb:hover {
  background: #666666;
}

.CodeBlock_code__UAU7m {
  margin: 0;
  padding: 1.5rem;
}
.CodeBlock_code__UAU7m code {
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #f5f5f5;
  white-space: pre;
}
/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[9].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[9].use[5]!./src/components/auth/AuthModal.module.scss ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.AuthModal_overlay__atS8f {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.AuthModal_modal__1Q2mZ {
  background: #242424;
  border: 1px solid #333333;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  z-index: 500;
  overflow: hidden;
}

.AuthModal_header__c8gRf {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid #333333;
}
.AuthModal_header__c8gRf h2 {
  flex: 1 1;
  color: #f5f5f5;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.AuthModal_headerIcon__jtmjh {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(155, 89, 182, 0.1);
  border-radius: 8px;
  color: #bb8fce;
  flex-shrink: 0;
}

.AuthModal_closeButton__hDgUL {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: #666666;
  cursor: pointer;
  transition: all 150ms ease;
}
.AuthModal_closeButton__hDgUL:hover {
  background: #2d2d2d;
  color: #f5f5f5;
}

.AuthModal_content__Q6zu9 {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}

.AuthModal_errorMessage__hZUCe {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.2);
  border-radius: 8px;
  color: #e74c3c;
  font-size: 0.875rem;
}
.AuthModal_errorMessage__hZUCe svg {
  flex-shrink: 0;
}

.AuthModal_submitButton__oWYwd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 150ms ease;
}
.AuthModal_submitButton__oWYwd:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.AuthModal_submitButton__oWYwd {
  background: linear-gradient(135deg, #6c3483 0%, #8b4513 100%);
  color: #f5f5f5;
}
.AuthModal_submitButton__oWYwd:hover:not(:disabled) {
  box-shadow: 0 0 20px rgba(155, 89, 182, 0.3);
  transform: translateY(-1px);
}
.AuthModal_submitButton__oWYwd:active:not(:disabled) {
  transform: translateY(0);
}
.AuthModal_submitButton__oWYwd {
  width: 100%;
  padding: 1rem;
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}
.AuthModal_submitButton__oWYwd:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.AuthModal_spinner__b_hmG {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: AuthModal_spin__z8cGt 0.8s linear infinite;
}

@keyframes AuthModal_spin__z8cGt {
  to {
    transform: rotate(360deg);
  }
}
.AuthModal_footer__7L5Tk {
  padding: 1.5rem;
  border-top: 1px solid #333333;
  text-align: center;
}
.AuthModal_footer__7L5Tk p {
  color: #666666;
  font-size: 0.875rem;
  margin: 0;
}

.AuthModal_switchButton__nRH95 {
  background: none;
  border: none;
  color: #bb8fce;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  margin-left: 0.25rem;
  transition: color 150ms ease;
}
.AuthModal_switchButton__nRH95:hover {
  color: #9b59b6;
  text-decoration: underline;
}
