:root {
  --toolbar-padding: 20px;
  --toolbar-spacing: 20px;
  --color-background: #080A0C;
  --color-text-primary: #FFFFFF;
  --color-text-secondary: rgba(255, 255, 255, 0.50);
  --info-spacing: 15px;
  --min-width: 350px;
  --min-thumbnail-height: 350px;
  --bottom-wrapper-height: 90px;
}

body {
  margin: 0;
  font-family: "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--color-background);
  color: #e6eef0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  height: auto;
  min-width: var(--min-width);
  overflow-x: hidden;
  overflow-y: auto;
}

.unsupported-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.logo {
    width: 230px;
    height: auto;
    margin-bottom: 20px;
}

.message {
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    color: var(--color-text-secondary);
}

.store-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.store-badge {
    height: 48px;
    transition: transform 0.2s ease;
}

.store-badge:hover {
    transform: scale(1.05);
}