:root {
    --ds-bg: #f3f6fb;
    --ds-card: #ffffff;
    --ds-text: #20293a;
    --ds-muted: #586273;

    --ds-peach: #efb577;
    --ds-peach-soft: #f7d5ac;
    --ds-brown: #342018;
    --ds-brown-soft: #4c3026;
    --ds-border: #eadfd3;
    --ds-code-bg: #fff3e4;
}

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: linear-gradient(180deg, #f8f9fb 0%, #eef4ff 100%);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: var(--accent);
    }

    .container {
      max-width: 940px;
      margin: 0 auto;
      padding: 32px 24px 56px;
    }

    .site-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 40px;
    }

    .site-nav a {
      text-decoration: none;
    }

    .site-brand {
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--text);
    }

    .site-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .site-links a {
      color: var(--muted);
      font-weight: 500;
    }

    .hero {
      display: flex;
      gap: 32px;
      align-items: center;
      margin-bottom: 56px;
      padding: 28px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.72);
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
    }

    .avatar {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      flex-shrink: 0;
    }

    h1 {
      margin: 0 0 8px;
      font-size: 2.25rem;
      line-height: 1.1;
    }

    .subtitle {
      color: var(--muted);
      font-size: 1.08rem;
    }

    section {
      margin-bottom: 56px;
    }

    h2 {
      font-size: 1.4rem;
      margin: 0 0 16px;
    }

    .projects {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }

    .plate {
      background: var(--surface);
      border-radius: 16px;
      padding: 24px;
      text-decoration: none;
      color: inherit;
      box-shadow: var(--shadow);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .plate:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
    }

    .plate-logo {
      height: 36px;
      margin-bottom: 12px;
      display: block;
    }

    .plate h3 {
      margin: 0 0 8px;
    }

    .skills {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .skill {
      background: var(--surface-soft);
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 0.92rem;
    }

    .contact-links {
      display: flex;
      gap: 18px;
      align-items: center;
      flex-wrap: wrap;
    }

    .contact-links img {
      display: block;
      width: 44px;
      height: 44px;
    }

    .site-footer {
      color: #6b7280;
      font-size: 0.95rem;
      padding-top: 16px;
      border-top: 1px solid var(--line);
    }

    .blog-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 0;
    }

    .blog-post-container {
      max-width: 850px;
      margin: 2rem auto;
      padding: 0 1rem;
    }

    .page-title,
    .blog-post-title {
      margin-top: 0;
    }

    .page-title {
      font-size: clamp(2.1rem, 4vw, 3rem);
      margin-bottom: 1rem;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 2rem;
    }

    .blog-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
    }

    .blog-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    }

    .blog-thumb img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .blog-content {
      padding: 1.2rem;
      flex: 1;
    }

    .blog-category {
      font-size: 0.75rem;
      text-transform: uppercase;
      font-weight: 600;
      color: #777;
      margin-bottom: 0.5rem;
      display: inline-block;
      letter-spacing: 0.03em;
    }

    .blog-title {
      font-size: 1.3rem;
      line-height: 1.2;
      margin: 0 0 0.5rem;
      font-weight: 700;
      color: var(--text);
    }

    .blog-title a {
      color: var(--text);
      text-decoration: none;
    }

    .blog-title a:hover,
    .nav-link-blog:hover {
      text-decoration: underline;
    }

    .blog-meta,
    .blog-post-meta {
      font-size: 0.85rem;
      color: #999;
      margin-bottom: 0.8rem;
    }

    .blog-excerpt {
      font-size: 1rem;
      line-height: 1.6;
      color: #444;
      margin-bottom: 1rem;
    }

    .nav-link-blog {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--accent);
      text-decoration: none;
    }

    .read-more {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--accent);
      text-decoration: none;
    }

    .pagination-wrapper {
      margin-top: 2.5rem;
      text-align: center;
    }

    .pagination {
      list-style: none;
      display: flex;
      gap: 10px;
      padding: 0;
      margin: 0;
      flex-wrap: wrap;
      justify-content: center;
    }

    .page-link {
      display: inline-block;
      padding: 8px 14px;
      border-radius: 999px;
      background: var(--surface-soft);
      text-decoration: none;
      color: var(--text);
    }

    .page-item.active .page-link {
      background: var(--accent);
      color: #fff;
    }

    .blog-post-content img {
      max-width: 100%;
      height: auto;
      border-radius: 14px;
    }

    @media (max-width: 720px) {
      .container {
        padding: 24px 16px 40px;
      }

      .site-nav {
        align-items: flex-start;
        flex-direction: column;
      }

      .hero {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
      }

      .avatar {
        width: 132px;
        height: 132px;
      }

      .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .blog-thumb img {
        height: auto;
      }
    }


.usage-note {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid #d7dde8;
    border-radius: 12px;
    background: #f8fafc;
}

.usage-note h2 {
    margin-top: 0;
}

.firewall-example
{
	margin-top: 30px;
}
 

 
 
.crawler-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 4rem 1.5rem 6rem;
}

.crawler-hero {
    margin-bottom: 2rem;
    padding: 2.5rem;
    border: 1px solid var(--ds-border);
    border-radius: 28px;
    background: var(--ds-card);
    box-shadow: 0 24px 70px rgba(52, 32, 24, 0.08);
}

.crawler-hero .eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ds-brown-soft);
}

.crawler-hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.25rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.055em;
    color: var(--ds-text);
}

.hero-lead {
    max-width: 760px;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--ds-muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.stat-card,
.download-card,
.content-card,
.usage-note {
    border: 1px solid var(--ds-border);
    border-radius: 22px;
    background: var(--ds-card);
    box-shadow: 0 18px 50px rgba(52, 32, 24, 0.055);
}

.stat-card {
    padding: 1.25rem;
    border-top: 4px solid var(--ds-peach);
}

.stat-label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ds-muted);
}

.stat-card strong {
    display: block;
    font-size: 1.1rem;
    color: var(--ds-text);
}

.download-card,
.content-card,
.usage-note {
    margin-top: 1.5rem;
    padding: 1.5rem;
}

.download-card h2,
.content-card h2,
.usage-note h2 {
    margin-top: 0;
    color: var(--ds-text);
    letter-spacing: -0.03em;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1.05rem;
    border-radius: 999px;
    background: var(--ds-brown);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(52, 32, 24, 0.18);
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.download-btn:hover {
    transform: translateY(-1px);
    background: var(--ds-brown-soft);
    box-shadow: 0 16px 36px rgba(52, 32, 24, 0.24);
}

.download-btn.secondary {
    background: var(--ds-peach);
    color: var(--ds-brown);
}

.download-btn.secondary:hover {
    background: var(--ds-peach-soft);
}

.table-wrap {
    overflow-x: auto;
}

.crawler-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.crawler-table th {
    padding: 0.85rem 0.75rem;
    text-align: left;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ds-muted);
    border-bottom: 1px solid var(--ds-border);
}

.crawler-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #f0e7dd;
    color: var(--ds-text);
}

.crawler-table tr:hover td {
    background: #fff8ef;
}

code {
    padding: 0.15rem 0.35rem;
    border-radius: 7px;
    background: var(--ds-code-bg);
    color: var(--ds-brown);
    font-size: 0.88em;
}

pre {
    margin: 1.25rem 0 0;
    padding: 1.25rem;
    overflow-x: auto;
    border-radius: 18px;
    background: var(--ds-brown);
    color: #fff6ec;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

pre code {
    padding: 0;
    background: transparent;
    color: inherit;
    font-size: 0.88rem;
    line-height: 1.75;
}

.usage-note {
    border-left: 6px solid var(--ds-peach);
    background: #fffaf4;
}

.usage-note p {
    color: var(--ds-text);
    line-height: 1.7;
}

@media (max-width: 760px) {
    .crawler-page {
        padding-top: 2rem;
    }

    .crawler-hero {
        padding: 1.5rem;
        border-radius: 22px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
    }
}




.tools-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 4rem 1.5rem 6rem;
}

.tools-hero {
    margin-bottom: 2rem;
    padding: 2.5rem;
    border: 1px solid var(--ds-border);
    border-radius: 28px;
    background: var(--ds-card);
    box-shadow: 0 24px 70px rgba(52, 32, 24, 0.08);
}

.tools-hero .eyebrow,
.tool-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ds-brown-soft);
}

.tools-hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.25rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.055em;
    color: var(--ds-text);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.25rem;
}

.tool-card {
    padding: 1.75rem;
    border: 1px solid var(--ds-border);
    border-radius: 22px;
    background: var(--ds-card);
    box-shadow: 0 18px 50px rgba(52, 32, 24, 0.055);
    border-top: 4px solid var(--ds-peach);
}

.tool-card h2 {
    margin: 0 0 0.75rem;
    color: var(--ds-text);
    letter-spacing: -0.03em;
}

.tool-card p {
    max-width: 720px;
    color: var(--ds-muted);
    line-height: 1.7;
}

.tool-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 0.75rem;
    padding: 0 1.05rem;
    border-radius: 999px;
    background: var(--ds-brown);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(52, 32, 24, 0.18);
}

.tool-link:hover {
    transform: translateY(-1px);
    background: var(--ds-brown-soft);
    box-shadow: 0 16px 36px rgba(52, 32, 24, 0.24);
}
