:root {
  /* Colors - Light Theme */
  --color-primary: #1d4ed8;
  --color-primary-hover: #1e40af;
  --color-success: #10b981;
  --color-success-hover: #059669;
  --color-info: #0ea5e9;
  --color-info-hover: #0284c7;
  
  /* Background Colors */
  --bg-body: #f5f5f5;
  --bg-container: #ffffff;
  --bg-input: #ffffff;
  --bg-input-readonly: #f9fafb;
  --bg-button: #f9fafb;
  --bg-button-hover: #e0e7ff;
  
  /* Text Colors */
  --text-primary: #0f172a;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --text-on-primary: #ffffff;
  
  /* Border Colors */
  --border-color: #cbd5e1;
  --border-subtle: #e5e7eb;
  
  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 2px 10px rgba(0, 0, 0, 0.1);
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-full: 999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.2s ease;
}


body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--text-on-primary);
}
.container {
  text-align: center;
  padding: 20px;
}
.loader {
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 3px solid var(--text-on-primary);
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.buttons {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
/* Arrange store badges horizontally while keeping other .buttons children stacked */
.store-badges {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.store-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.store-badge:hover {
  transform: scale(1.05);
}
.store-badge img {
  display: block;
}

/* Individual sizes for each badge */
.app-store-badge img {
  width: 160px;
  height: auto;
  border-radius: 10px;
}

.play-store-badge img {
  width: 160px;
  height: auto;
  border-radius: 10px;
}

/* Ensure badges are responsive — stack vertically on small screens */
@media (max-width: 420px) {
  .store-badges {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.app-icon {
  width: 120px;
  height: 120px;
  border-radius: 25px; /* Rounded corners like iOS icons */
  margin-top: 20px;
  margin-bottom: 0px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Nice shadow */
  background-color: #f8f8f8;
}
.views {
  margin-top: 20px;
  color: #f8f8f8;
  font-size: 0.95rem;
  font-weight: 500;
}

