
      :root {
        --fx-ink: #151223;
        --fx-muted: #615b76;
        --fx-line: #ece8f7;
        --fx-panel: #ffffff;
        --fx-soft: #fbf8ff;
        --fx-purple: #7c3aed;
        --fx-pink: #f43f8c;
        --fx-gold: #f59e0b;
        --fx-green: #10b981;
        --fx-shadow: 0 18px 50px rgba(52, 35, 91, 0.12);
      }

      * {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        margin: 0;
        font-family:
          Inter,
          ui-sans-serif,
          system-ui,
          -apple-system,
          BlinkMacSystemFont,
          "Segoe UI",
          sans-serif;
        color: var(--fx-ink);
        background: linear-gradient(180deg, #fff 0%, #fbf8ff 38%, #fff 100%);
        line-height: 1.6;
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      img {
        max-width: 100%;
        height: auto;
      }
      .wrap {
        width: min(1180px, calc(100% - 32px));
        margin: 0 auto;
      }
      .skip-link {
        position: absolute;
        left: 16px;
        top: -48px;
        background: var(--fx-ink);
        color: #fff;
        padding: 10px 14px;
        border-radius: 8px;
        z-index: 10;
      }
      .skip-link:focus {
        top: 12px;
      }
     
      .hero {
        position: relative;
        overflow: hidden;
        padding: 40px 0 26px;
        background:
          linear-gradient(
            120deg,
            rgba(124, 58, 237, 0.08),
            rgba(244, 63, 140, 0.08) 46%,
            rgba(16, 185, 129, 0.08)
          ),
          #fff;
        border-bottom: 1px solid var(--fx-line);
      }
      .hero-grid {
        display: grid;
        gap: 22px;
        align-items: stretch;
      }
      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--fx-purple);
        background: rgba(124, 58, 237, 0.08);
        border: 1px solid rgba(124, 58, 237, 0.16);
        border-radius: 999px;
        padding: 7px 12px;
        font-weight: 800;
        font-size: 0.86rem;
      }
      h1,
      h2,
      h3 {
        line-height: 1.14;
        letter-spacing: 0;
      }
      h1 {
        margin: 16px 0 14px;
        font-size: clamp(2.25rem, 9vw, 4.8rem);
        max-width: 860px;
      }
      .intro {
        color: var(--fx-muted);
        font-size: clamp(1.02rem, 2.4vw, 1.22rem);
        max-width: 760px;
        margin: 0 0 24px;
      }
      .hero-panel {
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(236, 232, 247, 0.95);
        border-radius: 26px;
        padding: clamp(20px, 5vw, 42px);
        box-shadow: var(--fx-shadow);
      }
      .toolbox {
        position: static;
        top: 76px;
        z-index: 4;
        margin-top: 20px;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(236, 232, 247, 0.92);
        box-shadow: var(--fx-shadow);
        border-radius: 18px;
        padding: 14px;
      }
      .search-row {
        display: grid;
        gap: 12px;
      }
      .search {
        position: relative;
      }
      .search svg {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--fx-muted);
      }
      #bioSearch {
        width: 100%;
        height: 54px;
        border: 1px solid var(--fx-line);
        border-radius: 14px;
        padding: 0 16px 0 48px;
        font: inherit;
        font-weight: 700;
        color: var(--fx-ink);
        outline: none;
        background: #fff;
      }
      #bioSearch:focus {
        border-color: rgba(124, 58, 237, 0.6);
        box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
      }
      .tabs {
        display: flex;
        gap: 9px;
        overflow-x: auto;
        padding: 12px 2px 2px;
        scrollbar-width: thin;
      }
      .tab {
        border: 1px solid var(--fx-line);
        background: #fff;
        color: var(--fx-muted);
        min-height: 40px;
        padding: 0 14px;
        border-radius: 999px;
        white-space: nowrap;
        font: inherit;
        font-size: 0.93rem;
        font-weight: 800;
        cursor: pointer;
        transition:
          transform 0.18s ease,
          background 0.18s ease,
          color 0.18s ease,
          border-color 0.18s ease;
      }
      .tab:hover {
        transform: translateY(-1px);
      }
      .tab.active {
        color: #fff;
        border-color: transparent;
        background: linear-gradient(135deg, var(--fx-purple), var(--fx-pink));
      }



      
      main {
        padding: 22px 0 70px;
      }
      .main-shell {
        display: grid;
        gap: 22px;
        align-items: start;
      }
      .content-flow {
        min-width: 0;
      }
      .side-rail {
        display: none;
      }
      .rail-card {
        background: #fff;
        border: 1px solid var(--fx-line);
        border-radius: 16px;
        padding: 16px;
        box-shadow: 0 10px 30px rgba(45, 32, 82, 0.08);
      }
      .rail-card h2 {
        font-size: 1.08rem;
        margin: 0 0 10px;
      }
      .rail-card a {
        display: block;
        padding: 10px 0;
        border-top: 1px solid var(--fx-line);
        color: var(--fx-muted);
        font-weight: 800;
      }
      .rail-card a:first-of-type {
        border-top: 0;
      }
      .ad-space {
        display: block;
        width: 100%;
        min-height: 112px;
        margin: 18px auto 34px;
       
       
          
      }
      .ad-space::before {
        content: " ";
        display: block;
        min-height: inherit;
      }
      .ad-space[data-ad-size="leaderboard"] {
        min-height: 50px;
        max-width: 970px;
      }
      .ad-space[data-ad-size="rectangle"] {
        min-height: 50px;
      }
      .section {
        scroll-margin-top: 88px;
        padding: 28px 0;
      }
      .section-head {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 16px;
      }
      h2 {
        margin: 0;
        font-size: clamp(1.65rem, 4vw, 2.35rem);
      }
      .section-note {
        margin: 8px 0 0;
        color: var(--fx-muted);
        max-width: 720px;
      }
      .count-pill {
        flex: 0 0 auto;
        border-radius: 999px;
        color: var(--fx-purple);
        background: rgba(124, 58, 237, 0.08);
        border: 1px solid rgba(124, 58, 237, 0.14);
        padding: 8px 12px;
        font-weight: 900;
        font-size: 0.86rem;
      }
      .bio-grid {
        display: grid;
        gap: 12px;
      }
      .section-actions {
        display: flex;
        justify-content: center;
        padding-top: 18px;
      }
      .load-more {
        min-height: 46px;
        border: 0;
        border-radius: 999px;
        padding: 0 22px;
        color: #fff;
        background: linear-gradient(135deg, var(--fx-purple), var(--fx-pink));
        box-shadow: 0 12px 28px rgba(124, 58, 237, 0.24);
        cursor: pointer;
        font: inherit;
        font-weight: 900;
        transition:
          transform 0.18s ease,
          box-shadow 0.18s ease;
      }
      .load-more:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 34px rgba(124, 58, 237, 0.3);
      }
      .bio-card {
        background: var(--fx-panel);
        border: 1px solid var(--fx-line);
        border-radius: 14px;
        padding: 14px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px;
        align-items: center;
        box-shadow: 0 8px 24px rgba(45, 32, 82, 0.06);
        animation: rise 0.35s ease both;
      }
      .bio-text {
        margin: 0;
        font-weight: 750;
        color: #28223d;
        word-break: break-word;
      }
      .copy-btn {
        width: 44px;
        height: 44px;
        border: 0;
        border-radius: 12px;
        cursor: pointer;
        background: #f4efff;
        color: var(--fx-purple);
        display: grid;
        place-items: center;
        transition:
          transform 0.18s ease,
          background 0.18s ease,
          color 0.18s ease;
      }
      .copy-btn:hover {
        transform: translateY(-1px);
        background: var(--fx-purple);
        color: #fff;
      }
      .copy-btn.copied {
        background: var(--fx-green);
        color: #fff;
      }
      .guide,
      .faq,
      .links-panel {
        background: #fff;
        border: 1px solid var(--fx-line);
        border-radius: 18px;
        padding: 20px;
        box-shadow: var(--fx-shadow);
      }
      .guide-grid {
        display: grid;
        gap: 14px;
        margin-top: 18px;
      }
      .tip {
        border-left: 4px solid var(--fx-purple);
        background: var(--fx-soft);
        padding: 14px;
        border-radius: 10px;
      }
      .tip h3 {
        margin: 0 0 6px;
        font-size: 1.03rem;
      }
      .tip p {
        margin: 0;
        color: var(--fx-muted);
      }
      details {
        border-top: 1px solid var(--fx-line);
        padding: 14px 0;
      }
      details:first-of-type {
        border-top: 0;
      }
      summary {
        cursor: pointer;
        font-weight: 900;
        list-style: none;
      }
      summary::-webkit-details-marker {
        display: none;
      }
      details p {
        margin: 10px 0 0;
        color: var(--fx-muted);
      }
      .internal-grid {
        display: grid;
        gap: 12px;
        margin-top: 16px;
      }
      .internal-card {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        align-items: center;
        border: 1px solid var(--fx-line);
        border-radius: 14px;
        padding: 16px;
        background: var(--fx-soft);
        font-weight: 900;
        transition:
          transform 0.18s ease,
          border-color 0.18s ease;
      }
      .internal-card:hover {
        transform: translateY(-2px);
        border-color: rgba(124, 58, 237, 0.38);
      }
      .toast {
        position: fixed;
        left: 50%;
        bottom: 18px;
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
        background: var(--fx-ink);
        color: #fff;
        border-radius: 999px;
        padding: 11px 16px;
        font-weight: 850;
        z-index: 20;
        transition:
          opacity 0.2s ease,
          transform 0.2s ease;
        pointer-events: none;
      }
      .toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }
    
      .hidden {
        display: none !important;
      }
      @keyframes rise {
        from {
          opacity: 0;
          transform: translateY(8px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation-duration: 0.001ms !important;
          scroll-behavior: auto !important;
          transition-duration: 0.001ms !important;
        }
      }
      @media (min-width: 720px) {
        .hero {
          padding: 62px 0 44px;
        }
        .hero-grid {
          grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
        }
        .search-row {
          grid-template-columns: 1fr;
        }
        .bio-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .guide-grid,
        .internal-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
       
      }
      @media (min-width: 1020px) {
        .main-shell {
          grid-template-columns: minmax(0, 1fr) 300px;
        }
        .side-rail {
          position: sticky;
          top: 96px;
          display: grid;
          gap: 18px;
        }
        .bio-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .guide-grid {
          grid-template-columns: repeat(4, minmax(0, 1fr));
        }
        .internal-grid {
          grid-template-columns: repeat(5, minmax(0, 1fr));
        }
        .internal-card {
          min-height: 112px;
          align-items: flex-start;
          flex-direction: column;
        }
      }

  


.guide-layout{
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:40px;
    align-items:start;
}

.guide-image{
    display:flex;
    justify-content:center;
    position:sticky;
    top:100px;
}

.guide-image img{
    width:100%;
    max-width:500px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

@media (max-width:768px){

    .guide-layout{
        grid-template-columns:1fr;
        gap:20px;
    }

    .guide-content{
        order:1;
    }

    .guide-image{
        order:2;          /* Image neeche aayegi */
        position:static;
        width:100%;
        margin-top:20px;
    }

    .guide-image img{
        width:100%;
        max-width:100%;
        height:auto;
        display:block;
        margin:0 auto;
    }

    .guide-grid{
        grid-template-columns:1fr;
    }

}


/* how work this tool */
/* ===========================
   HOW TO USE TOOL
=========================== */

#how-it-works .guide{
    background:#fff;
    border:1px solid var(--fx-line);
    border-radius:20px;
    padding:26px;
    box-shadow:var(--fx-shadow);
}

#how-it-works .guide-layout{
    display:grid;
    grid-template-columns:1.5fr .8fr;
    gap:45px;
    align-items:start;
}

/* LEFT */

#how-it-works .guide-content{
    order:1;
}

#how-it-works h2{
    margin:0 0 12px;
}

#how-it-works .section-note{
    margin-bottom:24px;
    max-width:720px;
}

/* Steps */

#how-it-works .guide-grid{
    display:grid;
    gap:16px;
}

#how-it-works .tip{
    background:var(--fx-soft);
    border:1px solid var(--fx-line);
    border-left:4px solid var(--fx-purple);
    border-radius:14px;
    padding:18px;
}

#how-it-works .tip h3{
    margin:0 0 8px;
    font-size:1.05rem;
}

#how-it-works .tip p{
    margin:0;
    color:var(--fx-muted);
    line-height:1.7;
}

/* RIGHT */

#how-it-works .guide-image{
    order:2;
    display:flex;
    justify-content:center;
    align-items:flex-start;
}

#how-it-works .guide-image img{
    width:100%;
    max-width:420px;
    height:auto;
    display:block;
    border-radius:18px;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

/* Mobile */

@media(max-width:768px){

    #how-it-works .guide-layout{
        grid-template-columns:1fr;
        gap:24px;
    }

    #how-it-works .guide-content{
        order:1;
    }

    #how-it-works .guide-image{
        order:2;
        margin-top:10px;
    }

    #how-it-works .guide-image img{
        max-width:100%;
    }

}



.editors-picks,
.expert-tips,
.profile-examples,
.selection-process,
.author-box{
margin:60px 0;
}

.pick-grid,
.example-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:20px;
margin-top:30px;
}

.pick-card,
.example-card,
.author-card{
background:#fff;
border:1px solid #e5e7eb;
border-radius:16px;
padding:24px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.pick-card h3,
.example-card h3{
margin-bottom:10px;
font-size:20px;
}

.pick-card p{
font-size:16px;
line-height:1.7;
}

.example-card pre{
white-space:pre-wrap;
font-family:inherit;
line-height:1.8;
margin:0;
}

.tips-list{
margin-top:20px;
padding-left:22px;
line-height:2;
}

.author-meta{
display:flex;
flex-wrap:wrap;
gap:15px;
margin-top:25px;
font-weight:600;
color:#6d28d9;
}

.selection-process p{
font-size:17px;
line-height:1.9;
max-width:900px;
}


/* Heading link css*/
.hero-links{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:18px 0 24px;
}

.hero-link-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:8px 14px;
    border-radius:999px;
    font-size:.88rem;
    font-weight:700;
    color:#6d28d9;
    background:#f6f1ff;
    border:1px solid #e7dbff;
    transition:.25s;
}

.hero-link-btn:hover{
    background:linear-gradient(135deg,#7c3aed,#ec4899);
    color:#fff;
    border-color:transparent;
    transform:translateY(-2px);
}

/*how to create link visible css*/


#perfect-bio a{
    color:#0066ff !important;
    text-decoration:underline !important;
}

.install-btn{
  position: fixed;
  bottom: 15px;
  right: 10px;
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  cursor: pointer;
  display: none;
  z-index: 9999;
}