:root {}

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

body {
  font-family: var(--font, system-ui, sans-serif);
  background: var(--bg, #f4f4f5);
  color: var(--text, #18181b);
}

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.top {
  text-align: center;
  margin-bottom: 2.5rem;
}

.top__logo {
  max-height: 48px;
  margin-bottom: 1rem;
}

.top__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.top__sub {
  margin-top: 0.5rem;
  opacity: 0.6;
}

.grid-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.5;
  margin-bottom: 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.tile {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #e4e4e7;
  transition: transform 0.15s, box-shadow 0.15s;
}

.tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.tile--hot {
  border-color: #fca5a5;
}

.tile__hot {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
}

.tile__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.tile__name {
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
}

.tile__text {
  font-size: 0.875rem;
  opacity: 0.65;
  flex: 1;
  margin-bottom: 1rem;
}

.tile__btn {
  display: block;
  text-align: center;
  padding: 0.625rem;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
}

.grid-section {
  margin-bottom: 2rem;
}

.bottom {
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.4;
  margin-top: 2rem;
}
