/* YouTube Community Post Like V2 — Social Boost Asia */
body {
  overflow-x: hidden;
}

:root {
  --ytplk-primary: #ff0000;
  --ytplk-primary-dark: #c90000;
  --ytplk-secondary: #282828;
  --ytplk-accent: #ffb800;
  --ytplk-accent-soft: #ffd76a;
  --ytplk-success: #22a06b;
  --ytplk-info: #2563eb;
  --ytplk-danger: #dc2626;
  --ytplk-ink: #17171c;
  --ytplk-text: #565866;
  --ytplk-muted: #737584;
  --ytplk-surface: #ffffff;
  --ytplk-surface-alt: #f7f8fb;
  --ytplk-border: rgba(23, 23, 28, 0.09);
  --ytplk-glass-border: rgba(255, 255, 255, 0.14);
  --ytplk-hero-bg: linear-gradient(138deg, #08080d 0%, #211010 48%, #111116 100%);
  --ytplk-brand-gradient: linear-gradient(135deg, #ff0000 0%, #ff5a36 52%, #ffb800 100%);
  --ytplk-soft-gradient: linear-gradient(135deg, rgba(255, 0, 0, 0.09), rgba(255, 184, 0, 0.08));
  --ytplk-shadow-sm: 0 8px 24px rgba(23, 23, 28, 0.07);
  --ytplk-shadow-md: 0 18px 52px rgba(23, 23, 28, 0.12);
  --ytplk-shadow-red: 0 18px 48px rgba(255, 0, 0, 0.16);
  --ytplk-radius-sm: 12px;
  --ytplk-radius: 18px;
  --ytplk-radius-lg: 26px;
}

@keyframes ytplkHeroEnter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ytplkMascotBob {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-7px) rotate(1deg);
  }
}

@keyframes ytplkBadgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes ytplkLiveEnter {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ytplkMarqueeForward {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes ytplkMarqueeReverse {
  from {
    transform: translateX(calc(-50% - 9px));
  }
  to {
    transform: translateX(0);
  }
}

.ytplk-page {
  background: var(--ytplk-surface);
  color: var(--ytplk-text);
}

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

.ytplk-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 16px 0 26px;
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: var(--ytplk-hero-bg);
}

.ytplk-hero::before,
.ytplk-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.ytplk-hero::before {
  width: 430px;
  height: 430px;
  top: -220px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.2), transparent 67%);
}

.ytplk-hero::after {
  width: 360px;
  height: 360px;
  bottom: -190px;
  left: -100px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.13), transparent 68%);
}

.ytplk-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.55;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
}

.ytplk-hero-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: flex-start;
}

.ytplk-col-form,
.ytplk-hero-form,
.ytplk-form-column {
  margin-top: -8px;
  min-width: 0;
}

.ytplk-col-illustration,
.ytplk-hero-visual,
.ytplk-visual-column {
  min-width: 0;
  padding-top: 8px;
}

.ytplk-hero-copy,
.ytplk-form-card,
.ytplk-glass-form {
  animation: ytplkHeroEnter 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ytplk-breadcrumb {
  margin-bottom: 9px;
}

.ytplk-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.78rem;
}

.ytplk-breadcrumb a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ytplk-breadcrumb a:hover,
.ytplk-breadcrumb a:focus-visible {
  color: var(--ytplk-accent);
}

.ytplk-breadcrumb .separator {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.62rem;
}

.ytplk-breadcrumb .current,
.ytplk-breadcrumb .current span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.ytplk-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 184, 0, 0.32);
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.14);
  color: var(--ytplk-accent-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ytplk-hero-badge i {
  color: var(--ytplk-accent);
}

.ytplk-hero-headline {
  min-width: 0;
}

.ytplk-hero-title {
  max-width: 680px;
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.55rem, 3.4vw, 2.25rem);
  font-weight: 850;
  line-height: 1.23;
  letter-spacing: -0.025em;
  text-wrap: balance;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.32);
}

.ytplk-keyword-pills,
.ytplk-kw-rotator {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
  margin: 0 0 14px;
  padding: 0;
  position: static;
}

.ytplk-keyword-pill,
.ytplk-pill,
.ytplk-kw {
  display: inline-block;
  max-width: 100%;
  padding: 4px 11px;
  border: 1px solid rgba(255, 184, 0, 0.24);
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.45;
  white-space: normal;
  overflow-wrap: anywhere;
}

.ytplk-hero-desc {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.68;
}

.ytplk-hero-desc strong {
  color: var(--ytplk-accent-soft);
}

.ytplk-hero-info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 12px 0 20px;
  padding: 15px 18px 15px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 184, 0, 0.13);
  border-radius: var(--ytplk-radius-sm);
  background: rgba(38, 10, 10, 0.78);
}

.ytplk-hero-info-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(180deg, #ff0000, #ffb800);
}

.ytplk-hero-info-card .ytplk-hero-desc {
  max-width: none;
  margin: 0;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(255, 184, 0, 0.11);
}

.ytplk-hero-anchor {
  max-width: none;
  margin: 0;
  padding-top: 11px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.8rem;
  line-height: 1.62;
}

.ytplk-hero-anchor a {
  color: var(--ytplk-accent-soft);
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 184, 0, 0.6);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.ytplk-hero-anchor a:hover,
.ytplk-hero-anchor a:focus-visible {
  color: #fff;
  border-color: #fff;
}

/* Form card */
.ytplk-form-card,
.ytplk-glass-form {
  position: relative;
  z-index: 8;
  padding: 23px 27px;
  overflow: visible;
  border: 1px solid var(--ytplk-glass-border);
  border-radius: var(--ytplk-radius);
  background: linear-gradient(160deg, rgba(255, 0, 0, 0.11), rgba(10, 10, 16, 0.97) 40%, rgba(35, 12, 12, 0.98));
  box-shadow: 0 0 24px rgba(255, 0, 0, 0.2), 0 18px 54px rgba(0, 0, 0, 0.25);
}

.ytplk-form-card::before,
.ytplk-glass-form::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.42), rgba(255, 184, 0, 0.2), rgba(255, 255, 255, 0.05));
}

.ytplk-form-header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ytplk-form-header-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 13px;
  background: var(--ytplk-brand-gradient);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 7px 20px rgba(255, 0, 0, 0.28);
}

.ytplk-form-title,
.ytplk-form-header-title {
  margin: 0;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
}

.ytplk-form-subtitle,
.ytplk-form-header-sub {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.74rem;
  line-height: 1.38;
}

.ytplk-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin: 0 0 18px;
  padding: 0 3px;
}

.ytplk-form-step,
.ytplk-step {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.33);
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.ytplk-step-number,
.ytplk-step-num {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  font-weight: 800;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.ytplk-step-line {
  height: 2px;
  flex: 1;
  min-width: 9px;
  background: rgba(255, 255, 255, 0.09);
}

.ytplk-form-step.active,
.ytplk-step.active {
  color: rgba(255, 255, 255, 0.95);
}

.ytplk-form-step.active .ytplk-step-number,
.ytplk-step.active .ytplk-step-num {
  border-color: var(--ytplk-primary);
  background: var(--ytplk-brand-gradient);
  color: #fff;
  box-shadow: 0 0 13px rgba(255, 0, 0, 0.38);
}

.ytplk-form-step.completed,
.ytplk-step.completed {
  color: rgba(255, 255, 255, 0.64);
}

.ytplk-form-step.completed .ytplk-step-number,
.ytplk-step.completed .ytplk-step-num {
  border-color: var(--ytplk-success);
  background: var(--ytplk-success);
  color: #fff;
}

.ytplk-form-group {
  min-width: 0;
  margin-bottom: 15px;
  overflow: visible;
}

.ytplk-form-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
}

.ytplk-form-label i {
  color: #ff4040;
}

.ytplk-form-row,
.ytplk-form-row-2col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 13px;
  overflow: visible;
  transition: grid-template-columns 0.3s ease;
}

.ytplk-form-row > .ytplk-form-group,
.ytplk-form-row-2col > .ytplk-form-group {
  min-width: 0;
  overflow: visible;
}

.ytplk-input,
.ytplk-textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  outline: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.87rem;
  transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.ytplk-textarea {
  min-height: 86px;
  resize: vertical;
}

.ytplk-input::placeholder,
.ytplk-textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.ytplk-input:focus,
.ytplk-textarea:focus {
  border-color: #ff3b3b;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.15);
}

.ytplk-input-group,
.ytplk-quantity-wrap {
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.ytplk-input-group .ytplk-input,
.ytplk-quantity-wrap .ytplk-input {
  flex: 1;
  min-width: 0;
  border-right: 0;
  border-radius: 10px 0 0 10px;
}

.ytplk-input-suffix,
.ytplk-quantity-suffix {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 0;
  border-radius: 0 10px 10px 0;
  background: rgba(255, 0, 0, 0.14);
  color: var(--ytplk-accent-soft);
  font-size: 0.78rem;
  font-weight: 750;
  white-space: nowrap;
}

/* Custom select: wrappers remain visible so the absolute list is never clipped. */
.custom-select-wrapper,
.ytplk-custom-select {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: visible;
  box-sizing: border-box;
  user-select: none;
}

.custom-select-trigger,
.ytplk-select-trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 12px 32px 12px 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.86rem;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.custom-select-trigger span,
.custom-select-trigger #server-render,
.custom-select-trigger #country-render,
.ytplk-select-trigger span {
  display: block;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select-trigger .arrow,
.ytplk-select-trigger .arrow {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 0;
  height: 0;
  flex-shrink: 0;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.56);
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.custom-select-wrapper.open .custom-select-trigger,
.ytplk-custom-select.open .ytplk-select-trigger,
.custom-select-trigger:hover,
.ytplk-select-trigger:hover {
  border-color: #ff3b3b;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.14);
}

.custom-select-wrapper.open .arrow,
.ytplk-custom-select.open .arrow {
  transform: translateY(-50%) rotate(180deg);
}

.custom-select-dropdown,
.ytplk-select-options {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  left: 0;
  z-index: 1100;
  display: none;
  width: 100%;
  min-width: 100%;
  max-width: min(520px, calc(100vw - 32px));
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  background: rgba(11, 11, 18, 0.99);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.5);
}

.custom-select-wrapper.open .custom-select-dropdown,
.ytplk-custom-select.open .ytplk-select-options {
  display: block;
}

.custom-search-container,
.ytplk-select-search {
  padding: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #111118;
}

.custom-search-input,
.ytplk-select-search input {
  width: 100%;
  padding: 9px 11px;
  outline: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.82rem;
}

.custom-search-input:focus,
.ytplk-select-search input:focus {
  border-color: #ff3b3b;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.13);
}

.custom-options-list,
.ytplk-select-options ul {
  max-height: 250px;
  margin: 0;
  padding: 5px;
  overflow-x: visible;
  overflow-y: auto;
  list-style: none;
}

.custom-option,
.ytplk-select-option {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 10px 11px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  line-height: 1.43;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.custom-option:hover,
.custom-option:focus-visible,
.ytplk-select-option:hover,
.ytplk-select-option:focus-visible {
  outline: 0;
  background: rgba(255, 0, 0, 0.14);
  color: #fff;
}

.custom-option img,
.ytplk-select-option img {
  width: 20px;
  height: 15px;
  flex: 0 0 20px;
  object-fit: cover;
}

#country-wrapper,
#server-wrapper {
  min-width: 0;
  overflow: visible;
}

.ytplk-server-desc {
  display: none;
  margin-top: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 0, 0, 0.18);
  border-radius: 8px;
  background: rgba(255, 0, 0, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  line-height: 1.5;
}

.ytplk-quantity-hint,
.ytplk-qty-hint {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
  line-height: 1.45;
}

.ytplk-price-box {
  margin-top: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 184, 0, 0.13);
  border-radius: 11px;
  background: rgba(255, 184, 0, 0.055);
}

.ytplk-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.79rem;
}

.ytplk-price-row + .ytplk-price-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ytplk-price-value,
.ytplk-price-total,
.ytplk-total {
  color: #fff;
  font-weight: 800;
  text-align: right;
}

.ytplk-price-total,
.ytplk-total {
  color: var(--ytplk-accent-soft);
  font-size: 0.96rem;
}

.ytplk-submit,
.ytplk-cta-btn {
  position: relative;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 12px;
  padding: 13px 20px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: var(--ytplk-brand-gradient);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.ytplk-submit:hover,
.ytplk-submit:focus-visible,
.ytplk-cta-btn:hover,
.ytplk-cta-btn:focus-visible {
  outline: 0;
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 12px 32px rgba(255, 0, 0, 0.38);
}

.ytplk-submit:disabled,
.ytplk-cta-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.ytplk-trust-mini {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 9px;
}

.ytplk-trust-mini span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.69rem;
}

.ytplk-trust-mini i {
  color: var(--ytplk-accent-soft);
}

/* Mascot and recent activity */
.ytplk-proof-panel {
  margin-top: 12px;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ytplk-radius-lg);
  background: rgba(10, 10, 16, 0.94);
}

.ytplk-proof-hero {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ytplk-proof-robot,
.ytplk-mascot-wrap {
  position: relative;
  display: grid;
  width: 132px;
  height: 132px;
  flex: 0 0 132px;
  place-items: center;
}

.ytplk-proof-robot::before,
.ytplk-mascot-wrap::before {
  content: "";
  position: absolute;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.24), rgba(255, 184, 0, 0.05) 54%, transparent 72%);
  pointer-events: none;
}

.ytplk-mascot-img,
.ytplk-robot-img {
  position: relative;
  z-index: 2;
  width: min(124px, 100%);
  height: auto;
  filter: drop-shadow(0 9px 18px rgba(255, 0, 0, 0.26));
  animation: ytplkMascotBob 4.8s ease-in-out infinite;
}

.ytplk-floating-badge,
.ytplk-fbadge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.19);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
  animation: ytplkBadgeFloat 3.8s ease-in-out infinite;
}

.ytplk-floating-badge i,
.ytplk-fbadge i {
  color: var(--ytplk-accent-soft);
}

.ytplk-floating-badge.badge-one,
.ytplk-fbadge-1 {
  top: 1px;
  right: -9px;
}

.ytplk-floating-badge.badge-two,
.ytplk-fbadge-2 {
  bottom: 7px;
  left: -8px;
  animation-delay: -1.3s;
}

.ytplk-fbadge-3 {
  right: -6px;
  bottom: 2px;
  animation-delay: -2.2s;
}

.ytplk-proof-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex: 1;
  gap: 9px;
}

.ytplk-proof-stat,
.ytplk-pstat {
  min-width: 0;
  padding: 10px 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.ytplk-proof-stat:hover,
.ytplk-pstat:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 0, 0, 0.2);
  background: rgba(255, 0, 0, 0.08);
}

.ytplk-stat-icon,
.ytplk-pstat-icon {
  margin-bottom: 3px;
  color: #ff4141;
  font-size: 0.88rem;
}

.ytplk-stat-value,
.ytplk-pstat-num {
  color: #fff;
  font-size: 1.06rem;
  font-weight: 850;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.ytplk-stat-label,
.ytplk-pstat-label {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.61rem;
  font-weight: 650;
  line-height: 1.3;
}

.ytplk-live-feed,
.ytplk-livefeed {
  position: relative;
  max-height: 200px;
  overflow: hidden;
}

.ytplk-live-feed::after,
.ytplk-livefeed::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 34px;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(10, 10, 16, 0.98));
}

.ytplk-live-header,
.ytplk-livefeed-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}

.ytplk-live-dot,
.ytplk-livefeed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #40c878;
  box-shadow: 0 0 0 4px rgba(64, 200, 120, 0.11);
}

.ytplk-live-title,
.ytplk-livefeed-title {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ytplk-live-list,
.ytplk-livefeed-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 175px;
  overflow: hidden;
}

.ytplk-live-item,
.ytplk-livefeed-item {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  animation: ytplkLiveEnter 0.38s ease-out both;
}

.ytplk-live-avatar,
.ytplk-livefeed-avatar {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--ytplk-brand-gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

.ytplk-live-info,
.ytplk-livefeed-info {
  flex: 1;
  min-width: 0;
}

.ytplk-live-name,
.ytplk-livefeed-name {
  overflow: hidden;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ytplk-live-name span,
.ytplk-livefeed-name span {
  color: #ff5656;
}

.ytplk-live-detail,
.ytplk-livefeed-detail {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.64rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ytplk-live-time,
.ytplk-livefeed-time {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.6rem;
  white-space: nowrap;
}

/* Main content */
.body-wrapper > section[id] {
  scroll-margin-top: 145px;
}

.ytplk-content-section {
  position: relative;
  padding: 58px 0;
  background: var(--ytplk-surface);
}

.ytplk-content-section.ytplk-section-alt,
.ytplk-section-alt,
.ytplk-section-soft {
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 184, 0, 0.08), transparent 26%),
    linear-gradient(180deg, #fafbfe, #f4f6fb);
}

.ytplk-section-deep {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 0, 0, 0.18), transparent 30%),
    linear-gradient(138deg, #101017, #211010 55%, #14141b);
}

.ytplk-section-deep .ytplk-section-heading,
.ytplk-section-deep .ytplk-section-title {
  color: #fff;
}

.ytplk-section-deep .ytplk-section-intro {
  color: rgba(255, 255, 255, 0.7);
}

.ytplk-section-emoji {
  margin-bottom: 8px;
  color: var(--ytplk-primary);
  font-size: 1.85rem;
  line-height: 1;
  text-align: center;
}

.ytplk-section-heading,
.ytplk-section-title {
  position: relative;
  max-width: 920px;
  margin: 0 auto 16px;
  padding-bottom: 14px;
  color: var(--ytplk-ink);
  font-size: clamp(1.35rem, 2.6vw, 1.82rem);
  font-weight: 850;
  line-height: 1.32;
  letter-spacing: -0.018em;
  text-align: center;
  text-wrap: balance;
}

.ytplk-section-heading::after,
.ytplk-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 68px;
  height: 3px;
  border-radius: 999px;
  background: var(--ytplk-brand-gradient);
  transform: translateX(-50%);
}

.ytplk-section-heading.align-left,
.ytplk-section-title.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.ytplk-section-heading.align-left::after,
.ytplk-section-title.align-left::after {
  left: 0;
  transform: none;
}

.ytplk-section-intro,
.ytplk-lead {
  max-width: 850px;
  margin: 0 auto 30px;
  color: var(--ytplk-text);
  font-size: 0.96rem;
  line-height: 1.78;
  text-align: center;
}

.ytplk-section-intro.align-left,
.ytplk-lead.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.ytplk-gradient-text {
  background: var(--ytplk-brand-gradient);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ytplk-highlight,
.ytplk-hl-primary {
  color: var(--ytplk-primary);
  font-weight: 750;
}

.ytplk-hl-accent {
  color: #b06e00;
  font-weight: 750;
}

.ytplk-hl-success {
  color: var(--ytplk-success);
  font-weight: 750;
}

.ytplk-split-layout,
.ytplk-definition-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
}

.ytplk-split-layout.reverse,
.ytplk-definition-layout.reverse {
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
}

.ytplk-copy {
  min-width: 0;
}

.ytplk-copy h3 {
  margin: 0 0 10px;
  color: var(--ytplk-ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.ytplk-copy p {
  margin: 0 0 14px;
  color: var(--ytplk-text);
  font-size: 0.91rem;
  line-height: 1.75;
}

.ytplk-copy p:last-child {
  margin-bottom: 0;
}

.ytplk-media-card,
.ytplk-image-frame,
.ytplk-img-card {
  position: relative;
  min-width: 0;
  padding: 7px;
  overflow: hidden;
  border: 1px solid var(--ytplk-border);
  border-radius: 21px;
  background: var(--ytplk-surface);
  box-shadow: var(--ytplk-shadow-md);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ytplk-media-card:hover,
.ytplk-image-frame:hover,
.ytplk-img-card:hover {
  border-color: rgba(255, 0, 0, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 22px 62px rgba(23, 23, 28, 0.16);
}

.ytplk-media-card img,
.ytplk-image-frame img,
.ytplk-img-card img,
.ytplk-section-image,
.ytplk-section-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

.ytplk-media-card figcaption,
.ytplk-image-frame figcaption,
.ytplk-img-card figcaption {
  padding: 10px 9px 4px;
  color: var(--ytplk-muted);
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

.ytplk-media-label {
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: calc(100% - 34px);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(17, 17, 22, 0.92);
  color: #fff;
  font-size: 0.69rem;
  font-weight: 800;
  line-height: 1.3;
}

.ytplk-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.ytplk-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 0, 0, 0.12);
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.055);
  color: #922323;
  font-size: 0.73rem;
  font-weight: 750;
  line-height: 1.35;
}

.ytplk-chip i {
  color: var(--ytplk-primary);
}

.ytplk-info-grid,
.ytplk-comparison-grid,
.ytplk-process-grid,
.ytplk-howto-grid,
.ytplk-method-grid,
.ytplk-scope-grid,
.ytplk-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 19px;
}

.ytplk-info-grid.four,
.ytplk-process-grid.four,
.ytplk-scope-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ytplk-info-card,
.ytplk-comparison-card,
.ytplk-process-step,
.ytplk-method-card,
.ytplk-scope-card,
.ytplk-benefit-card {
  position: relative;
  min-width: 0;
  padding: 23px;
  border: 1px solid var(--ytplk-border);
  border-radius: var(--ytplk-radius);
  background: var(--ytplk-surface);
  box-shadow: var(--ytplk-shadow-sm);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.ytplk-info-card:hover,
.ytplk-comparison-card:hover,
.ytplk-process-step:hover,
.ytplk-method-card:hover,
.ytplk-scope-card:hover,
.ytplk-benefit-card:hover {
  border-color: rgba(255, 0, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--ytplk-shadow-red);
}

.ytplk-card-icon,
.ytplk-info-card > i:first-child,
.ytplk-method-icon,
.ytplk-scope-icon,
.ytplk-process-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 15px;
  place-items: center;
  border-radius: 15px;
  background: var(--ytplk-soft-gradient);
  color: var(--ytplk-primary);
  font-size: 1.15rem;
}

.ytplk-info-card h3,
.ytplk-comparison-card h3,
.ytplk-process-step h3,
.ytplk-method-card h3,
.ytplk-scope-card h3,
.ytplk-benefit-card h3 {
  margin: 0 0 8px;
  color: var(--ytplk-ink);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.42;
}

.ytplk-info-card p,
.ytplk-comparison-card p,
.ytplk-process-step p,
.ytplk-method-card p,
.ytplk-scope-card p,
.ytplk-benefit-card p {
  margin: 0;
  color: var(--ytplk-text);
  font-size: 0.83rem;
  line-height: 1.65;
}

.ytplk-info-card ul,
.ytplk-comparison-card ul,
.ytplk-process-step ul,
.ytplk-method-card ul,
.ytplk-scope-card ul {
  display: grid;
  gap: 7px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.ytplk-info-card li,
.ytplk-comparison-card li,
.ytplk-process-step li,
.ytplk-method-card li,
.ytplk-scope-card li {
  position: relative;
  padding-left: 19px;
  color: var(--ytplk-text);
  font-size: 0.8rem;
  line-height: 1.55;
}

.ytplk-info-card li::before,
.ytplk-comparison-card li::before,
.ytplk-process-step li::before,
.ytplk-method-card li::before,
.ytplk-scope-card li::before {
  content: "\f00c";
  position: absolute;
  top: 0.12em;
  left: 0;
  color: var(--ytplk-success);
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-size: 0.67rem;
  font-weight: 900;
}

.ytplk-comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ytplk-comparison-card {
  padding-top: 27px;
}

.ytplk-comparison-card.is-match {
  border-color: rgba(34, 160, 107, 0.24);
  background: linear-gradient(145deg, #fff, rgba(34, 160, 107, 0.055));
}

.ytplk-comparison-card.is-other {
  border-color: rgba(255, 184, 0, 0.24);
  background: linear-gradient(145deg, #fff, rgba(255, 184, 0, 0.06));
}

.ytplk-comparison-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.07);
  color: #a32626;
  font-size: 0.69rem;
  font-weight: 850;
}

.ytplk-scope-card {
  overflow: hidden;
}

.ytplk-scope-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--ytplk-brand-gradient);
  opacity: 0.85;
}

.ytplk-process-grid {
  counter-reset: ytplk-process;
}

.ytplk-process-step {
  counter-increment: ytplk-process;
  padding-top: 54px;
}

.ytplk-process-step::before {
  content: counter(ytplk-process, decimal-leading-zero);
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(255, 0, 0, 0.12);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

.ytplk-process-step::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 23px;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--ytplk-brand-gradient);
}

.ytplk-data-panel,
.ytplk-fact-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 184, 0, 0.18);
  border-radius: var(--ytplk-radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 184, 0, 0.12), transparent 34%),
    linear-gradient(145deg, #17171f, #271111);
  color: #fff;
  box-shadow: 0 20px 60px rgba(17, 17, 24, 0.22);
}

.ytplk-data-panel h3,
.ytplk-fact-panel h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 850;
}

.ytplk-data-panel > p,
.ytplk-fact-panel > p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.86rem;
  line-height: 1.68;
}

.ytplk-fact-list {
  display: grid;
  gap: 9px;
  margin: 0;
}

.ytplk-fact-row {
  display: grid;
  grid-template-columns: minmax(125px, 0.38fr) minmax(0, 1fr);
  gap: 14px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.045);
}

.ytplk-fact-row dt {
  color: var(--ytplk-accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.ytplk-fact-row dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  line-height: 1.55;
}

.ytplk-checklist {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.ytplk-checklist li {
  position: relative;
  padding: 12px 14px 12px 43px;
  border: 1px solid var(--ytplk-border);
  border-radius: 12px;
  background: var(--ytplk-surface);
  color: var(--ytplk-text);
  font-size: 0.84rem;
  line-height: 1.6;
}

.ytplk-checklist li::before {
  content: "\f00c";
  position: absolute;
  top: 12px;
  left: 14px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(34, 160, 107, 0.11);
  color: var(--ytplk-success);
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-size: 0.62rem;
  font-weight: 900;
}

.ytplk-callout {
  position: relative;
  margin-top: 22px;
  padding: 18px 20px 18px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 0, 0, 0.14);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.055), rgba(255, 184, 0, 0.055));
}

.ytplk-callout::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--ytplk-brand-gradient);
}

.ytplk-callout strong {
  color: var(--ytplk-ink);
}

.ytplk-callout p {
  margin: 0;
  color: var(--ytplk-text);
  font-size: 0.84rem;
  line-height: 1.67;
}

.ytplk-callout a,
.ytplk-copy a {
  color: var(--ytplk-primary);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Actual-form tutorial cards */
.ytplk-howto-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.ytplk-howto-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ytplk-border);
  border-radius: 21px;
  background: var(--ytplk-surface);
  box-shadow: var(--ytplk-shadow-sm);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.ytplk-howto-card:hover {
  border-color: rgba(255, 0, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--ytplk-shadow-red);
}

.ytplk-howto-card .ytplk-image-frame,
.ytplk-howto-card .ytplk-media-card {
  margin: 7px 7px 0;
  padding: 0;
  border: 0;
  border-radius: 15px;
  box-shadow: none;
}

.ytplk-howto-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ytplk-howto-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.ytplk-howto-number {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--ytplk-brand-gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 850;
}

.ytplk-howto-card h3 {
  margin: 0 0 7px;
  color: var(--ytplk-ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
}

.ytplk-howto-card p {
  margin: 0;
  color: var(--ytplk-text);
  font-size: 0.83rem;
  line-height: 1.67;
}

/* Testimonials deliberately use a visually separate, high-contrast surface. */
.ytplk-testimonials-section,
.ytplk-testimonial-shell {
  position: relative;
  padding: 58px 0 62px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 0, rgba(255, 0, 0, 0.25), transparent 34%),
    radial-gradient(circle at 85% 100%, rgba(255, 184, 0, 0.15), transparent 32%),
    linear-gradient(138deg, #08080d, #251010 52%, #111116);
}

.ytplk-testimonial-shell > .container,
.ytplk-testimonial-shell > .container-fluid {
  position: relative;
  z-index: 1;
}

.ytplk-testimonials-section .ytplk-section-heading,
.ytplk-testimonials-section .ytplk-section-title,
.ytplk-testimonial-shell .ytplk-section-heading,
.ytplk-testimonial-shell .ytplk-section-title {
  color: #fff;
}

.ytplk-testimonials-section .ytplk-section-intro,
.ytplk-testimonial-shell .ytplk-section-intro {
  color: rgba(255, 255, 255, 0.72);
}

.ytplk-testimonial-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 9px;
  color: var(--ytplk-accent-soft);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ytplk-testimonial-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--ytplk-brand-gradient);
}

.ytplk-testimonial-window,
.ytplk-testimonial-wrapper {
  position: relative;
  overflow: hidden;
  padding: 6px 0 10px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.ytplk-testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 6px 0;
  will-change: transform;
}

.ytplk-testimonial-track.row-1,
.ytplk-testimonial-track.is-forward,
.ytplk-testimonial-row-1 {
  animation: ytplkMarqueeForward 72s linear infinite;
}

.ytplk-testimonial-track.row-2,
.ytplk-testimonial-track.is-reverse,
.ytplk-testimonial-row-2 {
  margin-top: 15px;
  animation: ytplkMarqueeReverse 78s linear infinite;
}

.ytplk-testimonial-track:hover,
.ytplk-testimonial-track:focus-within {
  animation-play-state: paused;
}

.ytplk-testimonial-card {
  display: flex;
  width: min(365px, 84vw);
  min-height: 274px;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(27, 22, 27, 0.96);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
}

.ytplk-testimonial-top,
.ytplk-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ytplk-testimonial-top {
  margin-bottom: 12px;
}

.ytplk-testimonial-author {
  margin-top: auto;
  padding-top: 16px;
}

.ytplk-testimonial-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: var(--ytplk-brand-gradient);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 850;
}

.ytplk-testimonial-name,
.ytplk-testimonial-top h3 {
  margin: 0 0 3px;
  color: #fff;
  font-size: 0.93rem;
  font-weight: 800;
}

.ytplk-testimonial-role,
.ytplk-testimonial-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.72rem;
}

.ytplk-testimonial-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 12px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 184, 0, 0.26);
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.14);
  color: var(--ytplk-accent-soft);
  font-size: 0.66rem;
  font-weight: 850;
}

.ytplk-testimonial-stars {
  margin-bottom: 8px;
  color: var(--ytplk-accent);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.ytplk-testimonial-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  line-height: 1.68;
}

/* FAQ, related services and final action */
.ytplk-faq-list {
  display: grid;
  max-width: 880px;
  gap: 10px;
  margin: 0 auto;
}

.ytplk-faq-item {
  overflow: hidden;
  border: 1px solid var(--ytplk-border);
  border-radius: 13px;
  background: var(--ytplk-surface);
  box-shadow: 0 4px 16px rgba(23, 23, 28, 0.035);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.ytplk-faq-item.active {
  border-color: rgba(255, 0, 0, 0.2);
  box-shadow: 0 10px 28px rgba(255, 0, 0, 0.07);
}

.ytplk-faq-question,
.ytplk-faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 17px 19px;
  border: 0;
  background: transparent;
  color: var(--ytplk-ink);
  font-size: 0.91rem;
  font-weight: 750;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.ytplk-faq-question:hover,
.ytplk-faq-question:focus-visible,
.ytplk-faq-q:hover,
.ytplk-faq-q:focus-visible {
  outline: 0;
  background: rgba(255, 0, 0, 0.035);
  color: var(--ytplk-primary);
}

.ytplk-faq-question i,
.ytplk-faq-q i {
  flex: 0 0 auto;
  color: var(--ytplk-primary);
  font-size: 0.78rem;
  transition: transform 0.24s ease;
}

.ytplk-faq-item.active .ytplk-faq-question i,
.ytplk-faq-item.active .ytplk-faq-q i {
  transform: rotate(180deg);
}

.ytplk-faq-answer,
.ytplk-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease;
}

.ytplk-faq-item.active .ytplk-faq-answer,
.ytplk-faq-item.active .ytplk-faq-a {
  max-height: 720px;
}

.ytplk-faq-answer > div,
.ytplk-faq-answer p,
.ytplk-faq-a p {
  margin: 0;
  padding: 2px 19px 18px;
  color: var(--ytplk-text);
  font-size: 0.86rem;
  line-height: 1.75;
}

.ytplk-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 19px;
}

.ytplk-related-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 23px;
  border: 1px solid var(--ytplk-border);
  border-radius: var(--ytplk-radius);
  background: var(--ytplk-surface);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--ytplk-shadow-sm);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.ytplk-related-card:hover,
.ytplk-related-card:focus-visible {
  outline: 0;
  border-color: rgba(255, 0, 0, 0.2);
  color: inherit;
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: var(--ytplk-shadow-red);
}

.ytplk-related-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 16px;
  background: var(--ytplk-soft-gradient);
  color: var(--ytplk-primary);
  font-size: 1.2rem;
}

.ytplk-related-card h3 {
  margin: 0 0 7px;
  color: var(--ytplk-ink);
  font-size: 0.98rem;
  font-weight: 800;
}

.ytplk-related-card p {
  margin: 0;
  color: var(--ytplk-text);
  font-size: 0.82rem;
  line-height: 1.62;
}

.ytplk-related-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 15px;
  color: var(--ytplk-primary);
  font-size: 0.76rem;
  font-weight: 800;
}

.ytplk-final-cta {
  position: relative;
  padding: 54px 0;
  overflow: hidden;
  background: var(--ytplk-brand-gradient);
  color: #fff;
  text-align: center;
}

.ytplk-final-cta::before,
.ytplk-final-cta::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.ytplk-final-cta::before {
  width: 270px;
  height: 270px;
  top: -150px;
  left: -80px;
}

.ytplk-final-cta::after {
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -135px;
}

.ytplk-final-cta .container,
.ytplk-final-cta .container-fluid {
  position: relative;
  z-index: 1;
}

.ytplk-final-cta h2,
.ytplk-final-cta h3 {
  max-width: 820px;
  margin: 0 auto 11px;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.3;
  text-wrap: balance;
}

.ytplk-final-cta p {
  max-width: 760px;
  margin: 0 auto 23px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  line-height: 1.68;
}

.ytplk-final-button,
.ytplk-cta-scroll {
  display: inline-flex;
  width: auto;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 31px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: #fff;
  color: var(--ytplk-primary);
  font-size: 0.91rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(77, 0, 0, 0.19);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.ytplk-final-button:hover,
.ytplk-final-button:focus-visible,
.ytplk-cta-scroll:hover,
.ytplk-cta-scroll:focus-visible {
  outline: 0;
  background: #fff7e6;
  color: var(--ytplk-primary);
  transform: translateY(-3px);
  box-shadow: 0 15px 36px rgba(77, 0, 0, 0.26);
}

/* Image lightbox */
.ytplk-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ytplk-lightbox.active {
  opacity: 1;
}

.ytplk-lightbox img {
  display: block;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
}

.ytplk-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(20, 20, 24, 0.9);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.ytplk-lightbox-close:hover,
.ytplk-lightbox-close:focus-visible {
  outline: 0;
  background: var(--ytplk-primary);
  transform: rotate(6deg);
}

/* One-shot reveal classes controlled by the page script. */
.ytplk-reveal,
.ytplk-reveal-left,
.ytplk-reveal-right {
  opacity: 0;
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.ytplk-reveal {
  transform: translateY(25px);
}

.ytplk-reveal-left {
  transform: translateX(-24px);
}

.ytplk-reveal-right {
  transform: translateX(24px);
}

.ytplk-reveal.visible,
.ytplk-reveal-left.visible,
.ytplk-reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Optional semantic table and compact notes used by the long-form sections. */
.ytplk-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--ytplk-border);
  border-radius: 15px;
  background: var(--ytplk-surface);
  box-shadow: var(--ytplk-shadow-sm);
}

.ytplk-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.ytplk-table th,
.ytplk-table td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--ytplk-border);
  color: var(--ytplk-text);
  font-size: 0.8rem;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.ytplk-table th {
  background: #17171f;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.015em;
}

.ytplk-table tr:last-child td {
  border-bottom: 0;
}

.ytplk-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 15px;
  padding: 13px 15px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.055);
  color: var(--ytplk-text);
  font-size: 0.8rem;
  line-height: 1.6;
}

.ytplk-note > i {
  margin-top: 0.2em;
  color: var(--ytplk-info);
}

.ytplk-page :is(a, button, input, textarea, [tabindex]):focus-visible {
  outline: 3px solid rgba(255, 184, 0, 0.55);
  outline-offset: 2px;
}

/* Page-specific content composition */
.ytplk-hero-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

.ytplk-hero-orb-1 {
  top: -140px;
  left: 8%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.17), transparent 69%);
}

.ytplk-hero-orb-2 {
  right: 2%;
  bottom: -190px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.12), transparent 68%);
}

.ytplk-hero-orb-3 {
  top: 28%;
  right: 43%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 55, 55, 0.08), transparent 70%);
}

.ytplk-anim-fadeIn {
  animation: ytplkRevealFade 0.55s ease-out both;
}

.ytplk-anim-slideUp {
  animation: ytplkRevealUp 0.62s ease-out both;
}

.ytplk-cat-glow {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.2), rgba(255, 184, 0, 0.04) 56%, transparent 74%);
  pointer-events: none;
}

.ytplk-cta-shimmer {
  position: absolute;
  top: -30%;
  left: -42px;
  width: 24px;
  height: 160%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(20deg);
  transition: left 0.45s ease;
  pointer-events: none;
}

.ytplk-cta-btn:hover .ytplk-cta-shimmer,
.ytplk-cta-btn:focus-visible .ytplk-cta-shimmer {
  left: calc(100% + 42px);
}

.ytplk-step-text {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 750;
}

.ytplk-qty-row {
  display: flex;
  align-items: stretch;
}

.ytplk-qty-row .ytplk-input {
  border-radius: 11px 0 0 11px;
}

.ytplk-qty-suffix {
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 0;
  border-radius: 0 11px 11px 0;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 750;
}

.ytplk-price-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 700;
}

.ytplk-server-trigger {
  min-width: 0;
}

.ytplk-zigzag,
.ytplk-zigzag-reverse {
  margin-top: 30px;
  row-gap: 26px;
}

.ytplk-content-section p {
  color: var(--ytplk-text);
}

.ytplk-format-grid,
.ytplk-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ytplk-format-card,
.ytplk-tip-card,
.ytplk-data-card,
.ytplk-monitor-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--ytplk-border);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(21, 26, 38, 0.065);
}

.ytplk-format-card {
  padding: 20px;
}

.ytplk-format-card i {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 13px;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 0, 0, 0.08);
  color: var(--ytplk-primary);
  font-size: 1.05rem;
}

.ytplk-format-card h3,
.ytplk-tip-card h3,
.ytplk-data-card h3,
.ytplk-monitor-card h3,
.ytplk-service-note h3,
.ytplk-boundary-card h3 {
  margin: 0 0 8px;
  color: var(--ytplk-ink);
  font-size: 0.98rem;
  font-weight: 830;
  line-height: 1.4;
}

.ytplk-format-card p,
.ytplk-tip-card p,
.ytplk-data-card p,
.ytplk-monitor-card p,
.ytplk-service-note p,
.ytplk-boundary-card p {
  margin: 0;
  color: var(--ytplk-text);
  font-size: 0.82rem;
  line-height: 1.68;
}

.ytplk-usecase-strip,
.ytplk-followup-strip {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.ytplk-usecase-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ytplk-followup-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ytplk-usecase-strip span,
.ytplk-followup-strip div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  padding: 13px 14px;
  border: 1px solid var(--ytplk-border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ytplk-ink);
  font-size: 0.78rem;
  font-weight: 750;
}

.ytplk-usecase-strip i,
.ytplk-followup-strip i {
  color: var(--ytplk-primary);
}

.ytplk-tip-card {
  min-height: 166px;
  padding: 21px 18px 18px;
}

.ytplk-tip-num,
.ytplk-data-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ytplk-brand-gradient);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 850;
}

.ytplk-tip-num {
  min-width: 38px;
  height: 26px;
  margin-bottom: 12px;
  padding: 0 10px;
}

.ytplk-callout-box {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 20px;
  padding: 17px 19px;
  border: 1px solid rgba(255, 0, 0, 0.15);
  border-left: 4px solid var(--ytplk-primary);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.055), rgba(255, 184, 0, 0.045));
}

.ytplk-callout-box > i {
  margin-top: 3px;
  color: var(--ytplk-primary);
  font-size: 1.15rem;
}

.ytplk-callout-box strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ytplk-ink);
  font-size: 0.86rem;
}

.ytplk-callout-box p {
  margin: 0;
  color: var(--ytplk-text);
  font-size: 0.8rem;
  line-height: 1.64;
}

.ytplk-callout-warm {
  border-color: rgba(255, 184, 0, 0.25);
  border-left-color: var(--ytplk-accent);
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.09), rgba(255, 0, 0, 0.035));
}

.ytplk-link-checklist {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.ytplk-link-checklist > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 12px;
  background: rgba(34, 160, 107, 0.075);
  color: var(--ytplk-ink);
  font-size: 0.8rem;
  line-height: 1.55;
}

.ytplk-link-checklist i {
  margin-top: 3px;
  color: #22a06b;
}

.ytplk-compare-wrap {
  margin-top: 25px;
  overflow-x: auto;
  border: 1px solid var(--ytplk-border);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(21, 26, 38, 0.065);
}

.ytplk-compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.ytplk-compare-table th,
.ytplk-compare-table td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--ytplk-border);
  color: var(--ytplk-text);
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: left;
}

.ytplk-compare-table th {
  background: linear-gradient(135deg, #1b1b22, #2b1717);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.ytplk-compare-table tr:last-child td {
  border-bottom: 0;
}

.ytplk-compare-table i,
.ytplk-compare-table a {
  color: var(--ytplk-primary);
}

.ytplk-data-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.ytplk-data-card {
  min-height: 225px;
  padding: 22px 18px 18px;
}

.ytplk-data-step {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
}

.ytplk-data-card > i {
  margin-bottom: 19px;
  color: var(--ytplk-primary);
  font-size: 1.45rem;
}

.ytplk-service-note,
.ytplk-boundary-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 22px;
  padding: 19px;
  border-radius: 16px;
}

.ytplk-service-note {
  border: 1px solid rgba(255, 184, 0, 0.25);
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.105), rgba(255, 0, 0, 0.04));
}

.ytplk-service-note-icon,
.ytplk-boundary-card > i {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--ytplk-brand-gradient);
  color: #fff;
}

.ytplk-steps-timeline {
  position: relative;
  max-width: 1080px;
  margin: 30px auto 0;
}

.ytplk-step-item {
  position: relative;
  padding-left: 58px;
}

.ytplk-step-item + .ytplk-step-item {
  margin-top: 24px;
}

.ytplk-step-item::before {
  content: "";
  position: absolute;
  top: 44px;
  bottom: -28px;
  left: 20px;
  width: 2px;
  background: linear-gradient(var(--ytplk-primary), rgba(255, 184, 0, 0.3));
}

.ytplk-step-item:last-child::before {
  display: none;
}

.ytplk-step-marker {
  position: absolute;
  top: 4px;
  left: 0;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--ytplk-brand-gradient);
  color: #fff;
  box-shadow: 0 7px 20px rgba(255, 0, 0, 0.22);
  font-size: 0.82rem;
  font-weight: 850;
}

.ytplk-step-content {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 20px;
  padding: 21px;
  border: 1px solid var(--ytplk-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(21, 26, 38, 0.065);
}

.ytplk-step-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--ytplk-primary);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ytplk-step-copy h3 {
  margin: 0 0 9px;
  color: var(--ytplk-ink);
  font-size: 1.03rem;
  font-weight: 830;
  line-height: 1.4;
}

.ytplk-step-copy p {
  margin: 0;
  color: var(--ytplk-text);
  font-size: 0.82rem;
  line-height: 1.68;
}

.ytplk-monitor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ytplk-monitor-card {
  min-height: 176px;
  padding: 20px 18px;
}

.ytplk-monitor-label {
  display: inline-block;
  margin-bottom: 11px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.075);
  color: var(--ytplk-primary);
  font-size: 0.66rem;
  font-weight: 850;
}

.ytplk-boundary-card {
  border: 1px solid rgba(34, 160, 107, 0.19);
  background: linear-gradient(135deg, rgba(34, 160, 107, 0.075), rgba(255, 255, 255, 0.9));
}

.ytplk-boundary-card > i {
  background: linear-gradient(135deg, #22a06b, #167454);
}

.ytplk-testimonial-heading {
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: center;
}

.ytplk-testimonial-heading > p {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.68;
}

.ytplk-testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 15px 0 14px;
}

.ytplk-modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
}

.ytplk-system-mask {
  position: fixed;
  inset: 0;
  z-index: 9998;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 13, 0.62);
}

#sb-bts-float {
  inset: auto 86px 24px auto !important;
  transform: scale(0.84);
  transform-origin: right bottom;
}

[data-bs-theme="dark"] .ytplk-format-card,
[data-bs-theme="dark"] .ytplk-tip-card,
[data-bs-theme="dark"] .ytplk-data-card,
[data-bs-theme="dark"] .ytplk-monitor-card,
[data-bs-theme="dark"] .ytplk-step-content,
[data-bs-theme="dark"] .ytplk-compare-wrap {
  border-color: rgba(255, 255, 255, 0.09);
  background: #1b1b23;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.17);
}

[data-bs-theme="dark"] .ytplk-usecase-strip span,
[data-bs-theme="dark"] .ytplk-followup-strip div {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.8);
}

[data-bs-theme="dark"] .ytplk-callout-box,
[data-bs-theme="dark"] .ytplk-service-note,
[data-bs-theme="dark"] .ytplk-boundary-card {
  background: rgba(255, 255, 255, 0.035);
}

[data-bs-theme="dark"] .ytplk-format-card h3,
[data-bs-theme="dark"] .ytplk-tip-card h3,
[data-bs-theme="dark"] .ytplk-data-card h3,
[data-bs-theme="dark"] .ytplk-monitor-card h3,
[data-bs-theme="dark"] .ytplk-service-note h3,
[data-bs-theme="dark"] .ytplk-boundary-card h3,
[data-bs-theme="dark"] .ytplk-step-copy h3,
[data-bs-theme="dark"] .ytplk-callout-box strong {
  color: #fff;
}

@media (max-width: 991.98px) {
  .ytplk-usecase-strip,
  .ytplk-data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ytplk-step-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .ytplk-format-grid,
  .ytplk-tips-grid,
  .ytplk-monitor-grid,
  .ytplk-followup-strip {
    grid-template-columns: 1fr;
  }

  .ytplk-usecase-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ytplk-data-card {
    min-height: 194px;
  }
}

@media (max-width: 575.98px) {
  .ytplk-usecase-strip,
  .ytplk-data-grid {
    grid-template-columns: 1fr;
  }

  .ytplk-step-item {
    padding-left: 46px;
  }

  .ytplk-step-item::before {
    left: 16px;
  }

  .ytplk-step-marker {
    width: 34px;
    height: 34px;
    border-width: 3px;
  }

  .ytplk-step-content {
    gap: 15px;
    padding: 15px;
  }

  .ytplk-callout-box,
  .ytplk-service-note,
  .ytplk-boundary-card {
    padding: 15px;
  }

  #sb-bts-float {
    inset: auto 8px 104px auto !important;
    transform: scale(0.74);
    transform-origin: right bottom;
  }
}

/* Dark mode */
[data-bs-theme="dark"],
[data-bs-theme="dark"] .ytplk-page {
  --ytplk-ink: #f5f5f7;
  --ytplk-text: rgba(255, 255, 255, 0.7);
  --ytplk-muted: rgba(255, 255, 255, 0.55);
  --ytplk-surface: #181820;
  --ytplk-surface-alt: #121219;
  --ytplk-border: rgba(255, 255, 255, 0.09);
  background: #111117;
}

[data-bs-theme="dark"] .ytplk-content-section {
  background: #15151c;
}

[data-bs-theme="dark"] .ytplk-content-section.ytplk-section-alt,
[data-bs-theme="dark"] .ytplk-section-alt,
[data-bs-theme="dark"] .ytplk-section-soft {
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 184, 0, 0.065), transparent 27%),
    linear-gradient(180deg, #111117, #191921);
}

[data-bs-theme="dark"] .ytplk-section-heading,
[data-bs-theme="dark"] .ytplk-section-title,
[data-bs-theme="dark"] .ytplk-copy h3,
[data-bs-theme="dark"] .ytplk-info-card h3,
[data-bs-theme="dark"] .ytplk-comparison-card h3,
[data-bs-theme="dark"] .ytplk-process-step h3,
[data-bs-theme="dark"] .ytplk-method-card h3,
[data-bs-theme="dark"] .ytplk-scope-card h3,
[data-bs-theme="dark"] .ytplk-benefit-card h3,
[data-bs-theme="dark"] .ytplk-howto-card h3,
[data-bs-theme="dark"] .ytplk-related-card h3,
[data-bs-theme="dark"] .ytplk-faq-question,
[data-bs-theme="dark"] .ytplk-faq-q,
[data-bs-theme="dark"] .ytplk-callout strong {
  color: #f7f7fa;
}

[data-bs-theme="dark"] .ytplk-section-intro,
[data-bs-theme="dark"] .ytplk-lead,
[data-bs-theme="dark"] .ytplk-copy p,
[data-bs-theme="dark"] .ytplk-info-card p,
[data-bs-theme="dark"] .ytplk-comparison-card p,
[data-bs-theme="dark"] .ytplk-process-step p,
[data-bs-theme="dark"] .ytplk-method-card p,
[data-bs-theme="dark"] .ytplk-scope-card p,
[data-bs-theme="dark"] .ytplk-benefit-card p,
[data-bs-theme="dark"] .ytplk-howto-card p,
[data-bs-theme="dark"] .ytplk-related-card p,
[data-bs-theme="dark"] .ytplk-faq-answer > div,
[data-bs-theme="dark"] .ytplk-faq-answer p,
[data-bs-theme="dark"] .ytplk-faq-a p,
[data-bs-theme="dark"] .ytplk-callout p {
  color: rgba(255, 255, 255, 0.68);
}

[data-bs-theme="dark"] .ytplk-media-card,
[data-bs-theme="dark"] .ytplk-image-frame,
[data-bs-theme="dark"] .ytplk-img-card,
[data-bs-theme="dark"] .ytplk-info-card,
[data-bs-theme="dark"] .ytplk-process-step,
[data-bs-theme="dark"] .ytplk-method-card,
[data-bs-theme="dark"] .ytplk-scope-card,
[data-bs-theme="dark"] .ytplk-benefit-card,
[data-bs-theme="dark"] .ytplk-howto-card,
[data-bs-theme="dark"] .ytplk-faq-item,
[data-bs-theme="dark"] .ytplk-related-card,
[data-bs-theme="dark"] .ytplk-checklist li,
[data-bs-theme="dark"] .ytplk-table-wrap {
  border-color: rgba(255, 255, 255, 0.09);
  background: #1b1b23;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

[data-bs-theme="dark"] .ytplk-comparison-card.is-match {
  border-color: rgba(34, 160, 107, 0.25);
  background: linear-gradient(145deg, #1b1b23, rgba(34, 160, 107, 0.08));
}

[data-bs-theme="dark"] .ytplk-comparison-card.is-other {
  border-color: rgba(255, 184, 0, 0.25);
  background: linear-gradient(145deg, #1b1b23, rgba(255, 184, 0, 0.075));
}

[data-bs-theme="dark"] .ytplk-callout {
  border-color: rgba(255, 0, 0, 0.18);
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.075), rgba(255, 184, 0, 0.065));
}

[data-bs-theme="dark"] .ytplk-chip {
  border-color: rgba(255, 86, 86, 0.19);
  background: rgba(255, 0, 0, 0.08);
  color: #ff9292;
}

[data-bs-theme="dark"] .ytplk-hl-accent {
  color: var(--ytplk-accent-soft);
}

[data-bs-theme="dark"] .ytplk-table td {
  color: rgba(255, 255, 255, 0.67);
}

[data-bs-theme="dark"] .ytplk-note {
  border-color: rgba(96, 165, 250, 0.18);
  background: rgba(37, 99, 235, 0.09);
  color: rgba(255, 255, 255, 0.7);
}

/* Desktop-only dynamic form columns. */
@media (min-width: 768px) {
  .ytplk-form-row.has-selection,
  .ytplk-form-row-2col.has-selection {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

@media (max-width: 1199.98px) {
  .ytplk-info-grid.four,
  .ytplk-process-grid.four,
  .ytplk-scope-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ytplk-proof-robot,
  .ytplk-mascot-wrap {
    width: 116px;
    height: 116px;
    flex-basis: 116px;
  }

  .ytplk-mascot-img,
  .ytplk-robot-img {
    width: 108px;
  }
}

@media (max-width: 991.98px) {
  .ytplk-hero {
    padding: 12px 0 22px;
  }

  .ytplk-hero-row {
    flex-direction: column;
  }

  .ytplk-col-form,
  .ytplk-hero-form,
  .ytplk-form-column {
    width: 100%;
    order: -1;
    margin-top: 0;
  }

  .ytplk-col-illustration,
  .ytplk-hero-visual,
  .ytplk-visual-column {
    width: 100%;
    padding-top: 0;
  }

  .ytplk-form-card,
  .ytplk-glass-form {
    margin-bottom: 20px;
  }

  .ytplk-split-layout,
  .ytplk-definition-layout,
  .ytplk-split-layout.reverse,
  .ytplk-definition-layout.reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .ytplk-split-layout.reverse > :first-child,
  .ytplk-definition-layout.reverse > :first-child {
    order: 2;
  }

  .ytplk-info-grid,
  .ytplk-process-grid,
  .ytplk-method-grid,
  .ytplk-scope-grid,
  .ytplk-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ytplk-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .body-wrapper > section[id] {
    scroll-margin-top: 128px;
  }

  .ytplk-content-section {
    padding: 40px 0;
  }

  .ytplk-section-heading,
  .ytplk-section-title {
    font-size: 1.28rem;
  }

  .ytplk-section-intro,
  .ytplk-lead {
    margin-bottom: 24px;
    font-size: 0.9rem;
  }

  .ytplk-form-row,
  .ytplk-form-row-2col {
    grid-template-columns: minmax(0, 1fr);
  }

  .ytplk-info-grid,
  .ytplk-comparison-grid,
  .ytplk-process-grid,
  .ytplk-howto-grid,
  .ytplk-method-grid,
  .ytplk-scope-grid,
  .ytplk-benefit-grid,
  .ytplk-info-grid.four,
  .ytplk-process-grid.four,
  .ytplk-scope-grid.four,
  .ytplk-related-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ytplk-info-card,
  .ytplk-comparison-card,
  .ytplk-process-step,
  .ytplk-method-card,
  .ytplk-scope-card,
  .ytplk-benefit-card,
  .ytplk-related-card {
    padding: 20px;
  }

  .ytplk-fact-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .ytplk-testimonials-section,
  .ytplk-testimonial-shell {
    padding: 44px 0 48px;
  }

  .ytplk-testimonial-window,
  .ytplk-testimonial-wrapper {
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  }

  .ytplk-testimonial-card {
    width: min(340px, 88vw);
    min-height: 0;
  }

  .ytplk-lightbox {
    padding: 17px;
  }

  .ytplk-lightbox-close {
    top: 11px;
    right: 11px;
  }
}

@media (max-width: 575.98px) {
  .ytplk-hero-title {
    font-size: 1.34rem;
    line-height: 1.28;
  }

  .ytplk-keyword-pills,
  .ytplk-kw-rotator {
    gap: 5px;
  }

  .ytplk-keyword-pill,
  .ytplk-pill,
  .ytplk-kw {
    padding: 4px 9px;
    font-size: 0.67rem;
  }

  .ytplk-form-card,
  .ytplk-glass-form {
    padding: 18px 16px;
    border-radius: 15px;
  }

  .ytplk-stepper {
    gap: 3px;
  }

  .ytplk-form-step,
  .ytplk-step {
    gap: 4px;
    font-size: 0.64rem;
  }

  .ytplk-step-number,
  .ytplk-step-num {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
  }

  .ytplk-proof-panel {
    padding: 14px;
    border-radius: 19px;
  }

  .ytplk-proof-hero {
    flex-direction: column;
    gap: 13px;
    text-align: center;
  }

  .ytplk-proof-robot,
  .ytplk-mascot-wrap {
    width: 104px;
    height: 104px;
    flex-basis: 104px;
  }

  .ytplk-proof-robot::before,
  .ytplk-mascot-wrap::before {
    width: 90px;
    height: 90px;
  }

  .ytplk-mascot-img,
  .ytplk-robot-img {
    width: 96px;
  }

  .ytplk-floating-badge,
  .ytplk-fbadge {
    padding: 3px 7px;
    font-size: 0.51rem;
  }

  .ytplk-floating-badge.badge-one,
  .ytplk-fbadge-1 {
    right: -15px;
  }

  .ytplk-floating-badge.badge-two,
  .ytplk-fbadge-2 {
    left: -15px;
  }

  .ytplk-proof-stats {
    width: 100%;
  }

  .ytplk-live-item,
  .ytplk-livefeed-item {
    gap: 7px;
    padding: 8px;
  }

  .ytplk-live-time,
  .ytplk-livefeed-time {
    font-size: 0.56rem;
  }

  .ytplk-final-cta {
    padding: 43px 0;
  }

  .ytplk-final-cta h2,
  .ytplk-final-cta h3 {
    font-size: 1.35rem;
  }

  .ytplk-final-button,
  .ytplk-cta-scroll {
    width: 100%;
    max-width: 330px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 390px) {
  .ytplk-form-header {
    align-items: flex-start;
  }

  .ytplk-form-header-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .ytplk-form-step > span:not(.ytplk-step-number),
  .ytplk-step > span:not(.ytplk-step-num) {
    display: none;
  }

  .ytplk-step-line {
    min-width: 14px;
  }

  .ytplk-input-suffix,
  .ytplk-quantity-suffix {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.72rem;
  }

  .ytplk-live-avatar,
  .ytplk-livefeed-avatar {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
  }

  .ytplk-live-name,
  .ytplk-livefeed-name {
    font-size: 0.69rem;
  }

  .ytplk-live-detail,
  .ytplk-livefeed-detail {
    font-size: 0.6rem;
  }

  .ytplk-faq-question,
  .ytplk-faq-q {
    padding: 15px;
    font-size: 0.84rem;
  }

  .ytplk-faq-answer > div,
  .ytplk-faq-answer p,
  .ytplk-faq-a p {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ytplk-page *,
  .ytplk-page *::before,
  .ytplk-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .ytplk-mascot-img,
  .ytplk-robot-img,
  .ytplk-floating-badge,
  .ytplk-fbadge,
  .ytplk-testimonial-track {
    animation: none !important;
  }

  .ytplk-reveal,
  .ytplk-reveal-left,
  .ytplk-reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* ========================================================================
   HERO + FORM PARITY
   Copied from youtube-tang-subscribe-v2.css and renamed ytsub -> ytplk.
   Kept at the end of this file so earlier page-specific rewrites cannot
   override the reference layout.
   ======================================================================== */
:root {
  --ytplk-primary: #ff0000;
  --ytplk-primary-dark: #cc0000;
  --ytplk-accent: #ffd700;
  --ytplk-accent-light: #ffe44d;
  --ytplk-accent-soft: #ffe44d;
  --ytplk-gold: #ffd700;
  --ytplk-neon-red: #ff3333;
  --ytplk-glass: rgba(255, 255, 255, 0.08);
  --ytplk-glass-border: rgba(255, 255, 255, 0.14);
  --ytplk-gradient: linear-gradient(135deg, #0a0a1a 0%, #1a0a0a 50%, #0a0a1a 100%);
  --ytplk-gradient-accent: linear-gradient(135deg, #ff0000 0%, #ffd700 100%);
  --ytplk-gradient-mix: linear-gradient(135deg, #ff0000 0%, #ffd700 100%);
  --ytplk-brand-gradient: linear-gradient(135deg, #ff0000 0%, #ffd700 100%);
  --ytplk-dark: #0a0a1a;
  --ytplk-dark2: #1a0a0a;
  --ytplk-radius: 16px;
  --ytplk-radius-lg: 24px;
  --ytplk-shadow: 0 8px 32px rgba(255, 0, 0, 0.12);
}

@keyframes ytplkShimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

@keyframes ytplkBadgeSlide {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes ytplkFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes ytplkSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ytplkFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes ytplkFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes ytplkDotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes ytplkFeedSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.ytplk-breadcrumb { margin-bottom: 8px; }
.ytplk-breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 6px; font-size: 0.78rem; }
.ytplk-breadcrumb a { color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: color 0.2s; }
.ytplk-breadcrumb a:hover { color: var(--ytplk-accent); }
.ytplk-breadcrumb .separator { color: rgba(255, 255, 255, 0.3); font-size: 0.55rem; }
.ytplk-breadcrumb .current span { color: rgba(255, 255, 255, 0.85); font-weight: 600; }

.ytplk-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 0, 0, 0.35);
  border-radius: 50px;
  margin-bottom: 12px;
  background: rgba(255, 0, 0, 0.2);
  color: var(--ytplk-accent);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  font-size: 0.82rem;
  font-weight: 700;
  animation: ytplkBadgeSlide 0.6s ease-out both;
}

.ytplk-hero-badge i { color: var(--ytplk-accent); font-size: 0.8rem; }

.ytplk-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 16px 0 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0a0a 30%, #0a0a1a 60%, #1a0a0a 100%);
}

.ytplk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255, 0, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.ytplk-hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -80px;
  left: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ytplk-hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.ytplk-hero-orb-1 { width: 300px; height: 300px; top: -80px; right: -60px; background: radial-gradient(circle, rgba(255, 0, 0, 0.12) 0%, transparent 70%); }
.ytplk-hero-orb-2 { width: 200px; height: 200px; bottom: -50px; left: 5%; background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%); }
.ytplk-hero-orb-3 { width: 120px; height: 120px; top: 30%; left: 15%; background: radial-gradient(circle, rgba(255, 51, 51, 0.1) 0%, transparent 70%); }
.ytplk-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.ytplk-hero-row { display: flex; flex-wrap: wrap; flex-direction: row-reverse; }
.ytplk-col-form, .ytplk-col-illustration { order: 0; margin-top: 0; padding-top: 0; }
.ytplk-anim-fadeIn { animation: ytplkFadeIn 0.8s ease both; }
.ytplk-anim-slideUp { animation: ytplkSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
.ytplk-hero-title { margin-bottom: 6px; color: #fff; font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; line-height: 1.25; text-shadow: 0 0 30px rgba(255, 0, 0, 0.3), 0 2px 20px rgba(0, 0, 0, 0.3); }
.ytplk-kw-rotator { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.ytplk-kw { display: inline-block; padding: 4px 12px; border: 1px solid rgba(255, 0, 0, 0.25); border-radius: 20px; background: rgba(255, 0, 0, 0.12); color: rgba(255, 255, 255, 0.7); font-size: 0.72rem; font-weight: 600; white-space: nowrap; }

.ytplk-glass-form {
  padding: 24px 28px;
  position: relative;
  z-index: auto;
  border: 1px solid var(--ytplk-glass-border);
  border-radius: var(--ytplk-radius);
  background: linear-gradient(160deg, rgba(255, 0, 0, 0.08) 0%, rgba(10, 10, 26, 0.95) 40%, rgba(26, 10, 10, 0.97) 100%);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.25), 0 0 40px rgba(255, 0, 0, 0.1);
}

.ytplk-glass-form::before {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 1px;
  border-radius: var(--ytplk-radius);
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.4), rgba(255, 215, 0, 0.2), rgba(255, 0, 0, 0.35));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.ytplk-form-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.ytplk-form-header-icon { display: flex; width: 44px; height: 44px; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 12px; background: var(--ytplk-gradient-accent); color: #fff; box-shadow: 0 4px 14px rgba(255, 0, 0, 0.3); font-size: 1.2rem; }
.ytplk-form-header-title { margin: 0; color: #fff; font-size: 1rem; font-weight: 700; line-height: 1.3; }
.ytplk-form-header-sub { margin: 2px 0 0; color: rgba(255, 255, 255, 0.5); font-size: 0.75rem; line-height: 1.3; }
.ytplk-stepper { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding: 0 4px; position: relative; }
.ytplk-step { display: flex; align-items: center; gap: 6px; color: rgba(255, 255, 255, 0.3); font-size: 0.72rem; font-weight: 600; white-space: nowrap; transition: all 0.35s ease; }
.ytplk-step-text { color: inherit; }
.ytplk-step-num { display: flex; width: 26px; height: 26px; flex-shrink: 0; align-items: center; justify-content: center; border: 2px solid rgba(255, 255, 255, 0.15); border-radius: 50%; background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.3); font-size: 0.7rem; font-weight: 700; transition: all 0.35s ease; }
.ytplk-step-line { flex: 1; height: 2px; margin: 0 4px; background: rgba(255, 255, 255, 0.08); }
.ytplk-step.active { color: rgba(255, 255, 255, 0.95); }
.ytplk-step.active .ytplk-step-num { border-color: var(--ytplk-primary); background: var(--ytplk-gradient-accent); color: #fff; box-shadow: 0 0 12px rgba(255, 0, 0, 0.4); }
.ytplk-step.completed { color: rgba(255, 255, 255, 0.6); }
.ytplk-step.completed .ytplk-step-num { border-color: #4caf50; background: linear-gradient(135deg, #4caf50, #66bb6a); color: #fff; box-shadow: 0 0 8px rgba(76, 175, 80, 0.3); font-size: 0; }
.ytplk-step.completed .ytplk-step-num::after { content: "\f00c"; font-family: "Font Awesome 5 Free"; font-size: 0.65rem; font-weight: 900; }
.ytplk-form-group { margin-bottom: 16px; overflow: visible; }
.ytplk-form-group:last-of-type { margin-bottom: 8px; }
.ytplk-form-label { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; color: rgba(255, 255, 255, 0.9); font-size: 0.82rem; font-weight: 600; }
.ytplk-form-label i { color: var(--ytplk-primary); font-size: 0.88rem; }
.ytplk-form-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; overflow: visible; transition: grid-template-columns 0.3s ease; }
.ytplk-form-row-2col > .ytplk-form-group { min-width: 0; }
.ytplk-input { width: 100%; padding: 12px 14px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 10px; outline: none; background: rgba(255, 255, 255, 0.07); color: #fff; font-size: 0.88rem; transition: all 0.3s ease; }
.ytplk-input::placeholder { color: rgba(255, 255, 255, 0.3); }
.ytplk-input:focus { border-color: var(--ytplk-primary); background: rgba(255, 255, 255, 0.1); box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 0, 0, 0.1); }
.ytplk-server-desc { display: none; margin-top: 6px; padding: 6px 10px; border: 1px solid rgba(255, 0, 0, 0.15); border-radius: 6px; background: rgba(255, 0, 0, 0.08); color: rgba(255, 255, 255, 0.7); font-size: 0.75rem; line-height: 1.4; }
.ytplk-qty-hint { display: block; margin-top: 3px; color: rgba(255, 255, 255, 0.4); font-size: 0.7rem; }
.ytplk-qty-row { display: flex; align-items: stretch; }
.ytplk-qty-row .ytplk-input { flex: 1; border-right: 0; border-radius: 10px 0 0 10px; }
.ytplk-qty-suffix { display: flex; align-items: center; padding: 0 14px; border: 1px solid rgba(255, 255, 255, 0.14); border-left: 0; border-radius: 0 10px 10px 0; background: rgba(255, 0, 0, 0.15); color: var(--ytplk-accent); font-size: 0.82rem; font-weight: 600; white-space: nowrap; }
.ytplk-price-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); font-size: 0.82rem; }
.ytplk-price-label { color: rgba(255, 255, 255, 0.5); }
.ytplk-price-value, .ytplk-price-total { color: #fff; font-weight: 700; }
.ytplk-price-total { color: var(--ytplk-accent); font-size: 0.95rem; }
.ytplk-cta-btn { width: 100%; margin-top: 12px; padding: 14px; position: relative; overflow: hidden; border: 0; border-radius: 12px; background: var(--ytplk-gradient-accent); color: #fff; font-size: 1rem; font-weight: 700; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.ytplk-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4); }
.ytplk-cta-shimmer { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); animation: ytplkShimmer 3s infinite; }
.ytplk-trust-mini { display: flex; justify-content: center; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.ytplk-trust-mini span { display: flex; align-items: center; gap: 4px; color: rgba(255, 255, 255, 0.55); font-size: 0.7rem; }
.ytplk-trust-mini span i { color: var(--ytplk-accent); font-size: 0.72rem; }

.ytplk-glass-form .custom-select-trigger { display: flex; align-items: center; justify-content: space-between; padding: 12px 32px 12px 14px; position: relative; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 10px; background: rgba(255, 255, 255, 0.07); color: #fff; font-size: 0.88rem; text-overflow: ellipsis; white-space: nowrap; transition: all 0.3s; }
.ytplk-glass-form .custom-select-trigger:hover, .ytplk-glass-form .custom-select-wrapper.open .custom-select-trigger { border-color: var(--ytplk-primary); box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.15); }
.ytplk-glass-form .custom-select-trigger .arrow { position: absolute; top: 50%; right: 12px; border-top-color: rgba(255, 255, 255, 0.5); transform: translateY(-50%); }
.ytplk-glass-form .custom-select-dropdown { width: 100%; min-width: 100%; max-width: calc(100vw - 40px); border-color: rgba(255, 255, 255, 0.12); background: rgba(10, 10, 26, 0.98); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5); }
.ytplk-glass-form .custom-search-container { border-color: rgba(255, 255, 255, 0.08); background: rgba(10, 10, 26, 0.8); }
.ytplk-glass-form .custom-search-input { border-color: rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.06); color: #fff; }
.ytplk-glass-form .custom-option { padding: 10px 12px; color: rgba(255, 255, 255, 0.9); font-size: 0.82rem; line-height: 1.4; white-space: normal; word-break: break-word; }
.ytplk-glass-form .custom-option:hover { background: rgba(255, 0, 0, 0.12); }
.ytplk-server-trigger #server-render { display: block; max-width: calc(100% - 20px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ytplk-glass-form #server-list li { color: rgba(255, 255, 255, 0.9); font-size: 0.82rem; }
.ytplk-glass-form #server-list li:hover { background: rgba(255, 0, 0, 0.12); }
.ytplk-glass-form #server-list li strong { color: var(--ytplk-accent); }

.ytplk-proof-panel { margin-top: 12px; padding: 20px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--ytplk-radius-lg); background: rgba(10, 10, 26, 0.92); }
.ytplk-proof-hero { display: flex; align-items: center; gap: 20px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.ytplk-proof-robot { display: flex; width: 130px; height: 130px; flex-shrink: 0; align-items: center; justify-content: center; position: relative; }
.ytplk-proof-robot::before { content: none; }
.ytplk-cat-glow { position: absolute; top: 50%; left: 50%; width: 100px; height: 100px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, transparent 70%); opacity: 0.6; transform: translate(-50%, -50%); pointer-events: none; }
.ytplk-robot-img-sm { width: 120px; position: relative; z-index: 2; filter: drop-shadow(0 6px 20px rgba(255, 0, 0, 0.25)); }
.ytplk-fbadge { display: inline-flex; align-items: center; gap: 3px; padding: 3px 8px; position: absolute; z-index: 3; border: 1px solid rgba(255, 0, 0, 0.3); border-radius: 12px; background: rgba(255, 0, 0, 0.18); color: #fff; box-shadow: 0 3px 10px rgba(255, 0, 0, 0.12); font-size: 0.55rem; font-weight: 700; white-space: nowrap; pointer-events: none; }
.ytplk-fbadge i { color: var(--ytplk-accent); font-size: 0.55rem; }
.ytplk-fb-mini-1 { top: -2px; right: -8px; animation: ytplkFloat1 3.5s ease-in-out infinite; }
.ytplk-fb-mini-2 { bottom: 5px; left: -10px; animation: ytplkFloat2 4s ease-in-out infinite 0.8s; }
.ytplk-fb-mini-3 { top: 50%; right: -16px; border-color: rgba(255, 215, 0, 0.35); background: rgba(255, 215, 0, 0.2); opacity: 0.7; }
.ytplk-proof-stats { display: grid; flex: 1; grid-template-columns: 1fr 1fr; gap: 10px; }
.ytplk-pstat { display: flex; min-height: 88px; flex-direction: column; align-items: center; justify-content: center; padding: 10px 6px; border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; background: rgba(255, 255, 255, 0.04); text-align: center; transition: all 0.3s ease; }
.ytplk-pstat:hover { border-color: rgba(255, 0, 0, 0.2); background: rgba(255, 0, 0, 0.08); transform: translateY(-2px); }
.ytplk-pstat-icon { margin-bottom: 4px; color: var(--ytplk-primary); font-size: 0.9rem; }
.ytplk-pstat-num { color: #fff; font-size: clamp(0.86rem, 1vw, 1.05rem); font-weight: 800; font-variant-numeric: tabular-nums; line-height: 1.2; }
.ytplk-pstat-label { margin-top: 3px; color: rgba(255, 255, 255, 0.55); font-size: 0.59rem; font-weight: 600; letter-spacing: 0.4px; line-height: 1.35; text-transform: uppercase; }
.ytplk-livefeed { max-height: 200px; overflow: hidden; position: relative; }
.ytplk-livefeed::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; height: 40px; background: linear-gradient(transparent, rgba(10, 10, 26, 0.95)); pointer-events: none; }
.ytplk-livefeed-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.ytplk-livefeed-dot { width: 8px; height: 8px; border-radius: 50%; background: #4caf50; box-shadow: 0 0 8px rgba(76, 175, 80, 0.5); animation: ytplkDotBlink 1.5s ease-in-out infinite; }
.ytplk-livefeed-title { color: rgba(255, 255, 255, 0.6); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; }
.ytplk-livefeed-list { display: flex; flex-direction: column; gap: 6px; }
.ytplk-livefeed-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 10px; background: rgba(255, 255, 255, 0.03); animation: ytplkFeedSlideIn 0.5s ease-out; }
.ytplk-livefeed-item:hover { border-color: rgba(255, 0, 0, 0.15); background: rgba(255, 0, 0, 0.06); }
.ytplk-livefeed-avatar { display: flex; width: 32px; height: 32px; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 50%; background: var(--ytplk-gradient-accent); color: #fff; font-size: 0.7rem; font-weight: 700; }
.ytplk-livefeed-name { color: #fff; font-size: 0.75rem; font-weight: 600; }
.ytplk-livefeed-name span { color: var(--ytplk-primary); font-weight: 700; }
.ytplk-livefeed-detail { color: rgba(255, 255, 255, 0.4); font-size: 0.65rem; }
.ytplk-livefeed-time { color: rgba(255, 255, 255, 0.3); font-size: 0.6rem; }

.ytplk-hero-info-card { display: flex; flex-direction: column; gap: 0; margin-top: 12px; margin-bottom: 20px; padding: 16px 18px 16px 22px; position: relative; overflow: hidden; border: 1px solid rgba(255, 0, 0, 0.1); border-radius: 12px; background: rgba(42, 0, 0, 0.65); }
.ytplk-hero-info-card::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 3px; border-radius: 3px 0 0 3px; background: linear-gradient(180deg, #ff0000, #ffd700); }
.ytplk-hero-info-card .ytplk-hero-desc { max-width: none; margin: 0; padding-bottom: 12px; border-bottom: 1px solid rgba(255, 0, 0, 0.08); color: rgba(255, 255, 255, 0.75); font-size: 0.88rem; line-height: 1.6; }
.ytplk-hero-info-card .ytplk-hero-anchor { max-width: none; margin: 0; padding: 12px 0 0; border: 0; border-radius: 0; background: none; color: rgba(255, 255, 255, 0.5); font-size: 0.82rem; line-height: 1.6; }
.ytplk-hero-anchor a { border-bottom: 1px dashed var(--ytplk-accent); color: var(--ytplk-accent); font-weight: 700; text-decoration: none; }

/* Benefit section added for this service. */
.ytplk-benefit-kicker { display: block; margin: 0 auto 8px; color: var(--ytplk-primary); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.12em; text-align: center; text-transform: uppercase; }
.ytplk-benefit-layout { row-gap: 26px; }
.ytplk-benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.ytplk-benefit-card { min-height: 224px; }
.ytplk-benefit-cta { width: fit-content; margin: 22px 0 0; }
.ytplk-benefit-image-card { border-color: rgba(255, 0, 0, 0.12); box-shadow: 0 18px 50px rgba(255, 0, 0, 0.14); }

/* Stronger testimonial separation and contrast. */
.ytplk-testimonials-section { background: radial-gradient(circle at 18% 0, rgba(255, 0, 0, 0.28), transparent 34%), radial-gradient(circle at 82% 100%, rgba(255, 215, 0, 0.16), transparent 30%), linear-gradient(135deg, #070714, #2a0909 52%, #080815) !important; }
.ytplk-testimonial-heading p { max-width: 820px; margin: 0 auto 20px; color: rgba(255, 255, 255, 0.82); font-size: 0.94rem; line-height: 1.72; text-align: center; }
.ytplk-testimonial-card { width: min(390px, 86vw); min-height: 326px; position: relative; border-color: rgba(255, 255, 255, 0.24); background: linear-gradient(145deg, rgba(74, 38, 45, 0.98), rgba(31, 21, 31, 0.98)); box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32); }
.ytplk-testimonial-top p { color: rgba(255, 255, 255, 0.72); }
.ytplk-testimonials-section .ytplk-testimonial-text { color: rgba(255, 255, 255, 0.91); font-size: 0.86rem; line-height: 1.72; }
.ytplk-testimonial-tag { border-color: rgba(255, 80, 80, 0.35); background: rgba(255, 0, 0, 0.18); color: #ffe1e1; }
[data-bs-theme="dark"] .ytplk-content-section:not(.ytplk-testimonials-section) { background: #15151c; }
[data-bs-theme="dark"] .ytplk-testimonials-section { background: radial-gradient(circle at 18% 0, rgba(255, 0, 0, 0.28), transparent 34%), radial-gradient(circle at 82% 100%, rgba(255, 215, 0, 0.16), transparent 30%), linear-gradient(135deg, #070714, #2a0909 52%, #080815) !important; }

/* Final parity resets: remove inherited V1 properties that are absent on tang-sub. */
.ytplk-hero::before {
  width: auto;
  height: auto;
}

.ytplk-hero-orb-1 {
  left: auto;
}

.ytplk-hero-grid {
  z-index: 0;
  opacity: 1;
}

.ytplk-glass-form::before {
  z-index: auto;
}

.ytplk-stepper {
  gap: 0;
}

.ytplk-cta-shimmer {
  transform: none;
  transition: none;
}

.ytplk-proof-robot {
  flex: 0 0 130px;
}

.ytplk-robot-img-sm {
  animation: ytplkMascotBob 4.8s ease-in-out infinite;
}

.ytplk-testimonial-meta .ytplk-testimonial-tag,
.ytplk-testimonial-meta .ytplk-testimonial-stars {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .ytplk-form-row-2col.has-selection { grid-template-columns: auto minmax(0, 1fr); }
}

@media (max-width: 991.98px) {
  .ytplk-hero-row { flex-direction: column; }
  .ytplk-col-form { width: 100%; order: -1; }
  .ytplk-col-illustration { width: 100%; }
  .ytplk-hero { padding: 12px 0 20px; }
  .ytplk-glass-form { margin-bottom: 20px; }
  .ytplk-proof-hero { flex-direction: column; text-align: center; }
  .ytplk-proof-robot { width: 80px; height: 80px; }
  .ytplk-robot-img-sm { width: 70px; }
  .ytplk-fbadge { display: none; }
}

@media (max-width: 767.98px) {
  .ytplk-form-row-2col { grid-template-columns: 1fr; }
  .ytplk-benefit-grid { grid-template-columns: 1fr; }
  .ytplk-benefit-card { min-height: 0; }
  .ytplk-benefit-cta { width: 100%; justify-content: center; text-align: center; }
  .ytplk-testimonial-card { width: min(350px, 88vw); min-height: 0; }
}

@media (max-width: 575.98px) {
  .ytplk-glass-form { padding: 18px 16px; }
  .ytplk-proof-panel { padding: 14px; }
  .ytplk-pstat { min-height: 82px; }
  .ytplk-pstat-num { font-size: 0.82rem; }
  .ytplk-pstat-label { font-size: 0.55rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ytplk-robot-img-sm,
  .ytplk-fbadge,
  .ytplk-testimonial-track { animation: none !important; }
}
