:root {
      --bg-color: #f9f9f9;
      --text-color: #111;
      --button-bg: #ffffff;
      --button-border: #ddd;
      --button-hover: #f0f0f0;
    }

    * {
      box-sizing: border-box;
    }
    
    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(to bottom right, #d7e2fa, #d7e2fa);
      color: var(--text-color);
    }

    .main-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 30px 20px 0;
      max-width: 900px;
      width: 100%;
      margin: auto;
    }

    .profile-pic {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 0%;
      margin-bottom: -1px;
    }

    .tagline {
      font-size: 1.9rem;
      font-weight: bold;
      margin-bottom: 40px;
      text-align: center;
    }

    .article-meta-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 700px;
      width: 100%;
      margin-bottom: 20px;
      flex-wrap: nowrap;
      gap: 10px;
    }

    .breadcrumbs {
      font-size: 0.9rem;
      color: #555;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .breadcrumbs a {
      color: #555;
      text-decoration: none;
    }

    .breadcrumbs a:hover {
      text-decoration: underline;
    }

    .search-container {
      flex-shrink: 0;
      width: 180px;
      position: relative;
    }

    .search-container input {
      width: 100%;
      padding: 9px 14px;
      border: none;
      border-radius: 30px;
      font-size: 0.85em;
      background: #ffffff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      outline: none;
    }

    .search-results {
      position: absolute;
      top: 42px;
      width: 100%;
      background-color: #fff;
      border: 2px solid #d7e2fa;
      border-radius: 15px;
      max-height: 200px;
      overflow-y: auto;
      display: none;
      z-index: 1000;
      color: #000;
      font-size: 0.85em;
    }

    .search-results div {
      padding: 7px 10px;
      border-bottom: 1px solid #eee;
      cursor: pointer;
    }

    .search-results div:hover {
      background-color: #d7e2fa;
    }

    .article-box {
      background: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
      max-width: 700px;
      width: 100%;
      margin-bottom: 60px;
    }

    .article-box h1 {
      font-size: 2rem;
      margin-bottom: 0.3em;
    }

    .author-date-inline {
      display: flex;
      align-items: center;
      font-size: 0.9rem;
      color: #777;
      margin-bottom: 10px;
      gap: 5px;
      flex-wrap: wrap;
    }

    .author-date-inline img {
      width: 28px;
      height: 28px;
      border-radius: 50%;
    }

    .featured-image {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 25px;
      border: 1px solid #d7e2fa;
    }

    .article-box h2 {
      margin-top: 1.5em;
      font-size: 1.3rem;
    }
    
    .about-heading {
  font-weight: 600;
  font-size: 1.2rem;
  margin: 1.5em 0 0.5em;
  border-left: 4px solid #1a73e8;
  padding-left: 0.6em;
}
    
.tools-catalog {
  --gap: 0.75rem;
  --card-bg: #f7f9fc;
  --card-br: 10px;
  --card-bd: #e6eaf0;
  --hover-bg: #eef4ff;
  --hover-tx: #1a73e8;
  margin: 1.5rem 0;
}
.tools-catalog section { margin: 1.5rem 0; }
.tools-catalog h3 { margin: .5rem 0 .75rem; font-size: 1.1rem; }
.tools-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.tools-grid a {
  display: block; padding: .7rem 1rem; background: var(--card-bg);
  border: 1px solid var(--card-bd); border-radius: var(--card-br);
  text-decoration: none; color: #222; font-weight: 500;
  transition: background .2s ease, color .2s ease;
}
.tools-grid a:hover { background: var(--hover-bg); color: var(--hover-tx); }

.time-date-tools {
  list-style: none;
  padding: 0;
  margin: 1.5em 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75em;
}

.time-date-tools li a {
  display: block;
  padding: 0.6em 1em;
  background: #f5f7fa;
  border: 1px solid #e1e5eb;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.time-date-tools li a:hover {
  background: #e8f0fe;
  color: #1a73e8;
}

.ws-alt.ws-window.any-device {
  width: min(100%, 980px);
  margin: 34px auto;
  padding: 24px;
  background: radial-gradient(circle at top, #f6fff8 0%, #e9fdf3 50%, #d2f3de 110%);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 18px;
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
  overflow-x: visible;
  min-width: 0;
}

.ws-alt-text {
  flex: 1 1 0;
  min-width: 0;
}
.ws-alt-text h2 {
  font-size: 1.38rem;
  margin-bottom: 10px;
  color: #0f172a;
}
.ws-alt-text p {
  margin-bottom: 16px;
  color: #4b5563;
  max-width: 390px;
}

.ws-alt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0f172a;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  padding: 8px 16px;
  font-weight: 500;
  font-size: .85rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
  white-space: nowrap;
  max-width: 100%;
}
.ws-alt-btn i { font-size: .78rem; }
.ws-alt-btn span { display: inline-block; }

.ws-window-wrap {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(190, 201, 230, .35);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 28px rgba(9, 42, 98, .04);
  flex: 0 0 320px;
  max-width: 320px;
  min-width: 240px;
  box-sizing: border-box;
  min-height: 0;
  height: auto;
}
.ws-window-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: linear-gradient(120deg, #e5e9ff 0%, #f7f8ff 100%);
}
.ws-window-top .dot { width: 10px; height: 10px; border-radius: 999px; }
.ws-window-top .red { background: #FF5F57; }
.ws-window-top .yellow { background: #FEBD2E; }
.ws-window-top .green { background: #27C93F; }
.ws-window-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  font-size: .7rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  min-width: 0;
}
.ws-window-title:hover,
.ws-window-title:focus { text-decoration: none; opacity: 0.85; }
.ws-window-logo {
  height: 16px;
  width: auto;
  display: block;
}

.ws-window-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 10px;
  padding: 12px 12px 14px;
  align-content: start;
  justify-content: stretch;
}
.ws-tool-tile {
  background: #f6f7ff;
  border: 1px solid rgba(190, 201, 230, .25);
  border-radius: 14px;
  min-height: 70px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  transition: transform .12s ease, box-shadow .12s ease;
  text-decoration: none;
  color: inherit;
}
.ws-tool-tile:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}
.ws-tool-icon {
  width: 40px; height: 40px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(59, 91, 253, .04);
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.icon-currency i { color: #2563eb; }
.icon-timer i { color: #f97316; }
.icon-health i { color: #e11d48; }
.icon-add i { color: #0f172a; }
.ws-tool-info { display: flex; flex-direction: column; gap: 2px; }
.ws-tool-title { font-size: .72rem; color: #0f172a; font-weight: 500; }
.ws-tool-sub { font-size: .62rem; color: rgba(15,23,42,.55); }

@media (max-width: 900px) and (min-width: 641px) {
  .ws-alt.ws-window.any-device {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .ws-alt-text {
    width: 100%;
  }
  .ws-window-wrap {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    height: auto;
  }
  .ws-window-body {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    align-content: start;
  }
  .ws-alt-btn {
    width: auto;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .ws-alt.ws-window.any-device {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 18px 14px 16px;
  }
  .ws-alt-text {
    display: contents;
  }
  .ws-alt-text h2 {
    flex: 0 0 100%;
    max-width: 100%;
    font-size: 1.1rem;
  }
  .ws-alt-text p {
    flex: 1 1 50%;
    min-width: 0;
    margin-bottom: 0;
  }
  .ws-window-wrap {
    flex: 1 1 50%;
    max-width: 100%;
    height: auto;
  }
  .ws-window-body {
    grid-template-columns: 1fr 1fr;
    align-content: start;
  }
  .ws-alt-btn {
    flex: 0 0 100%;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .ws-window-logo { height: 14px; }
  .ws-window-title { font-size: .68rem; }
}

@media (max-width: 390px) {
  .ws-alt.ws-window.any-device { gap: 10px; }
  .ws-alt-text p { flex: 1 1 100%; }
  .ws-window-wrap { flex: 1 1 100%; }
  .ws-window-body { grid-template-columns: 1fr; }
}

    footer {
      padding: 20px;
      text-align: center;
      font-size: 0.9rem;
      color: #777;
    }

    footer a {
      color: #555;
      text-decoration: none;
      margin: 0 10px;
    }

    footer a:hover {
      text-decoration: underline;
    }
    
    #scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
    background-color: #ffffff;
    border: 1px solid #aaa;
    border-radius: 50px;
    padding: 10px 16px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s, visibility 0.3s;
}

#scrollTopBtn:hover {
    background-color: #f0f0f0;
}
    
    
.read-toggle {
  color: #3366cc;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.95rem;
  margin-top: 20px;
  text-align: left;
  display: inline-block;
}

.read-toggle:hover {
  text-decoration: underline;
}      
      
    .author-bio-box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  max-width: 700px;
  background: white;
  border-radius: 12px;
  padding: 25px 30px;
  margin: -30px auto 60px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}
.author-bio-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.author-bio-text { flex: 1; }
.author-bio-text h3 { margin: 0 0 8px; font-size: 1.2rem; }
.author-bio-text p { margin: 0 0 12px; font-size: 0.95rem; color: #444; }
.author-social a { margin-right: 15px; font-size: 0.9rem; color: #3366cc; text-decoration: none; }
.author-social a:hover { text-decoration: underline; }

.share-inline {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 30px 0; align-items: center; justify-content: flex-start;
}
.share-label {
  font-size: 1rem; font-weight: 500; color: #333; margin-right: 10px;
  display: inline-flex; align-items: center;
}
.share-inline a,
.share-inline button {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.2s; padding: 0;
}
.share-inline img, .share-inline svg { width: 18px; height: 18px; }
.share-inline a:hover, .share-inline button:hover { transform: scale(1.1); }

.copy-msg {
  display: none; margin-left: 6px; color: #2e7d32; font-size: 0.9rem;
  opacity: 0; transition: opacity .18s ease-in-out;
}
.copy-msg.show { opacity: 1; }

.embed-code {
  width: 100%;
  height: 100px;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: monospace;
  font-size: 0.9rem;
  resize: none;
  background: #f8f8f8;
  margin: 12px 0;
  color: #333;
}

.faq-item {
  margin-bottom: 12px;
}

.faq-question {
  width: 100%;
  background: #f0f0f0;
  border: none;
  padding: 12px 16px;
  font-size: 0.95rem;
  text-align: left;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #e2e8f0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.9rem;
  padding: 0 2px;
  color: #444;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 10px 2px 0 2px;
}

.toc-floating {
  position: fixed;
  top: 35vh; /* Fallback */
  left: calc(49% - 520px);
  width: 180px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  color: #555;
  z-index: 1000;
  display: none;
  transition: top 0.2s ease-out;
}

.toc-title {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #333;
}

.toc-floating ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid #ccc;
}

.toc-floating li {
  margin: 10px 0;
  padding-left: 10px;
}

.toc-floating a {
  text-decoration: none;
  color: #555;
  transition: color 0.2s;
}

.toc-floating a.active {
  font-weight: bold;
  color: #111;
}

.toc-floating a:hover {
  color: #111;
}

:root{
  --focus-accent:#2b5bd7; --focus-accent-soft:#d7e2fa;
  --focus-text:#1f2a44; --focus-sub:#55607a;
  --focus-bg:#ffffff; --focus-border:#e7eefc;
}

.focus-strip{
  max-width:620px;
  margin:28px auto;
  display:grid;
  grid-template-columns:4px 1fr;
  background:var(--focus-bg);
  border:1px solid var(--focus-border);
  border-radius:12px;
  box-shadow:0 2px 8px rgba(0,0,0,.04);
  overflow:hidden;
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.focus-strip__bar{
  background:linear-gradient(180deg, var(--focus-accent), #4a8bff);
  opacity:.9;
}

.focus-strip__content{
  padding:16px 18px 20px;
  text-align:left;
}

.focus-strip h3{
  margin:0 0 8px;
  font-size:1.05rem;
  line-height:1.25;
  color:var(--focus-text);
  font-weight:700;
}

.focus-strip p{
  margin:0 0 10px;
  font-size:.95rem;
  line-height:1.5;
  color:var(--focus-sub);
}

.focus-strip b{ color:#182033; }

.focus-strip__cta{
  display:inline-block;
  margin:10px 0 14px;
  padding:6px 12px;
  font-size:.9rem;
  font-weight:600;
  color:var(--focus-accent);
  background:#fff;
  border:1.5px solid var(--focus-accent-soft);
  border-radius:8px;
  text-decoration:none;
  transition:border-color .2s, background .2s, transform .15s ease;
}
.focus-strip__cta:hover{
  background:#f6f9ff;
  border-color:#b8ccff;
  transform:translateY(-1px);
}

.quick-links{
  border-top:1px dashed var(--focus-accent-soft);
  padding-top:10px;
}
.quick-links__intro{
  font-size:.86rem;
  font-weight:700;
  color:#294ea8;
  margin-bottom:8px;
}
.quick-links__grid{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.pill-link {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef4ff;
  border: 1px dashed #7da4ff;
  color: #2346a4;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.pill-link:hover {
  background: #e6f0ff;
  border-color: #4c7dff;
  transform: translateY(-1px);
}

@media (max-width:480px){
  .focus-strip{ grid-template-columns:3px 1fr; }
  .focus-strip__content{ padding:14px; }
  .focus-strip h3{ font-size:1rem; }
  .focus-strip p{ font-size:.93rem; }
}

.workspace-box {
  max-width: 520px;
  margin: 30px auto;
  padding: 22px 26px;
  border: 1px solid #cce3ff;
  border-radius: 14px;
  background: linear-gradient(135deg, #f9fbff, #f0f6ff);
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.workspace-box h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
}

.workspace-box p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 14px;
}

.workspace-box b {
  color: #000;
}

.workspace-box a.btn-workspace {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  background: #4cafef;
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.workspace-box a.btn-workspace:hover {
  background: #3798e8;
  transform: translateY(-1px);
}

@media (min-width: 1070px) {
  .toc-floating {
    display: block;
  }
}

@media (max-width: 500px) {
  .author-bio-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-bio-text {
    align-items: center;
  }

  .author-social a {
    display: inline-block;
    margin: 5px 8px;
  }
}


    @media (max-width: 500px) {
      .article-meta-wrapper {
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }

      .breadcrumbs {
        max-width: calc(100% - 190px);
      }

      .search-container {
        width: 160px;
      }

      .author-date-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
      }
    }