/*
Theme Name: DNFS Theme
Theme URI: https://domainnamesforsale.io
Description: Lightweight WordPress theme for domain aftermarket search and marketplace tracking.
Version: 2.0.0
Author: ABTdomain
Author URI: https://abtdomain.com
License: Proprietary
Text Domain: dnfs-theme
*/

/* ================================================================
   DESIGN SYSTEM — "Dark Terminal"
   Domain trading is for investors and builders.
   Dark canvas. Monospace domains. One color that screams "act now."
   ================================================================ */

:root {
    /* Surface — warm dark gray, not cold blue-black */
    --surface-0: #1A1D21;
    --surface-1: #22262B;
    --surface-2: #2A2E34;
    --surface-3: #33383F;
    --surface-4: #3D434B;

    /* Text — high readability on dark bg */
    --text-0: #FFFFFF;
    --text-1: #C8CDD3;
    --text-2: #9DA5B0;
    --text-3: #6B7280;

    /* Accent — golden orange (ReliableSite style) */
    --accent: #E8A525;
    --accent-hover: #F0B840;
    --accent-glow: rgba(232, 165, 37, 0.15);
    --accent-glow-strong: rgba(232, 165, 37, 0.3);

    /* Signal green for "available / active" */
    --green: #34D399;
    --green-dim: rgba(52, 211, 153, 0.1);

    /* Borders */
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    /* Typography */
    --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;

    /* Radius */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;

    /* Easing */
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);

    /* Layout */
    --max-w: 1320px;
    --topbar-h: 56px;
}

/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* === Base === */
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--surface-0);
    color: var(--text-1);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: var(--topbar-h);
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
.section-desc a, .qa-body a, .alpha-example a:not(.carousel-card-btn), p a[style*="color:var(--accent)"] {
    text-decoration: underline;
    text-underline-offset: 2px;
}
img { max-width: 100%; height: auto; }
::selection { background: var(--accent); color: #fff; }

/* === Layout === */
.dnfs-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 48px 32px;
}

/* ================================================================
   TOPBAR
   ================================================================ */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--topbar-h);
    background: rgba(11, 15, 20, 0.85);
    backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    z-index: 9999;
}
.topbar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    height: 100%;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-logo {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-0);
    letter-spacing: -0.5px;
}
.topbar-logo:hover { color: var(--accent); }
.topbar-menu { display: flex; gap: 4px; }
.topbar-link {
    padding: 6px 14px;
    color: var(--text-0);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--r-sm);
    transition: all 0.2s var(--ease);
}
.topbar-link:hover { color: var(--text-0); background: var(--surface-2); }

/* ================================================================
   LANDING BANNER (Hero)
   ================================================================ */
.landing-banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -48px;
    padding: 100px 32px 72px;
    text-align: center;
    position: relative;
    background: var(--surface-0);
    overflow: hidden;
}
/* Subtle radial glow behind search */
.landing-banner::before {
    content: '';
    position: absolute;
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}
.landing-headline {
    font-family: var(--font-body);
    font-size: 52px;
    font-weight: 700;
    color: var(--text-0);
    line-height: 1.1;
    margin-bottom: 12px;
    position: relative;
}
.landing-tagline {
    font-size: 16px;
    color: var(--text-2);
    font-weight: 400;
    margin-bottom: 8px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.landing-stats {
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}
.landing-stats strong { color: var(--accent); font-size: 14px; }
.landing-stats .sep { opacity: 0.3; }

/* ================================================================
   FINDER (Search)
   ================================================================ */
.finder {
    max-width: 680px;
    margin: 32px auto 0;
    position: relative;
}
.finder-box {
    position: relative;
    background: var(--surface-2);
    border: 1px solid var(--border-hover);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.finder-box:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow), 0 8px 32px rgba(0,0,0,0.4);
}
.finder-field {
    width: 100%;
    padding: 20px 150px 20px 24px;
    font-size: 16px;
    font-family: var(--font-mono);
    border: none;
    outline: none;
    background: transparent;
    color: var(--text-0);
    font-weight: 400;
}
.finder-field::placeholder { color: var(--text-2); }
.finder-go {
    position: absolute;
    right: 6px; top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: var(--r-md);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s var(--ease);
    letter-spacing: 0.3px;
}
.finder-go:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 20px var(--accent-glow-strong);
}
.finder-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 14px;
    position: relative;
}
.finder-opt {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-2);
    transition: color 0.2s;
}
.finder-opt:hover { color: var(--text-1); }
.finder-opt input[type="radio"] {
    margin-right: 4px;
    cursor: pointer;
    accent-color: var(--accent);
}
.finder-opt input[type="radio"]:checked + span { color: var(--accent); font-weight: 600; }

/* ================================================================
   SEARCH RESULTS
   ================================================================ */
.results-area {
    margin-top: 36px;
    animation: fadeUp 0.4s var(--ease);
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.results-bar h3 { font-size: 17px; font-weight: 600; color: var(--text-0); }
.results-meta { font-size: 15px; color: var(--text-2); }

/* === Hit Cards === */
.hit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.hit {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 16px 18px;
    transition: all 0.2s var(--ease);
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 8px;
}
.hit:hover {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent-glow);
}
.hit-domain {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-0);
    word-break: break-all;
    font-family: var(--font-mono);
}
.hit-info {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.5;
}
.hit-info span { display: inline-block; margin-right: 10px; }
.hit-tld {
    display: inline-block;
    padding: 1px 7px;
    background: var(--surface-3);
    color: var(--text-1);
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hit-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.hit-btn {
    padding: 8px 12px;
    border-radius: var(--r-sm);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all 0.2s var(--ease);
    text-align: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.hit-btn-buy {
    background: var(--accent);
    color: #fff;
}
.hit-btn-buy:hover {
    background: var(--accent-hover);
    box-shadow: 0 2px 12px var(--accent-glow-strong);
}
.hit-btn-info {
    background: var(--surface-3);
    color: var(--text-1);
}
.hit-btn-info:hover { background: var(--surface-4); color: var(--text-0); }

/* Keyword highlight */
.kw-mark {
    background: var(--accent-glow);
    color: var(--accent);
    font-weight: 700;
    padding: 0 2px;
    border-radius: 2px;
}

/* ================================================================
   SECTION BLOCKS
   ================================================================ */
.section-block { margin: 48px 0; }
.section-label {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-0);
    margin-bottom: 6px;
}
.section-desc {
    font-size: 15px;
    color: var(--text-2);
    margin-bottom: 28px;
}

/* ================================================================
   CAROUSEL (Newly Listed)
   ================================================================ */
.carousel-wrap {
    position: relative;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    transition: transform 0.6s var(--ease);
}
.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 4px;
}
.carousel-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.carousel-card {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.2s var(--ease);
}
.carousel-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent-glow);
}
.carousel-card-domain {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-0);
    font-family: var(--font-mono);
    word-break: break-all;
}
.carousel-card-meta {
    font-size: 12px;
    color: var(--text-2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.carousel-card-comp { color: var(--text-1); font-weight: 500; }
.carousel-card-date { text-align: right; white-space: nowrap; }
.carousel-card-btn {
    display: block;
    text-align: center;
    padding: 8px 10px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--r-sm);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all 0.2s var(--ease);
    margin-top: auto;
}
.carousel-card-btn:hover {
    background: var(--accent-hover);
    box-shadow: 0 2px 12px var(--accent-glow-strong);
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}
.carousel-dot {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    position: relative;
}
.carousel-dot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--surface-3);
    transition: all 0.2s var(--ease);
}
.carousel-dot.active::after { background: var(--accent); transform: translate(-50%, -50%) scale(1.3); }

/* ================================================================
   LISTING GRID (rows)
   ================================================================ */
.listing-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.listing-row {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--surface-1);
    transition: background 0.15s;
}
.listing-row:first-child { border-radius: var(--r-md) var(--r-md) 0 0; }
.listing-row:last-child { border-bottom: none; border-radius: 0 0 var(--r-md) var(--r-md); }
.listing-row:hover { background: var(--surface-2); }
.listing-domain {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-0);
    font-family: var(--font-mono);
}
.listing-date { font-size: 12px; color: var(--text-2); white-space: nowrap; }
.listing-badge {
    padding: 2px 8px;
    background: var(--surface-3);
    color: var(--text-2);
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    font-family: var(--font-mono);
    text-transform: uppercase;
}

/* ================================================================
   TILE GRID (Browse Categories)
   ================================================================ */
.tile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.tile {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 22px 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s var(--ease);
}
.tile:hover {
    border-color: var(--accent);
    background: var(--surface-2);
    box-shadow: 0 0 0 1px var(--accent-glow);
}
.tile-icon {
    width: 40px; height: 40px;
    margin: 0 auto 10px;
    background: var(--surface-3);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tile-icon svg { width: 20px; height: 20px; stroke: var(--text-2); fill: none; }
.tile:hover .tile-icon { background: var(--accent); }
.tile:hover .tile-icon svg { stroke: #fff; }
.tile-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-0);
    margin-bottom: 3px;
}
.tile-desc { font-size: 12px; color: var(--text-2); line-height: 1.4; }

/* ================================================================
   QA BLOCK (FAQ)
   ================================================================ */
.qa-block {
    margin: 48px 0;
    background: var(--surface-1);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}
.qa-header {
    padding: 28px 24px 18px;
    border-bottom: 1px solid var(--border);
}
.qa-title { font-size: 22px; font-weight: 700; color: var(--text-0); margin-bottom: 4px; }
.qa-subtitle { font-size: 14px; color: var(--text-2); }
.qa-entry { border-bottom: 1px solid var(--border); }
.qa-entry:last-child { border-bottom: none; }
.qa-trigger {
    width: 100%;
    padding: 16px 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-1);
    transition: all 0.15s;
}
.qa-trigger:hover { background: var(--surface-2); color: var(--text-0); }
.qa-trigger .qa-icon {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-2);
    transition: transform 0.25s;
}
.qa-entry.open .qa-trigger { background: var(--accent); color: #fff; }
.qa-entry.open .qa-trigger .qa-icon { transform: rotate(45deg); color: #fff; }
.qa-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.qa-entry.open .qa-body { max-height: 400px; transition: max-height 0.3s ease-in; }
.qa-body p {
    padding: 18px 24px;
    color: var(--text-2);
    line-height: 1.7;
    font-size: 15px;
}
.qa-body a { color: var(--accent); text-decoration: underline; }

/* ================================================================
   ACTION CARD (CTA)
   ================================================================ */
.action-card {
    margin-top: 36px;
    text-align: center;
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 24px;
    transition: border-color 0.2s;
}
.action-card:hover { border-color: var(--accent); }
.action-card-eyebrow { font-size: 13px; color: var(--text-2); margin-bottom: 8px; }
.action-card-title { font-size: 20px; font-weight: 700; color: var(--text-0); margin-bottom: 6px; line-height: 1.3; }
.action-card-desc { font-size: 15px; color: var(--text-2); line-height: 1.6; margin-bottom: 20px; }
.action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--r-md);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-body);
    transition: all 0.2s var(--ease);
    letter-spacing: 0.2px;
    text-decoration: none;
}
.action-link-primary {
    background: var(--accent);
    color: #fff;
}
.action-link-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 20px var(--accent-glow-strong);
}
.action-link-secondary {
    background: var(--surface-3);
    color: var(--text-0);
}
.action-link-secondary:hover { background: var(--surface-4); }
.action-link .arrow { font-size: 16px; transition: transform 0.2s; }
.action-link:hover .arrow { transform: translateX(3px); }

/* ================================================================
   STATS PAGE
   ================================================================ */
.stats-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 20px 0 36px;
}
.stats-kpi {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 20px 14px;
    text-align: center;
}
.stats-kpi-value { font-size: 26px; font-weight: 700; color: var(--accent); margin-bottom: 2px; font-family: var(--font-mono); }
.stats-kpi-label { font-size: 12px; color: var(--text-2); font-weight: 500; }

.stats-table-wrap {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
}
.stats-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.stats-table thead th {
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    color: var(--text-2);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
}
.stats-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.1s; }
.stats-table tbody tr:last-child { border-bottom: none; }
.stats-table tbody tr:hover { background: var(--surface-2); }
.stats-table td { padding: 9px 14px; }
.stats-table-name { font-weight: 600; color: var(--text-0); }
.stats-table-num { font-family: var(--font-mono); color: var(--text-1); white-space: nowrap; font-size: 13px; }
.stats-table-pct { color: var(--text-2); white-space: nowrap; font-size: 13px; }
.stats-table-bar { width: 180px; }
.stats-bar {
    height: 6px;
    background: var(--accent);
    border-radius: 3px;
    min-width: 2px;
}

/* ================================================================
   TLD BAR CHART
   ================================================================ */
.tld-chart { display: flex; flex-direction: column; gap: 4px; }
.tld-chart-row {
    display: grid;
    grid-template-columns: 64px 1fr 80px 50px;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: all 0.15s;
}
.tld-chart-row:hover { border-color: var(--accent); background: var(--surface-2); }
.tld-chart-label { font-size: 15px; font-weight: 700; color: var(--accent); font-family: var(--font-mono); }
.tld-chart-bar-wrap { height: 20px; background: var(--surface-3); border-radius: 3px; overflow: hidden; }
.tld-chart-bar {
    display: block; height: 100%;
    background: linear-gradient(90deg, var(--surface-4) 0%, var(--accent) 100%);
    border-radius: 3px;
    min-width: 2px;
}
.tld-chart-value { font-size: 15px; font-weight: 600; color: var(--text-1); text-align: right; font-family: var(--font-mono); }
.tld-chart-pct { font-size: 15px; color: var(--text-2); text-align: right; }

/* ================================================================
   PURE ALPHA INTERACTIVE
   ================================================================ */
.alpha-len-strip { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.alpha-len-btn {
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    background: var(--surface-1);
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-1);
    font-family: var(--font-body);
    transition: all 0.15s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.alpha-len-btn:hover { border-color: var(--accent); color: var(--text-0); }
.alpha-len-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.alpha-len-count { font-size: 10px; color: var(--text-2); }
.alpha-len-btn.active .alpha-len-count { color: rgba(255,255,255,0.7); }
.alpha-example {
    margin-top: 10px;
    padding: 18px;
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
}
.alpha-example-title { font-size: 15px; font-weight: 600; color: var(--text-0); margin-bottom: 12px; }

/* ================================================================
   BREADCRUMB
   ================================================================ */
.crumbs { font-size: 13px; color: var(--text-2); margin-bottom: 18px; }
.crumbs a { color: var(--text-2); transition: color 0.15s; }
.crumbs a:hover { color: var(--accent); }
.crumbs .crumbs-sep { margin: 0 5px; opacity: 0.4; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-bottom {
    background: var(--surface-1);
    border-top: 1px solid var(--border);
    color: var(--text-2);
    padding: 44px 0 24px;
    margin-top: 72px;
}
.site-bottom-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}
.site-bottom-brand {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}
.site-bottom-brand a { color: var(--accent); }
.site-bottom-nav { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.site-bottom-link { color: var(--text-2); font-size: 13px; transition: color 0.15s; }
.site-bottom-link:hover { color: var(--accent); }
.site-bottom-categories { margin: 20px auto; max-width: 700px; }
.site-bottom-categories-title { font-size: 10px; color: var(--text-2); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.site-bottom-categories-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.site-bottom-cat {
    padding: 3px 10px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-2);
    font-size: 15px;
    transition: all 0.15s;
}
.site-bottom-cat:hover { border-color: var(--accent); color: var(--text-1); }
.site-bottom-affiliate {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 16px;
    margin: 20px auto;
    max-width: 800px;
    text-align: left;
}
.site-bottom-affiliate p { color: var(--text-1); font-size: 10px; line-height: 1.6; margin: 0 0 6px; }
.site-bottom-affiliate p:last-child { margin-bottom: 0; }
.site-bottom-affiliate strong { color: var(--text-2); }
.site-bottom-affiliate a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.site-bottom-affiliate em { font-style: italic; opacity: 0.8; }
.site-bottom-note { color: var(--text-2); font-size: 10px; margin-top: 12px; line-height: 1.4; }
.site-bottom-note a { color: var(--text-2); }
.site-bottom-note a:hover { color: var(--accent); }
.site-bottom-copy { color: var(--text-2); font-size: 13px; margin-top: 16px; }
.site-bottom-copy a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* ================================================================
   EMPTY / LOADING STATES
   ================================================================ */
.empty-block { text-align: center; padding: 44px 20px; color: var(--text-2); }
.empty-block-icon { width: 40px; height: 40px; margin: 0 auto 14px; opacity: 0.2; }
.empty-block-icon svg { width: 40px; height: 40px; }
.empty-block-text { font-size: 15px; margin-bottom: 6px; color: var(--text-2); }
.empty-block-sub { font-size: 13px; color: var(--text-2); }
.spinner {
    display: inline-block;
    width: 16px; height: 16px;
    border: 2px solid var(--surface-3);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .tile-grid { grid-template-columns: repeat(2, 1fr); }
    .hit-grid { grid-template-columns: 1fr; }
    .carousel-card-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-kpi-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .dnfs-wrap { padding: 28px 16px; }
    .landing-banner { margin-top: -28px; padding: 64px 16px 48px; }
    .landing-headline { font-size: 32px; }
    .landing-tagline { font-size: 15px; }
    .finder { max-width: 100%; }
    .finder-field { padding: 16px 120px 16px 16px; font-size: 15px; }
    .finder-go { padding: 10px 20px; font-size: 15px; }
    .finder-filters { gap: 8px; }
    .finder-opt { font-size: 13px; }
    .tile-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .tile { padding: 16px 12px; }
    .carousel-card-grid { grid-template-columns: 1fr 1fr; }
    .listing-row { grid-template-columns: 1fr auto; gap: 8px; }
    .listing-date { display: none; }
    .hit-buttons { grid-template-columns: 1fr; }
    .qa-trigger { padding: 14px 16px; font-size: 15px; }
    .qa-body p { padding: 14px 16px; font-size: 15px; }
    .action-card { padding: 24px 16px; }
    .action-card-title { font-size: 17px; }
    .action-link { padding: 10px 20px; font-size: 15px; }
    .section-label { font-size: 20px; }
    .topbar-inner { padding: 0 16px; }
    .topbar-menu { display: none; }
    .site-bottom { padding: 32px 0 18px; }
    .site-bottom-inner { padding: 0 16px; }
    .site-bottom-nav { flex-direction: column; gap: 10px; }
    .landing-stats { flex-direction: column; gap: 4px; }
    .landing-stats .sep { display: none; }
    .stats-table-bar { display: none; }
    .stats-table { font-size: 15px; }
    .tld-chart-row { grid-template-columns: 52px 1fr 60px; }
    .tld-chart-pct { display: none; }
}
