/* Production CSS - Compiled Tailwind Classes */

/* Base Reset */
*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: var(--text-font), system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  scroll-behavior: smooth;
}

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

/* Utility Classes */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 640px) {
  .container { max-width: 640px; }
}
@media (min-width: 768px) {
  .container { max-width: 768px; }
}
@media (min-width: 1024px) {
  .container { max-width: 1024px; }
}
@media (min-width: 1280px) {
  .container { max-width: 1280px; }
}
@media (min-width: 1536px) {
  .container { max-width: 1536px; }
}

.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-12 { margin-top: 3rem; }

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

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }

.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.75rem; }
.space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-8 { bottom: 2rem; }
.right-8 { right: 2rem; }
.z-50 { z-index: 50; }

.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

.bg-slate-900 { background-color: rgb(15 23 42); }
.bg-slate-800\/50 { background-color: rgb(30 41 59 / 0.5); }
.bg-slate-700 { background-color: rgb(51 65 85); }
.bg-slate-800 { background-color: rgb(30 41 59); }
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-from, transparent) 0%, var(--tw-gradient-to, transparent) 100%);
}
.from-cyan-500 {
  --tw-gradient-from: #06b6d4;
}
.to-blue-500 {
  --tw-gradient-to: #3b82f6;
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-from, transparent) 0%, var(--tw-gradient-to, transparent) 100%);
}
.from-cyan-400 {
  --tw-gradient-from: #22d3ee;
}
.to-pink-400 {
  --tw-gradient-to: #f472b6;
}
.from-black\/50 {
  --tw-gradient-from: rgba(0, 0, 0, 0.5);
}
.via-transparent {
  background-image: linear-gradient(to right, var(--tw-gradient-from, transparent) 0%, transparent 50%, var(--tw-gradient-to, transparent) 100%);
}
.to-transparent {
  --tw-gradient-to: transparent;
}

.text-white { color: #ffffff; }
.text-gray-300 { color: rgb(209 213 219); }
.text-gray-400 { color: rgb(156 163 175); }
.text-gray-500 { color: rgb(107 114 128); }
.text-cyan-400 { color: rgb(34 211 238); }
.text-purple-400 { color: rgb(192 132 252); }

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

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-center { text-align: center; }
.leading-relaxed { line-height: 1.625; }

.opacity-0 { opacity: 0; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.invisible { visibility: hidden; }

.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-white\/5 { border-color: rgb(255 255 255 / 0.05); }
.border-cyan-400 { border-color: rgb(34 211 238); }
.border-slate-700\/50 { border-color: rgb(51 65 85 / 0.5); }

.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1); }

.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); }

.transition-all { transition-property: all; }
.transition-colors { transition-property: color, background-color, border-color; }
.transition-transform { transition-property: transform; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-700 { transition-duration: 700ms; }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:bg-slate-700\/50:hover { background-color: rgb(51 65 85 / 0.5); }
.hover\:text-cyan-400:hover { color: rgb(34 211 238); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }

.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:text-cyan-400 { color: rgb(34 211 238); }
.group:hover .group-hover\:animate-bounce { animation: bounce 1s infinite; }

/* Responsive Design */
@media (min-width: 640px) {
  .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\:justify-start { justify-content: flex-start; }
}

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:flex-row { flex-direction: row; }
  .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\:text-4xl { font-size: 2.25rem; }
  .md\:w-56 { width: 14rem; }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:w-64 { width: 16rem; }
  .lg\:gap-12 { gap: 3rem; }
}

/* Animations */
@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

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

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes pulse {
  50% { opacity: .5; }
}

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

/* Additional spacing utilities */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.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-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }

/* Width utilities */
.w-3 { width: 0.75rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-48 { width: 12rem; }

/* Height utilities */
.h-3 { height: 0.75rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-2 { height: 0.5rem; }

/* Max-width utilities */
.max-w-2xl { max-width: 42rem; }
.max-w-5xl { max-width: 64rem; }

/* Grid utilities */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Background colors */
.bg-slate-900\/30 { background-color: rgb(15 23 42 / 0.3); }
.bg-slate-800\/70 { background-color: rgb(30 41 59 / 0.7); }
.bg-cyan-500\/10 { background-color: rgb(6 182 212 / 0.1); }
.bg-cyan-500\/20 { background-color: rgb(6 182 212 / 0.2); }
.bg-purple-500\/10 { background-color: rgb(168 85 247 / 0.1); }
.bg-purple-500\/20 { background-color: rgb(168 85 247 / 0.2); }
.bg-pink-500\/10 { background-color: rgb(236 72 153 / 0.1); }
.bg-blue-500\/10 { background-color: rgb(59 130 246 / 0.1); }
.bg-gray-600\/20 { background-color: rgb(75 85 99 / 0.2); }
.bg-white\/5 { background-color: rgb(255 255 255 / 0.05); }
.bg-red-500 { background-color: rgb(239 68 68); }
.bg-yellow-500 { background-color: rgb(234 179 8); }
.bg-green-500 { background-color: rgb(34 197 94); }
.bg-black\/20 { background-color: rgb(0 0 0 / 0.2); }

/* Text colors */
.text-pink-400 { color: rgb(244 114 182); }
.text-orange-400 { color: rgb(251 146 60); }
.text-blue-400 { color: rgb(96 165 250); }
.text-green-400 { color: rgb(74 222 128); }
.text-yellow-400 { color: rgb(250 204 21); }
.text-red-400 { color: rgb(248 113 113); }

/* Border colors */
.border-cyan-500\/30 { border-color: rgb(6 182 212 / 0.3); }
.border-purple-500\/30 { border-color: rgb(168 85 247 / 0.3); }
.border-pink-500\/30 { border-color: rgb(236 72 153 / 0.3); }
.border-blue-500\/30 { border-color: rgb(59 130 246 / 0.3); }
.border-cyan-500\/50 { border-color: rgb(6 182 212 / 0.5); }
.border-purple-500\/50 { border-color: rgb(168 85 247 / 0.5); }
.border-gray-500\/50 { border-color: rgb(107 114 128 / 0.5); }

/* Hover utilities */
.hover\:bg-slate-800\/70:hover { background-color: rgb(30 41 59 / 0.7); }
.hover\:bg-cyan-500\/20:hover { background-color: rgb(6 182 212 / 0.2); }
.hover\:bg-cyan-500\/30:hover { background-color: rgb(6 182 212 / 0.3); }
.hover\:bg-purple-500\/20:hover { background-color: rgb(168 85 247 / 0.2); }
.hover\:bg-purple-500\/30:hover { background-color: rgb(168 85 247 / 0.3); }
.hover\:bg-gray-600\/30:hover { background-color: rgb(75 85 99 / 0.3); }
.hover\:bg-cyan-400\/10:hover { background-color: rgb(34 211 238 / 0.1); }
.hover\:bg-red-400:hover { background-color: rgb(248 113 113); }
.hover\:bg-yellow-400:hover { background-color: rgb(250 204 21); }
.hover\:bg-green-400:hover { background-color: rgb(74 222 128); }
.hover\:border-cyan-500\/50:hover { border-color: rgb(6 182 212 / 0.5); }
.hover\:border-purple-500\/50:hover { border-color: rgb(168 85 247 / 0.5); }
.hover\:border-gray-500\/50:hover { border-color: rgb(107 114 128 / 0.5); }
.hover\:from-cyan-600:hover { --tw-gradient-from: #0891b2; }
.hover\:to-blue-600:hover { --tw-gradient-to: #2563eb; }

/* Shadow utilities */
.hover\:shadow-cyan-500\/25:hover { box-shadow: 0 10px 15px -3px rgb(6 182 212 / 0.25); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1); }
.hover\:shadow-cyan-500\/10:hover { box-shadow: 0 20px 25px -5px rgb(6 182 212 / 0.1); }
.hover\:shadow-purple-500\/10:hover { box-shadow: 0 20px 25px -5px rgb(168 85 247 / 0.1); }
.hover\:shadow-gray-500\/10:hover { box-shadow: 0 20px 25px -5px rgb(107 114 128 / 0.1); }

/* Aspect ratio */
.aspect-square { aspect-ratio: 1 / 1; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Inset */
.-inset-1 { top: -0.25rem; right: -0.25rem; bottom: -0.25rem; left: -0.25rem; }

/* Blur */
.blur { filter: blur(8px); }

/* Break */
.break-all { word-break: break-all; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Group hover */
.group:hover .group-hover\:bg-cyan-500\/30 { background-color: rgb(6 182 212 / 0.3); }
.group:hover .group-hover\:bg-purple-500\/30 { background-color: rgb(168 85 247 / 0.3); }
.group:hover .group-hover\:bg-gray-600\/30 { background-color: rgb(75 85 99 / 0.3); }
.group:hover .group-hover\:text-purple-400 { color: rgb(192 132 252); }

/* Transform utilities */
.transform { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1)); }

/* Duration utilities */
.duration-1000 { transition-duration: 1000ms; }

/* Stroke utilities */
.stroke-linecap-round { stroke-linecap: round; }
.stroke-linejoin-round { stroke-linejoin: round; }
.stroke-width-2 { stroke-width: 2; }

/* Fill utilities */
.fill-none { fill: none; }
.fill-currentColor { fill: currentColor; }

/* Stroke */
.stroke-currentColor { stroke: currentColor; }

/* Inline utilities */
.inline-flex { display: inline-flex; }

/* Custom utility classes */
.contain-layout { contain: layout style; }
.will-change-transform { will-change: transform; }
.custom-scrollbar { scrollbar-width: thin; }
.font-code { font-family: var(--code-font), monospace; }
.tracking-wider { letter-spacing: 0.05em; }
.pt-14 { padding-top: 3.5rem; }
.pb-8 { padding-bottom: 2rem; }