/* Tailwind CSS Fallback - Generated for ArcX Homepage */
/* Root & Base Styles */
*, ::before, ::after { box-sizing: border-box; margin: 0; padding: 0; border-width: 0; border-style: solid; border-color: currentColor; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; font-family: system-ui, -apple-system, sans-serif; }
body { margin: 0; line-height: inherit; }

/* Custom Colors (from Tailwind config) */
:root {
  --color-accent: #00E5FF;
  --color-ink: #0F1216;
  --color-steel: #1A1E24;
  --color-ember: #FF7F00;
}

/* Layout */
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.fixed { position: fixed; }
.relative { position: relative; }

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

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Spacing - Gap */
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Spacing - Padding */
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-12 { padding: 3rem; }
.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; }
.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-12 { padding-top: 3rem; padding-bottom: 3rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-10 { padding-bottom: 2.5rem; }
@media (min-width: 768px) {
  .md\:pt-12 { padding-top: 3rem; }
  .md\:pb-16 { padding-bottom: 4rem; }
}
@media (min-width: 1024px) {
  .lg\:pt-16 { padding-top: 4rem; }
  .lg\:pb-24 { padding-bottom: 6rem; }
}

/* Spacing - Margin */
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-auto { margin-top: auto; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Sizing */
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-auto { height: auto; }
.h-full { height: 100%; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-full { width: 100%; }
.min-h-screen { min-height: 100vh; }
.min-h-\[44px\] { min-height: 44px; }
.min-h-\[48px\] { min-height: 48px; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
@media (min-width: 768px) {
  .md\:w-auto { width: auto; }
}

/* Typography */
.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-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
@media (min-width: 768px) {
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
}
@media (min-width: 1024px) {
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
}

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.leading-tight { line-height: 1.25; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Text Colors */
.text-white { color: rgb(255, 255, 255); }
.text-white\/40 { color: rgba(255, 255, 255, 0.4); }
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-accent { color: var(--color-accent); }
.text-ink { color: var(--color-ink); }
.text-red-400 { color: rgb(248, 113, 113); }
.text-yellow-400 { color: rgb(250, 204, 21); }

/* Background Colors */
.bg-raid { background: radial-gradient(120% 80% at 70% 10%, rgba(0,229,255,0.15), rgba(26,30,36,0) 60%), radial-gradient(120% 80% at 30% 10%, rgba(255,127,0,0.08), rgba(26,30,36,0) 60%), linear-gradient(180deg, #0B0E12 0%, #0F1216 40%, #0B0E12 100%); }
.bg-accent { background-color: var(--color-accent); }
.bg-accent\/10 { background-color: rgba(0, 229, 255, 0.1); }
.bg-ink\/95 { background-color: rgba(15, 18, 22, 0.95); }
.bg-steel\/30 { background-color: rgba(26, 30, 36, 0.3); }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-red-600\/20 { background-color: rgba(220, 38, 38, 0.2); }
.bg-yellow-600\/20 { background-color: rgba(202, 138, 4, 0.2); }

/* Hover Background Colors */
.hover\:bg-accent\/10:hover { background-color: rgba(0, 229, 255, 0.1); }
.hover\:bg-accent\/20:hover { background-color: rgba(0, 229, 255, 0.2); }
.hover\:bg-accent\/90:hover { background-color: rgba(0, 229, 255, 0.9); }
.hover\:bg-white\/5:hover { background-color: rgba(255, 255, 255, 0.05); }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover\:bg-red-600\/30:hover { background-color: rgba(220, 38, 38, 0.3); }
.hover\:bg-yellow-600\/30:hover { background-color: rgba(202, 138, 4, 0.3); }

/* Hover Text Colors */
.hover\:text-accent:hover { color: var(--color-accent); }
.hover\:text-white:hover { color: rgb(255, 255, 255); }
.hover\:underline:hover { text-decoration: underline; }

/* Borders */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-accent\/20 { border-color: rgba(0, 229, 255, 0.2); }
.border-accent\/30 { border-color: rgba(0, 229, 255, 0.3); }
.border-red-500\/40 { border-color: rgba(239, 68, 68, 0.4); }
.border-yellow-500\/40 { border-color: rgba(234, 179, 8, 0.4); }
.hover\:border-accent\/50:hover { border-color: rgba(0, 229, 255, 0.5); }

/* Border Radius */
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }

/* Effects */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.hover\:brightness-110:hover { filter: brightness(1.1); }

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

/* Position */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-50 { z-index: 50; }

/* Focus States */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5), 0 0 0 4px currentColor; }
.focus\:ring-accent:focus { --tw-ring-color: var(--color-accent); }
.focus\:ring-accent\/50:focus { --tw-ring-color: rgba(0, 229, 255, 0.5); }
.focus\:ring-red-400:focus { --tw-ring-color: rgb(248, 113, 113); }
.focus\:ring-yellow-400:focus { --tw-ring-color: rgb(250, 204, 21); }
.focus\:ring-offset-2:focus { --tw-ring-offset-width: 2px; }
.focus\:ring-offset-ink:focus { --tw-ring-offset-color: var(--color-ink); }

/* Group Hover Effects */
.group:hover .group-hover\:drop-shadow-\[0_0_8px_rgba\(0\2c 229\2c 255\2c 0\.6\)\] { filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.6)); }

/* Selection */
.selection\:bg-accent\/20 ::selection { background-color: rgba(0, 229, 255, 0.2); }
.selection\:text-white ::selection { color: rgb(255, 255, 255); }
::selection { background-color: rgba(0, 229, 255, 0.2); color: rgb(255, 255, 255); }

/* Screen Reader Only */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }

/* Responsive Utilities */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}

/* Mobile Menu Styles (Custom) */
@media (max-width: 767px) {
  #mobile-menu.hidden { display: none; }
  #mobile-menu { display: none; }
  #mobile-menu:not(.hidden) { display: flex; }
}
