.page.home {
  align-items: stretch;
  padding-bottom: 90px;
}
.home-list {
  flex: 1;
  overflow-y: auto;
  padding: 0 10px;
}
.sub-tile {
  margin: 8px 0;
}

.page.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  text-align: center;
  padding: 20px 10px 90px;
  background: #0d0d0f;
}

/* Заголовок */
.page.home h1 {
  font-size: 1.6em;
  font-weight: 500;
  color: #e6e6e6;
  margin: 10px 0 20px;
}

/* Контейнер подписок */
.subscriptions {
  flex: 1;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  padding: 0 10px;
}

/* Плитки подписок */
.subscription-tile {
  width: 100%;
  background: #1c1c22;
  border-radius: 12px;
  margin: 10px 0;
  padding: 14px 0;
  color: #e6e6e6;
  font-size: 1.05em;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
  transition: background 0.25s ease, transform 0.2s ease;
}
