/* ═══════════════════════════════════════════════════════════════
   Lucky Draw System — Customer CSS  (Professional Edition)
   ═══════════════════════════════════════════════════════════════ */

/* Font faces are in fonts.css (base64-embedded, no external requests) */

/* ── Lao font — universal override (excludes icon elements) ─────── */
body.lang-lo {
  font-family: 'Noto Sans Lao', 'Inter', system-ui, sans-serif !important;
  --bs-body-font-family: 'Noto Sans Lao', 'Inter', system-ui, sans-serif;
  letter-spacing: 0 !important;
  line-height: 1.8 !important;
}
body.lang-lo p, body.lang-lo div, body.lang-lo a, body.lang-lo td,
body.lang-lo th, body.lang-lo label, body.lang-lo h1, body.lang-lo h2,
body.lang-lo h3, body.lang-lo h4, body.lang-lo h5, body.lang-lo h6,
body.lang-lo button, body.lang-lo input, body.lang-lo textarea,
body.lang-lo select, body.lang-lo option, body.lang-lo small,
body.lang-lo strong, body.lang-lo b, body.lang-lo li, body.lang-lo ul,
body.lang-lo ol, body.lang-lo nav, body.lang-lo header, body.lang-lo footer,
body.lang-lo section, body.lang-lo article, body.lang-lo aside,
body.lang-lo span:not([class*="fa"]):not([class*=" fa"]) {
  font-family: 'Noto Sans Lao', 'Inter', system-ui, sans-serif !important;
  --bs-body-font-family: 'Noto Sans Lao', 'Inter', system-ui, sans-serif;
  letter-spacing: 0 !important;
}
/* ── Language Switcher — fixed top-right ───────────────────── */
.lang-switcher-btn {
  position: fixed;
  top: 1rem;
  right: 1.25rem;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem .45rem .8rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50px;
  color: rgba(255,255,255,.75);
  background: rgba(8,8,18,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
  transition: border-color .22s, color .22s, box-shadow .22s, background .22s;
}
.lang-switcher-btn i.fa-globe {
  font-size: .82rem;
  color: var(--gold);
  opacity: .85;
}
.lsb-current {
  color: #fff;
  font-weight: 800;
}
.lsb-divider {
  width: 1px;
  height: .85em;
  background: rgba(255,255,255,.2);
  margin: 0 .1rem;
  border-radius: 1px;
}
.lsb-target {
  color: rgba(255,255,255,.55);
  font-weight: 600;
  text-transform: none;
  letter-spacing: .01em;
  font-size: .8rem;
}
.lang-switcher-btn:hover {
  border-color: rgba(245,158,11,.5);
  background: rgba(8,8,18,.95);
  box-shadow: 0 4px 20px rgba(0,0,0,.55), 0 0 0 1px rgba(245,158,11,.2);
  color: #fff;
}
.lang-switcher-btn:hover i.fa-globe { opacity: 1; }
.lang-switcher-btn:hover .lsb-target { color: var(--gold); }

:root {
  /* Palette */
  --gold:          #f59e0b;
  --gold-dark:     #d97706;
  --gold-light:    #fcd34d;
  --gold-glow:     rgba(245,158,11,.18);
  --green:         #22c55e;
  --red:           #ef4444;
  --blue:          #3b82f6;

  /* Dark surfaces */
  --dark:          #0a0a14;
  --dark2:         #111120;
  --dark3:         #161628;
  --dark4:         #1c1c32;
  --surface:       rgba(255,255,255,.042);
  --surface-hover: rgba(255,255,255,.07);

  /* Text */
  --text-primary:  #f0f4ff;
  --text-muted:    #8899b4;
  --text-faint:    rgba(255,255,255,.35);

  /* Borders */
  --border:        rgba(255,255,255,.08);
  --border-gold:   rgba(245,158,11,.25);

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(0,0,0,.35);
  --shadow-md:     0 8px 32px rgba(0,0,0,.45);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.6);
  --shadow-gold:   0 8px 32px rgba(245,158,11,.25);

  /* Radius */
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  22px;
  --r-xl:  30px;
  --r-pill:50px;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --t-fast: .15s var(--ease);
  --t-med:  .25s var(--ease);
  --t-slow: .4s  var(--ease);

  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset & base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--dark);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── Global utilities ─────────────────────────────────────────── */
.text-gold  { color: var(--gold) !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-gold    { background: var(--gold) !important; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: none;
  color: #0a0a14 !important;
  font-weight: 700;
  letter-spacing: .2px;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  border-radius: var(--r-sm);
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn-gold:hover  { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-gold:hover::after { opacity: 1; }
.btn-gold:active { transform: translateY(0); box-shadow: none; }

.btn-outline-gold {
  border: 1.5px solid var(--border-gold);
  color: var(--gold);
  background: transparent;
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: all var(--t-fast);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* ── Scrollbar ────────────────────────────────────────────────── */
::-webkit-scrollbar        { width: 5px; height: 5px; }
::-webkit-scrollbar-track  { background: transparent; }
::-webkit-scrollbar-thumb  { background: rgba(245,158,11,.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   INDEX PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .08;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(245,158,11,.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 80%,  rgba(99,102,241,.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}
/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,.1), transparent 70%);
  top: -100px; left: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,.08), transparent 70%);
  bottom: -80px; right: -80px;
  animation: orbFloat 14s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0); }
  33%      { transform: translate(30px,-20px); }
  66%      { transform: translate(-20px,15px); }
}

.hero-section > .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.3);
  color: var(--gold);
  padding: 5px 16px;
  border-radius: var(--r-pill);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero-badge i { font-size: .7rem; }

.hero-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: .75rem 0 .5rem;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}

/* Stats row */
.hero-stats { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 1.5rem; }
.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: .82rem;
  color: var(--text-primary);
  backdrop-filter: blur(12px);
  white-space: nowrap;
  transition: border-color var(--t-fast);
}
.stat-chip:hover { border-color: var(--border-gold); }
.stat-chip i { color: var(--gold); font-size: .75rem; }
.stat-chip strong { color: #fff; }

/* Progress */
.hero-progress-wrap { max-width: 360px; margin: 0 auto 1.75rem; }
.progress-label {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: .75rem;
  margin-bottom: 6px;
}
.hero-progress {
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.hero-progress .progress-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: var(--r-pill);
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 12px rgba(245,158,11,.5);
}

/* CTA */
.hero-cta { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.hero-cta .btn { padding: .65rem 1.75rem; font-size: .95rem; border-radius: var(--r-sm); }

/* ── Sections ─────────────────────────────────────────────────── */
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: .6rem;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.015em;
  line-height: 1.2;
}
.section-sub {
  color: var(--text-muted);
  font-size: .95rem;
  margin-top: .5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Section label (legacy compat) */
.section-label {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: .5rem;
}

/* ── Prizes ───────────────────────────────────────────────────── */
.prizes-section { background: var(--dark2); }

.prize-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.prize-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.03), transparent);
  pointer-events: none;
}
.prize-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(0,0,0,.6), 0 0 0 1px var(--border-gold);
  border-color: var(--border-gold);
}

/* Rank accent bar */
.prize-rank-bar {
  height: 4px;
  width: 100%;
}

.prize-rank-badge {
  position: absolute;
  top: calc(4px + .6rem);
  left: .75rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .5px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  text-transform: uppercase;
  z-index: 1;
}

.prize-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prize-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
  cursor: zoom-in;
}
.prize-card:hover .prize-img-wrap img { transform: scale(1.08); }

.prize-img-zoom {
  position: absolute;
  bottom: .6rem;
  right: .6rem;
  background: rgba(0,0,0,.6);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: .72rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--t-fast);
  backdrop-filter: blur(6px);
}
.prize-card:hover .prize-img-zoom { opacity: 1; }

.prize-img-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,158,11,.06), rgba(245,158,11,.02));
  color: var(--gold);
  font-size: 3rem;
  flex-shrink: 0;
}

.prize-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prize-body h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: .4rem;
  font-size: .95rem;
  line-height: 1.3;
}
.prize-body p {
  color: var(--text-muted);
  font-size: .85rem;
  flex: 1;
}
.prize-value {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
  font-weight: 800;
  font-size: 1.05rem;
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}

/* Prize lightbox */
.prize-lightbox {
  position: fixed; inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
.prize-lightbox.active { display: flex; }
.plb-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.9);
  backdrop-filter: blur(8px);
}
.plb-content {
  position: relative; z-index: 1;
  max-width: 90vw; max-height: 90vh;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: plbIn .25s var(--ease);
}
@keyframes plbIn { from { opacity:0; transform:scale(.92) } to { opacity:1; transform:scale(1) } }
.plb-content img { display: block; max-width: 90vw; max-height: 85vh; object-fit: contain; }
.plb-close {
  position: absolute; top: .75rem; right: .75rem;
  background: rgba(0,0,0,.7); backdrop-filter: blur(6px);
  color: #fff; border: none; border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; z-index: 2;
  transition: background var(--t-fast), transform var(--t-fast);
}
.plb-close:hover { background: rgba(239,68,68,.8); transform: scale(1.1); }

/* ── Winners ──────────────────────────────────────────────────── */
.winners-section {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.winner-card {
  border-radius: var(--r-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform var(--t-med), box-shadow var(--t-med);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.winner-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.03) 0%, transparent 100%);
  pointer-events: none;
}
.winner-card.rank-1 {
  background: linear-gradient(135deg, rgba(255,215,0,.1), rgba(255,215,0,.03));
  border: 1px solid rgba(255,215,0,.25);
}
.winner-card.rank-2 {
  background: linear-gradient(135deg, rgba(192,192,192,.08), rgba(192,192,192,.02));
  border: 1px solid rgba(192,192,192,.2);
}
.winner-card.rank-3 {
  background: linear-gradient(135deg, rgba(205,127,50,.08), rgba(205,127,50,.02));
  border: 1px solid rgba(205,127,50,.2);
}
.winner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.winner-rank-icon { font-size: 2.5rem; margin-bottom: .5rem; }
.winner-trophy-text { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: .75rem; }
.winner-name { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: .25rem; }
.winner-phone { color: var(--text-muted); font-size: .85rem; }
.winner-prize {
  display: inline-block;
  background: rgba(245,158,11,.12);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-weight: 700;
  font-size: .8rem;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-top: .75rem;
}

/* ── How-to steps ─────────────────────────────────────────────── */
.how-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .steps-grid { grid-template-columns: repeat(6, 1fr); } }

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.4rem .9rem;
  text-align: center;
  transition: all var(--t-med);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.step-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-glow), transparent);
  opacity: 0;
  transition: opacity var(--t-med);
}
.step-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.step-card:hover::after { opacity: 1; }

.step-number {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .85rem;
  margin: 0 auto .75rem;
  box-shadow: 0 4px 12px rgba(245,158,11,.3);
  position: relative; z-index: 1;
}
.step-icon { font-size: 1.35rem; color: var(--gold); margin-bottom: .5rem; position: relative; z-index: 1; }
.step-title { font-weight: 700; color: #fff; font-size: .85rem; margin-bottom: .3rem; position: relative; z-index: 1; }
.step-desc { color: var(--text-muted); font-size: .76rem; line-height: 1.5; position: relative; z-index: 1; }

/* ── Info / Contact cards ─────────────────────────────────────── */
.info-section { background: var(--dark2); }

.info-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: border-color var(--t-med);
}
.info-card:hover { border-color: var(--border-gold); }
.info-card h5, .info-card h6 { color: #fff; font-weight: 700; }
.info-card .text-muted { color: var(--text-muted) !important; }

.payment-qr-wrap { text-align: center; }
.payment-qr-img {
  max-width: 180px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
  transition: transform var(--t-med);
}
.payment-qr-img:hover { transform: scale(1.03); }

.whatsapp-link-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff !important;
  border-radius: var(--r-sm);
  padding: .6rem 1.25rem;
  font-weight: 700;
  font-size: .88rem;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  margin-top: .75rem;
}
.whatsapp-link-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,197,94,.3); }

.map-embed { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: rgba(0,0,0,.5);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
}
.footer-brand { color: var(--gold); font-weight: 800; font-size: 1rem; }
.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: .85rem; transition: color var(--t-fast); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: var(--text-faint); font-size: .78rem; margin-top: .5rem; }

/* ══════════════════════════════════════════════════════════════
   REGISTER & STATUS PAGES
   ══════════════════════════════════════════════════════════════ */

.register-body {
  background: var(--dark);
  background-image:
    radial-gradient(ellipse 80% 40% at 50% -5%, rgba(245,158,11,.1) 0%, transparent 60%);
  min-height: 100vh;
  padding: 1.5rem 1rem 3rem;
}
.register-wrapper { max-width: 640px; margin: 0 auto; }

/* Header */
.register-header { padding: 1.25rem 0 1.25rem; text-align: center; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: .85rem;
  margin-bottom: 1.25rem;
  transition: color var(--t-fast);
}
.back-link:hover { color: var(--gold); }

.register-logo {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, rgba(245,158,11,.18), rgba(245,158,11,.05));
  border: 2px solid rgba(245,158,11,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  color: var(--gold);
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 6px rgba(245,158,11,.07);
}
.register-header h2 { color: #fff; font-weight: 800; font-size: 1.45rem; margin-bottom: .2rem; }
.register-header p   { color: var(--text-muted); font-size: .88rem; }

/* Card */
.register-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-md);
}

/* Form controls */
.register-card .form-label {
  color: #d0daf0;
  font-weight: 600;
  font-size: .84rem;
  margin-bottom: .35rem;
}
.register-card .form-control,
.register-card .form-select {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: .9rem;
  padding: .6rem .9rem;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.register-card .form-control:hover  { border-color: rgba(255,255,255,.22); }
.register-card .form-control:focus  {
  background: rgba(255,255,255,.09);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}
.register-card .form-control::placeholder { color: var(--text-faint); }
.register-card .input-group-text {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
  color: var(--gold);
  border-radius: var(--r-sm) 0 0 var(--r-sm);
}
.register-card .input-group .form-control { border-radius: 0 var(--r-sm) var(--r-sm) 0; }

/* ── Step progress bar ────────────────────────────────────────── */
.step-progress {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 0 .5rem;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 1.5rem;
}
.step-progress::-webkit-scrollbar { display: none; }

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.step-item span {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 2px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--text-muted);
  font-size: .82rem;
  transition: all var(--t-med);
}
.step-item.active span {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  box-shadow: 0 0 0 4px rgba(245,158,11,.2);
}
.step-item.done span {
  background: rgba(34,197,94,.2);
  border-color: var(--green);
  color: var(--green);
}
.step-item small {
  color: var(--text-muted);
  font-size: .65rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--t-fast);
}
.step-item.active small { color: var(--gold); }
.step-item.done  small  { color: var(--green); }

.step-line {
  flex: 1; height: 2px;
  background: rgba(255,255,255,.08);
  min-width: 20px; max-width: 48px;
  margin-top: 16px;
  transition: background var(--t-med);
}
.step-line.done { background: rgba(34,197,94,.4); }

/* ── Step panels ──────────────────────────────────────────────── */
.step-panel { display: none; }
.step-panel.active { display: block; animation: stepIn .3s var(--ease); }
@keyframes stepIn { from { opacity:0; transform:translateY(10px) } to { opacity:1; transform:translateY(0) } }

.step-heading {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ── Policy box ───────────────────────────────────────────────── */
.policy-box {
  background: rgba(0,0,0,.3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem;
  max-height: 260px;
  overflow-y: auto;
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.8;
  scrollbar-width: thin;
  scrollbar-color: rgba(245,158,11,.3) transparent;
}
.policy-box h6 { color: var(--gold); margin-bottom: .75rem; }
.tc-rendered p  { margin-bottom: .6rem; }
.tc-rendered ul { padding-left: 1.2rem; margin-bottom: .6rem; }
.tc-rendered li { margin-bottom: .25rem; }
.tc-rendered hr { border-color: var(--border); margin: .75rem 0; }
.policy-box::-webkit-scrollbar { width: 4px; }
.policy-box::-webkit-scrollbar-track { background: transparent; }
.policy-box::-webkit-scrollbar-thumb { background: rgba(245,158,11,.3); border-radius: 2px; }

.form-check-input:checked { background-color: var(--gold); border-color: var(--gold); }
.form-check-label { color: #d0daf0; font-size: .87rem; }

/* ── Payment step ─────────────────────────────────────────────── */
/* Amount display */
.pq-amount-wrap {
  display: flex; flex-direction: column; align-items: center;
  gap: .2rem; margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(245,158,11,.12), rgba(245,158,11,.04));
  border: 1.5px solid var(--border-gold);
  border-radius: var(--r-md);
  padding: 1rem 2rem;
  box-shadow: 0 4px 24px rgba(245,158,11,.1);
}
.pq-amount-label { color: var(--text-muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.pq-amount       { color: var(--gold); font-size: 2.4rem; font-weight: 900; line-height: 1.1; }

/* QR card — centered white box */
.pq-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 0; margin-bottom: 1.25rem;
}
.pq-qr-box {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08);
  display: inline-block;
  text-align: center;
}
.pq-caption {
  margin-top: .85rem; margin-bottom: 0;
  color: var(--text-muted); font-size: .82rem; text-align: center;
}

/* Steps */
.pq-steps {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-md);
  padding: .5rem .9rem;
  margin-bottom: .25rem;
}
.pq-step {
  display: flex; align-items: center; gap: .85rem;
  padding: .6rem 0;
  color: var(--text-muted); font-size: .875rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.pq-step:last-child { border-bottom: none; }
.ps-num {
  width: 26px; height: 26px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .72rem;
}

/* Legacy aliases kept for any other usage */
.payment-amount-display { display:none; }
.payment-qr-img { max-width: 200px; border-radius: var(--r-md); box-shadow: var(--shadow-md); width: 100%; }

/* ── Upload zone ──────────────────────────────────────────────── */
.upload-zone {
  border: 2px dashed rgba(245,158,11,.2);
  border-radius: var(--r-lg);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--t-med), background var(--t-med), box-shadow var(--t-med);
  background: rgba(245,158,11,.02);
  position: relative;
  overflow: hidden;
}
.upload-zone:hover {
  border-color: rgba(245,158,11,.5);
  background: rgba(245,158,11,.04);
  box-shadow: 0 0 0 4px rgba(245,158,11,.06);
}
.upload-zone.drag-over {
  border-color: var(--gold);
  background: rgba(245,158,11,.08);
  box-shadow: 0 0 0 6px rgba(245,158,11,.1);
}
.upload-zone.uz-error {
  border-color: var(--red);
  background: rgba(239,68,68,.05);
  animation: shake .3s ease;
}
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-5px)} 75%{transform:translateX(5px)} }

.upload-zone-inner { padding: 2.5rem 1.5rem; pointer-events: none; }
.upload-zone-inner .btn { pointer-events: all; }

.uz-icon-wrap {
  width: 76px; height: 76px;
  background: rgba(245,158,11,.08);
  border: 2px solid rgba(245,158,11,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all var(--t-med);
  position: relative;
}
.upload-zone:hover .uz-icon-wrap,
.upload-zone.drag-over .uz-icon-wrap {
  background: rgba(245,158,11,.15);
  border-color: var(--gold);
  transform: scale(1.08);
}
.upload-zone.drag-over .uz-icon-wrap::after {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(245,158,11,.3);
  animation: ringPulse .8s ease-out infinite;
}
@keyframes ringPulse { 0%{opacity:1;transform:scale(1)} 100%{opacity:0;transform:scale(1.5)} }
.uz-icon { font-size: 1.9rem; color: var(--gold); transition: transform var(--t-med); }
.upload-zone.drag-over .uz-icon { transform: translateY(-3px); }

.uz-title { font-size: .95rem; font-weight: 700; color: var(--text-primary); margin-bottom: .25rem; }
.uz-sub   { color: var(--text-muted); font-size: .82rem; margin-bottom: .75rem; }
.uz-meta  { display: flex; justify-content: center; gap: 1.25rem; margin-top: 1.25rem; color: var(--text-muted); font-size: .76rem; }
.uz-meta i { color: var(--gold); }

.upload-error {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
  color: #fca5a5;
  border-radius: var(--r-sm);
  padding: .6rem 1rem;
  font-size: .84rem;
  margin-top: .75rem;
}

/* ── Slip preview card ────────────────────────────────────────── */
.slip-preview-card {
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(245,158,11,.03);
}
.spc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  border-bottom: 1px solid rgba(245,158,11,.12);
  flex-wrap: wrap; gap: .5rem;
}
.spc-badge {
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.25);
  color: #4ade80;
  border-radius: var(--r-pill);
  font-size: .76rem; font-weight: 700;
  padding: 3px 12px;
}
.spc-actions { display: flex; gap: .4rem; }
.spc-actions .btn { font-size: .76rem; padding: .28rem .7rem; border-radius: 8px; }
.spc-img-wrap {
  position: relative;
  background: rgba(0,0,0,.35);
  max-height: 300px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.spc-img-wrap img { max-height: 300px; max-width: 100%; object-fit: contain; transition: opacity var(--t-fast); }
.spc-zoom {
  position: absolute; bottom: .75rem; right: .75rem;
  width: 36px; height: 36px;
  background: rgba(0,0,0,.6); backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .85rem; cursor: pointer;
  opacity: 0; transition: opacity var(--t-fast), transform var(--t-fast);
}
.spc-img-wrap:hover .spc-zoom { opacity: 1; }
.spc-zoom:hover { transform: scale(1.1); background: rgba(245,158,11,.7); }
.spc-meta {
  padding: .65rem 1rem; font-size: .8rem; color: var(--text-muted);
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
}
.spc-meta strong { color: var(--text-primary); max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.spc-size {
  background: rgba(255,255,255,.07); border-radius: 5px;
  padding: 1px 8px; font-size: .73rem; color: var(--text-muted);
}

/* ── Slip lightbox ────────────────────────────────────────────── */
.slip-lightbox {
  position: fixed; inset: 0; z-index: 9000;
  display: flex !important;
  align-items: center; justify-content: center; padding: 1rem;
}
.slip-lightbox.d-none { display: none !important; }
.slb-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(6px); cursor: zoom-out;
}
.slb-content {
  position: relative; z-index: 1;
  max-width: min(90vw, 700px); max-height: 90vh;
  animation: lbIn .2s var(--ease);
}
@keyframes lbIn { from{opacity:0;transform:scale(.92)} to{opacity:1;transform:scale(1)} }
.slb-content img { width: 100%; max-height: 85vh; object-fit: contain; border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
.slb-close {
  position: absolute; top: -14px; right: -14px;
  width: 34px; height: 34px;
  background: #fff; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: #1e293b; cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
  transition: transform var(--t-fast); z-index: 2;
}
.slb-close:hover { transform: scale(1.15); }

/* ══════════════════════════════════════════════════════════════
   SUCCESS PANEL (Step 5)
   ══════════════════════════════════════════════════════════════ */
.success-panel { padding: 0; }
.sp-header { padding: 2rem 1rem 0; }

.sp-check-ring {
  width: 84px; height: 84px; border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #15803d);
  box-shadow: 0 0 0 10px rgba(34,197,94,.12), 0 0 0 20px rgba(34,197,94,.05), 0 8px 32px rgba(34,197,94,.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  animation: sp-pop .5s cubic-bezier(.34,1.56,.64,1) both;
}
.sp-check-icon { font-size: 2.1rem; color: #fff; }
@keyframes sp-pop { from { transform:scale(0); opacity:0; } to { transform:scale(1); opacity:1; } }

.sp-title { font-size: 1.6rem; font-weight: 900; color: #fff; margin-bottom: .25rem; }
.sp-subtitle { color: var(--text-muted); font-size: .9rem; }

.sp-body {
  display: flex; gap: 1.5rem; align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin: 1.5rem 0 1.25rem;
  animation: stepIn .4s .2s var(--ease) both;
}
@media (max-width: 540px) {
  .sp-body { flex-direction: column; align-items: center; text-align: center; }
}

.sp-qr-col { flex-shrink: 0; text-align: center; }
.sp-qr-label { font-size: .68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .6rem; }
.sp-qr-box {
  background: #fff; border-radius: var(--r-md); padding: 10px;
  box-shadow: var(--shadow-md); display: inline-block; line-height: 0;
}
.sp-qr-id { font-size: .68rem; color: var(--gold); font-weight: 700; letter-spacing: .04em; margin-top: .55rem; word-break: break-all; }
.sp-qr-dl-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .45rem 1.75rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  color: var(--gold); background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.35); border-radius: 20px;
  cursor: pointer; transition: background .2s, border-color .2s;
}
.sp-qr-dl-btn:hover:not(:disabled) { background: rgba(245,158,11,.2); border-color: var(--gold); }
.sp-qr-dl-btn:disabled { opacity: .6; cursor: not-allowed; }

.sp-info-col { flex: 1; min-width: 0; display: flex; align-items: center; }
.sp-info-row { display: flex; flex-direction: column; gap: .9rem; width: 100%; }
.sp-info-item { display: flex; flex-direction: column; gap: .1rem; }
.sp-info-key { font-size: .67rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); }
.sp-info-val { font-size: .98rem; font-weight: 700; color: #fff; word-break: break-all; }
.sp-info-val.gold { color: var(--gold); }
.sp-info-divider { height: 1px; background: var(--border); margin: .1rem 0; }
.sp-info-hint { font-size: .76rem; color: var(--text-muted); font-style: italic; margin-top: .3rem; }

.sp-notice {
  display: flex; gap: .85rem; align-items: flex-start;
  background: rgba(245,158,11,.06);
  border: 1px solid rgba(245,158,11,.18);
  border-radius: var(--r-md);
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
  font-size: .855rem; color: #c8d6ea; line-height: 1.55;
  animation: stepIn .4s .35s var(--ease) both;
}
.sp-notice-icon { font-size: 1.1rem; color: var(--gold); margin-top: .1rem; flex-shrink: 0; }

.sp-actions {
  display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center;
  padding-bottom: .5rem;
  animation: stepIn .4s .45s var(--ease) both;
}

/* ══════════════════════════════════════════════════════════════
   STATUS PAGE
   ══════════════════════════════════════════════════════════════ */
.status-search-wrap {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.status-search-wrap .form-control {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff; border-radius: var(--r-sm) 0 0 var(--r-sm);
  font-size: .9rem; padding: .65rem 1rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.status-search-wrap .form-control:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,158,11,.12);
  background: rgba(255,255,255,.09); color: #fff;
}
.status-search-wrap .form-control::placeholder { color: var(--text-faint); }
.status-search-wrap .input-group-text {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-right: none;
  color: var(--gold);
  border-radius: var(--r-sm) 0 0 var(--r-sm);
}

.status-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  transition: border-color var(--t-med);
}
.status-card:hover { border-color: var(--border-gold); }
.status-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 1.25rem 1.5rem;
}
.status-card-name { font-weight: 800; font-size: 1rem; color: #fff; margin-bottom: .15rem; }
.status-card-meta { color: var(--text-muted); font-size: .82rem; }
.status-card-meta span { margin-right: .6rem; }
.status-card-meta i  { margin-right: .25rem; }

.status-badge-wrap { flex-shrink: 0; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.status-pill.approved { background: rgba(34,197,94,.15); color: #4ade80; border: 1px solid rgba(34,197,94,.25); }
.status-pill.pending  { background: rgba(245,158,11,.12); color: var(--gold);  border: 1px solid var(--border-gold); }
.status-pill.rejected { background: rgba(239,68,68,.12);  color: #f87171;      border: 1px solid rgba(239,68,68,.25); }
.status-pill.winner   { background: rgba(255,215,0,.15);  color: #fde68a;      border: 1px solid rgba(255,215,0,.3); }

.status-card-body { padding: 0 1.5rem 1.25rem; }

.status-id-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.04);
  border-radius: var(--r-sm);
  padding: .65rem 1rem;
  margin-bottom: 1rem;
}
.status-id-row .label { color: var(--text-muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; }
.status-id-row .val   { color: var(--gold); font-weight: 800; font-size: 1rem; }

.status-qr-wrap { text-align: center; }
.status-qr-box  { background: #fff; border-radius: var(--r-md); padding: 10px; display: inline-block; line-height: 0; box-shadow: var(--shadow-sm); }

.status-alert-pending {
  background: rgba(245,158,11,.07);
  border: 1px solid rgba(245,158,11,.18);
  border-radius: var(--r-sm);
  padding: .85rem 1rem;
  font-size: .85rem;
  color: #d4af6e;
}
.status-alert-rejected {
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.2);
  border-radius: var(--r-sm);
  padding: .85rem 1rem;
  font-size: .85rem;
  color: #f87171;
}
.status-alert-winner {
  background: rgba(255,215,0,.08);
  border: 1px solid rgba(255,215,0,.25);
  border-radius: var(--r-sm);
  padding: .85rem 1rem;
  font-size: .85rem;
  color: #fde68a;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .section-pad    { padding: 4rem 0; }
  .section-pad-sm { padding: 2.5rem 0; }
}

@media (max-width: 768px) {
  .hero-section { min-height: 80vh; }
  .hero-sub { font-size: .95rem; }
  .hero-stats { gap: .4rem; }

  .register-body { padding: 1rem .75rem 2.5rem; }
  .register-card { padding: 1.5rem; border-radius: var(--r-lg); }
  .step-line { min-width: 16px; }

  .info-card { padding: 1.5rem 1.25rem; }
  .upload-zone-inner { padding: 2rem 1rem; }
  .uz-icon-wrap { width: 66px; height: 66px; }
  .spc-img-wrap { max-height: 250px; }
  .spc-img-wrap img { max-height: 250px; }

  .status-card-top { padding: 1rem 1.25rem; }
  .status-card-body { padding: 0 1.25rem 1rem; }
}

@media (max-width: 480px) {
  .hero-section { min-height: auto; padding: 4rem 0 3rem; }
  .hero-badge { font-size: .72rem; padding: 4px 13px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; text-align: center; }

  .register-body { padding: .75rem .5rem 2rem; }
  .register-card { padding: 1.1rem; border-radius: var(--r-lg); }
  .register-header h2 { font-size: 1.2rem; }
  .register-logo { width: 56px; height: 56px; font-size: 1.5rem; }

  .step-item span { width: 28px; height: 28px; font-size: .75rem; }
  .step-item small { font-size: .6rem; }
  .step-line { min-width: 12px; max-width: 22px; }

  .step-card { padding: 1rem .6rem; }
  .step-icon  { font-size: 1.2rem; }
  .step-title { font-size: .8rem; }
  .step-desc  { font-size: .7rem; }

  .upload-zone-inner { padding: 1.75rem 1rem; }
  .uz-icon-wrap { width: 60px; height: 60px; }
  .uz-icon { font-size: 1.5rem; }
  .spc-img-wrap { max-height: 200px; }
  .spc-img-wrap img { max-height: 200px; }
  .spc-zoom { opacity: 1; }

  .section-header { margin-bottom: 2rem; }
  .winner-card { padding: 1.5rem 1rem; }
}

/* ── Font Awesome — force correct rendering in Lao mode ────────── */
body.lang-lo i.fa,
body.lang-lo i.fas,
body.lang-lo i.far,
body.lang-lo i.fal,
body.lang-lo i.fa-solid,
body.lang-lo i.fa-regular,
body.lang-lo i.fa-light,
body.lang-lo i[class*="fa-"],
body.lang-lo span.fa,
body.lang-lo span.fas,
body.lang-lo span.far,
body.lang-lo span[class*="fa-"] {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  text-rendering: auto !important;
  letter-spacing: normal !important;
  line-height: 1 !important;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.lang-lo i.far,
body.lang-lo i.fa-regular { font-weight: 400 !important; }
body.lang-lo i.fab,
body.lang-lo i.fa-brands,
body.lang-lo span.fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  font-style: normal !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  line-height: 1 !important;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
}
