/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --background: #0a0a0f;
  --foreground: #e0e0e0;
  --primary: #6366f1;
  --primary-glow: #6366f180;
  --surface: #ffffff0d;
  --surface-border: #ffffff1a;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  display: flex;
}

body:before {
  content: "";
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 15%, #6366f126, #0000 25%), radial-gradient(circle at 85% 30%, #8b5cf626, #0000 25%);
  position: fixed;
  inset: 0;
}

h1, h2, h3, h4 {
  letter-spacing: -.02em;
  margin: 0;
  font-weight: 700;
}

.premium-title {
  background: linear-gradient(to right, #a8c0ff, #3f2b96);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.glass-card {
  background: var(--surface);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 8px 32px #0000004d;
}

.glass-card:hover {
  box-shadow: 0 12px 40px 0 #0006, 0 0 20px var(--primary-glow);
  transform: translateY(-5px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  box-shadow: 0 0 15px var(--primary-glow);
  background: #4f46e5;
  transform: scale(1.02);
}

.btn-primary:active {
  transform: scale(.98);
}

.drop-zone {
  border: 2px dashed var(--surface-border);
  text-align: center;
  cursor: pointer;
  background: #ffffff05;
  border-radius: 12px;
  padding: 3rem 2rem;
  transition: all .3s;
}

.drop-zone:hover, .drop-zone.active {
  border-color: var(--primary);
  background: #6366f10d;
}

.drop-zone p {
  color: #a0a0a0;
  margin-top: 1rem;
}

.nav-bar {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--surface-border);
  background: #0a0a0fcc;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  display: flex;
}

.nav-logo {
  color: #fff;
  align-items: center;
  gap: .5rem;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}

.token-badge {
  color: gold;
  background: #ffd7001a;
  border: 1px solid #ffd70033;
  border-radius: 99px;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-weight: 600;
  display: flex;
}

.container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-section {
  text-align: center;
  padding: 6rem 1rem;
}

.hero-subtitle {
  color: #a0a0a0;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  display: grid;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: .8s cubic-bezier(.16, 1, .3, 1) forwards fadeIn;
}

.delay-1 {
  animation-delay: .1s;
}

.delay-2 {
  animation-delay: .2s;
}

.delay-3 {
  animation-delay: .3s;
}

.dashboard-grid {
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  display: grid;
}

@media (max-width: 768px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

.result-item {
  border-bottom: 1px solid var(--surface-border);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.result-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.result-label {
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .85rem;
}

.result-value {
  word-break: break-all;
  margin-top: .25rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.status-authentic {
  color: #4ade80;
}

.status-unknown {
  color: #facc15;
}

.status-fake {
  color: #f87171;
}

.spinner {
  border: 3px solid #ffffff4d;
  border-top-color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: 1s ease-in-out infinite spin;
}

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

.print-only {
  display: none;
}

@media print {
  .no-print, nav, .hero-section, button {
    display: none !important;
  }

  .print-only {
    display: block !important;
  }

  * {
    overflow: visible !important;
  }

  body, html, main, .container, .dashboard-grid, .glass-card {
    color: #1f2937 !important;
    height: auto !important;
    min-height: auto !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    background: #fff !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 11pt !important;
    display: block !important;
    position: static !important;
  }

  body:before {
    display: none !important;
  }

  @page {
    size: A4 portrait;
    margin: 1.5cm;
  }

  .print-header {
    color: #fff !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    background: #1e3a8a !important;
    margin-bottom: 1.5rem !important;
    padding: 1.5rem !important;
  }

  .print-box {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    background: #f9fafb !important;
    border: 1px solid #d1d5db !important;
    border-radius: 4px !important;
    margin-bottom: 1rem !important;
    padding: 1rem !important;
  }

  .print-section-title {
    color: #0f766e !important;
    border-left: 5px solid #0d9488 !important;
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
    padding-left: .75rem !important;
    font-size: 1.25rem !important;
  }

  .print-table {
    border-collapse: collapse !important;
    width: 100% !important;
    font-size: .85rem !important;
  }

  .print-table th {
    color: #374151 !important;
    text-align: left !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    background: #f3f4f6 !important;
    border: 1px solid #e5e7eb !important;
    padding: .6rem !important;
  }

  .print-table td {
    color: #1f2937 !important;
    border: 1px solid #e5e7eb !important;
    padding: .6rem !important;
  }
}

/*# sourceMappingURL=src_app_globals_162hn9o.css.map*/