/* Extracted from index.html <style> block. */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #9333ea 0%, #2563eb 50%, #06b6d4 100%);
  position: relative;
  overflow-x: hidden;
}

/* Animated background elements */
.bg-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}

.bg-element-1 {
  top: 80px;
  left: 40px;
  width: 288px;
  height: 288px;
  background: rgba(255, 255, 255, 0.1);
}

.bg-element-2 {
  bottom: 80px;
  right: 40px;
  width: 384px;
  height: 384px;
  background: rgba(236, 72, 153, 0.2);
  animation-delay: 1s;
}

.bg-element-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: rgba(251, 191, 36, 0.1);
  animation-delay: 0.5s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.container {
  position: relative;
  z-index: 10;
  max-width: 448px;
  margin: 0 auto;
  padding: 32px 16px;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 32px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
}

.header-icon {
  width: 32px;
  height: 32px;
  color: white;
}

.header-title {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.header-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* Cards */
.card {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
  box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.4);
}

.card-header {
  padding: 24px 24px 12px 24px;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.card-icon-wrapper {
  padding: 8px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(4px);
}

.card-icon {
  width: 20px;
  height: 20px;
  color: white;
}

.card-content {
  padding: 0 24px 24px 24px;
}

/* Info rows */
.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  max-width: 40%;
  word-break: break-all;
}

.info-value {
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-align: right;
  max-width: 60%;
  word-break: break-all;
}

.info-icon {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  top: 2px;
  margin-right: 4px;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  border: 1px solid;
}

.badge-success {
  color: rgb(34, 197, 94);
  border-color: rgb(34, 197, 94);
  background: rgb(34, 197, 94, 0.1);
}

.badge-danger {
  color: rgb(239, 68, 68);
  border-color: rgb(239, 68, 68);
  background: rgb(239, 68, 68, 0.1);
}

/* Loading skeleton */
.skeleton {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  animation: skeleton-pulse 2s ease-in-out infinite;
}

@keyframes skeleton-pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}

.skeleton-card {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.error-icon {
  width: 48px;
  height: 48px;
  color: rgb(252, 165, 165);
  margin: 0 auto 12px;
}

.error-title {
  color: white;
  font-weight: 600;
  margin-bottom: 4px;
}

.error-message {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 32px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

/* Hidden class */
.hidden {
  display: none;
}
