/* === bianwebcoin.com — Core Stylesheet === */
/* Design: pure black-white brutalist field manual, VARIANCE 9 / MOTION 4 / DENSITY 3 */

/* === RESET & BASE === */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:"PingFang SC","Microsoft YaHei","Helvetica Neue",sans-serif;
  font-size:16px;line-height:1.7;color:#f5f5f5;
  background:#0a0a0a;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* === CSS VARIABLES === */
:root{
  --bg:#0a0a0a;
  --bg2:#141414;
  --bg3:#161616;
  --bg-card:#121212;
  --border:#f5f5f5;
  --border-strong:#ffffff;
  --accent:#ffffff;
  --accent-glow:rgba(255,255,255,0.18);
  --accent-dim:rgba(255,255,255,0.05);
  --text:#f5f5f5;
  --text-dim:#a3a3a3;
  --text-muted:#8a8a8a;
  --radius:0px;
  --radius-lg:0px;
  --radius-sm:8px;
  --max-w:1100px;
  --header-h:64px;
}

/* === TYPOGRAPHY === */
h1,h2,h3,h4{color:#f5f5f5;font-family:'PingFang SC','Microsoft YaHei','Helvetica Neue',sans-serif;line-height:1.15;font-weight:900}
h1{font-size:clamp(2rem,4.2vw,3.1rem);letter-spacing:-0.03em}
h2{font-size:clamp(1.5rem,3vw,2.25rem);letter-spacing:-0.02em}
h3{font-size:1.125rem;letter-spacing:-0.01em}
p{margin-bottom:1rem}
a{color:var(--accent);text-decoration:none;transition:color .2s}
a:hover{color:#d4d4d4}

/* === CONTAINER === */
.bian-container{max-width:var(--max-w);margin:0 auto;padding:0 24px}

/* === NAVIGATION === */
.bian-site-nav{
  position:sticky;top:0;z-index:100;
  background:rgba(10,10,10,0.96);backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);height:var(--header-h);
}
.bian-site-nav .bian-container{
  display:flex;align-items:center;justify-content:space-between;
  height:100%;
}
.bian-nav-logo{
  font-size:1.25rem;font-weight:800;letter-spacing:-0.02em;
  color:#f0f0f0;white-space:nowrap;
}
.bian-nav-logo span{color:var(--accent)}
.bian-nav-links{display:flex;align-items:center;gap:32px;list-style:none}
.bian-nav-links a{
  color:var(--text-dim);font-size:0.9rem;font-weight:500;
  transition:color .2s;white-space:nowrap;
}
.bian-nav-links a:hover,.bian-nav-links a.bian-active{color:#f0f0f0}
.bian-nav-cta{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--accent);color:#0a0a0a!important;
  padding:8px 18px;border-radius:999px;
  font-weight:700;font-size:0.85rem;
  transition:transform .15s,box-shadow .15s;
}
.bian-nav-cta:hover{transform:translateY(-1px);box-shadow:0 4px 20px var(--accent-glow)}

/* Mobile nav toggle */
.bian-nav-toggle{display:none;background:none;border:none;color:#f0f0f0;font-size:1.5rem;cursor:pointer;padding:8px}

/* === HERO === */
.bian-hero{
  padding:80px 0 80px;
  background:#0a0a0a;
}
.bian-hero .bian-container{
  display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;
}
.bian-hero-eyebrow{
  font-size:0.75rem;text-transform:uppercase;letter-spacing:0.2em;
  color:var(--accent);margin-bottom:16px;font-weight:600;
}
.bian-hero-title{font-size:clamp(2rem,4.2vw,3.1rem);margin-bottom:20px}
.bian-hero-title span{color:var(--accent)}
.bian-hero-sub{
  font-size:1.05rem;color:var(--text-dim);max-width:48ch;
  line-height:1.6;margin-bottom:32px;
}
.bian-hero-ctas{display:flex;gap:14px;flex-wrap:wrap}
.bian-btn-primary{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--accent);color:#0a0a0a;
  padding:13px 28px;border-radius:999px;
  font-weight:700;font-size:0.95rem;
  transition:transform .15s,box-shadow .15s;
  white-space:nowrap;
}
.bian-btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 30px var(--accent-glow);color:#0a0a0a}
.bian-btn-outline{
  display:inline-flex;align-items:center;gap:8px;
  background:transparent;color:#f0f0f0;
  padding:13px 28px;border-radius:999px;
  font-weight:600;font-size:0.95rem;
  border:1px solid var(--border-strong);
  transition:border-color .2s,background .2s;
  white-space:nowrap;
}
.bian-btn-outline:hover{border-color:var(--accent);background:var(--accent-dim);color:#f0f0f0}
.bian-hero-visual{position:relative;aspect-ratio:4/3;border-radius:16px;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,0.4),0 0 0 1px rgba(255,255,255,0.06)}
.bian-hero-visual-placeholder{
  width:100%;height:100%;display:flex;align-items:center;justify-content:center;
  color:var(--text-muted);font-size:0.85rem;
}
.bian-hero-visual img{width:100%;height:100%;object-fit:cover}

/* === SECTIONS === */
.bian-section{padding:80px 0}
.bian-section-alt{background:var(--bg2)}
.bian-section-header{margin-bottom:48px}
.bian-section-header.bian-centered{text-align:center}
.bian-section-eyebrow{
  font-size:0.7rem;text-transform:uppercase;letter-spacing:0.22em;
  color:var(--accent);margin-bottom:12px;font-weight:600;
}
.bian-section-title{font-size:clamp(1.5rem,3vw,2.25rem);margin-bottom:12px}
.bian-section-desc{color:var(--text-dim);max-width:60ch;font-size:0.95rem;line-height:1.6}

/* === FEATURES GRID === */
.bian-features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:28px;
}
.bian-feature-card{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);padding:32px 28px;
  transition:border-color .25s,transform .25s;
}
.bian-feature-card:hover{border-color:var(--border-strong);transform:translateY(-2px)}
.bian-feature-icon{
  width:64px;height:64px;border-radius:var(--radius-sm);
  background:var(--accent-dim);display:flex;align-items:center;
  justify-content:center;margin-bottom:20px;font-size:1.3rem;
}
.bian-feature-card h3{font-size:1.05rem;margin-bottom:10px}
.bian-feature-card p{font-size:0.9rem;color:var(--text-dim);line-height:1.6;margin:0}

/* === STATS === */
.bian-stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
}
.bian-stat-card{
  text-align:center;padding:32px 20px;
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);
}
.bian-stat-value{
  font-size:2.5rem;font-weight:800;color:var(--accent);
  letter-spacing:-0.02em;line-height:1;
}
.bian-stat-label{font-size:0.85rem;color:var(--text-dim);margin-top:8px}

/* === NEWS (2-col large cards) === */
.bian-news-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:24px;
}
.bian-news-card{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);overflow:hidden;
  transition:border-color .25s,transform .25s;
  display:flex;flex-direction:column;
}
.bian-news-card:hover{border-color:var(--border-strong);transform:translateY(-2px)}
.bian-news-card-img{
  width:100%;height:200px;
  background:linear-gradient(135deg,var(--bg3),var(--bg2));
  display:flex;align-items:center;justify-content:center;
  color:var(--text-muted);font-size:0.8rem;
;overflow:hidden}
.bian-news-card-img img{width:100%;height:100%;object-fit:cover}
.bian-news-card-body{padding:20px 24px 24px;flex:1;display:flex;flex-direction:column}
.bian-news-card-body h3{font-size:1.05rem;margin-bottom:8px}
.bian-news-card-body h3 a{color:#f0f0f0}
.bian-news-card-body h3 a:hover{color:var(--accent)}
.bian-news-card-desc{font-size:0.9rem;color:var(--text-dim);line-height:1.6;margin-bottom:12px;flex:1}
.bian-news-card-date{font-size:0.78rem;color:var(--text-muted)}

/* === GUIDE (3-col cards) === */
.bian-guide-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
}
.bian-guide-card{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);overflow:hidden;
  transition:border-color .25s,transform .25s;
}
.bian-guide-card:hover{border-color:var(--border-strong);transform:translateY(-2px)}
.bian-guide-card-img{
  width:100%;height:180px;
  background:linear-gradient(135deg,var(--bg3),var(--bg2));
  display:flex;align-items:center;justify-content:center;
  color:var(--text-muted);font-size:0.8rem;
;overflow:hidden}
.bian-guide-card-img img{width:100%;height:100%;object-fit:cover}
.bian-guide-card-body{padding:18px 20px 20px}
.bian-guide-card-body h3{font-size:1rem;margin-bottom:6px}
.bian-guide-card-body h3 a{color:#f0f0f0}
.bian-guide-card-body h3 a:hover{color:var(--accent)}
.bian-guide-card-body p{font-size:0.85rem;color:var(--text-dim);line-height:1.5;margin:0}

/* === TRUST / PARTNER LOGO WALL === */
.bian-trust-grid{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:center;
  gap:40px 48px;padding:20px 0;
}
.bian-trust-item{
  height:56px;display:flex;align-items:center;
  opacity:0.85;transition:opacity .3s;
}
.bian-trust-item svg,.bian-trust-item img{height:100%;width:auto}
.bian-trust-item:hover{opacity:0.8}

/* === FOOTER === */
.bian-site-footer{
  background:var(--bg2);border-top:1px solid var(--border);
  padding:56px 0 32px;
}
.bian-footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;margin-bottom:40px;
}
.bian-footer-brand p{color:var(--text-dim);font-size:0.9rem;line-height:1.7;margin-top:12px;max-width:36ch}
.bian-footer-col h4{font-size:0.85rem;text-transform:uppercase;letter-spacing:0.08em;margin-bottom:16px;color:var(--text)}
.bian-footer-col ul{list-style:none}
.bian-footer-col ul li{margin-bottom:10px}
.bian-footer-col ul li a{color:var(--text-dim);font-size:0.9rem;transition:color .2s}
.bian-footer-col ul li a:hover{color:#f0f0f0}
.bian-footer-bottom{
  border-top:1px solid var(--border);padding-top:24px;
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;
  font-size:0.8rem;color:var(--text-muted);
}
.bian-footer-bottom a{color:var(--text-dim)}

/* === BREADCRUMB === */
.bian-breadcrumb{padding:16px 0;font-size:0.85rem}
.bian-breadcrumb ol{list-style:none;display:flex;flex-wrap:wrap;gap:4px;align-items:center}
.bian-breadcrumb li{color:var(--text-dim);display:flex;align-items:center;gap:4px}
.bian-breadcrumb a{color:var(--text-dim)}
.bian-breadcrumb a:hover{color:var(--accent)}
.bian-breadcrumb .bian-sep{color:var(--text-muted);margin:0 4px}

/* === ARTICLE LIST (栏目页) === */
.bian-article-list{display:flex;flex-direction:column;gap:0}
.bian-article-list-item{
  display:grid;grid-template-columns:1fr auto;
  gap:20px;padding:22px 0;border-bottom:1px solid var(--border);
  align-items:start;
}
.bian-article-list-item:last-child{border-bottom:none}
.bian-article-list-item h3{font-size:1.1rem;margin-bottom:6px}
.bian-article-list-item h3 a{color:#f0f0f0}
.bian-article-list-item h3 a:hover{color:var(--accent)}
.bian-article-list-desc{font-size:0.9rem;color:var(--text-dim);line-height:1.6;margin-bottom:8px;max-width:80ch}
.bian-article-list-date{font-size:0.78rem;color:var(--text-muted);white-space:nowrap}

/* === ARTICLE DETAIL === */
.bian-article-detail{max-width:780px;margin:0 auto}
.bian-article-header{margin-bottom:40px;padding-bottom:32px;border-bottom:1px solid var(--border)}
.bian-article-header h1{font-size:clamp(1.75rem,4vw,2.5rem);margin-bottom:16px}
.bian-article-meta{
  display:flex;gap:20px;flex-wrap:wrap;font-size:0.85rem;color:var(--text-muted)
}
.bian-article-body{line-height:1.9}
.bian-article-body h2{
  font-size:1.35rem;margin:40px 0 16px;padding-bottom:8px;
  border-bottom:1px solid var(--border)
}
.bian-article-body h3{font-size:1.1rem;margin:28px 0 12px}
.bian-article-body p{margin-bottom:20px;color:#c8c8c8}
.bian-article-body ul,.bian-article-body ol{margin-bottom:20px;padding-left:24px}
.bian-article-body li{margin-bottom:8px;color:#c8c8c8}
.bian-article-body img{max-width:100%;height:auto;border-radius:var(--radius-sm);margin:24px 0}
.bian-article-body blockquote{
  border-left:3px solid var(--accent);padding:12px 20px;
  margin:24px 0;background:var(--accent-dim);border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  font-style:italic;color:var(--text-dim);
}
.bian-article-footer{
  margin-top:48px;padding-top:24px;border-top:1px solid var(--border);
}
.bian-article-tags{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:24px}
.bian-article-tag{
  display:inline-block;padding:4px 12px;
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:999px;font-size:0.78rem;color:var(--text-dim);
}
.bian-related-articles{margin-top:32px}
.bian-related-articles h3{font-size:1.1rem;margin-bottom:16px}
.bian-related-articles ul{list-style:none}
.bian-related-articles ul li{margin-bottom:10px}
.bian-related-articles ul li a{font-size:0.95rem}

/* === PAGINATION === */
.bian-pagination{
  display:flex;justify-content:center;gap:8px;margin-top:32px
}
.bian-pagination a,.bian-pagination span{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:40px;height:40px;padding:0 12px;
  border:1px solid var(--border);border-radius:var(--radius-sm);
  font-size:0.9rem;color:var(--text-dim);transition:all .2s;
}
.bian-pagination a:hover{border-color:var(--accent);color:var(--accent)}
.bian-pagination .bian-current{background:var(--accent);color:#0a0a0a;border-color:var(--accent);font-weight:700}
.bian-pagination .bian-disabled{opacity:0.3;pointer-events:none}

/* === 404 === */
.bian-error-page{text-align:center;padding:100px 0}
.bian-error-page h1{font-size:6rem;color:var(--accent);line-height:1}
.bian-error-page p{color:var(--text-dim);font-size:1.1rem;margin:16px 0 32px}
.bian-error-links{display:flex;justify-content:center;gap:16px;flex-wrap:wrap}

/* === SCROLL REVEAL === */
.bian-reveal{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
.bian-reveal.bian-visible{opacity:1;transform:translateY(0)}

/* === RISK WARNING === */
.bian-risk-warning{
  background:rgba(255,255,255,0.04);border:1px solid #f5f5f5;
  border-radius:var(--radius-sm);padding:16px 20px;
  font-size:0.85rem;color:var(--text-dim);line-height:1.6;margin-top:32px;
}
.bian-risk-warning strong{color:var(--accent)}

/* === SECTION DIVIDER (subtle) === */
.bian-section-divider{height:1px;background:var(--border);max-width:var(--max-w);margin:0 auto}

/* === RESPONSIVE === */
@media (max-width:768px){
  .bian-nav-links{display:none}
  .bian-nav-links.bian-open{
    display:flex;flex-direction:column;
    position:absolute;top:var(--header-h);left:0;right:0;
    background:rgba(10,10,10,0.98);backdrop-filter:blur(16px);
    padding:24px;gap:20px;border-bottom:1px solid var(--border);
  }
  .bian-nav-toggle{display:block}
  .bian-hero .bian-container{grid-template-columns:1fr;gap:40px}
  .bian-hero-visual{}
  .bian-footer-grid{grid-template-columns:1fr 1fr;gap:32px}
  .bian-article-list-item{grid-template-columns:1fr}
}
@media (max-width:480px){
  .bian-hero{padding:48px 0 56px}
  .bian-hero-ctas{flex-direction:column}
  .bian-section{padding:56px 0}
  .bian-stats-grid{grid-template-columns:1fr 1fr}
  .bian-footer-grid{grid-template-columns:1fr}
  .bian-pagination a,.bian-pagination span{min-width:36px;height:36px;font-size:0.8rem}
  .bian-news-grid{grid-template-columns:1fr}
  .bian-guide-grid{grid-template-columns:1fr}
}

/* === NAV LOGO IMG === */
.bian-nav-logo img{display:block;height:36px;width:auto}
.bian-footer-brand .bian-nav-logo img{height:32px}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .bian-reveal{opacity:1;transform:none;transition:none}
  .bian-btn-primary,.bian-btn-outline,.bian-nav-cta,.feat-card,.bt-news-row,.bt-guide-row{transition:none}
  .bian-btn-primary:hover,.bian-btn-outline:hover,.bian-nav-cta:hover,.feat-card:hover{transform:none;box-shadow:none}
}

/* === MONO DIGITS === */
.num{font-family:Consolas,'Roboto Mono',Menlo,monospace;font-variant-numeric:tabular-nums}

/* === BRUTALIST FRAME === */
.bian-site-nav{border-bottom:1px solid #f5f5f5}
.bian-section{border-bottom:1px solid #f5f5f5;padding:96px 0}
.bian-section-title::before{content:'■ ';font-size:0.65em;vertical-align:0.1em}
.bian-site-footer{border-top:1px solid #f5f5f5;border-bottom:none}
.bian-news-card{border:1px solid #f5f5f5;border-radius:0}
.bian-breadcrumb{border-bottom:1px solid #f5f5f5;padding:14px 0}
.bian-article-list-item{border-bottom:1px solid #f5f5f5}
.bian-article-header{border-bottom:1px solid #f5f5f5}
.bian-article-body h2{border-bottom:1px solid #f5f5f5}
.bian-article-body img{border-radius:0}
.bian-article-body blockquote{border-radius:0}
.bian-article-footer{border-top:1px solid #f5f5f5}
.bian-article-tag{border-radius:0}
.bian-footer-bottom{border-top:1px solid #f5f5f5}
.bian-risk-warning{border-radius:0}
.bian-pagination a,.bian-pagination span{border:1px solid #f5f5f5;border-radius:0;min-width:44px;height:44px}
.bian-pagination .bian-current{border-radius:0}
.bian-nav-cta{min-height:44px}

/* === BUTTONS (square + soft glow) === */
.bian-btn-primary{border:1px solid #f5f5f5;border-radius:0;font-weight:900}
.bian-btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 30px var(--accent-glow);color:#0a0a0a}
.bian-btn-outline{border:1px solid #f5f5f5;border-radius:0;color:#f5f5f5;font-weight:900}
.bian-btn-outline:hover{border-color:#f5f5f5;background:#f5f5f5;color:#0a0a0a}
.bian-nav-cta{border-radius:0;font-weight:900;border:1px solid #f5f5f5}
.bian-section-more{text-align:center;margin-top:36px}

/* === HERO + WALLET PANEL === */
.bt-hero{padding:96px 0 88px}
.bt-hero .bian-hero-content{padding-right:8px}
.wl-panel{border:1px solid #f5f5f5;background:#121212;max-width:420px;justify-self:end;width:100%}
.wl-head{display:flex;justify-content:space-between;align-items:center;padding:14px 16px;border-bottom:1px solid #f5f5f5}
.wl-name{font-weight:900;font-size:0.95rem}
.wl-net{font-size:0.72rem;border:1px solid #f5f5f5;padding:2px 8px;font-weight:700}
.wl-bal{padding:20px 16px;border-bottom:1px solid #f5f5f5}
.wl-bal-num{font-size:1.7rem;font-weight:900;letter-spacing:-0.01em}
.wl-bal-num b{color:#a3a3a3;font-size:1rem}
.wl-bal-usd{font-size:0.8rem;color:#a3a3a3;margin-top:6px}
.wl-asset-row{display:grid;grid-template-columns:1fr auto;gap:12px;padding:10px 16px;border-bottom:1px solid #f5f5f5;font-size:0.85rem;color:#a3a3a3}
.wl-asset-row .num{color:#f5f5f5}
.wl-actions{display:grid;grid-template-columns:1fr 1fr;border-bottom:1px solid #f5f5f5}
.wl-btn{padding:14px;text-align:center;font-weight:900;font-size:0.95rem}
.wl-btn.solid{background:#f5f5f5;color:#0a0a0a}
.wl-btn.ghost{border-left:1px solid #f5f5f5;color:#f5f5f5}
.wl-addr{padding:12px 16px;font-size:0.78rem;display:flex;justify-content:space-between;gap:8px;color:#a3a3a3}
.wl-addr .copy{color:#f5f5f5;font-weight:700;white-space:nowrap}

/* === TICKER === */
.ticker{border-bottom:1px solid #f5f5f5;padding:10px 0;overflow:hidden}
.ticker-inner{display:flex;gap:0}
.ticker-item{padding:0 24px;border-left:1px solid #f5f5f5;font-size:0.82rem;white-space:nowrap}
.ticker-item:first-child{border-left:none;padding-left:0}
.ticker-item b{font-weight:700;margin-left:8px}

/* === STEPS === */
.steps{display:grid;grid-template-columns:repeat(3,1fr);border:1px solid #f5f5f5}
.step{padding:36px 30px;border-right:1px solid #f5f5f5}
.step:last-child{border-right:none}
.step-num{font-size:3.6rem;font-weight:900;line-height:1}
.step h3{margin:14px 0 8px;font-size:1.05rem}
.step p{color:#a3a3a3;font-size:0.88rem;line-height:1.6}

/* === FEAT GRID (invert hover) === */
.feat-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px}
.feat-card{border:1px solid #f5f5f5;padding:34px 30px;transition:background .15s,color .15s}
.feat-card:hover{background:#f5f5f5}
.feat-card h3{font-size:1.05rem;margin-bottom:8px;transition:color .15s}
.feat-card:hover h3{color:#0a0a0a}
.feat-card p{color:#a3a3a3;font-size:0.88rem;line-height:1.6;transition:color .15s}
.feat-card:hover p{color:#1a1a1a}

/* === DAPP BAND === */
.dapp-band{display:grid;grid-template-columns:repeat(4,1fr);border:none;border-top:1px solid #f5f5f5;border-bottom:1px solid #f5f5f5}
.dapp-item{padding:26px;border-right:1px solid #f5f5f5}
.dapp-item:last-child{border-right:none}
.dapp-name{font-weight:900}
.dapp-count{font-family:Consolas,'Roboto Mono',Menlo,monospace;color:#a3a3a3;margin-top:4px;font-size:0.85rem}

/* === CHECK LIST === */
.check-list{border-top:1px solid #f5f5f5}
.check-item{border-bottom:1px solid #f5f5f5;padding:20px 0;display:flex;gap:14px;font-size:0.95rem;align-items:baseline}
.check-item::before{content:'■';font-size:0.7em;flex-shrink:0}

/* === NEWS ROWS === */
.bt-news{border:1px solid #f5f5f5}
.bt-news-row{display:grid;grid-template-columns:200px 1fr;gap:24px;padding:26px 24px;border-bottom:1px solid #f5f5f5;transition:background .15s}
.bt-news-row:last-child{border-bottom:none}
.bt-news-row:hover{background:#121212}
.bt-news-row img{width:100%;aspect-ratio:16/9;object-fit:cover;border:1px solid #f5f5f5}
.bt-news-row h3{font-size:1rem;margin-bottom:6px}
.bt-news-row h3 a{color:#f5f5f5}
.bt-news-row p{font-size:0.86rem;color:#a3a3a3;line-height:1.55;margin-bottom:8px}
.bt-news-row time{font-size:0.76rem;color:#737373}

/* === GUIDE ROWS === */
.bt-guide{border:1px solid #f5f5f5}
.bt-guide-row{display:grid;grid-template-columns:56px 1fr 2fr 96px;gap:24px;align-items:center;padding:22px 24px;border-bottom:1px solid #f5f5f5;transition:background .15s}
.bt-guide-row:last-child{border-bottom:none}
.bt-guide-row:hover{background:#121212}
.bt-guide-idx{font-size:1.5rem;font-weight:900;color:#737373}
.bt-guide-row h3{font-size:0.98rem}
.bt-guide-row h3 a{color:#f5f5f5}
.bt-guide-row p{font-size:0.84rem;color:#a3a3a3;line-height:1.55;margin:0;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.bt-guide-row time{font-size:0.76rem;color:#737373;text-align:right}

/* === RESPONSIVE === */
@media (max-width:768px){
  .bian-section{padding:64px 0}
  .bt-hero{padding:64px 0 56px}
  .bt-hero .bian-container{grid-template-columns:1fr;gap:28px}
  .wl-panel{justify-self:stretch;max-width:none}
  .steps{grid-template-columns:1fr}
  .step{border-right:none;border-bottom:1px solid #f5f5f5}
  .step:last-child{border-bottom:none}
  .feat-grid{grid-template-columns:1fr}
  .dapp-band{grid-template-columns:1fr 1fr}
  .dapp-item:nth-child(2){border-right:none}
  .dapp-item:nth-child(-n+2){border-bottom:1px solid #f5f5f5}
  .bt-news-row{grid-template-columns:1fr;gap:12px}
  .bt-news-row time{font-size:0.875rem}
  .bt-guide-row{grid-template-columns:1fr;gap:8px;padding:14px 16px}
  .bt-guide-row time{text-align:left;font-size:0.875rem}
  .bt-guide-row p{font-size:0.875rem}
  .check-item{font-size:0.875rem}
  .step p{font-size:0.875rem}
  .feat-card p{font-size:0.875rem}
  .ticker-item{font-size:0.875rem}
  .wl-net{font-size:0.875rem}
  .wl-addr{font-size:0.875rem}
  .wl-bal-usd{font-size:0.875rem}
  .dapp-count{font-size:0.875rem}
  .bian-footer-bottom{font-size:0.875rem}
  .bian-article-list-date{font-size:0.875rem}
  .bian-article-tag{font-size:0.875rem}
  .bian-nav-links a{display:block;padding:12px 0}
}
