.gptv-tiktok-feed {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  background: #0A0E11;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gptv-tiktok-feed, .gptv-feed-item-fullscreen {
  overflow: unset !important;
}

.gptv-tiktok-feed::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.gptv-feed-item-fullscreen {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  background: #0A0E11;
}

.gptv-creator-viewer-shell {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(360px, 46vw) minmax(340px, 34vw);
  justify-content: center;
  align-items: center;
  gap: 56px;
  padding: 28px 88px 28px 48px;
  box-sizing: border-box;
}

.gptv-creator-viewer-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.gptv-creator-viewer-main-inner {
  position: relative;
  width: min(100%, 640px);
  height: min(88vh, 920px);
  border-radius: 28px;
  overflow: hidden;
  background: #111722;
  box-shadow: 0 0 60px 10px #5E5AFC;
}

.gptv-creator-viewer-main-inner .gptv-feed-media,
.gptv-creator-viewer-main-inner .gptv-feed-media img,
.gptv-creator-viewer-main-inner .gptv-feed-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gptv-creator-viewer-sidebar {
  min-width: 0;
}

.gptv-creator-panel {
  width: 100%;
  max-width: 560px;
}

.gptv-creator-header {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 26px;
}

.gptv-creator-avatar img,
.gptv-creator-avatar .avatar {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  display: block;
}

.gptv-creator-name {
  margin-bottom: 5px !important;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

.gptv-creator-username {
  font-size: 18px;
  line-height: 1.2;
  color: #6D63FF;
  font-weight: 600;
  margin-bottom: 14px;
}

.gptv-creator-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255,255,255,.88);
  font-size: 15px;
}

.gptv-creator-stats strong {
  color: #fff;
}

.gptv-creator-actions-row {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
}

.gptv-creator-bio {
  margin-bottom: 24px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.5;
}

.gptv-side-section {
  margin-top: 30px;
}

.gptv-side-section-title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.gptv-related-list,
.gptv-shop-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.gptv-related-card,
.gptv-shop-card {
  position: relative;
  /* width: 100px; */
  height: 178px;
  border-radius: 16px;
  overflow: hidden;
  /* flex: 0 0 auto; */
  flex: 1 1 0px;
  background: #151C28;
  box-shadow:
    0 0 0 1px rgba(124,105,255,.12),
    0 0 26px rgba(94, 86, 255, .35);
}

.gptv-related-card-media {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.gptv-related-card.is-locked .gptv-related-card-media {
  filter: blur(10px);
  transform: scale(1.08);
}

.gptv-related-card-lock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(94, 86, 255, .14);
}

.gptv-related-card-lock-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.88);
  font-size: 20px;
}

.gptv-related-card-placeholder,
.gptv-shop-card-image {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(122,113,255,.35), rgba(40,52,76,.55)),
    #151C28;
}

.gptv-empty-mini-list {
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.gptv-feed-nav {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gptv-feed-nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 0 !important;
  appearance: none;
  background: transparent;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease;
}

.gptv-feed-nav-btn:hover:not(:disabled) {
  transform: scale(1.05);
}

.gptv-feed-nav-btn:disabled {
  opacity: .35;
  cursor: default;
  box-shadow: none;
}

.gptv-feed-nav-fixed {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 18px;
  pointer-events: auto;
}

.gptv-feed-nav-fixed .gptv-feed-nav-btn {
  appearance: none;
  border: 0;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #5E56FF;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(94, 86, 255, .35);
  transition: transform .18s ease, opacity .18s ease;
}

.gptv-feed-nav-fixed .gptv-feed-nav-btn:hover:not(:disabled) {
  transform: scale(1.05);
}

.gptv-feed-nav-fixed .gptv-feed-nav-btn:disabled {
  opacity: .35;
  cursor: default;
  box-shadow: none;
}

.gptv-like-burst {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) scale(.7);
  font-size: 82px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  z-index: 4;
  transition: opacity .22s ease, transform .22s ease;
  text-shadow: 0 8px 30px rgba(0,0,0,.35);
}

.gptv-like-burst.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 1399px) {
  .gptv-creator-viewer-shell {
    grid-template-columns: minmax(320px, 42vw) minmax(320px, 36vw);
    gap: 32px;
    padding: 24px 64px 24px 32px;
  }

  .gptv-creator-name {
    font-size: 42px;
  }

  .gptv-creator-avatar img,
  .gptv-creator-avatar .avatar {
    width: 92px;
    height: 92px;
  }
}

@media (max-width: 991px) {
  .gptv-creator-viewer-shell {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 18px 32px;
    align-items: start;
    overflow-y: auto;
  }

  .gptv-feed-item-fullscreen {
    overflow-y: auto;
  }

  .gptv-creator-viewer-main-inner {
    width: 100%;
    height: 56vh;
    min-height: 360px;
  }

  .gptv-creator-panel {
    max-width: none;
  }

  .gptv-creator-name {
    font-size: 34px;
  }

  .gptv-creator-username {
    font-size: 18px;
  }

  .gptv-creator-actions-row {
    flex-wrap: wrap;
  }

  .gptv-creator-btn {
    min-width: 0;
    flex: 1 1 220px;
  }

  .gptv-related-list,
  .gptv-shop-list {
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .gptv-related-list::-webkit-scrollbar,
  .gptv-shop-list::-webkit-scrollbar {
    display: none;
  }

  .gptv-feed-nav {
    right: 12px;
  }
}

@media (max-width: 767px) {
  .gptv-feed-item-fullscreen {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .gptv-creator-viewer-shell {
    padding: 12px 12px 28px;
  }

  .gptv-creator-viewer-main-inner {
    height: 50vh;
    min-height: 300px;
    border-radius: 22px;
  }

  .gptv-creator-header {
    gap: 14px;
  }

  .gptv-creator-avatar img,
  .gptv-creator-avatar .avatar {
    width: 72px;
    height: 72px;
  }

  .gptv-creator-name {
    font-size: 28px;
  }

  .gptv-creator-username {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .gptv-creator-stats {
    gap: 10px;
    font-size: 13px;
  }

  .gptv-related-card,
  .gptv-shop-card {
    width: 102px;
    height: 154px;
  }

  .gptv-feed-nav-btn {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .gptv-feed-nav-fixed {
    right: 12px;
  }

  .gptv-feed-nav-fixed .gptv-feed-nav-btn {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }
}