* , *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: linear-gradient(180deg, #f3efe8 0%, #efe8e0 65%, #f2ede8 100%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: #1a1a1a;
  min-height: 100dvh;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  padding: env(safe-area-inset-top) 0 24px;
}
.page {
  width: min(100%, 520px);
  background: transparent;
  min-height: 100dvh;
  padding: 0 14px;
}
.topbar {
  background: rgba(255,255,255,0.55);
  text-align: center;
  padding: clamp(18px, 4vw, 24px) 18px clamp(14px, 3vw, 18px);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  margin-bottom: 12px;
}
.topbar-logo {
  font-size: clamp(18px, 4.5vw, 22px);
  font-weight: 800;
  color: #161616;
  font-style: normal;
  letter-spacing: -0.4px;
  text-transform: lowercase;
}
.topbar-logo .dot { color: #f97316; font-style: normal; }
.main-card {
  background: rgba(255,255,255,0.98);
  border: 1px solid #ece8e4;
  border-radius: 28px;
  margin: 0 0 16px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}
.cover {
  width: 100%;
  height: clamp(170px, 42vw, 220px);
  position: relative;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
}
.cover-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #f2ddd0 0%, #e8cfc0 40%, #d4a882 70%, #c07850 100%);
  position: relative;
}
.cover-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0) 38%);
  pointer-events: none;
}
.cover-stats {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.cstat {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f8f3ed;
  font-size: clamp(10px, 2.6vw, 12px);
  font-weight: 500;
  background: rgba(255,255,255,0.18);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.32);
}
.cstat i { font-size: clamp(12px, 3vw, 14px); color: #fff; }
.avatar-row {
  display: flex;
  align-items: center;
  padding: 0 18px;
  transform: translateY(-44px);
  margin-bottom: -30px;
  justify-content: flex-start;
}
.avatar {
  width: clamp(72px, 18vw, 92px);
  height: clamp(72px, 18vw, 92px);
  border-radius: 50%;
  border: 4px solid #fff;
  background: linear-gradient(135deg, #f5d5b8, #d4956e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c07850;
  font-size: clamp(24px, 7vw, 30px);
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.16);
}
.profile-info { padding: 16px 18px 20px; }
.profile-name {
  font-size: clamp(15px, 4.2vw, 18px);
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  line-height: 1.18;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 1px;
}
.verified-icon { color: #f97316; font-size: clamp(14px, 3.8vw, 17px); }
.profile-handle {
  font-size: clamp(12px, 3.2vw, 14px);
  font-weight: 500;
  color: #888;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.profile-bio {
  font-size: clamp(12px, 3.4vw, 14px);
  font-weight: 400;
  color: #333;
  line-height: 1.65;
  letter-spacing: 0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.profile-bio.expanded { display: block; -webkit-line-clamp: unset; }
.read-more {
  color: #f97316;
  font-size: clamp(12px, 3.4vw, 14px);
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-weight: 600;
}
.read-more::after {
  content: '→';
  font-size: 14px;
  opacity: 0.85;
}
.social-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-icon {
  color: #555;
  font-size: clamp(20px, 5.5vw, 24px);
  cursor: pointer;
  transition: color 0.2s ease;
}
.social-icon:hover { color: #f97316; }
.inner-divider { height: 1px; background: #f2ede7; margin: 0 18px; }
.offer-section { padding: clamp(18px, 4vw, 22px) 18px 20px; }
.offer-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(14px, 3.8vw, 16px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.offer-spark { color: #f97316; font-size: clamp(17px, 4vw, 19px); }
.offer-user-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #efebe7;
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 16px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
.offer-avatar {
  width: clamp(28px, 7.5vw, 34px);
  height: clamp(28px, 7.5vw, 34px);
  border-radius: 50%;
  background: linear-gradient(135deg, #f5d5b8, #d4956e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c07850;
  font-size: clamp(13px, 3.5vw, 16px);
  flex-shrink: 0;
}
.offer-text {
  font-size: clamp(12px, 3.4vw, 14px);
  color: #333;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.55;
}
.discount-wrap { position: relative; margin-bottom: 0; }
.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(249,115,22,0.22);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: clamp(10px, 2.8vw, 12px);
  font-weight: 600;
  color: #2a7a3b;
  position: absolute;
  top: -12px;
  left: 18px;
  z-index: 2;
  white-space: nowrap;
}
.subscribe-btn {
  width: 100%;
  padding: clamp(16px, 4vw, 18px) 18px;
  background: linear-gradient(90deg, #f97316 0%, #fb923c 50%, #fdba74 100%);
  border: none;
  border-radius: 16px;
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  touch-action: manipulation;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 14px 30px rgba(249,115,22,0.2);
}
.subscribe-btn::after {
  content: '→';
  font-size: 16px;
  opacity: 0.92;
}
.subscribe-btn:hover { transform: translateY(-1px); }
.subscribe-btn:active { opacity: 0.92; transform: translateY(0); }
.original-price {
  text-align: right;
  font-size: clamp(11px, 3vw, 13px);
  color: #8a8a8a;
  margin-top: 10px;
  letter-spacing: 0.02em;
}
.original-price s { color: #bbb; }
.assin-section { padding: clamp(16px, 4vw, 18px) 18px 18px; }
.assin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(14px, 3.8vw, 16px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
}
.assin-header i { color: #b7b0aa; font-size: 18px; }
.assin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: linear-gradient(90deg, #f97316 0%, #fb923c 50%, #fdba74 100%);
  border: none;
  border-radius: 16px;
  padding: clamp(16px, 4vw, 18px) 18px;
  margin-bottom: 10px;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  text-align: left;
  box-shadow: 0 14px 30px rgba(249,115,22,0.2);
  color: #fff;
  min-height: 52px;
}
.assin-row.active {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(249,115,22,0.24);
}
.assin-row:active { opacity: 0.94; transform: translateY(0); }
.assin-label,
.assin-price {
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.assin-row:hover { transform: translateY(-1px); opacity: 0.98; }
.tabs-card {
  background: #fff;
  border: 1px solid #ece8e4;
  border-radius: 22px;
  margin: 0 0 12px;
  overflow: hidden;
  box-shadow: 0 21px 44px rgba(0,0,0,0.06);
}
.tabs-nav { display: flex; gap: 4px; padding: 8px; }
.tab-btn {
  flex: 1;
  background: rgba(248,245,241,0.9);
  border: 1px solid transparent;
  border-radius: 14px;
  padding: clamp(12px, 3.5vw, 15px) 10px;
  font-size: clamp(12px, 3.4vw, 14px);
  font-weight: 600;
  color: #817672;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s ease;
  touch-action: manipulation;
}
.tab-btn.active {
  color: #1a1a1a;
  border-color: rgba(249,115,22,0.18);
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  font-weight: 700;
}
.tab-btn i { font-size: clamp(14px, 3.8vw, 16px); }
.feed-card {
  background: #fff;
  border-radius: 18px;
  margin: 0 12px 10px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}
.post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(10px, 3vw, 13px) clamp(12px, 3.5vw, 16px);
}
.post-user { display: flex; align-items: center; gap: 10px; }
.post-avatar {
  width: clamp(34px, 9vw, 42px);
  height: clamp(34px, 9vw, 42px);
  border-radius: 50%;
  background: linear-gradient(135deg, #f5d5b8, #d4956e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c07850;
  font-size: clamp(15px, 4.5vw, 20px);
  flex-shrink: 0;
}
.post-name {
  font-size: clamp(13px, 3.5vw, 15px);
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 4px;
}
.post-handle { font-size: clamp(11px, 3vw, 13px); color: #999; }
.post-more {
  color: #bbb;
  font-size: clamp(18px, 5vw, 24px);
  cursor: pointer;
  padding: 4px;
}
.post-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}
.post-image-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #f2ddd0, #e8cfc0, #dfc0a8);
  position: relative;
}
.post-image-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 88%;
  background: linear-gradient(180deg, #d4a882, #b87040);
  clip-path: ellipse(50% 100% at 50% 100%);
  opacity: 0.3;
}
.post-blur-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245, 235, 225, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lock-icon { font-size: clamp(32px, 9vw, 44px); color: #aaa; }
.post-stats-overlay {
  position: absolute;
  bottom: 10px;
  left: 12px;
  display: flex;
  gap: 12px;
}
.pstat {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(11px, 3vw, 13px);
  color: #777;
}
.pstat i { font-size: clamp(12px, 3.4vw, 15px); }
.post-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(8px, 2.5vw, 12px) clamp(12px, 3.5vw, 16px);
}
.post-left-actions { display: flex; gap: clamp(14px, 4vw, 20px); }
.action-btn,
.bookmark-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  font-size: clamp(20px, 5.5vw, 26px);
  padding: 4px;
  transition: color 0.15s;
  touch-action: manipulation;
}
.action-btn:active,
.bookmark-btn:active { color: #f97316; }
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  background: #faf4ee;
  border-radius: 24px;
  margin: 0 0 16px;
  border: 1px solid #ede7e1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
}
.media-item {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(238,231,226,0.8);
  background: #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: #f2ebe4;
}
.media-placeholder img,
.media-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 100%;
  min-width: 100%;
  transform: scale(1.06);
  filter: blur(1.4px) brightness(0.82) saturate(0.68) contrast(0.88);
  opacity: 0.96;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}
.media-placeholder video {
  filter: blur(1.4px) brightness(0.78) saturate(0.66) contrast(0.86);
}
.media-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.34);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
}
.media-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,0.04), transparent 28%),
              linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.42));
  mix-blend-mode: normal;
  z-index: 2;
}
.media-placeholder i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  position: relative;
  z-index: 3;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(17,17,17,0.36);
  border: 1px solid rgba(255,255,255,0.42);
  box-shadow: 0 16px 34px rgba(0,0,0,0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.media-item:hover .media-placeholder {
  transform: translateY(-1px);
  filter: brightness(1.04);
}
body.premium-unlocked .media-placeholder img,
body.premium-unlocked .media-placeholder video {
  filter: none;
  opacity: 1;
  transform: none;
}
body.premium-unlocked .media-placeholder::before,
body.premium-unlocked .media-placeholder::after {
  display: none;
}
body.premium-unlocked .media-placeholder i.ti-lock {
  display: none;
}
.bottom-spacer { height: max(20px, env(safe-area-inset-bottom)); }
.pix-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(6, 10, 18, 0.72);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.pix-modal--visible {
  opacity: 1;
  pointer-events: auto;
}
.pix-modal.hidden {
  display: none;
}
.pix-modal__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08), rgba(7, 10, 18, 0.76));
}
.pix-modal__content {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100dvh - 36px);
  overflow: auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 243, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 36px 90px rgba(11, 16, 24, 0.28);
  z-index: 2;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.pix-modal--visible .pix-modal__content {
  transform: translateY(0) scale(1);
}
.pix-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  color: #111;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.pix-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.pix-modal__eyebrow {
  margin: 0 0 4px;
  color: #8e8a86;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.pix-modal__header h2 {
  margin: 0;
  font-size: 1.38rem;
  letter-spacing: -0.02em;
  color: #111;
}
.pix-modal__amount {
  color: #dc6e1e;
  font-weight: 800;
  font-size: 1rem;
  white-space: nowrap;
}
.pix-modal__status-row,
.pix-modal__timer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.pix-modal__status-label,
.pix-modal__timer-label {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #7a756f;
}
.pix-modal__status-text {
  color: #1f2933;
  font-size: 0.95rem;
  font-weight: 700;
}
.pix-modal__timer-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #dc6e1e;
}
.pix-modal__progress-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(219, 219, 219, 0.35);
  overflow: hidden;
  margin-bottom: 20px;
}
.pix-modal__progress-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f97316, #fdba74);
  transition: width 0.25s ease;
}
.pix-modal__loading {
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 200px;
  text-align: center;
  color: #5b5b5b;
  font-weight: 600;
}
.pix-modal__loading.hidden,
.pix-modal__error.hidden,
.pix-modal__body.hidden,
.pix-modal__actions.hidden,
.pix-modal__status-row.hidden,
.pix-modal__timer-row.hidden,
.pix-modal__progress-bar.hidden {
  display: none;
}
.pix-modal__spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(249, 115, 22, 0.2);
  border-top-color: #f97316;
  border-radius: 50%;
  animation: pix-spin 0.8s linear infinite;
}
@keyframes pix-spin {
  to { transform: rotate(360deg); }
}
.pix-modal__success {
  margin-bottom: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(220, 252, 231, 0.95);
  border: 1px solid rgba(34, 197, 94, 0.45);
  text-align: center;
}
.pix-modal__success.hidden {
  display: none;
}
.pix-modal__success-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #166534;
}
.pix-modal__success-text {
  margin: 0;
  font-size: 0.92rem;
  color: #15803d;
}
.pix-modal--paid .pix-modal__status-text {
  color: #166534;
}
.pix-modal--paid .pix-modal__progress-fill {
  background: linear-gradient(90deg, #22c55e, #86efac);
}
.pix-modal__error {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(254, 226, 226, 0.95);
  border: 1px solid rgba(248, 113, 113, 0.45);
  color: #991b1b;
  font-size: 0.92rem;
  font-weight: 600;
}
.pix-modal__body {
  display: grid;
  gap: 14px;
}
.pix-modal__qr {
  min-height: 240px;
  border-radius: 26px;
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.1), rgba(255, 255, 255, 0.5));
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  color: #5b5b5b;
  font-size: 0.95rem;
}
.pix-modal__qr img {
  width: min(100%, 320px);
  height: auto;
  border-radius: 22px;
  object-fit: contain;
}
.pix-modal__label {
  font-size: 0.95rem;
  color: #333;
  font-weight: 700;
}
.pix-modal__code {
  width: 100%;
  min-height: 120px;
  resize: none;
  border: 1px solid rgba(215, 209, 201, 0.88);
  border-radius: 20px;
  padding: 16px;
  font-size: 0.95rem;
  line-height: 1.55;
  background: rgba(247, 244, 239, 0.95);
  color: #111;
}
.pix-modal__code:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}
.pix-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #5d5d5d;
  font-size: 0.88rem;
}
.pix-modal__info {
  background: rgba(247, 244, 239, 0.95);
  border: 1px solid rgba(233, 227, 219, 0.9);
  border-radius: 16px;
  padding: 12px 14px;
  min-width: 140px;
}
.pix-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.pix-copy-btn,
.pix-close-btn {
  flex: 1;
  min-width: 140px;
  border: none;
  border-radius: 18px;
  padding: 16px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.pix-copy-btn {
  background: #f97316;
  color: #fff;
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.32);
}
.pix-copy-btn:hover {
  transform: translateY(-1px);
}
.pix-close-btn {
  background: #f3efe8;
  color: #1a1a1a;
}
.pix-close-btn:hover {
  transform: translateY(-1px);
}
@media (min-width: 500px) {
  body { background: #ddd7cf; }
  .page { box-shadow: 0 0 40px rgba(0,0,0,0.12); }
}
@media (hover: hover) {
  .action-btn:hover { color: #f97316; }
  .bookmark-btn:hover { color: #f97316; }
  .subscribe-btn:hover { opacity: 0.9; }
  .assin-row:hover { opacity: 0.9; }
}
