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

:root {
  /* ---- Brand palette: CREAM · WHITE · GOLD · SILVER-GRAY (Claymorphism, matte & puffy) ---- */
  --black:      #3a3226;   /* dark ink — used only for small high-contrast text/icons, never as a surface */
  --charcoal:   #f2ead6;   /* light card variant (bottom nav bar) */
  --clay:       #fbf7ee;   /* main card surface — near-white cream */
  --clay-2:     #f2ead6;   /* secondary card surface — deeper cream */
  --clay-hi:    #ece1c6;

  --gold:       #b8873a;
  --gold-deep:  #8f6423;
  --silver:     #7c8492;
  --silver-deep:#565d68;

  --text:       #3a342b;
  --muted:      #746a5c;
  --dim:        #a89c88;

  --border:        rgba(58,50,38,0.08);
  --border-strong: rgba(58,50,38,0.14);

  --grad-gold:   linear-gradient(120deg, #f3d99a 0%, #c9932f 50%, #8f6423 100%);
  --grad-silver: linear-gradient(120deg, #c3c8ce 0%, #7c8492 55%, #565d68 100%);
  --grad-cta:    linear-gradient(135deg, #f0d18f 0%, #cf9a3f 55%, #a5761f 100%);

  --r:    20px;
  --r-lg: 28px;
  --r-xl: 36px;

  /* Claymorphism dual shadow, light-surface recipe: warm soft shadow bottom-right + bright white highlight top-left */
  --clay-out:  8px 8px 18px rgba(172,152,110,0.35), -6px -6px 14px rgba(255,255,255,0.9);
  --clay-out-lg: 12px 12px 30px rgba(172,152,110,0.4), -8px -8px 22px rgba(255,255,255,0.95);
  --clay-in:   inset 3px 3px 6px rgba(172,152,110,0.35), inset -2px -2px 5px rgba(255,255,255,0.85);

  --font-display: 'Mitr', 'Prompt', sans-serif;
  --font-body:    'Prompt', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 82px; /* space for bottom mobile nav */
}
@media (min-width: 769px) { body { padding-bottom: 0; } }

/* Page background as a fixed full-viewport layer — sizing "cover" against
   body would scale against the whole scrollable page height on long pages,
   causing a huge zoom on mobile. The source photo is already a bright
   cream/gold wave, so only a light cream wash is needed to unify it with
   the theme (no darkening). */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  background-color: var(--clay-2);
  background-image:
    linear-gradient(rgba(246,241,230,0.3), rgba(246,241,230,0.42)),
    url('assets/img/Bg%20web.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  body::before {
    background-image:
      linear-gradient(rgba(246,241,230,0.32), rgba(246,241,230,0.45)),
      url('assets/img/Bg%20Mobile.webp');
  }
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ===== LAYOUT ===== */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5.5rem 1.25rem; position: relative; }
@media (max-width: 768px) { .section { padding: 3.25rem 1rem; } }
@media (max-width: 479px) { .section { padding: 2.75rem 0.875rem; } }

/* ===== HEADINGS ===== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: 0; text-wrap: balance; color: var(--text); }

/* ===== UTILS ===== */
.grad-text {
  background: var(--grad-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-text-silver {
  background: var(--grad-silver);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.kw { color: var(--gold); font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  border-radius: 9999px;
  padding: 0.45rem 1.1rem;
  background: var(--clay);
  box-shadow: var(--clay-out);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.section-head { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.section-head h2 { font-size: clamp(1.5rem, 4vw, 2.35rem); line-height: 1.3; margin: 0.9rem 0 1rem; }
.section-head p { color: var(--muted); font-size: 0.95rem; line-height: 1.85; }
@media (max-width: 479px) { .section-head { margin-bottom: 2rem; } .section-head p { font-size: 0.875rem; } }

/* ===== BUTTONS (puffy clay pills) ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 0.85rem 2.1rem; border-radius: 9999px; border: none; cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  -webkit-tap-highlight-color: transparent; white-space: nowrap;
}
.btn-gold { background: var(--grad-cta); color: var(--black); box-shadow: var(--clay-out); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-gold:active { transform: translateY(1px); box-shadow: var(--clay-in); }
.btn-outline { background: var(--clay); color: var(--text); box-shadow: var(--clay-out); }
.btn-outline:hover { transform: translateY(-2px); }
.btn-outline:active { transform: translateY(1px); box-shadow: var(--clay-in); }

/* ===== HEADER (matte clay capsule, no glass/blur) ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 1.25rem 0;
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.5rem;
  background: var(--clay);
  border-radius: 9999px;
  padding: 0.6rem 0.75rem 0.6rem 1.1rem;
  box-shadow: var(--clay-out);
}
.header-row1 { display: flex; align-items: center; gap: 1rem; width: 100%; }

.logo-link { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.logo-img { height: 54px; width: auto; max-width: 240px; object-fit: contain; }

.nav-menu { display: flex; align-items: center; gap: 0.25rem; margin: 0 auto; }
.nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 1.05rem; border-radius: 9999px;
  font-size: 0.87rem; font-weight: 500; color: var(--muted); white-space: nowrap;
  transition: color 0.2s, box-shadow 0.2s;
}
.nav-link:hover { color: var(--gold); box-shadow: var(--clay-in); }

.ico-line {
  display: inline-flex; align-items: center; justify-content: center;
  background: #06C755; color: #fff; font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.03em; border-radius: 4px; padding: 2px 4px; flex-shrink: 0; line-height: 1;
}

/* header-btns: image buttons (Login/Register graphics) */
.header-btns { display: flex; gap: 0.6rem; align-items: center; flex-shrink: 0; margin-left: auto; }
.hbtn {
  height: 46px; width: auto; max-width: 160px; object-fit: contain; cursor: pointer;
  border-radius: 9999px; padding: 0.35rem 0.6rem; background: var(--clay-2);
  box-shadow: var(--clay-out); transition: transform 0.2s, box-shadow 0.2s;
}
.hbtn:hover { transform: translateY(-2px); }
.hbtn:active { transform: translateY(1px); box-shadow: var(--clay-in); }

/* header-row2: mobile scrollable link strip, merged inside the same header panel */
.header-row2 { display: none; }

@media (max-width: 768px) {
  .header { padding: 0.85rem 0.7rem 0; }
  .header-inner { padding: 0.55rem 0.6rem 0.5rem; border-radius: 26px; }
  .header-row1 { gap: 0.6rem; }
  .nav-menu { display: none; }
  .logo-img { height: 44px; }
  .hbtn { height: 38px; max-width: 128px; }
  .header-row2 {
    display: flex; align-items: center; gap: 0.3rem;
    overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding-top: 0.35rem;
  }
  .header-row2::-webkit-scrollbar { display: none; }
}
.mob-nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.4rem 0.85rem; border-radius: 9999px;
  font-size: 0.78rem; font-weight: 500; color: var(--muted); white-space: nowrap;
  background: var(--clay-2);
}
.mob-nav-link:active { color: var(--gold); box-shadow: var(--clay-in); }

/* ===== HERO ===== */
.hero { position: relative; padding: 148px 1.25rem 3rem; overflow: visible; }
.hero-inner {
  position: relative; z-index: 1; max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.02fr; gap: 2.5rem; align-items: center;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-visual { order: -1; }
}
.hero-text .eyebrow { margin-bottom: 1.2rem; }
.hero h1 { font-size: clamp(2rem, 5.6vw, 3.2rem); line-height: 1.2; }
@media (max-width: 479px) { .hero h1 { font-size: clamp(1.65rem, 8vw, 2.1rem); } }
.hero p {
  color: var(--muted); font-size: clamp(0.92rem, 2vw, 1.02rem); line-height: 1.85;
  max-width: 48ch; margin: 1.1rem 0 1.75rem;
}
@media (max-width: 960px) { .hero p { margin-left: auto; margin-right: auto; } }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
@media (max-width: 960px) { .hero-actions { justify-content: center; } }
.hero-btn-img {
  height: 66px; width: auto; max-width: 248px; object-fit: contain; cursor: pointer;
  border-radius: 22px; padding: 0.5rem 0.75rem; background: var(--clay);
  box-shadow: var(--clay-out); transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.hero-btn-img:hover { transform: translateY(-3px); }
.hero-btn-img:active { transform: translateY(1px); box-shadow: var(--clay-in); }
@media (max-width: 479px) { .hero-btn-img { height: 54px; } }

/* hero visual: clay tablet frame hosting the (bright) hero graphic */
.hero-visual { position: relative; }
.hero-frame {
  background: linear-gradient(160deg, #f3e9d2, #e7d6ac);
  border-radius: var(--r-xl);
  box-shadow: var(--clay-out-lg);
  padding: 0.85rem;
}
.hero-frame img { width: 100%; height: auto; border-radius: calc(var(--r-xl) - 12px); }

/* ===== FEATURES ===== */
.features { padding: 3rem 1.25rem 5rem; }
@media (max-width: 768px) { .features { padding: 2rem 1rem 3rem; } }
.feat-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 720px) { .feat-grid { grid-template-columns: 1fr; } }
.feat-card {
  background: var(--clay); border-radius: var(--r-lg); padding: 1.75rem 1.6rem;
  box-shadow: var(--clay-out); transition: transform 0.2s ease;
}
.feat-card:hover { transform: translateY(-4px); }
.feat-icon {
  width: 50px; height: 50px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem; font-size: 1.5rem;
  background: var(--clay-2); box-shadow: var(--clay-in); color: var(--gold);
}
.feat-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feat-card p { font-family: var(--font-body); font-size: 0.87rem; color: var(--muted); line-height: 1.75; }

/* ===== 3ICON STRIP ===== */
.strip { padding: 1.5rem 1.25rem; }
.strip-frame {
  max-width: 1000px; margin: 0 auto; background: var(--clay); border-radius: var(--r-xl);
  padding: 0.85rem; box-shadow: var(--clay-out);
}
.strip-frame img { width: 100%; border-radius: calc(var(--r-xl) - 12px); }

/* ===== 2-COL CONTENT ===== */
.c2 { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3.25rem; align-items: center; }
@media (max-width: 900px) { .c2 { gap: 2.25rem; } }
@media (max-width: 768px) { .c2 { grid-template-columns: 1fr; gap: 1.9rem; } .c2.flip > div:first-child { order: -1; } }
.c2 .tag { color: var(--gold); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.75rem; display: block; }
.c2 h2 { font-size: clamp(1.4rem, 3.2vw, 2rem); line-height: 1.3; margin-bottom: 1.1rem; }
.c2 p { color: var(--muted); font-size: 0.92rem; line-height: 1.9; margin-bottom: 1rem; }
.c2-frame { background: var(--clay); border-radius: var(--r-xl); padding: 0.75rem; box-shadow: var(--clay-out); }
.c2-frame img { border-radius: calc(var(--r-xl) - 10px); width: 100%; }

/* ===== INFO CARD (H3 / generic) ===== */
.info-card {
  max-width: 860px; margin: 0 auto; background: var(--clay);
  border-radius: var(--r-xl); padding: 2.5rem; box-shadow: var(--clay-out-lg);
}
@media (max-width: 768px) { .info-card { padding: 1.9rem 1.5rem; } }
@media (max-width: 479px) { .info-card { padding: 1.5rem 1.1rem; border-radius: var(--r-lg); } }
.info-card h3 { font-size: clamp(1.15rem, 3.2vw, 1.5rem); margin-bottom: 1.1rem; line-height: 1.3; }
.info-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.9; }

/* ===== STEPS ===== */
.steps-wrap { max-width: 820px; margin: 0 auto; }
.steps-list { display: flex; flex-direction: column; gap: 1.5rem; }
.step-item { display: flex; gap: 1.25rem; align-items: flex-start; background: var(--clay); border-radius: var(--r-lg); padding: 1.4rem 1.5rem; box-shadow: var(--clay-out); }
.step-num {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 14px; background: var(--grad-cta);
  color: var(--black); font-weight: 700; font-size: 1.05rem; font-family: var(--font-display);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--clay-out);
}
.step-body h3 { font-size: 1rem; margin-bottom: 0.4rem; font-weight: 600; }
.step-body p { color: var(--muted); font-size: 0.87rem; line-height: 1.8; }
@media (max-width: 479px) { .step-item { gap: 0.9rem; padding: 1.1rem 1.15rem; } .step-num { width: 36px; height: 36px; font-size: 0.9rem; } }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item { background: var(--clay); border-radius: var(--r); padding: 1.3rem 1.5rem; box-shadow: var(--clay-out); }
.faq-q { font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; margin-bottom: 0.55rem; }
.faq-q::before { content: 'Q  '; color: var(--gold); }
.faq-a { color: var(--muted); font-size: 0.865rem; line-height: 1.85; }
.faq-a::before { content: 'A  '; color: var(--silver); font-weight: 700; }
@media (max-width: 479px) { .faq-item { padding: 1.05rem 1.15rem; } }

/* ===== CTA SECTION ===== */
.cta-section { padding: 5rem 1.25rem; }
.cta-panel {
  max-width: 1000px; margin: 0 auto; text-align: center; position: relative; overflow: hidden;
  background: var(--clay); border-radius: var(--r-xl);
  padding: 3.25rem 2rem; box-shadow: var(--clay-out-lg);
}
.cta-panel h2 { font-size: clamp(1.5rem, 4vw, 2.15rem); margin-bottom: 0.75rem; }
.cta-panel p { color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; align-items: center; }
@media (max-width: 768px) { .cta-panel { padding: 2.5rem 1.5rem; } }
@media (max-width: 479px) { .cta-panel { padding: 2rem 1.1rem; border-radius: var(--r-lg); } }

/* ===== FOOTER ===== */
.footer { background: var(--clay-hi); color: var(--muted); border-top: 1px solid var(--border); padding: 3rem 1.25rem 2.25rem; text-align: center; }
.footer-logo { height: 58px; margin: 0 auto 1.25rem; }
.footer-desc { color: var(--muted); font-size: 0.85rem; line-height: 1.85; max-width: 640px; margin: 0 auto 1.25rem; }
.footer-copy { color: var(--dim); font-size: 0.76rem; }

/* =====================================================================
   BOTTOM MOBILE NAV — claymorphism dock: puffy tab pills that press
   inward (inset shadow) on tap, with a raised clay disc for the logo.
   ===================================================================== */
.sticky-bar {
  display: none;
  position: fixed; bottom: 10px; left: 10px; right: 10px; z-index: 90;
  align-items: center; justify-content: space-between;
  background: var(--charcoal);
  border-radius: 9999px;
  box-shadow: var(--clay-out-lg);
  padding: 0.45rem;
}
@media (max-width: 768px) { .sticky-bar { display: flex; } }
.mnav-item {
  flex: 1 1 0; display: flex; align-items: center; justify-content: center;
  padding: 0.6rem 0.15rem; border-radius: 9999px; color: var(--muted);
  font-size: 0.72rem; font-weight: 600; text-align: center; line-height: 1.1;
  -webkit-tap-highlight-color: transparent; transition: color 0.2s, box-shadow 0.2s;
}
.mnav-item:active { color: var(--gold); box-shadow: var(--clay-in); }
.mnav-item.acc { color: var(--gold); font-weight: 700; }

.mnav-center {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  padding: 0.6rem 1rem; transform: translateY(-24px);
  background: var(--black);
  border: 1.5px solid var(--gold-deep);
  border-radius: 20px; box-shadow: var(--clay-out-lg);
  -webkit-tap-highlight-color: transparent; transition: transform 0.15s ease;
}
.mnav-center:active { transform: translateY(-24px) scale(0.94); }
.mnav-center img { height: 42px; width: auto; max-width: 150px; object-fit: contain; }
@media (max-width: 360px) {
  .mnav-item { font-size: 0.62rem; }
  .mnav-center { padding: 0.5rem 0.8rem; transform: translateY(-20px); }
  .mnav-center:active { transform: translateY(-20px) scale(0.94); }
  .mnav-center img { height: 34px; max-width: 122px; }
}

/* ===== SECTION ALT BG ===== */
.bg-alt { background: rgba(242,234,214,0.5); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===== SUB-PAGES ===== */
body.page-body { overflow-x: hidden; }
.page-main { min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 148px 1.25rem 7rem; text-align: center; gap: 1.75rem; position: relative; }
.page-h1 { font-size: clamp(1.3rem, 3.6vw, 1.9rem); line-height: 1.3; }
.action-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 360px) { .action-btns { flex-direction: column; align-items: center; } }
.page-content { max-width: 640px; margin: 0.5rem auto 0; text-align: left; color: var(--muted); font-size: 0.95rem; line-height: 1.85; }
.page-content h2 { color: var(--text); font-size: 1.15rem; line-height: 1.4; margin: 1.5rem 0 0.6rem; }
.page-content p { margin-bottom: 1rem; }
.page-content ul { padding-left: 1.25rem; margin: 0.5rem 0 1rem; }
.page-content li { margin-bottom: 0.5rem; }

/* ===== ARTICLE PAGE ===== */
.article-main { max-width: 780px; margin: 0 auto; padding: 148px 1.25rem 5rem; }
.article-main h1 { font-family: var(--font-display); font-size: clamp(1.5rem, 4.2vw, 2.1rem); line-height: 1.4; margin-bottom: 1rem; color: var(--text); }
.article-main .article-meta { color: var(--dim); font-size: 0.8rem; margin-bottom: 2rem; }
.article-main p { color: var(--muted); font-size: 0.95rem; line-height: 1.9; margin-bottom: 1.25rem; }
.article-main h2 { font-family: var(--font-display); font-size: clamp(1.15rem, 3vw, 1.4rem); margin: 2rem 0 1rem; color: var(--text); }

.article-cover { border-radius: var(--r-xl); overflow: hidden; margin-bottom: 2rem; box-shadow: var(--clay-out-lg); line-height: 0; }
.article-cover img { width: 100%; }

.article-tldr {
  background: var(--clay); border-radius: var(--r-lg); box-shadow: var(--clay-out);
  padding: 1.5rem 1.75rem; margin-bottom: 2rem;
}
.article-tldr h2 { margin-top: 0; font-size: 1rem; color: var(--gold-deep); }
.article-tldr ul { margin: 0; padding-left: 1.25rem; color: var(--muted); font-size: 0.9rem; line-height: 1.95; }
.article-tldr li { margin-bottom: 0.35rem; }

.article-faq { margin-top: 2.5rem; }

/* ===== TX FEED (รายการฝาก-ถอนล่าสุด) ===== */
.tx-feed { max-width: 620px; margin: 0 auto; background: var(--clay); border-radius: var(--r-xl); padding: 1.5rem; box-shadow: var(--clay-out-lg); }
.tx-feed-list { display: flex; flex-direction: column; gap: 0.7rem; overflow: hidden; }
.tx-row { display: flex; align-items: center; gap: 0.85rem; background: var(--clay-2); border-radius: var(--r); padding: 0.7rem 0.9rem; }
.tx-avatar {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-gold); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
}
.tx-info { flex: 1; min-width: 0; }
.tx-name { font-size: 0.88rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tx-bank { font-size: 0.75rem; color: var(--dim); margin-top: 0.1rem; }
.tx-right { text-align: right; flex-shrink: 0; }
.tx-amount { font-size: 0.9rem; font-weight: 700; white-space: nowrap; }
.tx-amount.deposit { color: #4a8f52; }
.tx-amount.withdraw { color: var(--gold-deep); }
.tx-badge {
  display: inline-block; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 0.12rem 0.55rem; border-radius: 9999px; margin-top: 0.25rem;
}
.tx-badge.deposit { background: rgba(74,143,82,0.14); color: #3d7844; }
.tx-badge.withdraw { background: rgba(184,135,58,0.16); color: var(--gold-deep); }

@keyframes txSlideIn { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
.tx-row.tx-enter { animation: txSlideIn 0.55s ease; }
@media (prefers-reduced-motion: reduce) { .tx-row.tx-enter { animation: none; } }
@media (max-width: 479px) {
  .tx-feed { padding: 1.1rem 0.85rem; }
  .tx-avatar { width: 34px; height: 34px; font-size: 0.85rem; }
  .tx-name { font-size: 0.82rem; }
  .tx-bank { font-size: 0.7rem; }
  .tx-amount { font-size: 0.82rem; }
}
