:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f5f7;
  color: #1a1a1a;
}

#app {
  width: 100%;
  max-width: 640px;
  padding: 48px 24px;
  text-align: center;
}

.logo {
  max-height: 56px;
  margin-bottom: 16px;
}

h1 {
  font-size: 1.5rem;
  margin: 0 0 8px;
}

.subtitle {
  color: #555;
  margin: 0 0 32px;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.tile {
  display: block;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease;
}

.tile:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.tile-name {
  font-weight: 600;
}

.tile-region {
  margin-top: 4px;
  font-size: 0.85rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.loading,
.error,
.empty {
  color: #555;
}

.error {
  color: #b3261e;
}
