*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

body {
  margin: 0;
  line-height: inherit;
}

button,
input {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: default;
}

.hidden { display: none !important; }
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { inset: 0; }

.z-20 { z-index: 20; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
[class~="z-[52]"] { z-index: 52; }
[class~="z-[53]"] { z-index: 53; }
[class~="z-[60]"] { z-index: 60; }
[class~="z-[65]"] { z-index: 65; }
[class~="z-[68]"] { z-index: 68; }
[class~="z-[70]"] { z-index: 70; }
[class~="z-[75]"] { z-index: 75; }
[class~="z-[76]"] { z-index: 76; }
[class~="z-[80]"] { z-index: 80; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pr-1 { padding-right: 0.25rem; }
.pb-24 { padding-bottom: 6rem; }
.pb-1 { padding-bottom: 0.25rem; }
[class~="pb-[calc(1rem+env(safe-area-inset-bottom,0px))]"] { padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px)); }

.w-full { width: 100%; }
.h-full { height: 100%; }
[class~="h-[64vh]"] { height: 64vh; }
.h-1 { height: 0.25rem; }
[class~="h-0.5"] { height: 0.125rem; }
.h-14 { height: 3.5rem; }
.min-h-0 { min-height: 0; }
.min-h-screen { min-height: 100vh; }
[class~="min-h-[1.5rem]"] { min-height: 1.5rem; }
[class~="min-h-[1.6rem]"] { min-height: 1.6rem; }
[class~="min-h-[280px]"] { min-height: 280px; }
[class~="min-w-[9.75rem]"] { min-width: 9.75rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
[class~="max-w-[1500px]"] { max-width: 1500px; }
[class~="max-h-[48vh]"] { max-height: 48vh; }
[class~="max-h-[54vh]"] { max-height: 54vh; }
[class~="max-h-[620px]"] { max-height: 620px; }

.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-1 { gap: 0.25rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.whitespace-nowrap { white-space: nowrap; }
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-b-lg { border-bottom-right-radius: 0.5rem; border-bottom-left-radius: 0.5rem; }
.rounded-t-lg { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; }
[class~="rounded-[28px]"] { border-radius: 28px; }
[class~="rounded-t-[24px]"] { border-top-left-radius: 24px; border-top-right-radius: 24px; }

.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t-4 { border-top-width: 4px; }
.border-transparent { border-color: transparent; }
[class~="border-[#273f43]"] { border-color: #273f43; }
[class~="border-[#7aa8b0]"] { border-color: #7aa8b0; }
[class~="border-[#7aa8b0]/50"] { border-color: rgb(122 168 176 / 0.5); }
[class~="border-[#7aa8b0]/70"] { border-color: rgb(122 168 176 / 0.7); }
[class~="border-[#8cb9c2]"] { border-color: #8cb9c2; }
.border-gray-300 { border-color: #d1d5db; }
.border-slate-200 { border-color: #e2e8f0; }

.bg-white { background-color: #fff; }
.bg-black { background-color: #000; }
.bg-green-500 { background-color: #22c55e; }
.bg-green-600 { background-color: #16a34a; }
.bg-emerald-500 { background-color: #10b981; }
.bg-emerald-600 { background-color: #059669; }
.bg-emerald-700 { background-color: #047857; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-blue-600 { background-color: #2563eb; }
.bg-amber-500 { background-color: #f59e0b; }
.bg-amber-600 { background-color: #d97706; }
.bg-sky-500 { background-color: #0ea5e9; }
.bg-gray-600 { background-color: #4b5563; }
.bg-indigo-600 { background-color: #4f46e5; }
.bg-orange-300 { background-color: #fdba74; }
.bg-orange-600 { background-color: #ea580c; }
.bg-pink-600 { background-color: #db2777; }
.bg-purple-600 { background-color: #9333ea; }
.bg-red-600 { background-color: #dc2626; }
.bg-slate-300 { background-color: #cbd5e1; }
.bg-slate-600 { background-color: #475569; }
.bg-violet-700 { background-color: #6d28d9; }
.bg-yellow-300 { background-color: #fde047; }
.bg-yellow-600 { background-color: #ca8a04; }
.bg-yellow-700 { background-color: #a16207; }
[class~="bg-[#1f3438]/90"] { background-color: rgb(31 52 56 / 0.9); }
[class~="bg-[#1f3438]/92"] { background-color: rgb(31 52 56 / 0.92); }
[class~="bg-[#20373b]/95"] { background-color: rgb(32 55 59 / 0.95); }
[class~="bg-[#20373b]/96"] { background-color: rgb(32 55 59 / 0.96); }
[class~="bg-[#273f43]"] { background-color: #273f43; }
[class~="bg-[#294b50]"] { background-color: #294b50; }
[class~="bg-[#6ea17f]"] { background-color: #6ea17f; }
[class~="bg-[#cde7ec]"] { background-color: #cde7ec; }
[class~="bg-[#e9f4fa]"] { background-color: #e9f4fa; }
[class~="bg-black/30"] { background-color: rgb(0 0 0 / 0.3); }
[class~="bg-black/55"] { background-color: rgb(0 0 0 / 0.55); }
[class~="bg-black/65"] { background-color: rgb(0 0 0 / 0.65); }
[class~="bg-black/70"] { background-color: rgb(0 0 0 / 0.7); }
[class~="bg-black/72"] { background-color: rgb(0 0 0 / 0.72); }
[class~="bg-black/75"] { background-color: rgb(0 0 0 / 0.75); }
[class~="bg-black/80"] { background-color: rgb(0 0 0 / 0.8); }
[class~="bg-white/5"] { background-color: rgb(255 255 255 / 0.05); }
[class~="bg-white/92"] { background-color: rgb(255 255 255 / 0.92); }
[class~="bg-yellow-300/15"] { background-color: rgb(253 224 71 / 0.15); }

.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-purple-600 { --tw-gradient-from: #9333ea; --tw-gradient-to: rgb(147 51 234 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-pink-600 { --tw-gradient-to: #db2777; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
.uppercase { text-transform: uppercase; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }
.tracking-wide { letter-spacing: 0.025em; }
[class~="tracking-[0.16em]"] { letter-spacing: 0.16em; }
[class~="tracking-[0.18em]"] { letter-spacing: 0.18em; }
[class~="tracking-[0.22em]"] { letter-spacing: 0.22em; }
[class~="tracking-[0.35em]"] { letter-spacing: 0.35em; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
[class~="text-[10px]"] { font-size: 10px; line-height: 1rem; }

.text-black { color: #000; }
.text-white { color: #fff; }
.text-gray-300 { color: #d1d5db; }
.text-gray-500 { color: #6b7280; }
.text-green-400 { color: #4ade80; }
.text-red-400 { color: #f87171; }
.text-slate-100 { color: #f1f5f9; }
.text-slate-200 { color: #e2e8f0; }
.text-yellow-200 { color: #fef08a; }
.text-yellow-300 { color: #fde047; }
[class~="text-[#20373b]"] { color: #20373b; }
[class~="text-[#2f3b58]"] { color: #2f3b58; }
[class~="text-[#334155]"] { color: #334155; }
[class~="text-[#5b4600]"] { color: #5b4600; }
[class~="text-[#7c2d12]"] { color: #7c2d12; }

.opacity-0 { opacity: 0; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-80 { opacity: 0.8; }
.opacity-85 { opacity: 0.85; }
.opacity-90 { opacity: 0.9; }
.opacity-95 { opacity: 0.95; }

.shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05); }

.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.italic { font-style: italic; }
.border-separate { border-collapse: separate; }
.border-spacing-0 { border-spacing: 0; }
.cursor-not-allowed { cursor: not-allowed; }
.ring-2 { box-shadow: 0 0 0 2px var(--tw-ring-color, #fde047); }
.ring-yellow-300 { --tw-ring-color: #fde047; }
.w-1 { width: 0.25rem; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-14 { width: 3.5rem; }
.w-20 { width: 5rem; }
[class~="py-1.5"] { padding-top: 0.375rem; padding-bottom: 0.375rem; }

.hover\:bg-green-700:hover { background-color: #15803d; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-amber-700:hover { background-color: #b45309; }
.hover\:bg-gray-700:hover { background-color: #374151; }
.hover\:bg-indigo-700:hover { background-color: #4338ca; }
.hover\:bg-orange-700:hover { background-color: #c2410c; }
.hover\:bg-pink-700:hover { background-color: #be185d; }
.hover\:bg-purple-700:hover { background-color: #7e22ce; }
.hover\:bg-red-700:hover { background-color: #b91c1c; }
.hover\:bg-violet-800:hover { background-color: #5b21b6; }
.hover\:border-yellow-300:hover { border-color: #fde047; }
.hover\:from-purple-700:hover { --tw-gradient-from: #7e22ce; --tw-gradient-to: rgb(126 34 206 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.hover\:to-pink-700:hover { --tw-gradient-to: #be185d; }
.disabled\:opacity-60:disabled { opacity: 0.6; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:items-center { align-items: center; }
  .sm\:justify-center { justify-content: center; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:mt-0 { margin-top: 0; }
  .sm\:gap-4 { gap: 1rem; }
  .sm\:p-4 { padding: 1rem; }
  .sm\:p-5 { padding: 1.25rem; }
  .sm\:px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
  .sm\:rounded-2xl { border-radius: 1rem; }
  .sm\:border-4 { border-width: 4px; }
  .sm\:h-16 { height: 4rem; }
  .sm\:w-16 { width: 4rem; }
  .sm\:w-24 { width: 6rem; }
  .sm\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .sm\:max-w-2xl { max-width: 42rem; }
  [class~="sm:max-w-[28rem]"] { max-width: 28rem; }
  [class~="sm:min-w-[10.5rem]"] { min-width: 10.5rem; }
}

@media (min-width: 768px) {
  .md\:p-3 { padding: 0.75rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 640px) {
  .sm\:justify-center { justify-content: center; }
}

@media (min-width: 768px) {
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
}
