/* pages.css — CSS khusus halaman yang butuh style standalone */

body.page-share {
  background: var(--bg);
}

.share-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  text-align: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.share-logo { margin-bottom: 28px; }

.share-poster-wrap { position: relative; width: 150px; margin-bottom: 24px; }

.share-poster-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: calc(var(--r-lg) + 10px);
  background: var(--brand-grad);
  opacity: .38;
  filter: blur(22px);
}

.share-poster {
  width: 150px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border-h);
  box-shadow: 0 24px 70px rgba(0,0,0,.85);
  position: relative;
  background: var(--glass);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.share-poster img { width: 100%; display: block; }

.share-poster-ph {
  aspect-ratio: 2/3;
  width: 100%;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-cta {
  font-size: clamp(21px, 5vw, 29px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--text);
}

.share-cta span {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.share-sub {
  font-size: 14px;
  color: var(--text-m);
  max-width: 300px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.share-btns { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 280px; }

.share-watch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: var(--r-xl);
  background: var(--brand-grad);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 34px rgba(220,38,38,.45);
  transition: transform .2s, box-shadow .2s;
}

.share-watch-btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 40px rgba(220,38,38,.55); }

.share-copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: var(--r-xl);
  background: var(--glass);
  border: 1px solid var(--glass-border-h);
  color: var(--text-m);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: all .2s;
}

.share-copy-btn:hover { background: var(--glass-h); transform: translateY(-1px); }

.share-powered {
  margin-top: 32px;
  font-size: 11px;
  color: var(--text-d);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Halaman share: sembunyikan navbar & bottom nav */
body[data-share="true"] .navbar,
body[data-share="true"] .bottom-nav {
  display: none !important;
}