/*
 * Legacy Android fallback stylesheet.
 * Keep this file intentionally simple: old WebViews may ignore the main
 * generated stylesheet, but they can still apply plain CSS rules.
 */
html {
  background: #09091a;
  color: #f7f5ff;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #09091a;
  color: #f7f5ff;
}

* {
  box-sizing: border-box;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: inline-block;
  vertical-align: middle;
}

#root {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(107, 91, 255, 0.22), transparent 34%),
    linear-gradient(180deg, #11112b 0%, #09091a 100%);
}

.min-h-screen {
  min-height: 100vh;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-md {
  max-width: 430px;
}

.w-full {
  width: 100%;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.left-4 {
  left: 1rem;
}

.right-4 {
  right: 1rem;
}

.top-1\/2 {
  top: 50%;
}

.-translate-y-1\/2 {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.gap-1,
.gap-1\.5,
.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-8 {
  margin-top: 2rem;
}

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

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4,
.p-5 {
  padding: 1.25rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pl-12 {
  padding-left: 3rem;
}

.pr-12 {
  padding-right: 3rem;
}

.h-5,
.w-5 {
  width: 1.25rem;
  height: 1.25rem;
}

.h-10,
.w-10 {
  width: 2.5rem;
  height: 2.5rem;
}

.h-14 {
  height: 3.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-full {
  border-radius: 999px;
}

.border,
.border-t {
  border-color: rgba(255, 255, 255, 0.12);
}

.border {
  border-width: 1px;
  border-style: solid;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.bg-card,
.bg-card-gradient {
  background: #14142e;
}

.bg-money-gradient {
  background: #5f55f5;
  background: linear-gradient(135deg, #4838d1 0%, #6c63ff 100%);
}

.bg-background\/90 {
  background: rgba(9, 9, 26, 0.92);
}

.text-primary-foreground,
.text-foreground {
  color: #ffffff;
}

.text-muted-foreground {
  color: #aaa6c4;
}

.text-gold {
  color: #8d96ff;
}

.text-destructive {
  color: #ff6b8a;
}

.fill-current {
  fill: currentColor;
}

.fill-gold {
  fill: #8d96ff;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.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-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.font-bold,
.font-semibold {
  font-weight: 700;
}

.font-normal {
  font-weight: 400;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.uppercase {
  text-transform: uppercase;
}

.shadow-card,
.shadow-gold {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

input,
select,
textarea,
.h-14 {
  border-radius: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #11112b;
  color: #ffffff;
  outline: none;
}

input::-webkit-input-placeholder {
  color: #8f8aa8;
}

input::placeholder {
  color: #8f8aa8;
}

button[type='submit'],
.bg-money-gradient.text-primary-foreground {
  border: 0;
  color: #ffffff;
}

.disabled\:opacity-50:disabled,
button:disabled {
  opacity: 0.55;
}

.pointer-events-none {
  pointer-events: none;
}

.z-50 {
  z-index: 50;
}

.overflow-hidden {
  overflow: hidden;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.min-w-0 {
  min-width: 0;
}

.shrink-0 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
