html, body {
  margin: 0;
  padding: 0;
  background: #0A0E11;
}

[class^="is-"],
[class*=" is-"] {
  display: flex;
}

body.gptv-feed-page {
  overflow: hidden;
  background: #0A0E11;
}

.gptv-creator-btn {
  width: 100%;
  appearance: none;
  border: 0;
  border-radius: 16px;
  min-height: 58px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}

.gptv-creator-btn:hover {
  transform: translateY(-1px);
}

.gptv-creator-btn-follow {
  background: #9891F0;
  box-shadow: 0 0 34px rgba(152, 145, 240, .30);
}

.gptv-creator-btn-follow.is-following {
  background: #2a2f3a;
  box-shadow: none;
}

.gptv-creator-btn-subscribe {
  background: #5E56FF;
  box-shadow: 0 0 34px rgba(94, 86, 255, .35);
}

.gptv-feed-empty {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #0A0E11;
}

.gptv-locked-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111722;
}

.gptv-lock-overlay {
  padding: 20px 24px;
  border-radius: 16px;
  background: rgba(10,14,17,.72);
  color: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .gptv-creator-btn {
    min-width: 0;
  }
}