:root {
  --bg:       #0a0b0d;
  --surface:  #111318;
  --border:   #1e2128;
  --amber:    #f5a623;
  --amber-dim:#b8771a;
  --red:      #e8443a;
  --text:     #e8e9ec;
  --muted:    #6b7280;
  --card:     #13151b;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,11,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: flex; align-items: center; gap: 2rem;
  height: 64px;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 2px;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.nav-logo .logo-icon {
  width: 28px; height: 28px;
  background: var(--amber);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: inline-block;
  animation: pulse-logo 3s ease-in-out infinite;
}
@keyframes pulse-logo { 0%,100%{opacity:1} 50%{opacity:0.7} }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin-left: auto; }
.nav-links li a {
  background: none; border: none;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); padding: 0.45rem 0.9rem;
  border-radius: 6px; cursor: pointer;
  transition: color 0.2s, background 0.2s;
  text-decoration: none; display: inline-block;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--text); background: var(--border); }
.nav-links li a.nav-cta { color: var(--bg); background: var(--amber); font-weight: 600; }
.nav-links li a.nav-cta:hover { background: #ffc045; }

/* BUTTONS */
.btn-primary {
  padding: 0.85rem 2rem; background: var(--amber); color: var(--bg);
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: 8px; cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-primary:hover { background: #ffc045; transform: translateY(-2px); }
.btn-ghost {
  padding: 0.85rem 2rem; background: transparent; color: var(--text);
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--border); border-radius: 8px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--muted); background: var(--surface); transform: translateY(-2px); }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem clamp(1rem, 5vw, 5rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem;
  letter-spacing: 2px; color: var(--muted);
  display: flex; align-items: center; gap: 6px; text-decoration: none;
}
.footer-logo .logo-icon-sm {
  width: 18px; height: 18px; background: var(--amber-dim);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.footer-text { font-size: 0.72rem; color: var(--muted); text-align: center; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { font-size: 0.72rem; color: var(--muted); text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* SECTIONS */
.section { padding: clamp(3rem, 8vh, 5rem) clamp(1rem, 5vw, 5rem); }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 2rem; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.section-title span { display: block; font-size: 0.7rem; letter-spacing: 0.15em; color: var(--amber); font-family: 'Sora', sans-serif; font-weight: 600; margin-bottom: 4px; }
.see-all { background: none; border: none; font-family: 'Sora', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); cursor: pointer; transition: opacity 0.2s; text-decoration: none; }
.see-all:hover { opacity: 0.7; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent); margin: 0 clamp(1rem, 5vw, 5rem); }

/* HERO */
.hero { position: relative; min-height: 88vh; display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 8vh, 6rem) clamp(1rem, 5vw, 5rem); overflow: hidden; }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%); opacity: 0.4; }
.hero-glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%); top: -200px; right: -150px; pointer-events: none; }
.hero-glow-2 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(232,68,58,0.08) 0%, transparent 70%); bottom: 0; left: 10%; pointer-events: none; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.3); border-radius: 99px; padding: 6px 14px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); width: fit-content; margin-bottom: 1.5rem; animation: fadeUp 0.6s ease both; }
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(4rem, 11vw, 9rem); line-height: 0.92; letter-spacing: 2px; color: var(--text); max-width: 900px; animation: fadeUp 0.6s 0.1s ease both; }
.hero h1 span { color: var(--amber); }
.hero-sub { margin-top: 1.5rem; font-size: clamp(0.95rem, 1.5vw, 1.1rem); color: var(--muted); max-width: 520px; font-weight: 300; animation: fadeUp 0.6s 0.2s ease both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; animation: fadeUp 0.6s 0.3s ease both; }

/* CATEGORIES */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.cat-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem 1.25rem; cursor: pointer; transition: border-color 0.2s, transform 0.2s, background 0.2s; position: relative; overflow: hidden; text-decoration: none; display: block; }
.cat-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.cat-card:hover { border-color: var(--amber-dim); transform: translateY(-4px); background: #15181f; }
.cat-card:hover::after { transform: scaleX(1); }
.cat-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.cat-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text); }
.cat-count { font-size: 0.72rem; color: var(--muted); margin-top: 4px; }

/* FEATURED ARTICLES */
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1.25rem; }
.article-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color 0.2s, transform 0.2s; cursor: pointer; position: relative; text-decoration: none; display: block; }
.article-card:hover { border-color: rgba(245,166,35,0.4); transform: translateY(-3px); }
.article-card.large { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.article-img { background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: 5rem; min-height: 180px; position: relative; overflow: hidden; }
.article-card.large .article-img { min-height: 260px; font-size: 7rem; }
.article-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(245,166,35,0.08), transparent 60%); }
.article-body { padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; }
.article-badge { display: inline-block; background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.25); color: var(--amber); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 10px; border-radius: 99px; margin-bottom: 0.75rem; width: fit-content; }
.article-badge.red { background: rgba(232,68,58,0.12); border-color: rgba(232,68,58,0.25); color: var(--red); }
.article-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 700; line-height: 1.3; color: var(--text); }
.article-card.large .article-title { font-size: 1.7rem; }
.article-meta { font-size: 0.7rem; color: var(--muted); margin-top: 1rem; display: flex; gap: 1rem; align-items: center; }
.article-meta .dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; }

/* WHY CARDS */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.why-card { padding: 2rem 1.5rem; border: 1px solid var(--border); border-radius: 14px; position: relative; overflow: hidden; }
.why-card::before { content: attr(data-n); position: absolute; top: -10px; right: 16px; font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: var(--border); line-height: 1; user-select: none; }
.why-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.why-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text); margin-bottom: 0.5rem; }
.why-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* NEWSLETTER */
.newsletter { margin: 0 clamp(1rem, 5vw, 5rem); margin-bottom: clamp(3rem, 6vh, 5rem); padding: 3rem 2.5rem; background: linear-gradient(135deg, #13151b 0%, #1a1c22 100%); border: 1px solid var(--border); border-radius: 20px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; top: -60px; right: -60px; width: 250px; height: 250px; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%); pointer-events: none; }
.newsletter-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 2px; }
.newsletter-text p { font-size: 0.83rem; color: var(--muted); margin-top: 4px; }
.newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.newsletter-form input { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 0.75rem 1.25rem; color: var(--text); font-family: 'Sora', sans-serif; font-size: 0.82rem; width: 240px; outline: none; transition: border-color 0.2s; }
.newsletter-form input:focus { border-color: var(--amber); }
.newsletter-form input::placeholder { color: var(--muted); }

/* ARTICLES LIST PAGE */
.articles-hero { padding: clamp(3rem, 8vh, 6rem) clamp(1rem, 5vw, 5rem) 2rem; border-bottom: 1px solid var(--border); }
.articles-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 8vw, 6rem); letter-spacing: 2px; line-height: 1; animation: fadeUp 0.5s ease both; }
.articles-hero h1 span { color: var(--amber); }
.articles-hero p { color: var(--muted); font-size: 0.9rem; margin-top: 0.75rem; animation: fadeUp 0.5s 0.1s ease both; }
.articles-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.5rem; animation: fadeUp 0.5s 0.2s ease both; }
.filter-btn { background: var(--card); border: 1px solid var(--border); border-radius: 99px; padding: 0.4rem 1rem; font-family: 'Sora', sans-serif; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--amber); border-color: var(--amber); color: var(--bg); font-weight: 700; }
.articles-content { padding: clamp(2rem, 5vh, 4rem) clamp(1rem, 5vw, 5rem); }
.articles-list { display: flex; flex-direction: column; gap: 1.25rem; }
.alist-card { display: flex; gap: 0; background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; cursor: pointer; transition: border-color 0.2s, transform 0.2s; text-decoration: none; }
.alist-card:hover { border-color: rgba(245,166,35,0.45); transform: translateY(-3px); }
.alist-img { min-width: 140px; width: 140px; background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; overflow: hidden; flex-shrink: 0; }
.alist-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(245,166,35,0.07), transparent 60%); }
.alist-body { padding: 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.alist-meta-top { display: flex; align-items: center; gap: 1rem; }
.alist-date { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.06em; }
.alist-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.35rem; font-weight: 700; color: var(--text); line-height: 1.25; }
.alist-excerpt { font-size: 0.8rem; color: var(--muted); line-height: 1.75; }
.alist-footer { display: flex; align-items: center; gap: 1rem; margin-top: 0.25rem; }
.alist-read { font-size: 0.75rem; font-weight: 700; color: var(--amber); letter-spacing: 0.06em; }
.alist-tag { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--border); padding: 2px 8px; border-radius: 99px; }

/* ARTICLE PAGE */
.article-page-wrap { max-width: 820px; margin: 0 auto; padding: clamp(2rem, 6vh, 5rem) clamp(1rem, 4vw, 2rem); }
.art-back { display: inline-flex; align-items: center; gap: 6px; background: none; border: none; font-family: 'Sora', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); cursor: pointer; transition: color 0.2s; margin-bottom: 2rem; text-decoration: none; }
.art-back:hover { color: var(--text); }
.art-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.art-h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 7vw, 5rem); line-height: 0.95; letter-spacing: 1px; color: var(--text); margin-bottom: 1.25rem; animation: fadeUp 0.5s ease both; }
.art-h1 span { color: var(--amber); }
.art-intro { font-size: 1rem; color: var(--muted); line-height: 1.8; border-left: 3px solid var(--amber); padding-left: 1.25rem; margin-bottom: 2.5rem; animation: fadeUp 0.5s 0.1s ease both; }
.art-divider { height: 1px; background: linear-gradient(90deg, var(--amber), var(--border) 60%, transparent); margin: 2.5rem 0; }
.art-h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text); margin-bottom: 1rem; }
.art-h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); margin: 1.5rem 0 0.6rem; }
.art-p { font-size: 0.88rem; color: #b0b5bf; line-height: 1.9; margin-bottom: 1rem; }

/* COMPARE COLS */
.compare-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.compare-col { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; }
.compare-col.led { border-top: 3px solid #3b8eea; }
.compare-col.oled { border-top: 3px solid var(--amber); }
.compare-col-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 1px; margin-bottom: 1rem; }
.compare-col.led .compare-col-title { color: #3b8eea; }
.compare-col.oled .compare-col-title { color: var(--amber); }
.pros-cons-block { margin-bottom: 1rem; }
.pros-cons-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 6px; }
.pros-cons-label.pros { color: #4ade80; }
.pros-cons-label.cons { color: var(--red); }
.pros-cons-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.pros-cons-list li { font-size: 0.8rem; color: #b0b5bf; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.pros-cons-list li::before { flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 900; margin-top: 1px; }
.pros-cons-list.pros li::before { content: '✓'; background: rgba(74,222,128,0.15); color: #4ade80; }
.pros-cons-list.cons li::before { content: '✕'; background: rgba(232,68,58,0.15); color: var(--red); }

/* VERDICT */
.verdict-box { background: linear-gradient(135deg, #13151b, #1a1c22); border: 1px solid rgba(245,166,35,0.3); border-left: 4px solid var(--amber); border-radius: 14px; padding: 1.75rem; margin: 2rem 0; }
.verdict-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.6rem; }
.verdict-box p { font-size: 0.88rem; color: #b0b5bf; line-height: 1.85; }

/* PRODUCT CARDS */
.product-section-title { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 2px; margin-bottom: 0.25rem; }
.product-section-sub { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-bottom: 2.5rem; }
.product-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.2s; text-decoration: none; }
.product-card:hover { border-color: rgba(245,166,35,0.4); transform: translateY(-4px); }
.product-card-img { background: linear-gradient(135deg, #0e1015 0%, #13151b 100%); height: 130px; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; overflow: hidden; padding: 8px; }
.product-card-img img { max-height: 112px; max-width: 100%; object-fit: contain; position: relative; z-index: 1; transition: transform 0.3s ease; }
.product-card-img .img-fallback { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 6px; z-index: 1; position: relative; }
.product-card-img .img-fallback .fallback-icon { font-size: 2.5rem; opacity: 0.5; }
.product-card-img .img-fallback .fallback-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.product-card-img.show-fallback img { display: none; }
.product-card-img.show-fallback .img-fallback { display: flex; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13,15,19,0.5)); z-index: 2; pointer-events: none; }
.product-card-type { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.75rem 1rem 0; }
.product-card-type.led-type { color: #3b8eea; }
.product-card-type.oled-type { color: var(--amber); }
.product-card-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text); padding: 0.3rem 1rem 0; line-height: 1.3; }
.product-card-spec { font-size: 0.72rem; color: var(--muted); padding: 0.3rem 1rem 0; line-height: 1.6; flex: 1; }
.product-card-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--text); padding: 0.5rem 1rem 0; letter-spacing: 1px; }
.product-card-btn { margin: 0.75rem; background: var(--amber); color: var(--bg); text-align: center; padding: 0.6rem; border-radius: 8px; font-family: 'Sora', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; transition: background 0.2s; }
.product-card:hover .product-card-btn { background: #ffc045; }
.affiliate-note { font-size: 0.7rem; color: var(--muted); text-align: center; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 700px) {
  .featured-grid { grid-template-columns: 1fr; }
  .article-card.large { grid-column: 1; grid-template-columns: 1fr; }
  .compare-cols { grid-template-columns: 1fr; }
  nav { gap: 1rem; }
  .nav-links { gap: 0; }
  .nav-links li a { padding: 0.4rem 0.6rem; font-size: 0.7rem; }
  .alist-img { min-width: 90px; width: 90px; font-size: 2.5rem; }
}
