
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f9fafb;
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1f2937;
}

.title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.2;
}

#message {
  font-size: 18px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 24px;
  line-height: 1.4;
}

#info {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 24px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.info-grid.single-column {
  grid-template-columns: 1fr;
  max-width: 200px;
  margin: 0 auto 32px auto;
}

.info-grid.hidden {
  display: none;
}

.info-card.hidden {
  display: none;
}

.info-card {
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.info-label {
  font-size: 12px;
  font-weight: 500;
  color: #e55a2b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-value {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
}


.footer-text {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 400;
}

.loading-dots {
  display: inline-flex;
  gap: 4px;
  margin-left: 8px;
}

.loading-dot {
  width: 4px;
  height: 4px;
  background: #ff6b35;
  border-radius: 50%;
  animation: loading 1.4s infinite both;
}

.loading-dot:nth-child(1) { 
  animation-delay: 0s; 
}

.loading-dot:nth-child(2) { 
  animation-delay: 0.2s; 
}

.loading-dot:nth-child(3) { 
  animation-delay: 0.4s; 
}

.status-indicator {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fbbf24;
  border-radius: 50%;
  border: 3px solid white;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { 
    opacity: 1; 
  }
  50% { 
    opacity: 0.5; 
  }
}


@keyframes loading {
  0%, 80%, 100% { 
    opacity: 0.3; 
    transform: scale(0.8); 
  }
  40% { 
    opacity: 1; 
    transform: scale(1); 
  }
}

@media (max-width: 480px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .title {
    font-size: 24px;
  }

  #message {
    font-size: 16px;
  }
}