@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

.fb-friend-viewer-content {
  width: 100%;
  overflow-x: hidden;
  color: #172033;
  font-family: inherit;
  line-height: 1.6;
  --ffv-blue: #1877f2;
  --ffv-cyan: #19c7df;
  --ffv-ink: #172033;
  --ffv-muted: #5c6b82;
  --ffv-soft: #f6f9fc;
  --ffv-border: rgba(24, 119, 242, 0.14);
  --ffv-shadow: 0 18px 45px rgba(23, 32, 51, 0.09);
  --ffv-shadow-soft: 0 12px 30px rgba(23, 32, 51, 0.07);
}

.fb-friend-viewer-content,
.fb-friend-viewer-content div,
.fb-friend-viewer-content section,
.fb-friend-viewer-content article {
  box-sizing: border-box;
}

.fb-friend-viewer-content .ffv-section {
  position: relative;
  width: 100%;
}

.fb-friend-viewer-content .ffv-section-white {
  background: #ffffff;
}

.fb-friend-viewer-content .ffv-section-soft {
  background:
    radial-gradient(circle at 12% 10%, rgba(24, 119, 242, 0.08), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(25, 199, 223, 0.08), transparent 32%),
    #f7fafc;
}

.fb-friend-viewer-content .ffv-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.fb-friend-viewer-content .ffv-section-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.fb-friend-viewer-content .ffv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 13px;
  border: 1px solid rgba(24, 119, 242, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #1260c4;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.fb-friend-viewer-content .ffv-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ffv-blue), var(--ffv-cyan));
  box-shadow: 0 0 0 5px rgba(24, 119, 242, 0.1);
}

.fb-friend-viewer-content .ffv-section-head h2 {
  margin: 0;
  color: var(--ffv-ink);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.fb-friend-viewer-content .ffv-section-head p {
  margin: 14px auto 0;
  color: var(--ffv-muted);
  font-weight: 400;
  line-height: 1.75;
}

.fb-friend-viewer-content .ffv-grid {
  display: grid;
  align-items: stretch;
}

.fb-friend-viewer-content .ffv-card,
.fb-friend-viewer-content .ffv-trust-card,
.fb-friend-viewer-content .ffv-step {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(24, 119, 242, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--ffv-shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.fb-friend-viewer-content .ffv-card,
.fb-friend-viewer-content .ffv-trust-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  border-radius: 22px;
}

.fb-friend-viewer-content .ffv-card::after,
.fb-friend-viewer-content .ffv-trust-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(25, 199, 223, 0));
  opacity: 0;
  transition: opacity 220ms ease;
}

.fb-friend-viewer-content .ffv-card:hover,
.fb-friend-viewer-content .ffv-trust-card:hover,
.fb-friend-viewer-content .ffv-step:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 119, 242, 0.28);
  box-shadow: var(--ffv-shadow);
}

.fb-friend-viewer-content .ffv-card:hover::after,
.fb-friend-viewer-content .ffv-trust-card:hover::after {
  opacity: 1;
}

.fb-friend-viewer-content .ffv-card h3,
.fb-friend-viewer-content .ffv-trust-card h3,
.fb-friend-viewer-content .ffv-step h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ffv-ink);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.fb-friend-viewer-content .ffv-card p,
.fb-friend-viewer-content .ffv-trust-card p,
.fb-friend-viewer-content .ffv-step p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: var(--ffv-muted);
  line-height: 1.72;
}

.fb-friend-viewer-content .ffv-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.12), rgba(25, 199, 223, 0.14));
  border: 1px solid rgba(24, 119, 242, 0.14);
}

.fb-friend-viewer-content .ffv-icon::before,
.fb-friend-viewer-content .ffv-icon::after {
  content: "";
  position: absolute;
  transition: transform 220ms ease;
}

.fb-friend-viewer-content .ffv-card:hover .ffv-icon::before,
.fb-friend-viewer-content .ffv-card:hover .ffv-icon::after {
  transform: translateY(-2px);
}

.fb-friend-viewer-content .ffv-icon-view::before {
  width: 23px;
  height: 15px;
  left: 12px;
  top: 16px;
  border: 2px solid var(--ffv-blue);
  border-radius: 50%;
}

.fb-friend-viewer-content .ffv-icon-view::after {
  width: 7px;
  height: 7px;
  left: 20px;
  top: 20px;
  border-radius: 50%;
  background: var(--ffv-cyan);
}

.fb-friend-viewer-content .ffv-icon-speed::before {
  width: 22px;
  height: 22px;
  left: 13px;
  top: 13px;
  border: 2px solid var(--ffv-blue);
  border-radius: 50%;
  border-bottom-color: transparent;
}

.fb-friend-viewer-content .ffv-icon-speed::after {
  width: 14px;
  height: 2px;
  left: 23px;
  top: 23px;
  background: var(--ffv-cyan);
  transform-origin: left center;
  transform: rotate(-35deg);
}

.fb-friend-viewer-content .ffv-icon-preview::before {
  width: 24px;
  height: 18px;
  left: 12px;
  top: 15px;
  border: 2px solid var(--ffv-blue);
  border-radius: 7px;
}

.fb-friend-viewer-content .ffv-icon-preview::after {
  width: 12px;
  height: 3px;
  left: 18px;
  top: 22px;
  border-radius: 999px;
  background: var(--ffv-cyan);
}

.fb-friend-viewer-content .ffv-icon-steps::before {
  width: 6px;
  height: 6px;
  left: 13px;
  top: 13px;
  border-radius: 50%;
  background: var(--ffv-blue);
  box-shadow: 0 10px 0 var(--ffv-cyan), 0 20px 0 var(--ffv-blue);
}

.fb-friend-viewer-content .ffv-icon-steps::after {
  width: 16px;
  height: 2px;
  left: 24px;
  top: 15px;
  border-radius: 999px;
  background: rgba(24, 119, 242, 0.7);
  box-shadow: 0 10px 0 rgba(25, 199, 223, 0.8), 0 20px 0 rgba(24, 119, 242, 0.7);
}

.fb-friend-viewer-content .ffv-icon-mobile::before {
  width: 18px;
  height: 27px;
  left: 15px;
  top: 10px;
  border: 2px solid var(--ffv-blue);
  border-radius: 7px;
}

.fb-friend-viewer-content .ffv-icon-mobile::after {
  width: 5px;
  height: 5px;
  left: 22px;
  top: 30px;
  border-radius: 50%;
  background: var(--ffv-cyan);
}

.fb-friend-viewer-content .ffv-icon-daily::before {
  width: 24px;
  height: 20px;
  left: 12px;
  top: 15px;
  border: 2px solid var(--ffv-blue);
  border-radius: 8px;
}

.fb-friend-viewer-content .ffv-icon-daily::after {
  width: 18px;
  height: 2px;
  left: 15px;
  top: 21px;
  border-radius: 999px;
  background: var(--ffv-cyan);
  box-shadow: 0 6px 0 rgba(24, 119, 242, 0.55);
}

.fb-friend-viewer-content .ffv-steps {
  display: grid;
  grid-template-columns: 1fr;
}

.fb-friend-viewer-content .ffv-step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
}

.fb-friend-viewer-content .ffv-step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--ffv-blue), var(--ffv-cyan));
}

.fb-friend-viewer-content .ffv-step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--ffv-blue), var(--ffv-cyan));
  color: #ffffff;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(24, 119, 242, 0.23);
}

.fb-friend-viewer-content .ffv-step-content {
  min-width: 0;
}

.fb-friend-viewer-content .ffv-card-alt {
  border-color: rgba(23, 32, 51, 0.08);
}

.fb-friend-viewer-content .ffv-badge-dot {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(24, 119, 242, 0.09);
}

.fb-friend-viewer-content .ffv-badge-dot::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  left: 10px;
  top: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ffv-blue), var(--ffv-cyan));
}

.fb-friend-viewer-content .ffv-trust-card {
  text-align: left;
}

.fb-friend-viewer-content .ffv-trust-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ffv-blue), var(--ffv-cyan));
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(24, 119, 242, 0.22);
}

.fb-friend-viewer-content .ffv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.fb-friend-viewer-content .ffv-reveal.ffv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

@media (min-width: 320px) and (max-width: 374px) {
  .fb-friend-viewer-content .ffv-section {
    padding: 48px 0;
  }

  .fb-friend-viewer-content .ffv-container {
    padding: 0 14px;
  }

  .fb-friend-viewer-content .ffv-section-head h2 {
    font-size: 25px;
  }

  .fb-friend-viewer-content .ffv-section-head p {
    font-size: 14px;
  }

  .fb-friend-viewer-content .ffv-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .fb-friend-viewer-content .ffv-card,
  .fb-friend-viewer-content .ffv-trust-card {
    padding: 22px;
  }

  .fb-friend-viewer-content .ffv-card h3,
  .fb-friend-viewer-content .ffv-trust-card h3,
  .fb-friend-viewer-content .ffv-step h3 {
    font-size: 18px;
  }

  .fb-friend-viewer-content .ffv-card p,
  .fb-friend-viewer-content .ffv-trust-card p,
  .fb-friend-viewer-content .ffv-step p {
    font-size: 14px;
  }

  .fb-friend-viewer-content .ffv-steps {
    gap: 16px;
    margin-top: 28px;
  }

  .fb-friend-viewer-content .ffv-step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .fb-friend-viewer-content .ffv-step-number {
    width: 58px;
    height: 58px;
    font-size: 17px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .fb-friend-viewer-content .ffv-section {
    padding: 54px 0;
  }

  .fb-friend-viewer-content .ffv-container {
    padding: 0 18px;
  }

  .fb-friend-viewer-content .ffv-section-head h2 {
    font-size: 28px;
  }

  .fb-friend-viewer-content .ffv-section-head p {
    font-size: 15px;
  }

  .fb-friend-viewer-content .ffv-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }

  .fb-friend-viewer-content .ffv-card,
  .fb-friend-viewer-content .ffv-trust-card {
    padding: 24px;
  }

  .fb-friend-viewer-content .ffv-card h3,
  .fb-friend-viewer-content .ffv-trust-card h3,
  .fb-friend-viewer-content .ffv-step h3 {
    font-size: 19px;
  }

  .fb-friend-viewer-content .ffv-card p,
  .fb-friend-viewer-content .ffv-trust-card p,
  .fb-friend-viewer-content .ffv-step p {
    font-size: 14.5px;
  }

  .fb-friend-viewer-content .ffv-steps {
    gap: 18px;
    margin-top: 30px;
  }

  .fb-friend-viewer-content .ffv-step {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 24px;
  }

  .fb-friend-viewer-content .ffv-step-number {
    width: 60px;
    height: 60px;
    font-size: 17px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .fb-friend-viewer-content .ffv-section {
    padding: 60px 0;
  }

  .fb-friend-viewer-content .ffv-container {
    padding: 0 22px;
  }

  .fb-friend-viewer-content .ffv-section-head h2 {
    font-size: 31px;
  }

  .fb-friend-viewer-content .ffv-section-head p {
    font-size: 15.5px;
  }

  .fb-friend-viewer-content .ffv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
  }

  .fb-friend-viewer-content .ffv-card,
  .fb-friend-viewer-content .ffv-trust-card {
    padding: 26px;
  }

  .fb-friend-viewer-content .ffv-card h3,
  .fb-friend-viewer-content .ffv-trust-card h3,
  .fb-friend-viewer-content .ffv-step h3 {
    font-size: 20px;
  }

  .fb-friend-viewer-content .ffv-card p,
  .fb-friend-viewer-content .ffv-trust-card p,
  .fb-friend-viewer-content .ffv-step p {
    font-size: 15px;
  }

  .fb-friend-viewer-content .ffv-steps {
    gap: 20px;
    margin-top: 34px;
  }

  .fb-friend-viewer-content .ffv-step {
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 26px;
  }

  .fb-friend-viewer-content .ffv-step-number {
    width: 62px;
    height: 62px;
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .fb-friend-viewer-content .ffv-section {
    padding: 74px 0;
  }

  .fb-friend-viewer-content .ffv-container {
    padding: 0 28px;
  }

  .fb-friend-viewer-content .ffv-section-head h2 {
    font-size: 38px;
  }

  .fb-friend-viewer-content .ffv-section-head p {
    font-size: 16px;
  }

  .fb-friend-viewer-content .ffv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
  }

  .fb-friend-viewer-content .ffv-card,
  .fb-friend-viewer-content .ffv-trust-card {
    padding: 28px;
  }

  .fb-friend-viewer-content .ffv-card h3,
  .fb-friend-viewer-content .ffv-trust-card h3,
  .fb-friend-viewer-content .ffv-step h3 {
    font-size: 20px;
  }

  .fb-friend-viewer-content .ffv-card p,
  .fb-friend-viewer-content .ffv-trust-card p,
  .fb-friend-viewer-content .ffv-step p {
    font-size: 15.5px;
  }

  .fb-friend-viewer-content .ffv-steps {
    gap: 22px;
    margin-top: 42px;
  }

  .fb-friend-viewer-content .ffv-step {
    gap: 24px;
    padding: 30px;
  }

  .fb-friend-viewer-content .ffv-step-number {
    width: 66px;
    height: 66px;
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .fb-friend-viewer-content .ffv-section {
    padding: 88px 0;
  }

  .fb-friend-viewer-content .ffv-container {
    padding: 0 32px;
  }

  .fb-friend-viewer-content .ffv-section-head h2 {
    font-size: 44px;
  }

  .fb-friend-viewer-content .ffv-section-head p {
    font-size: 17px;
  }

  .fb-friend-viewer-content .ffv-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fb-friend-viewer-content .ffv-grid {
    gap: 24px;
    margin-top: 48px;
  }

  .fb-friend-viewer-content .ffv-card,
  .fb-friend-viewer-content .ffv-trust-card {
    padding: 30px;
  }

  .fb-friend-viewer-content .ffv-card h3,
  .fb-friend-viewer-content .ffv-trust-card h3,
  .fb-friend-viewer-content .ffv-step h3 {
    font-size: 21px;
  }

  .fb-friend-viewer-content .ffv-card p,
  .fb-friend-viewer-content .ffv-trust-card p,
  .fb-friend-viewer-content .ffv-step p {
    font-size: 15.5px;
  }

  .fb-friend-viewer-content .ffv-steps {
    gap: 22px;
    margin-top: 48px;
  }

  .fb-friend-viewer-content .ffv-step {
    gap: 26px;
    padding: 32px 34px;
  }

  .fb-friend-viewer-content .ffv-step-number {
    width: 68px;
    height: 68px;
    font-size: 18px;
  }
}