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

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
}

.container {
  text-align: center;
  padding: 2rem;
}

.card {
  max-width: 520px;
  padding: 3rem 2.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.accent {
  color: #38bdf8;
}

.divider {
  width: 60px;
  height: 3px;
  background: #38bdf8;
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.message {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.loader {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.loader span {
  width: 8px;
  height: 8px;
  background: #38bdf8;
  border-radius: 50%;
  animation: bounce 1.4s ease-in-out infinite;
}

.loader span:nth-child(2) {
  animation-delay: 0.2s;
}

.loader span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.small-text {
  font-size: 0.85rem;
}

.left-container p {
  margin: -5px -2px;
  font-size: 2em;
  font-weight: 700;
}

.right {
  justify-content: flex-end;
}

.indent {
  margin-left: 1em;
}

.calories-info span {
  font-size: 2.4em;
  font-weight: 700;
  margin: -7px -2px;
}

.calories-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.calories-info h2 {
  margin: 0;
}

.daily-value p:not(.no-divider) {
  border-bottom: 1px solid #888989;
}

.double-indent {
  margin-left: 2em;
}

.note {
  font-size: 0.6rem;
  margin: 5px 0;
  padding: 0 8px;
  text-indent: -8px;
}