/* Tailwind CSS Utilities - Replacement for CDN */

/* Display */
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.inline-flex { display: inline-flex; }

/* Position */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }

/* Flexbox */
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.divide-y > * + * { border-top-width: 1px; }
.divide-x > * + * { border-left-width: 1px; }
.divide-gray-800 > * + * { border-color: rgb(31 41 55); }

/* Spacing */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.right-8 { right: 2rem; }
.top-1\/2 { top: 50%; }
.top-32 { top: 8rem; }
.left-8 { left: 2rem; }
.mt-\[-2vw\] { margin-top: -2vw; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-32 { margin-top: 8rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-24 { margin-bottom: 6rem; }

/* Sizing */
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
[class*="w-[1px]"] { width: 1px !important; }
[class*="w-64"] { width: 16rem !important; }
.w-\[1px\] { width: 1px; }
.w-full { width: 100%; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-32 { height: 8rem; }
[class*="min-h-[90vh]"] { min-height: 90vh !important; }
.min-h-\[90vh\] { min-height: 90vh; }

/* Typography */
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }
.text-9xl { font-size: 8rem; line-height: 1; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-gray-700 { color: rgb(55 65 81); }
.text-blue-400 { color: rgb(96 165 250); }
.text-green-400 { color: rgb(74 222 128); }
.text-\[10px\] { font-size: 10px; }
.text-\[25vw\] { font-size: 25vw; }
[class*="text-[#ccff00]"] { color: #ccff00 !important; }
.text-\[#ccff00\] { color: #ccff00; }
.text-gray-500 { color: rgb(107 114 128); }
.text-gray-600 { color: rgb(75 85 99); }
.text-white { color: rgb(255 255 255); }
.text-black { color: rgb(0 0 0); }
.text-transparent { color: transparent; }
.font-bold { font-weight: 700; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-\[0\.9\] { line-height: 0.9; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.uppercase { text-transform: uppercase; }
.line-through { text-decoration-line: line-through; }
.decoration-red-500 { text-decoration-color: rgb(239 68 68); }
.decoration-4 { text-decoration-thickness: 4px; }

/* Background - Using attribute selectors for classes with brackets */
.bg-black { background-color: rgb(0 0 0); }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
[class*="bg-[#020202]"] { background-color: #020202 !important; }
[class*="bg-[#0a0a0a]"] { background-color: #0a0a0a !important; }
[class*="bg-[#111]"] { background-color: #111 !important; }
[class*="bg-[#ccff00]"] { background-color: #ccff00 !important; }
.bg-\[#ccff00\]\/5 { background-color: rgba(204, 255, 0, 0.05); }
.bg-gray-700 { background-color: rgb(55 65 81); }
.bg-gray-800 { background-color: rgb(31 41 55); }
.bg-white { background-color: rgb(255 255 255); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.from-white { --tw-gradient-from: rgb(255 255 255); --tw-gradient-to: rgb(255 255 255 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-gray-600 { --tw-gradient-to: rgb(75 85 99); }
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.bg-\[url\('https:\/\/www\.transparenttextures\.com\/patterns\/stardust\.png'\)\] { background-image: url('https://www.transparenttextures.com/patterns/stardust.png'); }

/* Border */
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; }
[class*="border-[#ccff00]"] { border-color: #ccff00 !important; }
.border-\[#ccff00\] { border-color: #ccff00; }
.border-gray-700 { border-color: rgb(55 65 81); }
.border-gray-800 { border-color: rgb(31 41 55); }
.border-dashed { border-style: dashed; }
.rounded-full { border-radius: 9999px; }

/* Effects */
.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
[class*="opacity-[0.03]"] { opacity: 0.03 !important; }
.opacity-\[0\.03\] { opacity: 0.03; }
.pointer-events-none { pointer-events: none; }
.select-none { -webkit-user-select: none; user-select: none; }
.overflow-hidden { overflow: hidden; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.duration-500 { transition-duration: 500ms; }
.delay-100 { transition-delay: 100ms; }

/* Z-index */
.z-\[-1\] { z-index: -1; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-30 { z-index: 30; }
.z-50 { z-index: 50; }
.z-\[60\] { z-index: 60; }
.z-\[90\] { z-index: 90; }
.z-\[9999\] { z-index: 9999; }

/* Transform */
.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.left-1\/2 { left: 50%; }
.bottom-full { bottom: 100%; }
.top-0 { top: 0; }
.left-0 { left: 0; }

/* Animation */
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

/* Padding */
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }

/* Additional utilities */
.max-w-2xl { max-width: 42rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-gray-400 { color: rgb(156 163 175); }
.leading-relaxed { line-height: 1.625; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pt-2 { padding-top: 0.5rem; }
.group { position: relative; }
.translate-y-full { transform: translateY(100%); }
.translate-y-0 { transform: translateY(0); }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.duration-300 { transition-duration: 300ms; }
.h-32 { height: 8rem; }
.bg-gray-700 { background-color: rgb(55 65 81); }
.bg-gray-800 { background-color: rgb(31 41 55); }
.bg-white { background-color: rgb(255 255 255); }
.z-0 { z-index: 0; }
.opacity-20 { opacity: 0.2; }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.via-gray-400 { --tw-gradient-to: rgb(156 163 175 / 0); --tw-gradient-stops: var(--tw-gradient-from), rgb(156 163 175), var(--tw-gradient-to); }
.to-gray-800 { --tw-gradient-to: rgb(31 41 55); }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-left { text-align: left; }
.group-hover\:translate-y-0:hover { transform: translateY(0); }
.group-hover\:translate-y-\[-2px\]:hover { transform: translateY(-2px); }
.group-hover\:text-black:hover { color: rgb(0 0 0); }
[class*="group-hover:text-[#ccff00]"]:hover { color: #ccff00 !important; }
.group-hover\:text-\[#ccff00\]:hover { color: #ccff00; }
.group-hover\:text-blue-400:hover { color: rgb(96 165 250); }
.group-hover\:text-green-400:hover { color: rgb(74 222 128); }
.group-hover\:opacity-100:hover { opacity: 1; }
.group-hover\:visible:hover { visibility: visible; }
[class*="group-hover:drop-shadow-[0_0_10px_rgba(204,255,0,0.5)]"]:hover { filter: drop-shadow(0 0 10px rgba(204, 255, 0, 0.5)) !important; }
.group-hover\:drop-shadow-\[0_0_10px_rgba\(204\,255\,0\,0\.5\)\]:hover { filter: drop-shadow(0 0 10px rgba(204, 255, 0, 0.5)); }
.hover\:border-white:hover { border-color: rgb(255 255 255); }
[class*="hover:border-[#ccff00]"]:hover { border-color: #ccff00 !important; }
.hover\:border-\[#ccff00\]:hover { border-color: #ccff00; }
.hover\:bg-white\/5:hover { background-color: rgba(255, 255, 255, 0.05); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.opacity-0.group-hover\:opacity-100 { opacity: 0; }
.group:hover .opacity-0.group-hover\:opacity-100 { opacity: 1; }
.text-center { text-align: center; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
.cursor-default { cursor: default; }
.cursor-help { cursor: help; }
.invisible { visibility: hidden; }
[class*="shadow-[0_0_20px_rgba(204,255,0,0.2)]"] { box-shadow: 0 0 20px rgba(204, 255, 0, 0.2) !important; }
.shadow-\[0_0_20px_rgba\(204\,255\,0\,0\.2\)\] { box-shadow: 0 0 20px rgba(204, 255, 0, 0.2); }

/* Responsive */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:flex-row { flex-direction: row; }
  .md\:divide-y-0 > * + * { border-top-width: 0; }
  .md\:divide-x > * + * { border-left-width: 1px; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:block { display: block; }
}

