* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f1ea;
  color: #2b2b2b;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

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

h1 {
  font-size: 2rem;
  margin: 0 0 4px;
}

.logo {
  margin-right: 6px;
}

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

.sites {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 520px) {
  .sites {
    grid-template-columns: 1fr 1fr;
  }
}

.site-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.site-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.site-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.site-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.site-url {
  font-size: 0.8rem;
  color: #b5423a;
  margin-bottom: 10px;
}

.site-desc {
  font-size: 0.85rem;
  color: #6b6459;
  line-height: 1.4;
}
