/* ==========================================================================
   FUN88 — Design tokens
   ========================================================================== */
:root {
  --color-bg: #f4faff;
  --color-surface: #ffffff;
  --color-surface-tint: #eaf6ff;
  --color-primary: #01a6ff;
  --color-primary-dark: #0080cc;
  --color-primary-deep: #063a63;
  --color-accent: #ffde20;
  --color-accent-dark: #e0951a;
  --color-text: #0b2540;
  --color-text-muted: #51697f;
  --color-border: #d9edfb;
  --color-success: #12b76a;

  --font-display: "Prompt", "Noto Sans Thai", sans-serif;
  --font-body: "Noto Sans Thai", "Prompt", sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(6, 58, 99, 0.08);
  --shadow-md: 0 12px 32px rgba(6, 58, 99, 0.12);
  --shadow-lg: 0 24px 60px rgba(1, 166, 255, 0.18);

  --container-w: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-primary-deep);
  line-height: 1.3;
  margin: 0 0 16px;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 16px; color: var(--color-text-muted); }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(1,166,255,0.28); }
.btn-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #3a2500;
  box-shadow: 0 14px 30px rgba(255, 176, 32, 0.32);
}
.btn-accent:hover { transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--color-primary-deep);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-surface-tint); }
.btn-primary-sm, .btn-ghost-sm {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}
.btn-primary-sm { background: var(--color-primary); color: #fff; }
.btn-primary-sm:hover { background: var(--color-primary-dark); }
.btn-ghost-sm { border: 2px solid var(--color-primary); color: var(--color-primary-deep); }
.btn-ghost-sm:hover { background: var(--color-surface-tint); }
.btn-block { width: 100%; }

/* ==========================================================================
   Topbar + Header
   ========================================================================== */
.topbar {
  background: var(--color-primary-deep);
  color: #cfe9ff;
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 24px;
}
.topbar-msg { display: none; }
@media (min-width: 720px) { .topbar-msg { display: inline; } }
.topbar-links { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.topbar-link { color: #cfe9ff; }
.topbar-link:hover { color: #fff; }
.topbar-cta {
  background: var(--color-accent);
  color: #3a2500;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-primary-dark);
  backdrop-filter: blur(10px); 
}
.header-inner {
  display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px;
    padding:14px 24px;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

 

.nav-toggle {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  height: 2px;
  background: var(--color-primary-deep);
  margin: 0 9px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.primary-nav {
  display: none;
  width: 100%;
}
.primary-nav.is-open { display: block; }
.nav-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  border-top: 1px solid var(--color-border);
  margin-top: 14px;
}
.nav-link {
  display: block;
  padding: 10px 6px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-surface);
  border-radius: var(--radius-sm);
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--color-primary); background: var(--color-surface-tint); }
.nav-cta { display: flex; gap: 10px; padding-top: 10px; }
.nav-cta .btn { flex: 1; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .header-inner { flex-wrap: nowrap; }
  .primary-nav {
    display: flex !important;
    align-items: center;
    gap: 18px;
    width: auto;
    margin-left: auto;
  }
  .nav-list {
    flex-direction: row;
    align-items: center;
    border-top: none;
    margin-top: 0;
    padding: 0;
    gap: 2px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .nav-link { padding: 8px 10px; font-size: 0.92rem; white-space: nowrap; }
  .nav-cta { padding-top: 0; }
  .nav-cta .btn-primary-sm, .nav-cta .btn-ghost-sm { white-space: nowrap; }
  .brand img{
        width:160px;
    } 
}

/* ==========================================================================
   Hero
   ========================================================================== */
.brand img{
    width:160px;
    height:auto;
    display:block;
}

.hero {
  position: relative;
  background: linear-gradient(160deg, var(--color-primary-deep) 0%, #0b4f86 45%, var(--color-primary) 100%);
  color: #fff;
  overflow: hidden;
  padding: 64px 0 120px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,176,32,0.35), transparent 45%),
    radial-gradient(circle at 8% 82%, rgba(255,255,255,0.14), transparent 40%);
  pointer-events: none;
}
.hero-inner,.hero-page {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  align-items: center;
}
.hero img {
 border-radius: 16px;
}

.hero .btn-outline{
  color: #fff;
}
 .hero .btn-outline:hover{
  color: var(--color-text)
}


@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
  
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero-lede ,.hero p{ color: rgba(255,255,255,0.85); font-size: 1.05rem; /*max-width: 55ch; */} 
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 32px; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--color-accent); }
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.75); } 
.hero-page {
        grid-template-columns:2fr 1fr;
    }

.hero-panel {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
  animation: float 3s ease-in-out infinite;
} 
@keyframes float {
  0% {
    transform: translateY(0px); /* 起始位置 */
  }
  50% {
    transform: translateY(-15px); /* 向上移動 15px */
  }
  100% {
    transform: translateY(0px); /* 回到原位 */
  }
}

.hero-panel h3 { color: #fff; margin-bottom: 18px; }
.hero-panel-list { display: flex; flex-direction: column; gap: 12px; }
.hero-panel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-panel-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-accent); flex-shrink: 0;
}

.wave-divider { display: block; width: 100%; line-height: 0; margin-top: -6px; }
.wave-divider svg { display: block; width: 100%; height: auto; }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 72px 0; }
.section-tint { background: var(--color-surface-tint); }
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--color-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head p {   margin-left: auto; margin-right: auto; }
.section-head.align-left { text-align: left; margin-left: 0; margin-right: 0; }

.lede-block { max-width: 820px; margin: 0 auto 48px; text-align: center; }
.lede-block p { font-size: 1.05rem; }

/* Feature cards (why choose) */
.feature-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 24px 0;
}
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: #fff;
}
.feature-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.92rem; margin-bottom: 0; }

/* Game category cards */
.game-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(1, minmax(0, 1fr)); 
  margin: 22px 0;
}
.game-card {
  position: relative;
  background: var(--color-primary-deep);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.game-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-deep) 120%);
  z-index: -1;
  transition: opacity 0.25s ease;
}
.game-card::before {
  content: "";
  position: absolute;
  width: 160px; height: 160px;
  right: -50px; top: -50px;
  background: rgba(255,176,32,0.25);
  border-radius: 50%;
  z-index: -1;
}
.game-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(255,255,255,0.16);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.game-card h3 { color: #fff; margin-bottom: 10px; font-size:1.3rem;}
.game-card p { color: rgba(255,255,255,0.82);   margin-bottom: 18px; }
.game-card .btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; }
.game-card .btn-outline:hover { background: rgba(255,255,255,0.14); }

/* Steps */
.steps {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
}
.step-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-primary);
  opacity: 0.35;
  margin-bottom: 10px;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { font-size: 0.92rem; margin-bottom: 0; }

/* Highlight picks (popular/weekly/new/for you) */
.pick-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.pick-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.pick-card .pick-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  background: var(--color-surface-tint);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.pick-card h3 { font-size: 1.05rem; }
.pick-card p { font-size: 0.9rem; margin-bottom: 0; }

/* Promotions */
.promo-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-bottom: 22px;
}
.promo-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.promo-card h3 { font-size: 1.2rem; margin-bottom: 10px;color: var(--color-primary-dark); }
.promo-card p { font-size: 0.92rem; margin-bottom: 0; }
.promo-note-list { display: flex; flex-direction: column; gap: 16px; margin-top: 12px; }
.promo-note {
  display: flex;
  gap: 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.promo-note strong { color: var(--color-primary-deep); }
.promo-note p { margin-bottom: 0; font-size: 0.92rem; }

/* App download */
.app-section {
  background: linear-gradient(135deg, var(--color-primary-deep) 0%, #0b4f86 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  gap: 32px;
}
@media (min-width: 860px) {
  .app-section { grid-template-columns: 1.5fr 0.6fr; align-items: center; padding: 56px; } 
 
   .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
 
   .promo-grid { 
  grid-template-columns: repeat(3, minmax(0, 1fr)); 
}
}
.app-section h2 { color: #fff; }
.app-section p { color: rgba(255,255,255,0.82); }
.app-feature-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.app-feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.94rem; color: rgba(255,255,255,0.9); }
.app-feature-list .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent); margin-top: 8px; flex-shrink: 0; }
.qr-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  color: var(--color-text);
}
.qr-placeholder {
  width: 100%;
  max-width: 190px;
  aspect-ratio: 1;
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  background:
    repeating-conic-gradient(var(--color-primary-deep) 0% 25%, #fff 0% 50%) 0 0/24px 24px;
  border: 6px solid var(--color-primary-deep);
}
.qr-box p { font-size: 0.85rem; margin-bottom: 0; }

.promo-card svg{fill: #0080cc;}

/*Table*/
 .table-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }

  .lotto-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    text-align: left;
    font-size: 1rem;
  }

  .lotto-table th, 
  .lotto-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #eef2f5;
  }

  .lotto-table th {
    background-color: #0088cc;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .lotto-table tr:last-child td {
    border-bottom: none;
  }

  .lotto-table tr:hover {
    background-color: #f8fafc;
  }

  @media (max-width: 768px) {
    .lotto-table th, 
    .lotto-table td {
      padding: 10px 14px;
      font-size: 0.9rem;
    }

    .hero-page {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
 
  }


/* Payments */
.payment-grid {
  display: grid;
  gap: 20px;
 grid-template-columns: repeat(1, minmax(0, 1fr));
}
.payment-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.payment-card h3 { font-size: 1rem; margin-bottom: 8px; }
.payment-card p { font-size: 0.9rem; margin-bottom: 0; }

@media (min-width: 768px) {  
      .payment-grid { 
  grid-template-columns: repeat(3, minmax(0, 1fr)); 
}
  }

.trust-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.trust-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 28px 26px;
  margin-bottom: 28px;
}
.trust-card h3 { font-size: 1.4rem; color: var(--color-primary-dark);}
.trust-sub { margin-top: 16px; }
.trust-sub strong { display: block; color: var(--color-primary-deep); margin-bottom: 4px; }
.trust-sub p { font-size: 0.92rem; margin-bottom: 14px; }
.trust-list { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.trust-list li { font-size: 0.92rem; color: var(--color-text-muted); padding-right: 4px; }
.trust-list li strong { color: var(--color-text); }

.finance-highlights { 
  margin-top: 40px;
}
 .finance-highlights svg{width: 24px;height: 24px; vertical-align: middle; color: #12b76a;margin-right: 8px ;}
.finance-card h3 { font-size: 1rem;   }
.finance-card p { font-size: 0.92rem; margin-bottom: 0; }
.finance-card{margin: 16px 0;}

.check-list{
  list-style:disc;
  padding-left: 20px;
  margin: 16px 0;
}
/* Support */
.support-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.support-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 28px 24px;
  text-align: center;
}
.support-icon {
  width: 54px; height: 54px; margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--color-surface-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
}
.support-card h3 { font-size: 1rem; }
.support-card p { font-size: 0.9rem; margin-bottom: 0; }

/* FAQ accordion */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: right;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--color-primary-deep);
  cursor: pointer;
}
.faq-question .q-text { text-align: left; flex: 1; }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--color-surface-tint);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  font-size: 1rem;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p { padding: 0 22px 20px; font-size: 0.92rem; margin-bottom: 0; }
.faq-item.is-open .faq-answer { max-height: 400px; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 46px;
  text-align: center;
  color: #3a2500;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #fff; max-width:80ch; margin: 0 auto 24px; }
.cta-band .btn-primary { background: var(--color-accent);color: var(--color-text); }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding: 18px 0;
}
.breadcrumb a { color: var(--color-primary-dark); }
.breadcrumb span { margin: 0 6px; }

/* Footer */
.site-footer {
  background: var(--color-primary-deep);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.brand-mark-footer {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin-top: 14px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.footer-badges .badge {
  font-size: 0.72rem;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.footer-col h3 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--color-accent); }
.footer-bottom { padding: 20px 24px 28px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin: 0; text-align: center; }

/* Utility */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.badge-accent {
  display: inline-block;
  background: var(--color-surface-tint);
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
