    :root {
      --bigo-primary: #2563eb;
      --bigo-primary-soft: rgba(37, 99, 235, 0.08);
      --bigo-accent: #fbbf24;
      --bigo-danger: #ef4444;
      --bigo-bg-soft: #0f172a;
      --bigo-card-bg: #ffffff;
      --bigo-text-main: #0f172a;
      --bigo-text-muted: #6b7280;
      --bigo-radius-xl: 18px;
      --bigo-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.15);
    }

    /* Hero Section */
    #hero.hero-restream {
      background: radial-gradient(circle at top left, #1d4ed8 0, #020617 50%, #000000 100%);
      min-height: 65vh;
      padding-top: 110px;
      padding-bottom: 110px;
      color: #e5e7eb;
      position: relative;
      overflow: hidden;
    }

    #hero.hero-restream::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(59, 130, 246, 0.35), transparent 55%),
        radial-gradient(circle at 85% 80%, rgba(14, 165, 233, 0.25), transparent 55%);
      opacity: 0.9;
      pointer-events: none;
    }

    #hero.hero-restream .container {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    #hero.hero-restream h1 {
      font-size: 2.75rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 12px;
      color: #f9fafb;
      text-shadow: 0 3px 18px rgba(0, 0, 0, 0.6);
    }

    #hero.hero-restream h1 span {
      color: var(--bigo-accent);
    }

    #hero.hero-restream h2 {
      font-size: 1.1rem;
      font-weight: 400;
      color: #d1d5db;
      max-width: 560px;
      margin-bottom: 24px;
    }

    #hero.hero-restream .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 12px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid rgba(148, 163, 184, 0.6);
      color: #e5e7eb;
      font-size: 0.78rem;
      margin-bottom: 14px;
    }

    #hero.hero-restream .hero-badge i {
      font-size: 1rem;
      color: var(--bigo-accent);
    }

    #hero.hero-restream .btn-get-started {
      background: linear-gradient(135deg, var(--bigo-accent), #f97316);
      border-radius: 999px;
      padding: 10px 26px;
      font-weight: 600;
      border: none;
      color: #1f2933;
      box-shadow: 0 14px 30px rgba(248, 181, 55, 0.5);
    }

    #hero.hero-restream .btn-get-started:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(248, 181, 55, 0.7);
      color: #111827;
    }

    #hero.hero-restream .hero-subgrid {
      margin-top: 26px;
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      font-size: 0.85rem;
      color: #cbd5f5;
    }

    #hero.hero-restream .hero-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid rgba(55, 65, 81, 0.9);
    }

    #hero.hero-restream .hero-chip i {
      color: var(--bigo-accent);
      font-size: 0.95rem;
    }

    /* Section Titles */
    .section-title {
      text-align: center;
    }

    .section-title h2 {
      font-size: 1rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--bigo-primary);
      font-weight: 600;
      margin-bottom: 6px;
    }

    .section-title h3 {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--bigo-text-main);
      margin-bottom: 10px;
    }

    .section-title h3 span {
      color: var(--bigo-primary);
    }

    .section-title p {
      max-width: 620px;
      margin: 0 auto;
      color: var(--bigo-text-muted);
      font-size: 0.95rem;
    }

    /* Modern Pricing Section */
    .pricing {
      padding: 60px 0 70px 0;
      background: radial-gradient(circle at top, #e0f2fe 0, #eff6ff 35%, #ffffff 100%);
    }

    .pricing .pricing-intro {
      margin-bottom: 32px;
    }

    .pricing .pricing-subtitle {
      font-size: 0.9rem;
      color: var(--bigo-text-muted);
      margin-top: 6px;
    }

    .pricing .row {
      row-gap: 24px;
    }

    .pricing .box {
      background: var(--bigo-card-bg);
      border-radius: var(--bigo-radius-xl);
      box-shadow: var(--bigo-shadow-soft);
      padding: 24px 22px 26px;
      text-align: left;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.35);
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .pricing .box:hover {
      transform: translateY(-8px);
      box-shadow: 0 22px 55px rgba(15, 23, 42, 0.22);
      border-color: rgba(37, 99, 235, 0.5);
    }

    .pricing .plan-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 14px;
      border-radius: 999px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: var(--bigo-primary-soft);
      color: var(--bigo-primary);
      margin-bottom: 12px;
    }

    .pricing .plan-badge i {
      font-size: 0.9rem;
    }

    .pricing .box.featured {
      border-width: 2px;
      border-color: var(--bigo-primary);
      transform: translateY(-2px);
    }

    /* Removed rotated ribbon so text is fully visible */

    .pricing .box h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--bigo-text-main);
      text-align: center;
      background: #f5f7fb;
      padding: 10px 14px;
      border-radius: 12px;
      margin-bottom: 10px;
    }

    .pricing .box .connections-label {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--bigo-text-muted);
      margin-bottom: 10px;
      text-align: center;
    }

    .pricing .box h4 {
      font-size: 2.1rem;
      margin-bottom: 6px;
      font-weight: 800;
      display: flex;
      align-items: baseline;
      gap: 6px;
      color: var(--bigo-danger);
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    .pricing .box h4 .currency {
      font-size: 1.3rem;
      font-weight: 700;
      color: #111827;
    }

    .pricing .box h4 .period {
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--bigo-text-muted);
      margin-left: auto;
    }

    .pricing .plan-discount {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 3px 10px;
      border-radius: 999px;
      background: rgba(22, 163, 74, 0.08);
      color: #16a34a;
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .pricing .plan-discount i {
      font-size: 0.9rem;
    }

    .pricing .box .plan-note {
      font-size: 0.8rem;
      color: var(--bigo-text-muted);
      margin-bottom: 14px;
    }

    .pricing .box ul {
      list-style: none;
      padding: 0;
      margin: 0 0 18px 0;
      font-size: 0.9rem;
      color: var(--bigo-text-muted);
      text-align: left;
    }

    .pricing .box ul li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      padding: 4px 0;
    }

    .pricing .box ul li i {
      font-size: 1rem;
      color: #22c55e;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .pricing .box ul li span,
    .pricing .box ul li b {
      color: #111827;
      font-weight: 500;
    }

    .pricing .btn-wrap {
      margin-top: auto;
      padding-top: 4px;
    }

    .pricing .btn-buy {
      background: linear-gradient(135deg, var(--bigo-accent), #f97316);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 9px 26px 10px 26px;
      border-radius: 999px;
      color: #111827;
      font-size: 0.9rem;
      font-weight: 700;
      font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      border: none;
      box-shadow: 0 12px 30px rgba(249, 158, 31, 0.5);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      text-decoration: none;
    }

    .pricing .btn-buy i {
      font-size: 1rem;
    }

    .pricing .btn-buy:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 38px rgba(249, 158, 31, 0.7);
      color: #020617;
    }

    .pricing .featured h3 {
      color: #000;
      background: #e5f0ff;
    }

    /* Featured Services (icon boxes) */
    .featured-services {
      padding: 60px 0;
      background: #ffffff;
    }

    .featured-services .icon-box {
      background: #ffffff;
      border-radius: 18px;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
      padding: 24px 22px;
      text-align: left;
      border: 1px solid rgba(226, 232, 240, 0.9);
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
      position: relative;
      overflow: hidden;
    }

    .featured-services .icon-box::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(234, 179, 8, 0.02));
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .featured-services .icon-box:hover::before {
      opacity: 1;
    }

    .featured-services .icon-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 55px rgba(15, 23, 42, 0.18);
      border-color: rgba(37, 99, 235, 0.4);
    }

    .featured-services .icon {
      margin-bottom: 12px;
    }

    .featured-services .icon i {
      font-size: 2.1rem;
      color: var(--bigo-primary);
    }

    .featured-services .title a {
      color: var(--bigo-text-main);
      font-size: 1.05rem;
      font-weight: 700;
      text-decoration: none;
    }

    .featured-services .description {
      font-size: 0.9rem;
      color: var(--bigo-text-muted);
      margin-top: 6px;
    }

    /* FAQ section */
    .faq-section {
      padding: 50px 0 40px 0;
      background: #f9fafb;
      position: relative;
      overflow: hidden;
    }

    .faq-section::before {
      content: "";
      position: absolute;
      top: -120px;
      right: -120px;
      width: 260px;
      height: 260px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 65%);
    }

    .faq-section .section-title h3 span {
      background: linear-gradient(90deg, #2563eb, #f97316);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .faq-item {
      border-radius: 14px;
      border: 1px solid rgba(226, 232, 240, 0.95);
      padding: 14px 16px;
      margin-bottom: 12px;
      background: #ffffff;
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    }

    .faq-item h4 {
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--bigo-text-main);
      margin-bottom: 6px;
    }

    .faq-item p {
      font-size: 0.9rem;
      color: var(--bigo-text-muted);
      margin: 0;
    }

    /* Skills / Compatibility section */
    .skills {
      background: #ffffff;
      padding: 40px 0 50px 0;
    }

    .skills .section-title {
      text-align: center;
      margin-bottom: 18px;
    }

    .skills .section-title h2 {
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #6b7280;
    }

    .skills .section-title p {
      max-width: 540px;
      margin: 0.3rem auto 0;
      font-size: 0.95rem;
      color: #4b5563;
    }

    .skills-note {
      font-size: 0.8rem;
      color: #6b7280;
      margin-top: 0.6rem;
    }

    .skills-content {
      margin-top: 0.8rem;
    }

    .skills .progress {
      background: #ffffff;
      border-radius: 14px;
      padding: 0.75rem 1rem;
      margin-bottom: 1rem;
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
      border: 1px solid #e5e7eb;
    }

    .skills .skill {
      font-size: 0.9rem;
      font-weight: 600;
      color: #111827;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .skills .skill i.val {
      font-style: normal;
      font-weight: 600;
      color: #2563eb;
    }

    .skills .progress-bar-wrap {
      margin-top: 0.55rem;
      background: #e5e7eb;
      border-radius: 999px;
      overflow: hidden;
    }

    .skills .progress-bar {
      height: 6px;
      background: linear-gradient(90deg, #2563eb, #f97316);
    }

    /* Contact / Info section */
    .contact {
      padding: 60px 0 80px 0;
      background: radial-gradient(circle at top left, #e0f2fe 0, #f9fafb 45%, #ffffff 100%);
    }

    .contact .info-box {
      background: #ffffff;
      border-radius: 18px;
      padding: 20px 20px 18px 20px;
      text-align: left;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
      border: 1px solid rgba(226, 232, 240, 0.95);
    }

    .contact .info-box i {
      font-size: 1.8rem;
      color: var(--bigo-primary);
      margin-bottom: 8px;
    }

    .contact .info-box h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--bigo-text-main);
      margin-bottom: 6px;
    }

    .contact .info-box p {
      font-size: 0.9rem;
      color: var(--bigo-text-muted);
      margin-bottom: 3px;
    }

    .contact .info-card {
      background: #ffffff;
      border-radius: 18px;
      padding: 24px 22px;
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
      border: 1px solid rgba(226, 232, 240, 0.95);
      height: 100%;
      text-align: left;
    }

    .contact .info-card-tag {
      display: inline-block;
      padding: 4px 14px;
      border-radius: 999px;
      background: #e5f0ff;
      color: var(--bigo-primary);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .contact .info-card h4 {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--bigo-text-main);
      margin-bottom: 10px;
    }

    .contact .info-card p {
      font-size: 0.95rem;
      color: var(--bigo-text-muted);
      margin: 0;
    }

    /* Small devices tweaks */
    @media (max-width: 991.98px) {
      #hero.hero-restream {
        padding-top: 90px;
        padding-bottom: 80px;
      }

      #hero.hero-restream h1 {
        font-size: 2.1rem;
      }

      #hero.hero-restream h2 {
        font-size: 0.98rem;
      }

      .pricing .box.featured {
        transform: none;
      }
    }

    @media (max-width: 575.98px) {
      #hero.hero-restream h1 {
        font-size: 1.85rem;
      }

      .contact .info-box {
        margin-bottom: 16px;
      }
    }
	
	







/* Reduce top/bottom space */
.channel-list-section {
  margin-top: 10px !important;   /* was 40px */
  margin-bottom: 10px !important;
}

/* Card Box */
.channel-list-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 25px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(15, 35, 52, 0.10);
  border-left: 4px solid #e63946;   /* 🔥 Red side-line */
  position: relative;
  border-right: 1px solid rgba(0, 92, 255, 0.12);
  border-top: 1px solid rgba(0, 92, 255, 0.12);
  border-bottom: 1px solid rgba(0, 92, 255, 0.12);
}

/* Title */
.channel-list-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

/* Description */
.channel-list-text {
  font-size: 15px;
  max-width: 650px;
  margin: 0 auto 18px auto;
  color: #4b5563;
}

/* Button */
.channel-list-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  background: linear-gradient(135deg, #005cff, #1d9bf0);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 92, 255, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.channel-list-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0, 92, 255, 0.45);
  opacity: 0.95;
}

