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

.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;
}

.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.invisible { visibility: hidden; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.top-2 { top: 0.5rem; }
.top-\[30px\] { top: 30px; }
.right-4 { right: 1rem; }
.right-\[30px\] { right: 30px; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.left-0 { left: 0; }
.left-6 { left: 1.5rem; }
.-top-1 { top: -0.25rem; }
.-top-2 { top: -0.5rem; }
.-right-1 { right: -0.25rem; }
.-left-3 { left: -0.75rem; }
.-left-4 { left: -1rem; }
.-bottom-2 { bottom: -0.5rem; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-auto { margin-top: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.ml-0\.5 { margin-left: 0.125rem; }
.ml-2 { margin-left: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pt-48 { padding-top: 12rem; }
.pr-4 { padding-right: 1rem; }
.pr-8 { padding-right: 2rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.pb-\[500px\] { padding-bottom: 500px; }
.pl-4 { padding-left: 1rem; }

.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.contents { display: contents; }
.flex-col { flex-direction: column; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.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; }
.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }

.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-8 { height: 2rem; }
.h-12 { height: 3rem; }
.h-20 { height: 5rem; }
.h-auto { height: auto; }
.h-full { height: 100%; }
.h-px { height: 1px; }
.h-\[2px\] { height: 2px; }
.min-h-screen { min-height: 100vh; }
.min-h-\[32px\] { min-height: 32px; }
.min-h-\[200px\] { min-height: 200px; }
.min-h-\[220px\] { min-height: 220px; }
.w-0 { width: 0; }
.w-1 { width: 0.25rem; }
.w-2 { width: 0.5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-20 { width: 5rem; }
.w-full { width: 100%; }
.w-px { width: 1px; }
.w-\[calc\(100vw-2rem\)\] { width: calc(100vw - 2rem); }
.w-\[calc\(100vw-3rem\)\] { width: calc(100vw - 3rem); }
.min-w-0 { min-width: 0; }
.min-w-\[100px\] { min-width: 100px; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-lg { max-width: 32rem; }
.max-w-\[95vw\] { max-width: 95vw; }
.max-w-\[250px\] { max-width: 250px; }

.cursor-pointer { cursor: pointer; }
.select-none { user-select: none; }
.pointer-events-none { pointer-events: none; }
.overflow-hidden { overflow: hidden; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.line-clamp-1,
.line-clamp-6 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-1 { -webkit-line-clamp: 1; }
.line-clamp-6 { -webkit-line-clamp: 6; }

.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-gray-200 { border-color: #e5e7eb; }
.border-red-500 { border-color: #ef4444; }
.rounded,
.rounded-full { border-radius: 0; }

.bg-white { background-color: #fff; }
.bg-black { background-color: #000; }
.bg-transparent { background-color: transparent; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-300 { background-color: #d1d5db; }
.bg-gray-900 { background-color: #111827; }
.bg-red-500\/10 { background-color: rgba(239, 68, 68, 0.1); }
.bg-red-600 { background-color: #dc2626; }
.bg-white\/0 { background-color: rgba(255, 255, 255, 0); }
.bg-gray-400\/20 { background-color: rgba(156, 163, 175, 0.2); }
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-from, transparent), var(--tw-gradient-to, transparent));
}
.from-gray-300\/30 { --tw-gradient-from: rgba(209, 213, 219, 0.3); }
.to-transparent { --tw-gradient-to: transparent; }

.fill-white { fill: #fff; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-white { color: #fff; }
.text-gray-400 { color: #9ca3af; }
.text-gray-600 { color: #4b5563; }
.text-gray-800 { color: #1f2937; }
.text-gray-800\/30 { color: rgba(31, 41, 55, 0.3); }
.text-gray-800\/50 { color: rgba(31, 41, 55, 0.5); }
.text-gray-900 { color: #111827; }
.text-red-400 { color: #f87171; }
.text-red-600 { color: #dc2626; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.font-mono { font-family: var(--font-family-blog, 'JetBrains Mono', monospace); }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.uppercase { text-transform: uppercase; }
.tabular-nums { font-variant-numeric: tabular-nums; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.opacity-0 { opacity: 0; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-100 { opacity: 1; }

.shadow-2xl,
.shadow-\[0_0_8px_rgba\(220\,38\,38\,0\.8\)\] { box-shadow: none; }

.transition-all { transition-property: all; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; }
.transition-opacity { transition-property: opacity; }
.transition-\[width\] { transition-property: width; }
.duration-100 { transition-duration: 100ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.ease-linear { transition-timing-function: linear; }
.ease-\[cubic-bezier\(0\.22\,1\,0\.36\,1\)\] { transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1); }
.-translate-y-\[150\%\] { transform: translateY(-150%); }
.translate-y-\[150\%\] { transform: translateY(150%); }

.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:bg-gray-700:hover { background-color: #374151; }
.group:hover .group-hover\:border-gray-400 { border-color: #9ca3af; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:text-gray-600 { color: #4b5563; }
.group:hover .group-hover\:text-gray-900 { color: #111827; }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.focus\:outline-2:focus { outline-width: 2px; outline-style: solid; }
.focus\:outline-white:focus { outline-color: #fff; }
.focus\:outline-offset-2:focus { outline-offset: 2px; }

html.dark .dark\:bg-black { background-color: #000; }
html.dark .dark\:bg-white { background-color: #fff; }
html.dark .dark\:bg-neutral-800 { background-color: #262626; }
html.dark .dark\:bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
html.dark .dark\:bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
html.dark .dark\:border-white { border-color: #fff; }
html.dark .dark\:border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
html.dark .dark\:border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
html.dark .dark\:fill-black { fill: #000; }
html.dark .dark\:text-black { color: #000; }
html.dark .dark\:text-white { color: #fff; }
html.dark .dark\:text-white\/30 { color: rgba(255, 255, 255, 0.3); }
html.dark .dark\:text-white\/50 { color: rgba(255, 255, 255, 0.5); }
html.dark .dark\:text-white\/60 { color: rgba(255, 255, 255, 0.6); }
html.dark .dark\:text-white\/90 { color: rgba(255, 255, 255, 0.9); }
html.dark .dark\:opacity-20 { opacity: 0.2; }
html.dark .dark\:from-white\/20 { --tw-gradient-from: rgba(255, 255, 255, 0.2); }
html.dark .dark\:to-transparent { --tw-gradient-to: transparent; }
html.dark .dark\:hover\:bg-neutral-200:hover { background-color: #e5e5e5; }
html.dark .dark\:hover\:bg-neutral-900:hover { background-color: #171717; }
html.dark .group:hover .dark\:group-hover\:border-white\/40 { border-color: rgba(255, 255, 255, 0.4); }
html.dark .group:hover .dark\:group-hover\:text-white { color: #fff; }
html.dark .group:hover .dark\:group-hover\:text-white\/60 { color: rgba(255, 255, 255, 0.6); }

@keyframes local-pulse {
    50% { opacity: 0.5; }
}

@keyframes local-spin {
    to { transform: rotate(360deg); }
}

.animate-pulse { animation: local-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-spin { animation: local-spin 1s linear infinite; }

@media (min-width: 768px) {
    .md\:block { display: block; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:border-none { border-style: none; }
    .md\:bottom-auto { bottom: auto; }
    .md\:top-\[30px\] { top: 30px; }
    .md\:right-\[30px\] { right: 30px; }
    .md\:left-8 { left: 2rem; }
    .md\:h-\[220px\] { height: 220px; }
    .md\:w-auto { width: auto; }
    .md\:min-w-\[300px\] { min-width: 300px; }
    .md\:max-w-\[400px\] { max-width: 400px; }
    .md\:p-8 { padding: 2rem; }
    .md\:pl-0 { padding-left: 0; }
    .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
    .md\:-translate-y-\[150\%\] { transform: translateY(-150%); }
}
