/* Tailwind CSS Reset & Base Styles */
*, ::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%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

body {
  margin: 0;
  line-height: inherit;
  background-color: #050505;
  color: #ffffff;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button, select {
  text-transform: none;
}

button, [type='button'], [type='reset'], [type='submit'] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
}

img, video {
  max-width: 100%;
  height: auto;
}

/* Custom Utilities */
.mint-glow {
  text-shadow: 0 0 40px rgba(0, 255, 163, 0.3);
}

.modal-enter {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
}

.modal-enter-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  transition: all 0.2s ease-out;
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
  .transition-all, .transition-colors, .modal-enter-active {
    transition: none !important;
    animation: none !important;
  }
}

/* Tailwind Utilities */
.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;
}

.absolute { position: absolute; }
.relative { position: relative; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }

.top-0 { top: 0; }
.top-1\/2 { top: 50%; }
.left-1\/2 { left: 50%; }
.right-0 { right: 0; }
.-top-12 { top: -3rem; }

.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-\[100\] { z-index: 100; }

.mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-12 { margin-top: 3rem; }

.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

.h-3 { height: 0.75rem; }
.h-8 { height: 2rem; }
.h-full { height: 100%; }
.h-\[500px\] { height: 500px; }

.w-3 { width: 0.75rem; }
.w-8 { width: 2rem; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-\[500px\] { width: 500px; }
.max-w-lg { max-width: 32rem; }

.flex-grow { flex-grow: 1; }
.flex-col { flex-direction: column; }

.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.items-center { align-items: center; }
.items-end { align-items: flex-end; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 2rem;
}

.overflow-hidden { overflow: hidden; }

.rounded { border-radius: 0.25rem; }
.rounded-full { border-radius: 9999px; }

.border { border-width: 1px; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-transparent { border-color: transparent; }
.border-mint-400 { border-color: #00FFA3; }

.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-black\/90 { background-color: rgba(0, 0, 0, 0.9); }
.bg-\[\#0a0a0a\] { background-color: #0a0a0a; }
.bg-mint-400 { background-color: #00FFA3; }
.bg-mint-400\/5 { background-color: rgba(0, 255, 163, 0.05); }

.bg-clip-text { background-clip: text; }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.from-mint-400 { --tw-gradient-from: #00FFA3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 255, 163, 0)); }
.to-emerald-800 { --tw-gradient-to: #065f46; }

.object-contain { object-fit: contain; }

.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.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; }
.pb-8 { padding-bottom: 2rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }

.text-center { text-align: center; }
.text-right { text-align: right; }

.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace; }
.font-sans { font-family: Inter, ui-sans-serif, system-ui, sans-serif; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-\[10px\] { font-size: 10px; }

.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.uppercase { text-transform: uppercase; }

.leading-none { line-height: 1; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-transparent { color: transparent; }
.text-zinc-400 { color: #a1a1aa; }
.text-zinc-500 { color: #71717a; }
.text-zinc-600 { color: #52525b; }
.text-zinc-700 { color: #3f3f46; }
.text-mint-400 { color: #00FFA3; }
.text-white\/30 { color: rgba(255, 255, 255, 0.3); }

.underline { text-decoration-line: underline; }
.decoration-mint-400 { text-decoration-color: #00FFA3; }
.decoration-2 { text-decoration-thickness: 2px; }
.underline-offset-4 { text-underline-offset: 4px; }

.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

.blur-\[120px\] { filter: blur(120px); }

.backdrop-blur-md { backdrop-filter: blur(12px); }

.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }

.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

.select-none { user-select: none; }

.break-all { word-break: break-all; }

.not-italic { font-style: normal; }

.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-mint-400\/5 { box-shadow: 0 0 0 1px rgba(0, 255, 163, 0.05); }

.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }

.selection\:bg-mint-400 ::selection { background-color: #00FFA3; }
.selection\:text-black ::selection { color: #000000; }

/* Hover States */
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-mint-400:hover { color: #00FFA3; }
.hover\:bg-mint-400:hover { background-color: #00FFA3; }
.hover\:bg-mint-400\/5:hover { background-color: rgba(0, 255, 163, 0.05); }
.hover\:border-mint-400\/50:hover { border-color: rgba(0, 255, 163, 0.5); }

/* Focus States */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--tw-ring-color); }
.focus\:ring-mint-400:focus { --tw-ring-color: #00FFA3; }
.focus\:ring-white:focus { --tw-ring-color: #ffffff; }
.focus\:ring-offset-2:focus { --tw-ring-offset-width: 2px; }
.focus\:ring-offset-dark:focus { --tw-ring-offset-color: #050505; }
.focus\:ring-offset-black:focus { --tw-ring-offset-color: #000000; }
.focus\:underline:focus { text-decoration-line: underline; }

/* Responsive - Small Screens (640px+) */
@media (min-width: 640px) {
  .sm\:inline-block { display: inline-block; }
  .sm\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

/* Responsive - Medium Screens (768px+) */
@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:inline { display: inline; }
  .md\:gap-8 { gap: 2rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-9xl { font-size: 8rem; line-height: 1; }
}

/* Additional Focus Ring Fixes */
.focus\:ring-2:focus {
  box-shadow: 0 0 0 calc(2px + var(--tw-ring-offset-width, 0px)) var(--tw-ring-color, #00FFA3);
}