* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

body,
html {
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}


/* ── SHARED ── */
.btn-primary {
  background: #000;
  color: #FFE80A;
  border: 1.5px solid #FFE80A;
  border-radius: 40px;
  padding: 22px 80px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  transition: opacity .2s;
  text-align: center;
  box-shadow: 0px 0px 9px 0 #FFB400;
}

.btn-one {
  background: #FFE90A;
  color: #000;
  box-shadow: 0px 0px 15px 1px #FFB400;
  border-radius: 42px;
  border: 1px solid #FFFFFF;
}

.btn-primary:hover {
  opacity: .85;
}

.section-h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
}

.section-sub {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  max-width: 760px;
  margin: 20px auto;
}

.section-note {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  margin: 15px auto;
  margin-bottom: 16px;
  max-width: 600px;
}

.section-highlight {
  font-size: 16px;
  line-height: 1.56;
  color: #FF6E0F;
  text-align: center;
  margin: 15px auto;
  max-width: 600px;
}

/* glance table (共用) */
.glance-table-wrap {
  max-width: 973px;
  margin: 0 auto;
  overflow: hidden;
  background: #FFD110;
  box-shadow: 0px 0px 34px 0px rgba(255, 236, 13, 0.77);
  border-radius: 20px;
  padding: 36px 12px;
}

.glance-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.glance-table tbody tr:nth-child(odd) {
  background: #FFFAC8;
}

.glance-table tbody tr:nth-child(even) {
  background: #fff;
}

.glance-table td {
  padding: 0 24px;
  height: 60px;
  font-size: 15px;
  color: #000;
  vertical-align: middle;
}

.glance-table td.label {
  width: 42%;
  white-space: nowrap;
  border-right: 1px solid #FFCA36;
}

/* FAQ (共用 faq-section) */
.faq-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 24px;
}

.faq-section .faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-section details {
  background: rgba(255, 255, 255, 0.93);
  border-radius: 12px;
  overflow: hidden;
}

.faq-section details[open] {
  background: linear-gradient(180deg, #FFE808 0%, #FFEF10 100%);
  box-shadow: 0 0 26px 0 rgba(255, 236, 13, 0.77);
}

.faq-section summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 50px 20px 26px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  position: relative;
  min-height: 60px;
  display: flex;
  align-items: center;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: #000;
  line-height: 1;
}

.faq-section details[open] summary::after {
  content: "–";
}

.faq-section .ans {
  padding: 0 26px 22px;
  font-size: 14px;
  line-height: 1.75;
  color: #000;
}

.faq-section .ans a {
  color: #008bff;
  text-decoration: underline;
}

.faq-section details:not([open]) .ans {
  display: none;
}

/* ── 通用左图右文 / 左文右图 布局 ── */
.media-row {
  display: flex;
  align-items: center;
  padding: 32px 0;
  background: linear-gradient(90deg, transparent 0%, #FFFAEF 2%, #FFFAEF 98%, transparent 100%);
  justify-content: space-between;

}

.media-row:last-child {
  border-bottom: none;
}

.media-row-img {
  min-width: 0;
}

.media-row-img img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.media-row-text {
  width: 536px;
  flex-shrink: 0;
  padding-right: 40px;
}

.media-row-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}


.media-row-text p {
  font-size: 14px;
  line-height: 1.75;
}

.media-row-text .media-tit {
  margin-top: 20px;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.media-row-text p>strong {
  position: relative;
  padding-left: 20px;
}

.media-row-text p>strong::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFD110;
  box-shadow: 0px 0px 34px 0px rgba(255, 236, 13, 0.77);
}

/* 文字在左，图在右 */
.media-row-reverse {
  flex-direction: row-reverse;
}

.media-row-reverse .media-row-text {
  padding-left: 40px;
}

main {
  background: #fff;
}


/* ── SECTION 1: HERO ── */
.bf-s1 {
  padding-top: 64px;
  background: #FFFDE2;
  overflow: hidden;
}

.bf-s1-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
  display: flex;
  align-items: center;
}

.bf-s1-text {
  width: 470px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}

.bf-s1-updated {
  display: inline-block;
  background: #FFE808;
  background: linear-gradient(90deg, transparent 0%, #FFD110 20%, #FFD110 80%, transparent 100%);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 60px;
}

.bf-s1-text h1 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  color: #000;
}

.bf-s1-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.bf-s1-grid {}

.bf-s1-photo {
  position: relative;
}

.bf-s1-photo img {}

.bf-s1-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: #FFE808;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}


/* ── SECTION 2: QUICK VERDICT ── */
.bf-s2 {
  padding: 60px 0;
}

.bf-s2 .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.bf-table-wrap {
  max-width: 1040px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #FFD110;
  box-shadow: 0px 0px 34px 0px rgba(255, 236, 13, 0.77);
  border-radius: 20px;
  padding: 12px;
  font-size: 16px;
}

.bf-verdict-table,
.bf-compare-table,
.bf-situation-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.bf-verdict-table th,
.bf-compare-table th,
.bf-situation-table th {
  background: #FFD110;
  color: #000;
  font-weight: 700;
  padding: 10px;
  text-align: left;
  white-space: nowrap;
}

.bf-verdict-table td,
.bf-compare-table td,
.bf-situation-table td {
  padding: 10px;
  color: #000;
  line-height: 1.6;
}

.bf-verdict-table tbody tr:nth-child(odd),
.bf-situation-table tbody tr:nth-child(odd) {
  background: #FFFAC8;
}

.bf-verdict-table tbody tr:nth-child(even),
.bf-situation-table tbody tr:nth-child(even) {
  background: #fff;
}

.bf-rank,
.bf-platform {
  font-weight: 700;
  white-space: nowrap;
}

.bf-free {
  color: #1a8a1a;
  font-weight: 600;
  white-space: nowrap;
}


/* ── SECTION 3: HOW WE COMPARED ── */
.bf-s3 {
  padding: 60px 0;
}

.bf-s3 .inner {
  max-width: 960px;
  margin: 0 auto;
}

.bf-s3-lead {
  font-size: 16px;
  font-weight: 700;
  color: #FF6E0F;
  margin-bottom: 20px;
  text-align: center;
}

.bf-criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-bottom: 32px;
}

.bf-criteria-card {

  background: #F5F5F5;
  border-radius: 15px;
  padding: 18px 16px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  color: #000;
  display: flex;
  align-items: center;
  gap: 17px;
}

.bf-criteria-card .dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #FFD110;
  box-shadow: 0px 0px 34px 0px rgba(255, 236, 13, 0.77);
  flex-shrink: 0;
}

.bf-s3-note {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 16px;
  max-width: 600px;
}

.bf-s3-highlight {
  font-size: 16px;
  font-weight: 700;
  color: #FF6E0F;
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
}


/* ── SECTION 4: WHAT CHANGED SINCE 2023 ── */
.bf-s4 {
  padding: 60px 0;
}

.bf-s4 .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.bf-change-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
  margin-top: 100px;
}

.bf-change-card {
  text-align: center;
  padding: 18px;

  background: #F5F5F5;
  border-radius: 36px;
}

.bf-change-num {
  font-size: 42px;
  font-weight: 900;
  margin-top: -70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  width: 97px;
  height: 97px;
  background: #FFD110;
  box-shadow: 0px 0px 34px 0px rgba(255, 236, 13, 0.77);
  border-radius: 23px;
}

.bf-change-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.bf-change-card p {
  font-size: 14px;
  line-height: 1.7;
}

.bf-change-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: #1769DC;
  text-decoration: underline;
  word-break: break-all;
}

.bf-s4-note {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}


/* ── SECTION 5: DETAILED COMPARISON TABLE ── */
.bf-s5 {
  padding: 60px 0;
  background: #FFFDE2;
}

.bf-s5 .inner {
  max-width: 1090px;
  margin: 0 auto;
}



.bf-compare-table tbody tr:nth-child(odd) td {
  background: #FFF4DE;
}

.bf-compare-table tbody tr:nth-child(even) td {
  background: #fff;
}


.bf-s5-note {
  font-size: 15px;
  font-weight: 700;
  color: #C97800;
  text-align: center;
  max-width: 860px;
  margin: 24px auto 0;
}


/* ── SECTION 6: WHY SALACHAT TOP PICK ── */
.bf-s6 {
  padding: 60px 0;
  background: #FFFDE2;
}

.bf-s6 .inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.bf-why-grid {
  display: flex;
  align-items: stretch;
}

.bf-why-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bf-why-phone {
  flex-shrink: 0;
  width: 440px;
  display: flex;
  align-items: center;
}

.bf-why-phone img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.bf-why-card {
  background: #F5F5F5;
  border-radius: 16px;
  padding: 24px;
  flex: 1;
}

.bf-why-card-yellow {
  background: #FFD110;
}

.bf-why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.3;
}

.bf-why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.bf-why-card p+p {
  margin-top: 10px;
}


/* ── SECTION 7: PRIVACY FIRST / GDPR ── */
.bf-s7 {
  padding: 60px 0;
  background: #FFFDE2;
}

.bf-s7 .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.bf-s7 .section-sub a {
  color: #1769DC;
  text-decoration: underline;
}

.bf-s7-lead {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 28px;
}

.bf-s7-lead a {
  color: #1769DC;
  text-decoration: underline;
}

.bf-gdpr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
  margin-bottom: 32px;
  border-top: 1px solid rgba(0, 0, 0, .08);
  padding-top: 24px;
}

.bf-gdpr-card {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.bf-gdpr-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}

.bf-gdpr-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.bf-gdpr-card p a {
  color: #1769DC;
}


.bf-s7-highlight {
  font-size: 15px;
  font-weight: 700;
  color: #C97800;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}


/* ── SECTION 8: SALACHAT VS EACH MAJOR ALTERNATIVE ── */
.bf-s8 {
  padding: 60px 0;
}

.bf-s8 .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.bf-vs-block {
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.bf-vs-block:last-child {
  border-bottom: none;
}

.bf-vs-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}


.bf-vs-title {
  background: url('/images/best-free-1v1-video-chat-2026/s-title-bg.png') center no-repeat;
  background-size: cover;
  width: 550px;
  height: 146px;
  padding: 67px 0 0 150px;
  box-sizing: border-box;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: -14px;
}

.bf-vs-block .media-row-text p+p {
  margin-top: 16px;
}

.bf-vs-bottom {
  margin-top: 20px !important;
  font-weight: 700;
  color: #FF6E0F;
}


/* ── SECTION 9: WHEN TO USE WHICH PLATFORM ── */
.bf-s9 {
  padding: 60px 0;
  background: #FFFDE2;
}

.bf-s9 .inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ── SECTION 10: WHAT SALACHAT COINS ARE NOT ── */
.bf-s10 {
  padding: 60px 0;
  background: #FFFDE2;
}

.bf-s10 .inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.bf-steps-list {
  display: flex;
  flex-direction: column;
  margin: 32px auto;
  width: 500px;
  text-align: left;
}

.bf-step-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #FFEC0C;
}

.bf-step-row:last-child {
  border-bottom: none;
}

.bf-step-num {
  color: #000;
  font-size: 36px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  background: linear-gradient(180deg, #FFE808 0%, #FFEF10 100%);
  box-shadow: 0px 0px 26px 0px rgba(255, 236, 13, 0.77);
}

.bf-step-text {
  font-size: 20px;
  line-height: 1.4;
  color: #000;
  font-weight: bold;
}

.bf-s10-cta {
  margin-top: 16px;
}


/* ── SECTION 11: FAQ ── */
.bf-s11 {
  padding: 60px 0 460px;
  background: #FFFDE2 url('/images/best-free-1v1-video-chat-2026/s11-bg.png') bottom center no-repeat;
  background-size: 100% auto;
}

.bf-s11 .inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

.bf-s11-note {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  text-align: center;
  margin-top: 24px;
}


@media only screen and (min-width:768px) {
  .hidden-sm-and-up {
    display: none !important
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .hidden-xs-only {
    display: none !important
  }

  .site-header {
    padding: 0 16px;
  }

  .site-header .inner {
    gap: 12px;
  }

  .site-header .the-nav {
    gap: 12px;
    display: none;
  }

  .site-header .the-nav a {
    font-size: 13px;
  }

  .section-h2 {
    font-size: 26px;
  }

  .section-sub {
    font-size: 14px;
  }

  .btn-primary {
    font-size: 19px;
    padding: 16px 40px;
    width: auto;
  }

  .glance-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    padding: 20px 8px;
  }

  .bf-table-wrap {
    border-radius: 14px;
  }

  /* 通用 media-row 移动端 */
  .media-row,
  .media-row-reverse {
    flex-direction: column !important;
    gap: 20px;
    padding: 24px 0;
  }

  .media-row-img img {
    width: 100%;
  }

  .media-row-text {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .media-row-reverse .media-row-text {
    padding-left: 20px;
  }

  .media-row-text h3 {
    font-size: 18px;
  }

  .faq-section summary {
    font-size: 14px;
    padding: 16px 44px 16px 18px;
  }

  .faq-section .ans {
    font-size: 14px;
    padding: 0 18px 18px;
  }

  /* S1 */
  .bf-s1 {}

  .bf-s1-inner {
    flex-direction: column-reverse;
    padding: 0 0 40px;
    gap: 28px;
  }

  .bf-s1-text {
    width: 100%;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }

  .bf-s1-text h1 {
    font-size: 30px;
    text-align: center;
  }

  .bf-s1-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .bf-s1-photo img {
    width: 100%;
  }

  /* S2 */
  .bf-s2 {
    padding: 40px 0;
  }

  .bf-verdict-table,
  .bf-compare-table,
  .bf-situation-table {
    min-width: 560px;
  }

  /* S3 */
  .bf-s3 {
    padding: 40px 20px;
  }

  .bf-criteria-grid {
    grid-template-columns: 1fr;
  }

  /* S4 */
  .bf-s4 {
    padding: 40px 0;
  }

  .bf-change-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  /* S5 */
  .bf-s5 {
    padding: 40px 0;
  }

  .bf-s5 .inner {

    padding: 0 20px;
  }

  /* S6 */
  .bf-s6 {
    padding: 40px 0;
  }

  .bf-why-grid {
    flex-direction: column;
    gap: 20px;
  }

  .bf-why-phone {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  /* S7 */
  .bf-s7 {
    padding: 40px 0;
  }



  .bf-gdpr-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
  }

  .bf-gdpr-card {
    padding-top: 16px;
  }

  /* S8 */
  .bf-s8 {
    padding: 40px 0;
  }

  .bf-vs-title {
    font-size: 14px;
    padding: 38px 16px 0 77px;
    width: 300px;
    height: 79px;
  }

  /* S9 */
  .bf-s9 {
    padding: 40px 0;
  }

  /* S10 */
  .bf-s10 {
    padding: 40px 20px;
  }

  .bf-steps-list {
    width: 100%;
  }

  .bf-step-row {

    padding: 9px 0;
  }

  .bf-step-num {
    font-size: 22px;
    width: 42px;
    height: 42px;

  }

  .bf-step-text {
    font-size: 16px;
  }

  /* S11 */
  .bf-s11 {
    padding: 40px 0 100px;
  }
}