/* Shown only until React mounts; replaced when #root hydrates */
@keyframes tj-shimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}

@keyframes tj-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes tj-pulse-logo {
  0%,
  100% {
    opacity: 0.85;
  }
  50% {
    opacity: 1;
  }
}

#app-initial-load {
  min-height: 100vh;
  min-height: 100dvh;
  background: #fff;
  display: flex;
  flex-direction: column;
  font-family: Montserrat, system-ui, -apple-system, sans-serif;
}

#app-initial-load .tj-load-header {
  height: 72px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  padding: 0 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

#app-initial-load .tj-load-logo {
  height: 40px;
  width: auto;
  animation: tj-pulse-logo 1.8s ease-in-out infinite;
}

#app-initial-load .tj-load-body {
  flex: 1;
  padding: 0 0 32px;
}

#app-initial-load .tj-load-banner {
  height: 280px;
  max-height: 40vh;
  background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 50%, #80cbc4 100%);
  position: relative;
  overflow: hidden;
}

#app-initial-load .tj-load-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: tj-shimmer 1.6s ease-in-out infinite;
}

#app-initial-load .tj-load-content {
  max-width: 1200px;
  margin: -40px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

#app-initial-load .tj-load-search {
  height: 56px;
  border-radius: 12px;
  margin-bottom: 28px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

#app-initial-load .tj-load-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

#app-initial-load .tj-load-card {
  height: 220px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

#app-initial-load .tj-shimmer {
  background: #e5e7eb;
  background-image: linear-gradient(
    90deg,
    #e5e7eb 0%,
    #f9fafb 20%,
    #e5e7eb 40%,
    #e5e7eb 100%
  );
  background-size: 800px 100%;
  animation: tj-shimmer 1.4s ease-in-out infinite;
}

#app-initial-load .tj-load-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px;
}

#app-initial-load .tj-load-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 169, 145, 0.2);
  border-top-color: #00a991;
  border-radius: 50%;
  animation: tj-spin 0.85s linear infinite;
}

#app-initial-load .tj-load-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}

.seo-crawler-content {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
