/* =============================================
   Binance Editorial Theme v2
   Dark header · Warm paper body · Orange accent
   Dropdown nav · Filter bar · Featured article
   ============================================= */

/* --- Reset & Base ----------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: #f9f7f4;
  color: #1c1917;
  line-height: 1.75;
}
a { color: #c2410c; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* --- Layout containers ----------------------- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: #18181b;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid #27272a;
}

.site-header__inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 0;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.site-logo {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fafafa;
  letter-spacing: -0.03em;
  white-space: nowrap;
  margin-right: 32px;
  flex-shrink: 0;
}
.site-logo span { color: #f97316; }
.site-logo:hover { text-decoration: none; color: #fafafa; }

/* Nav wrapper */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

/* Nav items (with or without dropdown) */
.nav-item {
  position: relative;
  list-style: none;
}

.nav-item > a,
a.nav-item,
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  height: 64px;
  color: #a1a1aa;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  border-bottom: 3px solid transparent;
  text-decoration: none;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
}
.nav-item > a:hover,
a.nav-item:hover,
.nav-link:hover,
.nav-item.open > a,
.nav-item.open .nav-link {
  color: #fafafa;
  border-bottom-color: #f97316;
  text-decoration: none;
}

/* Dropdown arrow */
.nav-arrow {
  font-size: 0.65rem;
  opacity: 0.7;
  transition: transform 0.2s;
}
.nav-item.open .nav-arrow { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #27272a;
  min-width: 200px;
  border-radius: 0 0 8px 8px;
  padding: 8px 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  border-top: 2px solid #f97316;
  z-index: 300;
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown { display: block; }

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  color: #d4d4d8;
  font-size: 0.84rem;
  height: auto;
  border-bottom: none;
  white-space: nowrap;
  transition: background 0.12s, color 0.12s;
}
.nav-dropdown a:hover {
  background: rgba(249,115,22,0.12);
  color: #fff;
  text-decoration: none;
  border-bottom-color: transparent;
}
.nav-dropdown .dropdown-label {
  display: block;
  padding: 8px 20px 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #71717a;
}

/* Language switcher (in nav) */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  border-left: 1px solid #3f3f46;
  padding-left: 14px;
  margin-left: 8px;
  height: 64px;
}
.lang-switcher a {
  color: #71717a;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 4px 6px;
  border-radius: 4px;
  height: auto;
  border-bottom: none;
  transition: color 0.15s, background 0.15s;
}
.lang-switcher a:hover,
.lang-switcher a.active { color: #fafafa; background: rgba(255,255,255,0.08); text-decoration: none; }

/* Header CTA buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
  flex-shrink: 0;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #a1a1aa;
  padding: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  text-decoration: none !important;
  border: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); text-decoration: none !important; }

.btn--register { background: #f97316; color: #fff; }
.btn--register:hover { background: #ea6c0e; color: #fff; }

.btn--download { background: rgba(255,255,255,0.08); color: #e4e4e7; border: 1px solid #3f3f46; }
.btn--download:hover { background: rgba(255,255,255,0.14); color: #fafafa; }

.btn--apk { background: #f97316; color: #fff; }
.btn--apk:hover { background: #ea6c0e; color: #fff; }

.btn--web { background: rgba(255,255,255,0.08); color: #e4e4e7; border: 1px solid #3f3f46 !important; }
.btn--web:hover { background: rgba(255,255,255,0.14); color: #fafafa; }

.btn--ghost { background: transparent; color: #f97316; border: 2px solid #f97316; }
.btn--ghost:hover { background: #f97316; color: #fff; }

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announce-bar {
  background: #f97316;
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 7px 24px;
  line-height: 1.3;
}
.announce-bar a { color: #fff3e0; font-weight: 700; text-decoration: underline; }
.announce-bar a:hover { color: #fff; }

/* =============================================
   CATEGORY FILTER BAR
   ============================================= */
.filter-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7e4;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }

.filter-bar__inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #78716c;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  flex-shrink: 0;
  text-decoration: none;
}
.filter-chip:hover { color: #1c1917; text-decoration: none; border-bottom-color: #e5e7e4; }
.filter-chip.active { color: #c2410c; border-bottom-color: #c2410c; }

/* =============================================
   PAGE WRAPPER
   ============================================= */
.page-wrapper { padding: 40px 0 72px; }

/* =============================================
   PAGE HEADER (listing pages title area)
   ============================================= */
.page-header {
  border-bottom: 2px solid #1c1917;
  padding-bottom: 16px;
  margin-bottom: 36px;
}
.page-header__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c2410c;
  margin-bottom: 6px;
}
.page-header__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #1c1917;
}
.page-header__meta { font-size: 0.87rem; color: #78716c; margin-top: 8px; }

/* =============================================
   FEATURED ARTICLE (homepage top)
   ============================================= */
.featured-article {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-left: 4px solid #c2410c;
  border-radius: 0 8px 8px 0;
  padding: 28px 32px;
  margin-bottom: 8px;
  position: relative;
}
.featured-article::before {
  content: "FEATURED";
  position: absolute;
  top: -1px;
  right: 20px;
  background: #c2410c;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 0 0 4px 4px;
}
.featured-article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.featured-article__title {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.featured-article__title a { color: #1c1917; }
.featured-article__title a:hover { color: #c2410c; text-decoration: none; }
.featured-article__excerpt {
  font-size: 0.97rem;
  color: #57534e;
  line-height: 1.65;
  margin-bottom: 14px;
}
.featured-article__meta {
  font-size: 0.8rem;
  color: #78716c;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.featured-article__read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: #c2410c;
  margin-left: auto;
}
.featured-article__read-more:hover { text-decoration: underline; }
.sep { color: #d6d3d1; }

/* =============================================
   ARTICLE LIST
   ============================================= */
.post-list { list-style: none; }

.post-list__item {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 6px;
  padding: 22px 24px;
  margin-bottom: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.post-list__item:hover {
  border-color: #d6d3d1;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.post-list__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.tag-chip {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #c2410c;
  background: #fff7f5;
  border: 1px solid #fed7aa;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
.tag-chip:hover { background: #ffedd5; text-decoration: none; color: #9a3412; }

.post-list__title {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.post-list__title a { color: #1c1917; transition: color 0.15s; }
.post-list__title a:hover { color: #c2410c; text-decoration: none; }

.post-list__excerpt {
  font-size: 0.92rem;
  color: #57534e;
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-list__meta {
  font-size: 0.78rem;
  color: #a8a29e;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Section divider in list */
.list-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a8a29e;
  padding: 20px 0 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.list-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e7e5e4;
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pagination__inner {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination__pages {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid #e7e5e4;
  background: #fff;
  color: #1c1917;
  transition: all 0.15s;
}
.pagination a:hover { background: #fff7f5; border-color: #c2410c; text-decoration: none; }
.pagination span.current,
.pagination .pagination__page--current { background: #c2410c; color: #fff; border-color: #c2410c; }
.pagination__btn--disabled { opacity: 0.4; cursor: default; pointer-events: none; }

/* =============================================
   ARTICLE PAGE (POST)
   ============================================= */
.post-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e7e5e4;
}
.post-header__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.post-header__title {
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.035em;
  color: #1c1917;
  margin-bottom: 16px;
}
.post-header__meta {
  font-size: 0.83rem;
  color: #78716c;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Inline TOC */
.toc-box {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-left: 3px solid #c2410c;
  border-radius: 0 6px 6px 0;
  padding: 18px 22px;
  margin-bottom: 28px;
}
.toc-box__title {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #78716c;
  margin-bottom: 10px;
}
.toc-box ol { padding-left: 18px; }
.toc-box li { margin-bottom: 5px; }
.toc-box a { font-size: 0.88rem; color: #44403c; }
.toc-box a:hover { color: #c2410c; }

/* Post body */
.post-body { font-size: 1.04rem; line-height: 1.82; color: #1c1917; }
.post-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 2.2em 0 0.6em;
  padding-bottom: 8px;
  border-bottom: 2px solid #f5f5f4;
  color: #1c1917;
}
.post-body h3 { font-size: 1.18rem; font-weight: 700; margin: 1.8em 0 0.5em; }
.post-body h4 { font-size: 1rem; font-weight: 700; color: #44403c; margin: 1.5em 0 0.4em; }
.post-body p { margin-bottom: 1.2em; }
.post-body ul, .post-body ol { padding-left: 1.6em; margin-bottom: 1.2em; }
.post-body li { margin-bottom: 0.35em; }
.post-body strong { font-weight: 700; color: #0c0a09; }
.post-body code {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.87em;
  background: #f5f5f4;
  padding: 1px 5px;
  border-radius: 3px;
  color: #c2410c;
}
.post-body blockquote {
  border-left: 3px solid #c2410c;
  padding: 8px 20px;
  margin: 1.4em 0;
  background: #fff7f5;
  border-radius: 0 4px 4px 0;
}
.post-body blockquote p { margin: 0; color: #57534e; font-style: italic; }
.post-body a { color: #c2410c; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.post-body a:hover { color: #9a3412; }
.post-body table { width: 100%; border-collapse: collapse; font-size: 0.92rem; margin-bottom: 1.4em; }
.post-body th { background: #1c1917; color: #fafaf9; padding: 9px 14px; text-align: left; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.post-body td { padding: 9px 14px; border-bottom: 1px solid #e7e5e4; }
.post-body tr:nth-child(even) td { background: #fafaf9; }

/* =============================================
   CTA BOX (inline in article)
   ============================================= */
.cta-box {
  background: linear-gradient(135deg, #fff7f5 0%, #fff 100%);
  border: 2px solid #fed7aa;
  border-radius: 10px;
  padding: 28px 32px;
  margin: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: #f97316;
}
.cta-box__title { font-size: 1.2rem; font-weight: 800; color: #1c1917; margin-bottom: 8px; }
.cta-box__desc { font-size: 0.9rem; color: #57534e; margin-bottom: 20px; line-height: 1.6; }
.cta-box__btns { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.btn--cta-register { background: #f97316; color: #fff; font-size: 0.9rem; padding: 11px 24px; }
.btn--cta-register:hover { background: #ea6c0e; color: #fff; }
.btn--cta-apk { background: #1c1917; color: #fafaf9; font-size: 0.9rem; padding: 11px 24px; }
.btn--cta-apk:hover { background: #292524; color: #fafaf9; }

/* =============================================
   DOWNLOAD STRIP
   ============================================= */
.download-strip {
  background: #1c1917;
  color: #fafaf9;
  border-radius: 10px;
  padding: 24px 28px;
  margin: 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.download-strip__text h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.download-strip__text p { font-size: 0.82rem; color: #a8a29e; }
.download-strip__btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

/* =============================================
   RELATED POSTS
   ============================================= */
.related-posts {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 2px solid #1c1917;
}
.related-posts__title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #78716c;
  margin-bottom: 16px;
}
.related-list { list-style: none; }
.related-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e7e5e4;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.related-list li::before { content: "→"; color: #c2410c; font-weight: 700; flex-shrink: 0; }
.related-list a { color: #1c1917; font-size: 0.93rem; font-weight: 500; line-height: 1.4; }
.related-list a:hover { color: #c2410c; text-decoration: none; }
.related-list time { margin-left: auto; font-size: 0.77rem; color: #a8a29e; white-space: nowrap; flex-shrink: 0; }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  font-size: 0.8rem;
  color: #a8a29e;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.breadcrumb a { color: #78716c; }
.breadcrumb a:hover { color: #c2410c; }
.breadcrumb__sep { color: #d6d3d1; }
.breadcrumb__current { color: #57534e; }

/* =============================================
   TAGS PAGE
   ============================================= */
.tags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.tag-card {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.tag-card:hover {
  border-color: #c2410c;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-decoration: none;
}
.tag-card__name {
  font-size: 0.96rem;
  font-weight: 600;
  color: #1c1917;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tag-card__name::before { content: "#"; color: #c2410c; font-weight: 900; }
.tag-card__count {
  font-size: 0.78rem;
  color: #a8a29e;
  background: #f9f7f4;
  padding: 2px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}

/* =============================================
   STATIC PAGES
   ============================================= */
.static-page { padding: 44px 0 72px; }
.static-page h1 { font-size: 2rem; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 2px solid #1c1917; }
.static-page h2 { font-size: 1.3rem; font-weight: 700; margin: 2em 0 0.6em; }
.static-page p { margin-bottom: 1.1em; color: #44403c; line-height: 1.75; }
.static-page ul, .static-page ol { padding-left: 1.5em; margin-bottom: 1.1em; }
.static-page li { margin-bottom: 0.4em; color: #44403c; }
.static-page a:not(.btn) { color: #c2410c; text-decoration: underline; }

.dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.dl-box { background: #fff; border: 1px solid #e7e5e4; border-radius: 10px; padding: 24px; text-align: center; }
.dl-box h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.dl-box p { font-size: 0.84rem; color: #78716c; margin-bottom: 16px; line-height: 1.5; }
.btn--full { display: block; width: 100%; text-align: center; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #18181b;
  color: #71717a;
  padding: 48px 0 24px;
  margin-top: 72px;
}
.footer-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #27272a;
  margin-bottom: 20px;
}
.footer-col h4 { font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #fafafa; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 7px; }
.footer-col a { font-size: 0.82rem; color: #52525b; transition: color 0.15s; }
.footer-col a:hover { color: #d4d4d8; text-decoration: none; }
.footer-risk { font-size: 0.77rem; color: #3f3f46; line-height: 1.55; background: #09090b; padding: 12px 16px; border-radius: 6px; margin-bottom: 16px; }
.footer-risk strong { color: #52525b; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 0.76rem; color: #3f3f46; flex-wrap: wrap; gap: 8px; }

/* =============================================
   404
   ============================================= */
.error-page { text-align: center; padding: 80px 20px; }
.error-page__code { font-size: 6rem; font-weight: 900; color: #e7e5e4; line-height: 1; margin-bottom: 16px; }
.error-page__title { font-size: 1.6rem; font-weight: 800; color: #1c1917; margin-bottom: 12px; }
.error-page__desc { color: #78716c; margin-bottom: 28px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .site-header__inner { position: relative; }

  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: #18181b;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 16px;
    border-top: 1px solid #27272a;
    gap: 0;
    z-index: 100;
    box-shadow: 0 16px 32px rgba(0,0,0,0.4);
  }
  .site-nav.open { display: flex; }

  .nav-item { width: 100%; }
  .nav-item > a,
  a.nav-item,
  .nav-link {
    height: auto;
    padding: 12px 20px;
    border-bottom: 1px solid #27272a !important;
    border-top: none;
    border-left: none;
    border-right: none;
    width: 100%;
    justify-content: space-between;
  }
  .nav-dropdown {
    position: static;
    display: none;
    background: #09090b;
    border-radius: 0;
    border-top: none;
    box-shadow: none;
    padding: 4px 0;
  }
  .nav-item.open .nav-dropdown { display: block; }
  .nav-dropdown a { padding: 10px 32px; }

  .lang-switcher {
    border-left: none;
    border-top: 1px solid #27272a;
    padding: 12px 20px;
    height: auto;
    margin-left: 0;
  }

  .nav-toggle { display: flex; }
  .header-actions .btn--download { display: none; }

  .filter-bar__inner { padding: 0 16px; }
  .filter-chip { padding: 12px 14px; font-size: 0.8rem; }
}

@media (max-width: 640px) {
  html { font-size: 16px; }
  .container { padding: 0 16px; }
  .container--wide { padding: 0 16px; }

  .page-header__title { font-size: 1.65rem; }
  .post-list__title { font-size: 1.1rem; }
  .post-header__title { font-size: 1.8rem; }
  .featured-article { padding: 20px 18px; }
  .featured-article__title { font-size: 1.35rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .dl-grid { grid-template-columns: 1fr; }
  .download-strip { flex-direction: column; text-align: center; }
  .download-strip__btns { justify-content: center; }
  .cta-box { padding: 20px 16px; }

  .tags-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .tags-grid { grid-template-columns: 1fr; }
  .featured-article::before { display: none; }
}

/* =============================================
   LANG PICKER
   ============================================= */
.lang-picker {
  position: relative;
  margin-right: 8px;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid #3f3f46;
  color: #d4d4d8;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.15s;
  white-space: nowrap;
}
.lang-btn:hover { background: rgba(255,255,255,0.14); color: #fafafa; }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #27272a;
  border: 1px solid #3f3f46;
  border-radius: 8px;
  padding: 6px 0;
  min-width: 150px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  z-index: 300;
}
.lang-picker.open .lang-dropdown { display: block; }
.lang-dropdown a {
  display: block;
  padding: 9px 16px;
  color: #d4d4d8;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.12s;
}
.lang-dropdown a:hover { background: rgba(249,115,22,0.12); color: #fff; text-decoration: none; }
.lang-dropdown a.active { color: #f97316; font-weight: 700; }

/* =============================================
   FOOTER CTA STRIP
   ============================================= */
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, #c2410c, #9a3412);
  border-radius: 10px;
  padding: 20px 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-cta__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-cta__text strong { color: #fff; font-size: 1rem; }
.footer-cta__text span { color: rgba(255,255,255,0.8); font-size: 0.84rem; }
.footer-cta__btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Footer brand adjustments */
.footer-affiliate { font-size: 0.76rem !important; color: #3f3f46 !important; }

/* Footer dl desc */
.footer-dl-desc {
  font-size: 0.79rem;
  color: #52525b;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Footer lang links */
.footer-lang {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #27272a;
}
.footer-lang a {
  font-size: 0.78rem !important;
  color: #52525b !important;
  padding: 3px 8px;
  border: 1px solid #27272a;
  border-radius: 4px;
  transition: all 0.15s;
}
.footer-lang a:hover,
.footer-lang a.active { color: #f97316 !important; border-color: #f97316; text-decoration: none; }

/* btn--sm */
.btn--sm { padding: 6px 14px; font-size: 0.78rem; }

/* Footer grid: 4 columns */
.footer-grid { grid-template-columns: 2fr 1.2fr 1fr 1.2fr; }

/* Footer logo */
.footer-logo {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fafafa;
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
  letter-spacing: -0.03em;
}
.footer-logo:hover { text-decoration: none; color: #fafafa; }

.footer-brand__desc { font-size: 0.8rem; line-height: 1.6; color: #52525b; margin-bottom: 10px; }

/* Footer trust badges */
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 12px;
}
.footer-trust span {
  font-size: 0.72rem;
  color: #71717a;
  background: #27272a;
  border: 1px solid #3f3f46;
  padding: 3px 9px;
  border-radius: 20px;
}

/* Footer download button */
.btn--footer-dl {
  background: rgba(255,255,255,0.08);
  color: #e4e4e7;
  border: 1px solid #3f3f46;
}
.btn--footer-dl:hover { background: rgba(255,255,255,0.14); color: #fafafa; }

/* Footer APK button with icon */
.footer-apk-btn { display: inline-flex; align-items: center; margin-bottom: 14px; }

/* Footer bottom disclaimer */
.footer-bottom__disclaimer { font-size: 0.74rem; color: #3f3f46; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-cta { flex-direction: column; text-align: center; }
  .footer-cta__btns { justify-content: center; }
  .lang-picker { display: none; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =============================================
   DOWNLOAD PAGE
   ============================================= */
.dl-page { padding: 36px 0 72px; }

.dl-page-header { margin-bottom: 32px; }
.dl-page-header__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f97316;
  background: #fff7f5;
  border: 1px solid #fed7aa;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.dl-page-header h1 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  padding-bottom: 16px;
  border-bottom: 2px solid #1c1917;
}
.dl-page-header__desc { font-size: 1rem; color: #57534e; margin-bottom: 16px; line-height: 1.7; }

.dl-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.dl-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Download boxes */
.dl-box { background: #fff; border: 1px solid #e7e5e4; border-radius: 12px; padding: 28px 24px; }
.dl-box--android { border-top: 3px solid #22c55e; }
.dl-box--ios { border-top: 3px solid #3b82f6; }

.dl-box__platform {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.dl-box__icon { font-size: 2.2rem; line-height: 1; }
.dl-box__platform-name { font-size: 1.1rem; font-weight: 800; color: #1c1917; }
.dl-box__platform-sub { font-size: 0.78rem; color: #78716c; margin-top: 2px; }
.dl-box__desc { font-size: 0.88rem; color: #57534e; line-height: 1.6; margin-bottom: 16px; }

.dl-main-btn { margin-bottom: 20px; padding: 13px 20px; font-size: 0.9rem; }

.dl-steps__title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #78716c;
  margin-bottom: 10px;
}
.dl-tip {
  background: #fafaf9;
  border: 1px solid #e7e5e4;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.82rem;
  color: #57534e;
  line-height: 1.55;
  margin-top: 14px;
}
.dl-tip strong { color: #a16207; }

/* Download features */
.dl-features { margin: 48px 0 40px; }
.dl-features h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e7e5e4;
}
.dl-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.dl-feature-item {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  transition: border-color 0.15s;
}
.dl-feature-item:hover { border-color: #f97316; }
.dl-feature-icon { font-size: 1.6rem; margin-bottom: 8px; }
.dl-feature-title { font-size: 0.88rem; font-weight: 700; color: #1c1917; margin-bottom: 4px; }
.dl-feature-desc { font-size: 0.78rem; color: #78716c; line-height: 1.45; }

/* Download FAQ */
.dl-faq { margin-bottom: 40px; }
.dl-faq h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e7e5e4;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid #e7e5e4;
  padding: 18px 0;
}
.faq-q {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.faq-q::before { content: "Q"; color: #f97316; font-size: 0.78rem; font-weight: 900; margin-top: 2px; flex-shrink: 0; }
.faq-a {
  font-size: 0.88rem;
  color: #57534e;
  line-height: 1.65;
  padding-left: 22px;
}

/* Download registration CTA */
.dl-reg-cta {
  background: linear-gradient(135deg, #fff7f5 0%, #fff 100%);
  border: 2px solid #fed7aa;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.dl-reg-cta__icon { font-size: 2.5rem; flex-shrink: 0; }
.dl-reg-cta__content { flex: 1; min-width: 200px; }
.dl-reg-cta__content strong { display: block; font-size: 1rem; font-weight: 800; color: #1c1917; margin-bottom: 6px; }
.dl-reg-cta__content p { font-size: 0.88rem; color: #57534e; line-height: 1.6; margin: 0; }

@media (max-width: 640px) {
  .dl-features-grid { grid-template-columns: 1fr 1fr; }
  .dl-reg-cta { flex-direction: column; text-align: center; }
  .dl-reg-cta__icon { font-size: 2rem; }
  .dl-page-header h1 { font-size: 1.65rem; }
}
@media (max-width: 400px) {
  .dl-features-grid { grid-template-columns: 1fr; }
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-page { padding: 36px 0 72px; }

.about-page-header { margin-bottom: 32px; }
.about-page-header h1 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  padding-bottom: 16px;
  border-bottom: 2px solid #1c1917;
}
.about-page-header__desc { font-size: 1rem; color: #44403c; line-height: 1.75; }

/* About stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 10px;
}
.about-stat { text-align: center; }
.about-stat__num {
  font-size: 2rem;
  font-weight: 900;
  color: #c2410c;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat__label { font-size: 0.8rem; color: #78716c; font-weight: 500; }

/* About grid header */
.about-page h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e7e5e4;
  color: #1c1917;
}

/* About principles */
.about-principles {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 10px;
  overflow: hidden;
}
.about-principle {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid #e7e5e4;
}
.about-principle:last-child { border-bottom: none; }
.about-principle__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.about-principle strong { display: block; font-size: 0.95rem; font-weight: 700; color: #1c1917; margin-bottom: 4px; }
.about-principle p { font-size: 0.86rem; color: #57534e; line-height: 1.6; margin: 0; }

@media (max-width: 640px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stat__num { font-size: 1.6rem; }
  .about-page-header h1 { font-size: 1.65rem; }
}
@media (max-width: 400px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   ABOUT & DOWNLOAD PAGE COMPONENTS
   ============================================= */
.about-intro { margin-bottom: 32px; }
.about-intro p { font-size: 1.05rem; line-height: 1.75; color: #44403c; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 36px;
}
.about-card {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  padding: 18px;
  transition: border-color 0.15s;
}
.about-card:hover { border-color: #f97316; }
.about-card__icon { font-size: 1.6rem; margin-bottom: 8px; }
.about-card__title { font-size: 0.9rem; font-weight: 700; color: #1c1917; margin-bottom: 4px; }
.about-card__desc { font-size: 0.82rem; color: #78716c; line-height: 1.5; }

.about-notice {
  background: #fff7f5;
  border: 1px solid #fed7aa;
  border-left: 4px solid #f97316;
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin: 32px 0;
}
.about-notice strong { display: block; font-size: 0.9rem; color: #c2410c; margin-bottom: 8px; }
.about-notice p { font-size: 0.88rem; color: #57534e; line-height: 1.6; margin: 0; }

.about-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
}

.lang-cards {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.lang-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #44403c;
  transition: all 0.15s;
}
.lang-card-link:hover { border-color: #f97316; color: #c2410c; text-decoration: none; }
.lang-card-link.active { border-color: #f97316; background: #fff7f5; color: #c2410c; }

.dl-box__icon { font-size: 2rem; margin-bottom: 10px; display: block; }

.dl-steps { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.dl-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: #44403c;
  line-height: 1.5;
}
.dl-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: #f97316;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 50%;
}

@media (max-width: 640px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-cta { flex-direction: column; }
}
@media (max-width: 400px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* =============================================
   HOMEPAGE — HERO
   ============================================= */
.home-hero {
  background: linear-gradient(160deg, #1c1917 0%, #27221e 100%);
  color: #fafaf9;
  padding: 56px 0 48px;
  text-align: center;
}
.home-hero__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f97316;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.3);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.home-hero__title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  color: #fafaf9;
}
.home-hero__desc {
  font-size: 1rem;
  color: #a8a29e;
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.home-hero__btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn--hero-reg {
  background: #f97316;
  color: #fff;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 8px;
}
.btn--hero-reg:hover { background: #ea6c0e; color: #fff; }
.btn--hero-dl {
  background: rgba(255,255,255,0.08);
  color: #e4e4e7;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 8px;
}
.btn--hero-dl:hover { background: rgba(255,255,255,0.14); color: #fff; }
.home-hero__stats {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  margin-top: 4px;
}
.home-hero__stats span {
  font-size: 0.82rem;
  color: #78716c;
}
.home-hero__stats strong { color: #fafaf9; font-weight: 700; }

/* =============================================
   HOMEPAGE — SECTION HEADER
   ============================================= */
.section-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1c1917;
}
.section-hd__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1c1917;
  letter-spacing: -0.02em;
}
.section-hd__more {
  font-size: 0.8rem;
  font-weight: 600;
  color: #c2410c;
}
.section-hd__more:hover { text-decoration: underline; }

/* =============================================
   HOMEPAGE — CATEGORY CARDS
   ============================================= */
.home-cats { padding: 40px 0 0; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.cat-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  padding: 14px 16px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  text-decoration: none;
}
.cat-card:hover {
  border-color: #f97316;
  box-shadow: 0 2px 12px rgba(249,115,22,0.1);
  transform: translateY(-1px);
  text-decoration: none;
}
.cat-card__icon { font-size: 1.3rem; flex-shrink: 0; }
.cat-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1c1917;
  flex: 1;
}
.cat-card__arrow {
  font-size: 0.8rem;
  color: #c2410c;
  font-weight: 700;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s;
}
.cat-card:hover .cat-card__arrow { opacity: 1; }

/* =============================================
   HOMEPAGE — FEATURED ARTICLE
   ============================================= */
.home-featured { padding: 36px 0 0; }
.featured-card {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-left: 4px solid #f97316;
  border-radius: 0 10px 10px 0;
  padding: 28px 32px;
  position: relative;
}
.featured-card__label {
  position: absolute;
  top: -1px; right: 20px;
  background: #f97316;
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 4px 4px;
}
.featured-card__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.featured-card__title {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.featured-card__title a { color: #1c1917; }
.featured-card__title a:hover { color: #c2410c; text-decoration: none; }
.featured-card__excerpt { font-size: 0.94rem; color: #57534e; line-height: 1.65; margin-bottom: 14px; }
.featured-card__meta {
  font-size: 0.8rem;
  color: #78716c;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.featured-card__read { font-weight: 700; color: #c2410c; margin-left: auto; font-size: 0.85rem; }
.featured-card__read:hover { text-decoration: underline; }

/* =============================================
   HOMEPAGE — POST GRID
   ============================================= */
.home-posts { padding: 36px 0 0; }
.post-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.post-card-sm {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  padding: 18px 20px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.post-card-sm:hover { border-color: #d6d3d1; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.post-card-sm__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 8px; }
.post-card-sm__title {
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.post-card-sm__title a { color: #1c1917; }
.post-card-sm__title a:hover { color: #c2410c; text-decoration: none; }
.post-card-sm__excerpt {
  font-size: 0.82rem;
  color: #78716c;
  line-height: 1.55;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card-sm__meta { font-size: 0.75rem; color: #a8a29e; display: flex; align-items: center; gap: 6px; }
.home-posts__more { text-align: center; margin-top: 28px; }

/* =============================================
   HOMEPAGE — BOTTOM CTA
   ============================================= */
.home-cta-section { padding: 48px 0 60px; }
.home-cta-box {
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  border-radius: 12px;
  padding: 40px 48px;
  text-align: center;
  color: #fafaf9;
}
.home-cta-box h2 {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.home-cta-box p { font-size: 0.92rem; color: #a8a29e; margin-bottom: 24px; line-height: 1.65; }
.home-cta-box__btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }


/* =============================================
   RESPONSIVE — HOMEPAGE
   ============================================= */
@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .post-grid { grid-template-columns: 1fr; }
  .home-hero__title { font-size: 1.9rem; }
}
@media (max-width: 640px) {
  .home-hero { padding: 40px 0 32px; }
  .home-hero__title { font-size: 1.6rem; }
  .home-hero__stats { gap: 16px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .home-cta-box { padding: 28px 20px; }
  .home-cta-box h2 { font-size: 1.3rem; }
  .featured-card { padding: 20px; }
  .featured-card__title { font-size: 1.25rem; }
  .lang-switcher { display: none; }
}
@media (max-width: 400px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
}
