/* Support Rivanya Sharma - Dark theme + mobile-first */
:root {
  --bg: #0f0e17;
  --bg-card: #1a1926;
  --bg-elevated: #242230;
  --text: #f0eef6;
  --text-muted: #9b98a8;
  --accent: #a78bfa;
  --accent-light: #c4b5fd;
  --accent-soft: rgba(167, 139, 250, 0.15);
  --success: #34d399;
  --border: #2d2b3d;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --radius-lg: 16px;
  --font-sans: 'Outfit', 'DM Sans', system-ui, sans-serif;
  --safe-top: env(safe-area-inset-top, 0);
  --safe-bottom: env(safe-area-inset-bottom, 0);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px 40px;
  padding-bottom: calc(40px + var(--safe-bottom));
}

/* Cover section – 16:9 ratio, larger and more prominent */
.cover-section {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 75vh;
  background: linear-gradient(135deg, #5b21b6 0%, #4c1d95 100%);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cover-image {
  position: absolute;
  inset: 0;
  background: url('assets/cover.png') center center / cover no-repeat;
  background-size: cover;
  background-position: center;
}

.cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
}

.cover-badge {
  position: absolute;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cover-badge-online {
  top: max(12px, var(--safe-top));
  left: 12px;
  background: rgba(30, 30, 40, 0.9);
  color: #fff;
  border: 1px solid var(--border);
}

.cover-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.cover-badge-chat-new {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cover-chat-icon {
  font-size: 10px;
  color: #4ade80;
}

.cover-chat-text {
  font-size: 8px;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

/* Creator header – same style as reference (name, sliding bio, joined) */
.creator-header {
  margin-top: 0;
  position: relative;
  z-index: 3;
  margin-bottom: 24px;
  padding-top: 16px;
}

.header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.header-left {
  min-width: 0;
  flex: 1;
}

.header-right {
  flex-shrink: 0;
  text-align: right;
}

.creator-name {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.verified-badge-img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
  vertical-align: middle;
}

.slide-bio {
  height: 20px;
  position: relative;
  overflow: hidden;
}

.slide-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.slide-text.slide-in {
  transform: translateY(0);
  opacity: 1;
}

.slide-text.slide-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.slide-icon {
  margin-right: 4px;
}

.slide-highlight {
  color: #34d399;
  font-weight: 700;
}

.slide-muted {
  color: var(--text-muted);
}

.joined-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.joined-icon {
  font-size: 14px;
}

.joined-label {
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--text-muted);
}

.stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.stat-icon-wrap.stat-stars {
  gap: 2px;
}

.stat-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.stat-icon-supporters {
  color: var(--accent);
}

.stat-icon-rating {
  width: 16px;
  height: 16px;
  color: #fbbf24;
}

.stat-icon-safe {
  color: #34d399;
}

.stat-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* Sections */
.section-title {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.section-subtitle {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Special offer – timer strip with shimmer */
:root {
  --premium-red: #ff0033;
  --premium-gold: #fbbf24;
}

.special-offer {
  margin-bottom: 24px;
}

.timer-strip {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #5c1919;
  border: 1px solid rgba(255, 0, 51, 0.25);
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.15);
}

.timer-strip-shimmer {
  position: absolute;
  inset: 0;
  transform: translateX(-100%) skewX(-12deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) skewX(-12deg); }
  100% { transform: translateX(200%) skewX(-12deg); }
}

.timer-strip-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  position: relative;
  z-index: 10;
}

.timer-strip-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 0, 51, 0.1);
  border: 1px solid rgba(255, 0, 51, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.timer-strip-icon {
  font-size: 18px;
  line-height: 1;
  color: var(--premium-red);
}

.timer-strip-text {
  min-width: 0;
}

.timer-strip-title {
  margin: 0 0 2px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timer-strip-save {
  margin: 0;
  font-size: 12px;
  color: #fff;
}

.timer-strip-save s {
  color: #fff;
  margin-left: 2px;
}

.timer-strip-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.timer-digit {
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  border: 1px solid rgba(255, 0, 51, 0.2);
  font-family: ui-monospace, monospace;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.timer-digit-sec {
  color: var(--premium-red);
}

.timer-label {
  font-size: 7px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timer-label-sec {
  color: rgba(255, 0, 51, 0.7);
}

.timer-colon {
  font-size: 12px;
  font-weight: 700;
  color: var(--premium-red);
  margin-top: -12px;
  animation: pulse 2s ease-in-out infinite;
}

/* Previews section */
.previews-section {
  margin-bottom: 32px;
}

.previews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.previews-exclusive-note {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}

.previews-unlock-on-device {
  margin-bottom: 12px;
}

.previews-unlock-link {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-light);
  text-decoration: underline;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.previews-unlock-link:hover {
  color: var(--accent);
}

.previews-unlock-form {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.previews-unlock-label {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.previews-unlock-input {
  flex: 1;
  min-width: 140px;
  padding: 8px 12px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.previews-unlock-input::placeholder {
  color: var(--text-muted);
}

.previews-unlock-submit {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-sans);
  color: #000;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.previews-unlock-submit:hover:not(:disabled) {
  background: var(--accent-light);
}

.previews-unlock-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.previews-unlock-error {
  margin: 0;
  width: 100%;
  font-size: 11px;
  color: #f87171;
}

.previews-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fbbf24;
}

.previews-swipe-btn {
  font-size: 12px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  font-family: var(--font-sans);
  -webkit-tap-highlight-color: transparent;
}

.previews-swipe-btn:hover {
  color: var(--accent);
}

.previews-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  touch-action: pan-x;
}

.previews-track::-webkit-scrollbar {
  display: none;
}

.preview-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.preview-thumb {
  aspect-ratio: 9 / 16;
  min-height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.preview-thumb .preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.preview-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 2px 6px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}

.preview-label {
  margin: 0;
  padding: 8px 10px 2px;
  font-size: 11px;
  color: var(--text);
}

.preview-duration {
  margin: 0 0 10px;
  padding: 0 10px;
  font-size: 11px;
  color: var(--text-muted);
}

.preview-card-locked {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.preview-card-locked:hover .preview-locked-overlay {
  background: rgba(0, 0, 0, 0.5);
}

/* Same aspect-ratio box (9/16) as video thumbs so no empty space */
.preview-thumb-locked {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 177.78%;
  min-height: 0;
  background: var(--bg-elevated);
  overflow: hidden;
}

.preview-locked-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  filter: blur(14px);
  -webkit-filter: blur(14px);
  transform: scale(1.15);
  pointer-events: none;
}

.preview-locked-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  transition: background 0.2s;
}

.preview-locked-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.preview-lock-icon {
  width: 14px;
  height: 14px;
  color: #fff;
  display: block;
}

.preview-card-locked .preview-locked-title {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.preview-card-locked .preview-locked-cta {
  margin: 2px 0 0;
  font-size: 8px;
  font-weight: 700;
  color: var(--premium-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Unlocked content (after payment): clear view, no overlay */
.preview-card-unlocked {
  cursor: pointer;
}
/* Unlocked thumb: same aspect ratio as video thumbs (9/16) so image fills box */
.preview-card-unlocked .preview-thumb-locked {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 177.78%;
  min-height: 0;
  background: var(--bg-elevated);
  overflow: hidden;
}
.preview-unlocked-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.content-no-save,
.previews-unlocked .preview-card-unlocked img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: auto;
}

.preview-card-unlocked,
.preview-card .preview-thumb {
  cursor: pointer;
}

/* Lightbox: big view for images and videos */
.preview-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

.preview-lightbox[hidden] {
  display: none;
}

.preview-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.preview-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10001;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.preview-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.preview-lightbox-content {
  position: relative;
  z-index: 10000;
  max-width: 100%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  -webkit-user-select: none;
  user-select: none;
}

.preview-lightbox-content video {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  background: #000;
}

/* Why support cards */
.why-support {
  margin-bottom: 40px;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--accent-soft);
}

.card:active {
  transform: translateY(0);
}

.card-icon {
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1;
}

.card-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.card-text {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
}

.trust-line {
  margin: 0;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

.trust-line-green {
  color: #34d399;
  font-weight: 600;
}

/* Fan wall */
.fan-wall {
  margin-bottom: 40px;
  position: relative;
}

.live-badge {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(185, 28, 28, 0.2);
  color: #ef4444;
  border: 1px solid #b91c1c;
}

.live-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.supporter-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.supporter-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  box-shadow: var(--shadow);
}

.supporter-emoji {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.supporter-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.supporter-name {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.supporter-amount {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.supporter-rating {
  font-size: 11px;
  color: var(--text-muted);
}

.supporter-message {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  width: 100%;
  padding-left: 0;
  line-height: 1.4;
}

.btn-secondary {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.btn-secondary:hover {
  background: rgba(167, 139, 250, 0.25);
  color: var(--accent-light);
}

.btn-secondary:active {
  background: var(--accent);
  color: var(--bg);
}

/* Support CTA – fixed at bottom (Telegram-style button opens payment modal) */
.support-cta-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 16px;
  padding-bottom: calc(12px + var(--safe-bottom));
  background: linear-gradient(to top, var(--bg) 70%, transparent);
  -webkit-tap-highlight-color: transparent;
}

body {
  padding-bottom: 140px;
}

/* Fixed CTA – Telegram-style button (opens payment modal), highlighted like timer strip */
.cta-telegram-payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 72px;
  padding: 0 20px;
  margin: 0;
  font-family: var(--font-sans);
  background: #5c1919;
  border: 1px solid rgba(255, 0, 51, 0.25);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.15), 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  -webkit-tap-highlight-color: transparent;
}

.cta-telegram-payment:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255, 0, 51, 0.25), 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 0, 51, 0.35);
}

.cta-telegram-top-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.cta-telegram-shimmer {
  position: absolute;
  inset: 0;
  transform: translateX(-100%) skewX(-12deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  animation: cta-shimmer 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cta-shimmer {
  0% { transform: translateX(-100%) skewX(-12deg); }
  100% { transform: translateX(200%) skewX(-12deg); }
}

.cta-telegram-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.cta-telegram-label {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-telegram-payment .cta-telegram-label {
  color: #fff;
}

.cta-telegram-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-telegram-old {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
}

.cta-telegram-price {
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, #fde68a, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-telegram-badge {
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  padding: 3px 6px;
  border-radius: 4px;
  background: linear-gradient(to right, #dc2626, #ef4444);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-telegram-arrow-wrap {
  position: relative;
  z-index: 1;
  padding-left: 16px;
}

.cta-telegram-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 0, 51, 0.2);
  border: 1px solid rgba(255, 0, 51, 0.4);
  color: var(--premium-red);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 12px rgba(255, 0, 51, 0.2);
  animation: cta-bounce-x 1.5s ease-in-out infinite;
}

@keyframes cta-bounce-x {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.btn-support-text {
  display: block;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.btn-support-sub {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.95;
  margin-top: 2px;
}

.btn-support-arrow {
  font-size: 22px;
  flex-shrink: 0;
  margin-left: 12px;
}

.secure-badges {
  margin: 12px 0 0;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

/* Support modal */
.support-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.support-modal-overlay[hidden] {
  display: none;
}

.support-modal {
  width: 100%;
  max-width: 480px;
  max-height: 95vh;
  overflow-y: auto;
  background: var(--bg-card);
  border-radius: 20px 20px 0 0;
  padding: 24px 20px 32px;
  padding-bottom: calc(32px + var(--safe-bottom));
  position: relative;
  border: 1px solid var(--border);
  border-bottom: none;
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.5);
}

.support-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.support-modal-close:hover {
  background: var(--border);
}

.support-modal-title {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  padding-right: 40px;
}

.support-modal-subtitle {
  margin: 0 0 20px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.support-modal-form .form-group {
  margin-bottom: 14px;
}

.support-modal-form .form-group label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.support-modal-form .form-group input {
  padding: 14px 16px;
  font-size: 16px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  width: 100%;
}

.support-step {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 12px;
}

.support-step:first-of-type {
  margin-top: 0;
}

.support-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
  color: #0f0e17;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}

.amount-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.amount-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 8px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-sans);
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.amount-card:hover {
  border-color: var(--text-muted);
}

.amount-card-selected,
.amount-card[aria-pressed="true"] {
  border-color: #eab308;
  background: rgba(234, 179, 8, 0.12);
}

.amount-card-icon {
  font-size: 22px;
  line-height: 1;
}

.amount-card-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.amount-card-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.btn-custom-amount {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: transparent;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  margin-bottom: 8px;
}

.btn-custom-amount:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.input-custom-amount {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  margin-bottom: 16px;
}

.input-custom-amount:focus {
  outline: none;
  border-color: var(--accent);
}

.btn-pay {
  width: 100%;
  padding: 18px 24px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #db2777 0%, #ec4899 50%, #f472b6 100%);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 12px;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.1s, opacity 0.2s;
}

.btn-pay:hover {
  opacity: 0.95;
}

.btn-pay:active {
  transform: scale(0.98);
}

.btn-pay:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.support-modal-secure {
  margin: 0;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

.support-modal-test-hint {
  margin: 8px 0 0;
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  opacity: 0.9;
}

/* Thank you toast */
.thankyou-toast-wrap {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  perspective: 1200px;
}

.thankyou-toast-wrap[hidden] {
  display: none !important;
}

.thankyou-toast-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: thankyou-fadeIn 0.4s ease-out;
}

.thankyou-toast-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 28px 24px;
  background: linear-gradient(145deg, #1a1625 0%, #2d1f3d 50%, #1f1528 100%);
  border-radius: 24px;
  border: 1px solid rgba(236, 72, 153, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: thankyou-cardIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  text-align: center;
}

@keyframes thankyou-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes thankyou-cardIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.thankyou-toast-title {
  margin: 0 0 20px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Telegram CTA button – dark pill with gold accent */
.thankyou-telegram-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 72px;
  padding: 0 20px;
  margin-bottom: 16px;
  background: #0f0f0f;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.thankyou-telegram-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(253, 230, 138, 0.2);
}

.thankyou-cta-top-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

.thankyou-cta-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.1) 55%, transparent 100%);
  transform: skewX(-12deg) translateX(-120%);
  animation: thankyou-shimmer 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes thankyou-shimmer {
  0% { transform: skewX(-12deg) translateX(-120%); }
  60%, 100% { transform: skewX(-12deg) translateX(120%); }
}

.thankyou-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.thankyou-cta-label {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.thankyou-cta-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
}

.thankyou-cta-old {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  text-decoration: line-through;
}

.thankyou-cta-price {
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, #fde68a, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.thankyou-cta-badge {
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  padding: 3px 6px;
  border-radius: 4px;
  background: linear-gradient(to right, #dc2626, #ef4444);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.thankyou-cta-arrow-wrap {
  position: relative;
  z-index: 1;
  padding-left: 16px;
}

.thankyou-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fde68a, #d4af37);
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
  animation: thankyou-bounce-x 1.5s ease-in-out infinite;
}

@keyframes thankyou-bounce-x {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.thankyou-toast-close {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.thankyou-toast-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Shared form group (modal + elsewhere) */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Footer */
.site-footer {
  padding: 20px 16px;
  padding-bottom: calc(20px + var(--safe-bottom));
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.site-footer p {
  margin: 0;
}

.footer-payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 auto 16px;
  max-width: fit-content;
}

.footer-payment-icon {
  display: block;
  height: auto;
  object-fit: contain;
}

.footer-payment-icon--md {
  height: 16px;
}

.footer-payment-icon--sm {
  height: 12px;
}

/* Tablet and up */
@media (min-width: 600px) {
  .support-modal-overlay {
    align-items: center;
    padding: 20px;
  }

  .support-modal {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    max-height: 90vh;
  }

  .preview-card {
    flex: 0 0 180px;
  }

  .container {
    padding: 0 20px 48px;
  }

  .creator-header {
    margin-top: -64px;
    margin-bottom: 40px;
  }

  .avatar {
    width: 120px;
    height: 120px;
  }

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

  .support-headline {
    font-size: 20px;
  }

  .support-tagline {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .stats {
    gap: 32px;
  }

  .stat-value {
    font-size: 22px;
  }

  .stat-label {
    font-size: 13px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .why-support {
    margin-bottom: 48px;
  }

  .cards {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }

  .card {
    padding: 20px;
  }

  .card-icon {
    font-size: 28px;
  }

  .card-title {
    font-size: 15px;
  }

  .card-text {
    font-size: 13px;
  }

  .trust-line {
    font-size: 12px;
  }

  .fan-wall {
    margin-bottom: 48px;
  }

  .live-badge {
    font-size: 12px;
  }

  .supporter-item {
    padding: 16px;
    margin-bottom: 12px;
  }

  .supporter-emoji {
    font-size: 24px;
  }

  .supporter-message {
    padding-left: 36px;
    font-size: 14px;
  }

  .support-cta {
    padding: 32px;
    margin-bottom: 32px;
  }

  .cta-tagline {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 15px;
    padding: 12px 14px;
    min-height: auto;
  }

  .form-group textarea {
    min-height: 80px;
  }

  .btn-primary {
    padding: 14px 24px;
    min-height: auto;
  }

  .site-footer {
    padding: 24px 20px;
    font-size: 13px;
  }
}

/* Prevent zoom on input focus on iOS */
@media (max-width: 600px) {
  .form-group input,
  .form-group textarea {
    font-size: 16px !important;
  }
}
