@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  background-color: #ffffff;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  line-height: 1;
  color: #0a0a0a;
  letter-spacing: -0.03em;
}

h1 {
  font-size: 1.875rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}
a:hover {
  color: #4338ca;
}

strong, b {
  font-weight: 600;
}

code {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.9em;
}

:focus-visible {
  outline: 2px solid #4338ca;
  outline-offset: 2px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
}

td {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border-bottom: 1px solid #f3f4f6;
  color: #374151;
}

input[type=text],
input[type=email],
input[type=password],
textarea,
select {
  width: 100%;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 1px solid #d1d5db;
  background: transparent;
  color: #0a0a0a;
  font-size: 1rem;
  transition: border-color 0.2s;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-bottom-color: #4338ca;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #9ca3af;
}

textarea {
  resize: vertical;
}

label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.container, .container-wide, .container-narrow {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container, .container-wide, .container-narrow {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.container-narrow {
  max-width: 720px;
}

.container-wide {
  max-width: 1400px;
}

.flex {
  display: flex;
}

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

.flex-wrap {
  flex-wrap: wrap;
}

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.flex-1 {
  flex: 1;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.font-mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

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

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

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

.text-muted {
  color: #6b7280;
}

.text-body {
  color: #374151;
}

.text-accent {
  color: #4338ca;
}

.text-success {
  color: #059669;
}

.text-warning {
  color: #d97706;
}

.text-error {
  color: #dc2626;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.05em;
}

.leading-tight {
  line-height: 1;
}

.leading-snug {
  line-height: 1.3;
}

.leading-normal {
  line-height: 1.6;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.p-0 {
  padding: 0;
}

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

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

.ml-1 {
  margin-left: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.p-1 {
  padding: 0.25rem;
}

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

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

.ml-2 {
  margin-left: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.p-2 {
  padding: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.p-3 {
  padding: 0.75rem;
}

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

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

.ml-4 {
  margin-left: 1rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pr-4 {
  padding-right: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.p-4 {
  padding: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.p-5 {
  padding: 1.25rem;
}

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

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

.ml-6 {
  margin-left: 1.5rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pr-6 {
  padding-right: 1.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.p-6 {
  padding: 1.5rem;
}

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

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

.ml-8 {
  margin-left: 2rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pr-8 {
  padding-right: 2rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.p-8 {
  padding: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.mr-10 {
  margin-right: 2.5rem;
}

.mx-10 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.p-10 {
  padding: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.ml-12 {
  margin-left: 3rem;
}

.mr-12 {
  margin-right: 3rem;
}

.mx-12 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pl-12 {
  padding-left: 3rem;
}

.pr-12 {
  padding-right: 3rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.p-12 {
  padding: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.ml-16 {
  margin-left: 4rem;
}

.mr-16 {
  margin-right: 4rem;
}

.mx-16 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.my-16 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pl-16 {
  padding-left: 4rem;
}

.pr-16 {
  padding-right: 4rem;
}

.px-16 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.p-16 {
  padding: 4rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.ml-20 {
  margin-left: 5rem;
}

.mr-20 {
  margin-right: 5rem;
}

.mx-20 {
  margin-left: 5rem;
  margin-right: 5rem;
}

.my-20 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pl-20 {
  padding-left: 5rem;
}

.pr-20 {
  padding-right: 5rem;
}

.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.p-20 {
  padding: 5rem;
}

.mt-24 {
  margin-top: 6rem;
}

.mb-24 {
  margin-bottom: 6rem;
}

.ml-24 {
  margin-left: 6rem;
}

.mr-24 {
  margin-right: 6rem;
}

.mx-24 {
  margin-left: 6rem;
  margin-right: 6rem;
}

.my-24 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.pt-24 {
  padding-top: 6rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.pl-24 {
  padding-left: 6rem;
}

.pr-24 {
  padding-right: 6rem;
}

.px-24 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.p-24 {
  padding: 6rem;
}

.mt-32 {
  margin-top: 8rem;
}

.mb-32 {
  margin-bottom: 8rem;
}

.ml-32 {
  margin-left: 8rem;
}

.mr-32 {
  margin-right: 8rem;
}

.mx-32 {
  margin-left: 8rem;
  margin-right: 8rem;
}

.my-32 {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pb-32 {
  padding-bottom: 8rem;
}

.pl-32 {
  padding-left: 8rem;
}

.pr-32 {
  padding-right: 8rem;
}

.px-32 {
  padding-left: 8rem;
  padding-right: 8rem;
}

.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.p-32 {
  padding: 8rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
  .md\:block {
    display: block;
  }
  .md\:flex {
    display: flex;
  }
  .md\:grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .md\:grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .lg\:hidden {
    display: none;
  }
  .lg\:block {
    display: block;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .lg\:grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-in {
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.navbar {
  position: sticky;
  top: 0;
  background: var(--white, #ffffff);
  z-index: 100;
  border-bottom: 1px solid #e5e7eb;
}
.navbar__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 64px 12px;
}
@media (max-width: 768px) {
  .navbar__top {
    padding: 14px 24px 10px;
  }
}
.navbar__logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  text-decoration: none;
}
.navbar__logo span {
  color: #4338ca;
}
.navbar__logo:hover {
  color: #0a0a0a;
}
.navbar__top-right {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media (max-width: 768px) {
  .navbar__top-right {
    display: none;
  }
}
.navbar__login {
  font-size: 0.72rem;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6b7280;
  transition: color 0.2s;
}
.navbar__login:hover {
  color: #0a0a0a;
}
.navbar__signup {
  font-size: 0.72rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4338ca;
  transition: color 0.2s;
}
.navbar__signup:hover {
  color: #3730a3;
}
.navbar__user-wrapper {
  position: relative;
}
.navbar__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eef2ff;
  color: #4338ca;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  font-family: inherit;
  padding: 0;
}
.navbar__avatar:hover, .navbar__avatar.is-open {
  border-color: #4338ca;
}
.navbar__popup {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  min-width: 200px;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.navbar__popup.is-open {
  display: block;
}
.navbar__popup-header {
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
}
.navbar__popup-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0a0a0a;
}
.navbar__popup-email {
  font-size: 0.7rem;
  color: #9ca3af;
  margin-top: 2px;
}
.navbar__popup-links {
  padding: 8px 0;
}
.navbar__popup-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.15s;
  letter-spacing: 0.02em;
}
.navbar__popup-link:hover {
  background: #f9fafb;
  color: #0a0a0a;
}
.navbar__popup-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.navbar__popup-footer {
  padding: 8px 0;
  border-top: 1px solid #f3f4f6;
}
.navbar__popup-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #9ca3af;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
  text-align: left;
  letter-spacing: 0.02em;
}
.navbar__popup-logout:hover {
  background: #f9fafb;
  color: #0a0a0a;
}
.navbar__popup-logout svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.navbar__locale {
  display: flex;
  align-items: center;
}
.navbar__locale-select {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  background: none;
  border: 1px solid #e5e7eb;
  padding: 5px 10px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  padding-right: 22px;
}
.navbar__locale-select:hover, .navbar__locale-select:focus {
  border-color: #9ca3af;
  color: #0a0a0a;
  outline: none;
}
.navbar__bottom {
  display: flex;
  gap: 0;
  padding: 0 64px;
  border-top: 1px solid #f3f4f6;
}
@media (max-width: 768px) {
  .navbar__bottom {
    display: none;
  }
}
.navbar__bottom a {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 24px 12px 0;
  transition: color 0.2s;
  position: relative;
}
.navbar__bottom a:hover {
  color: #0a0a0a;
}
.navbar__bottom a.is-active {
  color: #0a0a0a;
  font-weight: 600;
}
.navbar__bottom a.is-active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 24px;
  height: 2px;
  background: #4338ca;
}
.navbar__mobile-toggle {
  display: none;
  width: 24px;
  height: 24px;
  color: #0a0a0a;
}
@media (max-width: 768px) {
  .navbar__mobile-toggle {
    display: block;
  }
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 200;
}
.nav-overlay.is-open {
  display: block;
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.nav-mobile.is-open {
  transform: translateX(0);
}
.nav-mobile__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.nav-mobile__close {
  width: 24px;
  height: 24px;
  color: #6b7280;
}
.nav-mobile__close:hover {
  color: #0a0a0a;
}
.nav-mobile__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.nav-mobile__link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4b5563;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
  transition: color 0.2s;
}
.nav-mobile__link:hover {
  color: #0a0a0a;
}
.nav-mobile__locale {
  display: flex;
  align-items: center;
  padding: 12px 0;
  margin-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
}
.nav-mobile__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  padding: 28px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e7eb;
}
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    text-align: center;
  }
}
.footer__copy {
  font-size: 0.78rem;
  color: #9ca3af;
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 0.78rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover {
  color: #0a0a0a;
}

.hero {
  padding: 120px 64px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    padding: 64px 24px 48px;
  }
}
.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4338ca;
  background: #eef2ff;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.25rem;
  }
}
.hero h1 em {
  font-style: normal;
  color: #4338ca;
}
.hero__bar {
  width: 80px;
  height: 5px;
  background: #0a0a0a;
  margin: 32px auto;
}
.hero__desc {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}
.hero__cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__visual {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .hero__visual {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
  }
}
.hero__visual-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 32px;
  text-align: left;
}
.hero__visual-card .number {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #6366f1;
  opacity: 0.3;
}
.hero__visual-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 8px;
}
.hero__visual-card p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 8px;
  line-height: 1.5;
}

.hero--auth {
  padding: 80px 64px 48px;
}
@media (max-width: 768px) {
  .hero--auth {
    padding: 48px 24px 32px;
  }
}
.hero--auth h1 {
  font-size: 2.25rem;
}
@media (max-width: 640px) {
  .hero--auth h1 {
    font-size: 1.875rem;
  }
}
.hero--auth__stats {
  display: inline-flex;
  gap: 24px;
  margin-top: 16px;
  font-size: 0.875rem;
  color: #6b7280;
}
.hero--auth__stats strong {
  color: #0a0a0a;
  font-weight: 700;
}

.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 16px 36px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}
@media (max-width: 640px) {
  .btn-primary,
  .btn-outline {
    padding: 12px 24px;
    font-size: 0.75rem;
  }
}

.btn-primary {
  background: #4338ca;
  color: #ffffff;
}
.btn-primary:hover {
  background: #3730a3;
  color: #ffffff;
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-outline {
  background: transparent;
  border: 2px solid #0a0a0a;
  color: #0a0a0a;
}
.btn-outline:hover {
  background: #0a0a0a;
  color: #ffffff;
}
.btn-outline--accent {
  border-color: #4338ca;
  color: #4338ca;
}
.btn-outline--accent:hover {
  background: #4338ca;
  color: #ffffff;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.75rem;
}

.btn-full {
  width: 100%;
}

.section {
  padding: 96px 64px;
}
@media (max-width: 768px) {
  .section {
    padding: 48px 24px;
  }
}
.section--gray {
  background: #f9fafb;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #4338ca;
  margin-bottom: 12px;
  display: block;
}

.section__header {
  margin-bottom: 56px;
}
.section__header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
@media (max-width: 640px) {
  .section__header h2 {
    font-size: 1.875rem;
  }
}
.section__header p {
  color: #6b7280;
  margin-top: 12px;
  font-size: 1rem;
  max-width: 480px;
}

.divider {
  display: flex;
  align-items: center;
  padding: 0 64px;
  gap: 24px;
}
@media (max-width: 768px) {
  .divider {
    padding: 0 24px;
  }
}
.divider__line {
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}
.divider__text {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #9ca3af;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #e5e7eb;
}
@media (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

.stat {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid #e5e7eb;
}
@media (max-width: 768px) {
  .stat {
    border-bottom: 1px solid #e5e7eb;
  }
}
.stat:last-child {
  border-right: none;
}
.stat__number {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat__number span {
  color: #4338ca;
}
.stat__label {
  font-size: 0.7rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 8px;
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 32px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
}
.feature:hover {
  border-color: #6366f1;
  background: #eef2ff;
}
.feature__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}
.feature__icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
}
.feature h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0;
}
.feature p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0;
}
@media (max-width: 640px) {
  .tracks-grid {
    grid-template-columns: 1fr;
  }
}

.track-card {
  background: #ffffff;
  padding: 40px 36px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  display: block;
  color: inherit;
}
.track-card:hover {
  background: #f9fafb;
  color: inherit;
}
.track-card:hover::after {
  color: #4338ca;
  transform: translateX(4px);
}
.track-card::after {
  content: "→";
  position: absolute;
  top: 40px;
  right: 36px;
  font-size: 1.25rem;
  color: #d1d5db;
  transition: all 0.3s;
}
.track-card__name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.track-card__count {
  font-size: 0.75rem;
  color: #4338ca;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.track-card__desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 16px;
  line-height: 1.6;
  padding-right: 24px;
}
.track-card__bar {
  margin-top: 24px;
}
.track-card__bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin-bottom: 6px;
}
.track-card__bar-label strong {
  color: #0a0a0a;
  font-weight: 700;
}
.track-card__bar-track {
  height: 3px;
  background: #e5e7eb;
}
.track-card__bar-fill {
  height: 3px;
  background: #4338ca;
}
.track-card--detail {
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid #e5e7eb;
  cursor: default;
  background: #ffffff;
}
.track-card--detail::after {
  display: none;
}
.track-card--detail:hover {
  background: #ffffff;
}

.leaderboard {
  max-width: 720px;
}
.leaderboard__row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
}
.leaderboard__rank {
  font-size: 0.8rem;
  font-weight: 800;
  color: #9ca3af;
  width: 28px;
  text-align: center;
}
.leaderboard__rank--top {
  color: #4338ca;
}
.leaderboard__name {
  flex: 1;
  font-weight: 600;
  font-size: 0.95rem;
}
.leaderboard__score {
  font-weight: 800;
  font-size: 0.95rem;
}
.leaderboard__bar {
  width: 120px;
  height: 3px;
  background: #f3f4f6;
}
@media (max-width: 640px) {
  .leaderboard__bar {
    display: none;
  }
}
.leaderboard__bar-fill {
  height: 3px;
  background: #6366f1;
}
.leaderboard__row--you {
  background: #eef2ff;
  margin: 0 -12px;
  padding: 10px 12px;
}
.leaderboard__empty {
  font-size: 0.875rem;
  color: #9ca3af;
  padding: 16px 0;
}

.cta {
  text-align: center;
  padding: 120px 64px;
  background: #0a0a0a;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cta {
    padding: 64px 24px;
  }
}
.cta h2 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ffffff;
}
@media (max-width: 640px) {
  .cta h2 {
    font-size: 1.875rem;
  }
}
.cta p {
  color: #9ca3af;
  margin-top: 16px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}
.cta .btn-primary {
  display: inline-block;
  margin-top: 36px;
  background: #6366f1;
}
.cta .btn-primary:hover {
  background: #4338ca;
}

.alert {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  border: 1px solid;
  margin-bottom: 1rem;
}
.alert--error {
  border-color: #dc2626;
  color: #dc2626;
  background: #fcecec;
}
.alert--success {
  border-color: #059669;
  color: #059669;
  background: #b7fde7;
}
.alert--warning {
  border-color: #d97706;
  color: #d97706;
  background: #fdd8ae;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge--accent {
  color: #4338ca;
  background: #eef2ff;
}
.badge--success {
  color: #059669;
  background: #b7fde7;
}
.badge--warning {
  color: #d97706;
  background: #fdd8ae;
}
.badge--error {
  color: #dc2626;
  background: #fcecec;
}

.score-success {
  color: #059669;
  font-weight: 700;
}

.score-warning {
  color: #d97706;
  font-weight: 700;
}

.score-error {
  color: #dc2626;
  font-weight: 700;
}

.page-header {
  padding: 80px 64px 48px;
  text-align: center;
}
@media (max-width: 768px) {
  .page-header {
    padding: 48px 24px 32px;
  }
}
.page-header h1 {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}
@media (max-width: 640px) {
  .page-header h1 {
    font-size: 1.875rem;
  }
}
.page-header p {
  color: #6b7280;
  margin-top: 8px;
  font-size: 1rem;
}

.auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #f9fafb;
}
.auth__card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 3rem 2rem;
  border: 1px solid #e5e7eb;
}
@media (max-width: 640px) {
  .auth__card {
    padding: 2rem 1.5rem;
  }
}
.auth__logo {
  display: block;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: #0a0a0a;
}
.auth__logo span {
  color: #4338ca;
}
.auth__logo:hover {
  color: #0a0a0a;
}
.auth__form-group {
  margin-bottom: 1.5rem;
}
.auth__footer {
  margin-top: 2rem;
  text-align: center;
  color: #6b7280;
}
.auth__footer a {
  color: #4338ca;
  font-weight: 600;
}
.auth__footer a:hover {
  color: #3730a3;
}

.activity__list {
  display: flex;
  flex-direction: column;
}
.activity__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
}
.activity__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.activity__badge {
  font-size: 0.75rem;
  padding: 2px 8px;
  font-weight: 600;
  border: 1px solid #e5e7eb;
}
.activity__badge--quiz {
  color: #4338ca;
  border-color: #eef2ff;
  background: #eef2ff;
}
.activity__badge--daily_challenge {
  color: #059669;
  border-color: #86fbd7;
  background: #9efcdf;
}
.activity__time {
  color: #9ca3af;
  font-size: 0.75rem;
}
.activity__sentence {
  color: #4b5563;
}

.dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #e5e7eb;
  margin-bottom: 3rem;
}
@media (max-width: 640px) {
  .dashboard__stats {
    grid-template-columns: 1fr;
  }
}
.dashboard__stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid #e5e7eb;
}
@media (max-width: 640px) {
  .dashboard__stat {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
}
.dashboard__stat:last-child {
  border-right: none;
}
@media (max-width: 640px) {
  .dashboard__stat:last-child {
    border-bottom: none;
  }
}
.dashboard__stat-value {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.dashboard__stat-label {
  font-size: 0.7rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  font-weight: 500;
}
.dashboard__badges {
  margin-top: 3rem;
}
.dashboard__badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
}
.dashboard__empty {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px solid #e5e7eb;
}
.dashboard__empty p {
  color: #6b7280;
  margin-bottom: 0.5rem;
}
.dashboard__empty .btn-primary {
  margin-top: 1rem;
}
.dashboard__tracks {
  margin-bottom: 3rem;
}
.dashboard__track-group {
  border: 1px solid #e5e7eb;
  margin-bottom: 16px;
  padding: 24px;
}
.dashboard__track-group:last-child {
  margin-bottom: 0;
}
.dashboard__track-name {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 16px;
}
.dashboard__category-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}
.dashboard__category-row:last-child {
  border-bottom: none;
}
@media (max-width: 640px) {
  .dashboard__category-row {
    flex-wrap: wrap;
  }
}
.dashboard__category-name {
  flex-shrink: 0;
  width: 35%;
  font-size: 0.875rem;
}
@media (max-width: 640px) {
  .dashboard__category-name {
    width: 100%;
  }
}
.dashboard__category-bar {
  flex: 1;
  height: 8px;
  background: #f3f4f6;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .dashboard__category-bar {
    width: 100%;
    order: 3;
  }
}
.dashboard__category-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.4s ease;
}
.dashboard__category-fill--success {
  background: #059669;
}
.dashboard__category-fill--warning {
  background: #d97706;
}
.dashboard__category-fill--error {
  background: #dc2626;
}
.dashboard__category-score {
  width: 50px;
  text-align: right;
  font-size: 0.875rem;
}
.dashboard__category-detail {
  color: #9ca3af;
  font-size: 0.75rem;
  width: 60px;
  text-align: right;
}

.arena-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #e5e7eb;
}
@media (max-width: 768px) {
  .arena-grid {
    grid-template-columns: 1fr;
  }
}

.arena-card {
  padding: 40px;
}
@media (max-width: 640px) {
  .arena-card {
    padding: 24px;
  }
}
.arena-card__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4338ca;
  margin-bottom: 8px;
}
.arena-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.arena-card__meta {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.arena-card__meta-item {
  font-size: 0.78rem;
  color: #6b7280;
}
.arena-card__meta-item strong {
  color: #0a0a0a;
  font-weight: 700;
}
.arena-card__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}
.arena-card__stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 4px;
}
.arena-card__stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.arena-card__stat-value--success {
  color: #059669;
}
.arena-card__stat-value--warning {
  color: #d97706;
}
.arena-card__stat-value--error {
  color: #dc2626;
}
.arena-card__stat-value--muted {
  color: #d1d5db;
}

.arena-leaderboard {
  padding: 40px;
  border-left: 1px solid #e5e7eb;
}
@media (max-width: 768px) {
  .arena-leaderboard {
    border-left: none;
    border-top: 1px solid #e5e7eb;
  }
}
@media (max-width: 640px) {
  .arena-leaderboard {
    padding: 24px;
  }
}
.arena-leaderboard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.arena-leaderboard__title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.arena-leaderboard__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}
.arena-leaderboard__tab {
  padding: 8px 16px;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.arena-leaderboard__tab:hover {
  color: #0a0a0a;
}
.arena-leaderboard__tab.is-active {
  color: #4338ca;
  border-bottom-color: #4338ca;
}
.arena-leaderboard__footer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.arena-leaderboard__your-rank {
  font-size: 0.72rem;
  color: #6b7280;
}
.arena-leaderboard__your-rank strong {
  color: #0a0a0a;
  font-weight: 700;
}
.arena-leaderboard__see-more {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}
.arena-leaderboard__see-more:hover {
  color: #4338ca;
}

.arena-modal {
  border: 1px solid #e5e7eb;
  padding: 0;
  max-width: 600px;
  width: 90vw;
  max-height: 80vh;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.arena-modal::backdrop {
  background: rgba(0, 0, 0, 0.4);
}
.arena-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid #e5e7eb;
}
.arena-modal__header h3 {
  font-size: 1rem;
  font-weight: 700;
}
.arena-modal__close {
  background: none;
  border: none;
  font-size: 0.72rem;
  font-weight: 600;
  color: #9ca3af;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: inherit;
}
.arena-modal__close:hover {
  color: #0a0a0a;
}
.arena-modal__body {
  padding: 20px 28px;
  overflow-y: auto;
  max-height: 60vh;
}

.progress-ring {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.progress-ring__svg {
  transform: rotate(-90deg);
}
.progress-ring__track {
  fill: none;
  stroke: #e5e7eb;
}
.progress-ring__fill {
  fill: none;
  stroke: #4338ca;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.progress-ring--success .progress-ring__fill {
  stroke: #059669;
}
.progress-ring--warning .progress-ring__fill {
  stroke: #d97706;
}
.progress-ring--error .progress-ring__fill {
  stroke: #dc2626;
}
.progress-ring__value {
  position: absolute;
  font-weight: 700;
  font-size: 1.25rem;
  color: #0a0a0a;
}

.quiz-layout {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) {
  .quiz-layout {
    padding: 3rem 1.5rem;
  }
}

.quiz-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.quiz-header__info {
  font-size: 0.875rem;
  color: #6b7280;
}
.quiz-header__counter {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0a0a0a;
}

.quiz-progress-bar {
  height: 3px;
  background: #e5e7eb;
  margin-bottom: 2rem;
}
.quiz-progress-bar__fill {
  height: 100%;
  background: #4338ca;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-question {
  margin-bottom: 2rem;
}
.quiz-question__badge {
  margin-bottom: 0.75rem;
}
.quiz-question__text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .quiz-question__text {
    font-size: 1.5rem;
  }
}
.quiz-question__code {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #0a0a0a;
  padding: 1rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  font-size: 0.875rem;
  line-height: 1.7;
}
.quiz-question__code code {
  background: none;
  padding: 0;
  color: inherit;
}

.quiz-answers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-answer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s;
}
.quiz-answer:hover {
  border-color: #9ca3af;
  background-color: #f9fafb;
}
.quiz-answer.is-selected {
  border-color: #4338ca;
  background-color: #eef2ff;
}
.quiz-answer.is-correct {
  border-color: #059669;
  background-color: #b7fde7;
}
.quiz-answer.is-incorrect {
  border-color: #dc2626;
  background-color: #fcecec;
}
.quiz-answer.is-missed {
  border-color: #059669;
  background-color: #b7fde7;
  opacity: 0.7;
}
.quiz-answer__indicator {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  margin-top: 2px;
}
.is-selected .quiz-answer__indicator {
  background-color: #4338ca;
  border-color: #4338ca;
  color: #ffffff;
}
.quiz-answer__indicator--radio {
  border-radius: 50%;
}
.quiz-answer__text {
  font-size: 1rem;
  color: #0a0a0a;
  line-height: 1.6;
}
.quiz-answer__text code {
  font-size: 0.875rem;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
}
.quiz-nav__prev, .quiz-nav__next {
  cursor: pointer;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.15s;
}
.quiz-nav__prev {
  background: transparent;
  color: #4b5563;
  border: 1px solid #d1d5db;
}
.quiz-nav__prev:hover {
  border-color: #0a0a0a;
  color: #0a0a0a;
}
.quiz-nav__next {
  background: #4338ca;
  color: #ffffff;
  border: 1px solid #4338ca;
}
.quiz-nav__next:hover {
  background: #3730a3;
  border-color: #3730a3;
}

.quiz-setup {
  max-width: 720px;
  margin: 0 auto;
}
.quiz-setup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.quiz-setup__toggle {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4338ca;
  padding: 0.5rem 1rem;
  border: 1px solid #4338ca;
  transition: all 0.15s;
}
.quiz-setup__toggle:hover {
  background: #4338ca;
  color: #ffffff;
}
.quiz-setup__error {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #dc2626;
  border: 1px solid #dc2626;
  margin-bottom: 1rem;
  display: none;
}
.quiz-setup__start {
  background: #4338ca;
  color: #ffffff;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 100%;
  transition: background 0.2s;
}
.quiz-setup__start:hover {
  background: #3730a3;
}
.quiz-setup__start:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.category-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: border-color 0.15s;
}
.category-card:hover {
  border-color: #9ca3af;
}
.category-card.is-selected {
  border-color: #4338ca;
  background-color: #eef2ff;
}
.category-card__checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.category-card__checkbox svg {
  display: none;
}
.is-selected .category-card__checkbox {
  background-color: #4338ca;
  border-color: #4338ca;
  color: #ffffff;
}
.is-selected .category-card__checkbox svg {
  display: block;
}
.category-card__info {
  flex: 1;
  min-width: 0;
}
.category-card__name {
  font-weight: 600;
  color: #0a0a0a;
}
.category-card__meta {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 2px;
}
.category-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.category-badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 0.5rem;
}
.category-badge--hard {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.category-badge--easy {
  background: #f0fdf4;
  color: #059669;
  border: 1px solid #bbf7d0;
}
.category-badge--redo {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}
.category-badge--progress {
  background: #fefce8;
  color: #a16207;
  border: 1px solid #fef08a;
}
.category-badge--good {
  background: #eff6ff;
  color: #4338ca;
  border: 1px solid #bfdbfe;
}
.category-badge--mastered {
  background: #f0fdf4;
  color: #059669;
  border: 1px solid #bbf7d0;
}
.category-badge--new {
  background: #f9fafb;
  color: #6b7280;
  border: 1px solid #e5e7eb;
}

.question-slider {
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
}
.question-slider__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.question-slider__label {
  font-weight: 600;
  color: #0a0a0a;
}
.question-slider__value {
  font-weight: 700;
  color: #4338ca;
  font-size: 1.125rem;
}

.range-slider {
  appearance: none;
  width: 100%;
  height: 4px;
  background: #e5e7eb;
  border: none;
  outline: none;
}
.range-slider::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: #4338ca;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #4338ca;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.question-progress {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.question-progress__dot {
  width: 10px;
  height: 10px;
  background-color: #e5e7eb;
  border: 1px solid #d1d5db;
  transition: all 0.15s;
  cursor: pointer;
}
.question-progress__dot--answered {
  background-color: #4338ca;
  border-color: #4338ca;
}
.question-progress__dot--current {
  background-color: #0a0a0a;
  border-color: #0a0a0a;
  transform: scale(1.4);
  margin: 0 0.25rem;
}

.quiz-result {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .quiz-result {
    padding: 5rem 1.5rem 4rem;
  }
}
.quiz-result__ring {
  margin-bottom: 1.5rem;
}
.quiz-result__score {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.quiz-result__score--success {
  color: #059669;
}
.quiz-result__score--warning {
  color: #d97706;
}
.quiz-result__score--error {
  color: #dc2626;
}
.quiz-result__summary {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}
.quiz-result__message {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 2rem;
}
.quiz-result__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.result-notice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
}
.result-notice--warning {
  border: 1px solid #d97706;
  color: #d97706;
}

.result-question {
  border: 1px solid #e5e7eb;
  margin-bottom: 1rem;
  overflow: hidden;
}
.result-question--correct {
  border-color: #059669;
}
.result-question--incorrect {
  border-color: #dc2626;
}
.result-question__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}
.result-question__number {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}
.result-question__number--correct {
  color: #059669;
}
.result-question__number--incorrect {
  color: #dc2626;
}
.result-question__title {
  font-size: 1rem;
  font-weight: 500;
  color: #0a0a0a;
  line-height: 1.6;
  padding-top: 2px;
}
.result-question__answers {
  padding: 0 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.result-question__help {
  border-top: 1px solid #e5e7eb;
}
.result-question__help-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  background-color: #f9fafb;
  transition: color 0.15s;
  list-style: none;
}
.result-question__help-toggle::-webkit-details-marker {
  display: none;
}
.result-question__help-toggle::marker {
  display: none;
  content: "";
}
.result-question__help-toggle:hover {
  color: #0a0a0a;
}
.result-question__help-body {
  padding: 1rem 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
  background-color: #f9fafb;
}
.result-question__help-body p {
  margin-bottom: 0.5rem;
}
.result-question__help-body p:last-child {
  margin-bottom: 0;
}
.result-question__help-body code {
  font-size: 0.85em;
}
.result-question__help-body pre {
  background-color: #f3f4f6;
  color: #0a0a0a;
  padding: 0.75rem 1rem;
  overflow-x: auto;
  font-size: 0.75rem;
  line-height: 1.7;
  margin: 0.75rem 0;
}
.result-question__help-body pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.result-question__help-body ul, .result-question__help-body ol {
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}
.result-question__help-body a {
  color: #4338ca;
  text-decoration: underline;
}
.result-question__help-body a:hover {
  color: #3730a3;
}

.report-question {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  margin-top: -0.25rem;
}
.report-question__btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  color: #9ca3af;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  transition: color 0.15s;
}
.report-question__btn:hover {
  color: #d97706;
}
.report-question__btn:disabled {
  color: #d1d5db;
  cursor: default;
}

.report-form {
  width: 100%;
  margin-top: 0.5rem;
}
.report-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #0a0a0a;
  resize: vertical;
  min-height: 60px;
}
.report-form textarea:focus {
  outline: none;
  border-color: #4338ca;
}
.report-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.report-feedback {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
}
.report-feedback--success {
  color: #059669;
  border: 1px solid #059669;
}
.report-feedback--warning {
  color: #d97706;
  border: 1px solid #d97706;
}
.report-feedback--error {
  color: #dc2626;
  border: 1px solid #dc2626;
}

.result-answer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: #f9fafb;
}
.result-answer--correct-selected {
  border-left: 3px solid #059669;
  background-color: rgba(5, 150, 105, 0.08);
}
.result-answer--correct-selected .result-answer__marker {
  color: #059669;
}
.result-answer--correct-missed {
  border-left: 3px dashed #059669;
  background-color: #f9fafb;
  opacity: 0.75;
}
.result-answer--correct-missed .result-answer__marker {
  color: #059669;
  opacity: 0.6;
}
.result-answer--wrong {
  border-left: 3px solid #dc2626;
  background-color: rgba(220, 38, 38, 0.06);
}
.result-answer--wrong .result-answer__marker {
  color: #dc2626;
}
.result-answer__marker {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #9ca3af;
  font-weight: 700;
}
.result-answer__dot {
  width: 4px;
  height: 4px;
  background-color: #9ca3af;
}
.result-answer__text {
  font-size: 0.875rem;
  color: #0a0a0a;
  line-height: 1.6;
}
.result-answer__text code {
  font-size: 0.85em;
}
.result-answer__tag {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1px 0.5rem;
  flex-shrink: 0;
}
.result-answer__tag--picked {
  color: #4338ca;
  border: 1px solid #4338ca;
}
.result-answer__tag--missed {
  color: #d97706;
  border: 1px solid #d97706;
}

.category-result {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}
.category-result__name {
  min-width: 140px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0a0a0a;
}
@media (min-width: 768px) {
  .category-result__name {
    min-width: 200px;
  }
}
.category-result__bar {
  flex: 1;
  height: 4px;
  background-color: #e5e7eb;
  overflow: hidden;
}
.category-result__fill {
  height: 100%;
  background: #4338ca;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-result__score {
  min-width: 48px;
  text-align: right;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0a0a0a;
}

@media (max-width: 640px) {
  .text-5xl {
    font-size: 1.875rem;
  }
  .text-4xl {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .md\:stack {
    flex-direction: column;
  }
}
@media (max-width: 639px) {
  .hide-sm {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hide-md {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .hide-lg {
    display: none !important;
  }
}
@media (min-width: 640px) {
  .show-sm {
    display: block !important;
  }
}
@media (min-width: 768px) {
  .show-md {
    display: block !important;
  }
}
@media (min-width: 1024px) {
  .show-lg {
    display: block !important;
  }
}
.confetti {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
}
.confetti__piece {
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0;
  animation: confettiFall 3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.confetti__piece:nth-child(1) {
  left: 15%;
  animation-delay: 0.9s;
  background-color: #dc2626;
  transform: rotate(210deg);
}
.confetti__piece:nth-child(2) {
  left: 97%;
  animation-delay: 0.85s;
  background-color: #dc2626;
  transform: rotate(60deg);
}
.confetti__piece:nth-child(3) {
  left: 21%;
  animation-delay: 0.1s;
  background-color: #d97706;
  transform: rotate(300deg);
}
.confetti__piece:nth-child(4) {
  left: 19%;
  animation-delay: 0.95s;
  background-color: #dc2626;
  transform: rotate(210deg);
}
.confetti__piece:nth-child(5) {
  left: 39%;
  animation-delay: 0.55s;
  background-color: #dc2626;
  transform: rotate(140deg);
}
.confetti__piece:nth-child(6) {
  left: 63%;
  animation-delay: 0.1s;
  background-color: #dc2626;
  transform: rotate(265deg);
}
.confetti__piece:nth-child(7) {
  left: 97%;
  animation-delay: 0.25s;
  background-color: #6366f1;
  transform: rotate(317deg);
}
.confetti__piece:nth-child(8) {
  left: 32%;
  animation-delay: 0.8s;
  background-color: #4338ca;
  transform: rotate(57deg);
}
.confetti__piece:nth-child(9) {
  left: 1%;
  animation-delay: 0.35s;
  background-color: #dc2626;
  transform: rotate(4deg);
}
.confetti__piece:nth-child(10) {
  left: 31%;
  animation-delay: 0.5s;
  background-color: #059669;
  transform: rotate(243deg);
}
.confetti__piece:nth-child(11) {
  left: 59%;
  animation-delay: 0.4s;
  background-color: #4338ca;
  transform: rotate(182deg);
}
.confetti__piece:nth-child(12) {
  left: 61%;
  animation-delay: 0.85s;
  background-color: #059669;
  transform: rotate(245deg);
}
.confetti__piece:nth-child(13) {
  left: 11%;
  animation-delay: 0.8s;
  background-color: #d97706;
  transform: rotate(39deg);
}
.confetti__piece:nth-child(14) {
  left: 16%;
  animation-delay: 0.1s;
  background-color: #d97706;
  transform: rotate(224deg);
}
.confetti__piece:nth-child(15) {
  left: 27%;
  animation-delay: 0.05s;
  background-color: #d97706;
  transform: rotate(250deg);
}
.confetti__piece:nth-child(16) {
  left: 14%;
  animation-delay: 1s;
  background-color: #059669;
  transform: rotate(193deg);
}
.confetti__piece:nth-child(17) {
  left: 44%;
  animation-delay: 0.45s;
  background-color: #3730a3;
  transform: rotate(220deg);
}
.confetti__piece:nth-child(18) {
  left: 28%;
  animation-delay: 0.05s;
  background-color: #4338ca;
  transform: rotate(121deg);
}
.confetti__piece:nth-child(19) {
  left: 37%;
  animation-delay: 0.05s;
  background-color: #6366f1;
  transform: rotate(34deg);
}
.confetti__piece:nth-child(20) {
  left: 36%;
  animation-delay: 0.55s;
  background-color: #3730a3;
  transform: rotate(192deg);
}
.confetti__piece:nth-child(21) {
  left: 20%;
  animation-delay: 0.65s;
  background-color: #059669;
  transform: rotate(165deg);
}
.confetti__piece:nth-child(22) {
  left: 63%;
  animation-delay: 1s;
  background-color: #6366f1;
  transform: rotate(140deg);
}
.confetti__piece:nth-child(23) {
  left: 12%;
  animation-delay: 0.35s;
  background-color: #dc2626;
  transform: rotate(243deg);
}
.confetti__piece:nth-child(24) {
  left: 90%;
  animation-delay: 0.2s;
  background-color: #059669;
  transform: rotate(24deg);
}
.confetti__piece:nth-child(25) {
  left: 74%;
  animation-delay: 0.3s;
  background-color: #3730a3;
  transform: rotate(338deg);
}
.confetti__piece:nth-child(26) {
  left: 83%;
  animation-delay: 0.05s;
  background-color: #3730a3;
  transform: rotate(210deg);
}
.confetti__piece:nth-child(27) {
  left: 54%;
  animation-delay: 0.95s;
  background-color: #059669;
  transform: rotate(57deg);
}
.confetti__piece:nth-child(28) {
  left: 74%;
  animation-delay: 0.75s;
  background-color: #d97706;
  transform: rotate(173deg);
}
.confetti__piece:nth-child(29) {
  left: 77%;
  animation-delay: 0.1s;
  background-color: #dc2626;
  transform: rotate(16deg);
}
.confetti__piece:nth-child(30) {
  left: 14%;
  animation-delay: 0.3s;
  background-color: #dc2626;
  transform: rotate(251deg);
}

@keyframes confettiFall {
  0% {
    opacity: 1;
    top: -10%;
    transform: translateX(0) rotate(0deg);
  }
  100% {
    opacity: 0;
    top: 100%;
    transform: translateX(-91px) rotate(544deg);
  }
}

/*# sourceMappingURL=app.output.css.map */
