/*flixstream-plugin-guide*/

h1, h2, h3, h4, h5, h6 {
font-family: 'Stack Sans Headline', sans-serif;
  margin: 0 0 0.5rem 0;
  color: var(--header-txt-color);
    letter-spacing: -1px;
}
.flixstream-plugin-guide .hero-guide {
  border: 0px solid #000;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  color: #000;
  display: flex;
  flex-flow: column wrap;
  padding: 3em 2em;
}
.flixstream-plugin-guide .hero-badge {
  border-bottom: 1px solid #000;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  color: #000;
  display: flex;
  flex-flow: column wrap;
  padding: 5em 2em;
}
.flixstream-plugin-guide .wrapper {
    border:1px solid #000;
    padding:2em 0;
    background-color: #fff;
}
.hero-guide ::before {
  /*        content: '';
        position: absolute;
        width: 100%;
        inset: 0;
        background: radial-gradient(ellipse at 50% 0%, rgba(229, 9, 20, 0.15) 0%, transparent 65%);
        pointer-events: none;*/
}
.badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.hero-guide h1 {
    font-size: clamp(3rem, 5vw, 5em);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    text-align: center;
    width: 100%;
}
.hero-guide h1 span {
  color: var(--red);
}
.hero-guide p {
  max-width: 80vw;
  text-align: center;
     width: 100%;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 2em 0 0 0;
        margin: 0 auto;
}
.stat {
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
}
.stat span {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* ─── NAV PILLS ─── */
main.flixstream-plugin-guide{

}
.flixstream-plugin-guide .container {
  width: 100%;
}
.nav-pills { 
border: 0px solid red;
    display: flex;
    flex-flow: row wrap;
    /* gap: 8px; */
    align-items: flex-start;
    padding: 24px 20px;
    overflow-x: auto;
    border-bottom: 1px solid var(--border);
    background: #FFFFFF;
    background: #000;
    width: 100%;
    z-index: 100;
    color: #fff;
    position: fixed;
    right: 0;
    left: inherit;
    top: 0;
    width: 200px;
}
.nav-pills a {
white-space: nowrap;
    text-decoration: none;
    padding: 3px 10px;
    font-size: 0.85em;
    letter-spacing: -1px;
    font-weight: 300;
    color: var(--muted);
    color: #fff;
    border: 0px solid var(--border);
    transition: all 0.2s;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}
.nav-pills a:hover {

}
.nav-pills a.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
/* ─── SECTIONS ─── */
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px;
  color: var(--red);
  margin-bottom: 10px;
  border: 1px solid #000;
  border-left: 0;
  border-right: 0;
  text-align: left;
}
.flixstream-plugin-guide h2 {
  font-size: clamp(1.75rem, -1.0625rem + 9vw, 3rem);
  font-weight: 800;
  margin: 1em 0 0 0;
}
.flixstream-plugin-guide h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 36px;
}
/* ─── FEATURE CARDS ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 1em 3em;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1em;
  transition: border-color 0.2s;
  text-align: left;
}
.feature-card:hover {
  border-color: #444;
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(229, 9, 20, 0.02);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.feature-card p {
  color: var(--muted);
  font-size: 0.92rem;
    text-align: left;
}
/* ─── STEPS ─── */
#getting-started .steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#getting-started .step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 80%;
  margin: 0 auto;
  text-align: left;
}
#getting-started .step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
}
#getting-started .step-body {
  flex: 1;
  display: flex;
  flex-flow: row wrap;
  border: 0px solid red;
  /* justify-content: flex-start; */
  align-items: flex-start;
}
#getting-started .step-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  width: 100%
}
#getting-started .step-body p {
  color: var(--muted);
  font-size: 0.9rem;
  width: 100%;
text-align:left;
}
/* ─── CODE BLOCKS ─── */
.code-block {
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 12px 0;
  font-family: "Google Sans Code", monospace;
  font-size: 0.88rem;
      color: rgb(243, 246, 238);
  overflow-x: auto;
}
.code-block .key {
  color: #7ec8e3;
}
.code-block .val {
  color: #f4a261;
}
.code-block .comment {
  color: #7D7C7F;
}
/* ─── TIPS ─── */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  padding: 3em;
}
.tip {
  background: rgba(17, 17, 17, 0.04);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 0px;
  padding: 18px 20px;
}
.tip h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.tip p {
  font-size: 0.875rem;
  color: var(--muted);
}
/* ─── CHECKLIST ─── */

table.sc-table {
  width: 80%;
  border-collapse: collapse;
  margin-top: 16px;
  margin: 0 auto;
  text-align: left;
}
.sc-table th {
  text-align: left;
  padding: 10px 14px;
  background: #1a1a1a;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  border-bottom: 1px solid var(--border);
}
.sc-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #1e1e1e;
  font-size: 0.9rem;
  vertical-align: top;
}
.sc-table tr:last-child td {
  border-bottom: none;
}
.sc-table code {
  background: #1a1a1a;
  padding: 7px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.85rem;
  color: #7ec8e3;
}
.sc-table td:last-child {
  color: var(--muted);
}
/* ─── TIPS ─── */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
/* ─── CHECKLIST ─── */
.checklist {
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
}
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
}
.checklist li p{
    text-align: left;
    
}
.checklist li::before {
  content: '✓';
  color: var(--red);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
/* ─── TWO-COL ─── */
.two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2em;
  padding: 2em 5em;
}
@media (max-width: 680px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  @media (max-width: 680px) {
    .two-col {
      grid-template-columns: 1fr;
    }
  }
  div.two-col div {
    padding: 3em;
  }
  /* ─── FOOTER ─── */
  footer {
    background: #050505;
    padding: 40px;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
  }
  footer strong {
    color: #fff;
  }
  .footer-link {
    color: var(--red);
    text-decoration: none;
  }
  /* scrollbar */ ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  ::-webkit-scrollbar-track {
    background: #111;
  }
  ::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
  }
  /* * ── HEADER: keep your theme layout intact ──
   Only add transform/transition — nothing else changes */
  */ #header, #mobile-header {
    position: sticky !important;
    top: 0;
    z-index: 8000;
    will-change: transform;
    transition:
      background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
  }
  /* Glass state — applied via JS after scroll */
  #header.hdr--glass, #mobile-header.hdr--glass {
    background: rgba(6, 6, 8, 0.85) !important;
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.05), 0 4px 24px rgba(0, 0, 0, 0.5);
  }
  /* ── PROGRESS BAR ── */
  .hdr-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, #ff4d1c 0%, #f0c040 100%);
    z-index: 9999;
    pointer-events: none;
    border-radius: 0 2px 2px 0;
    transform-origin: left center;
  }