/*
Theme Name: Maxim88
Theme URI: https://maxim88-my.my
Author: Maxim88
Description: Maxim88 Malaysia premium gaming theme. DuitNow, TnG, GrabPay, Boost, MYR.
Version: 1.0
Requires at least: 5.6
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: maxim88
*/

:root {
  /* Maxim88.net exact palette */
  --bg:        #151515;   /* dark graphite - main background */
  --bg2:       #0f0f10;   /* near black - sections, footer */
  --bg3:       #1c1c1d;
  --card:      #1a1a1b;
  --card2:     #202021;

  --gold:      #d4af37;   /* gold - buttons, icons, highlights */
  --gold2:     #e8c66a;   /* light gold - gradients, hover */
  --gold3:     #f0d896;

  --green:     #1f7a52;   /* emerald green - brand accent */
  --green2:    #57c84d;   /* bright green - logo "88", accents */

  --text:      #ffffff;   /* white - headings */
  --text2:     #cfcfcf;   /* light grey - secondary text */
  --muted:     #7a7a70;

  --border:    rgba(212,175,55,0.2);
  --border2:   rgba(212,175,55,0.42);
  --border-green: rgba(87,200,77,0.25);

  --r:         8px;
  --r2:        14px;
  --shadow:    0 4px 28px rgba(0,0,0,0.6);
  --gshadow:   0 4px 20px rgba(212,175,55,0.3);
  --font:      'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-h:    'Sora', 'Plus Jakarta Sans', sans-serif;
  --hh:        60px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text2);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--hh);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold2); }
ul, ol { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-h); color: var(--text); line-height: 1.2; }

.wrap { width: 100%; max-width: 1380px; margin: 0 auto; padding: 0 20px; }

/* BUTTONS - large, rounded, gold fill with metallic gradient */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 700; font-size: 14px;
  border-radius: var(--r); border: none; cursor: pointer;
  padding: 12px 28px; transition: transform .15s, box-shadow .15s, background-position .3s;
  white-space: nowrap; letter-spacing: 0.02em;
}
.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #e8c66a 45%, #d4af37 100%);
  background-size: 200% auto;
  color: #151515; box-shadow: var(--gshadow); font-weight: 800;
}
.btn-gold:hover { background-position: right center; transform: translateY(-2px); color: #151515; box-shadow: 0 8px 28px rgba(212,175,55,.5); }
.btn-green { background: linear-gradient(135deg,#1f7a52,#57c84d); color: #fff; box-shadow: 0 4px 20px rgba(31,122,82,.35); }
.btn-green:hover { transform: translateY(-2px); color: #fff; }
.btn-outline { background: transparent; border: 1px solid var(--border2); color: var(--gold2); }
.btn-outline:hover { background: rgba(212,175,55,.1); color: var(--gold2); }
.btn-sm { padding: 7px 16px !important; font-size: 12px !important; border-radius: var(--r) !important; }
.btn-login { background: rgba(212,175,55,.08); border: 1px solid var(--border); color: var(--text); padding: 8px 18px; font-size: 13px; }
.btn-login:hover { background: rgba(212,175,55,.15); color: var(--gold2); }
.btn-reg {
  background: linear-gradient(135deg,#d4af37,#e8c66a); color: #151515;
  padding: 8px 20px; font-size: 13px; font-weight: 800; box-shadow: var(--gshadow);
}
.btn-reg:hover { transform: translateY(-1px); color: #151515; box-shadow: 0 6px 22px rgba(212,175,55,.45); }

/* HEADER */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--hh);
  background: rgba(15,15,16,.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,.7);
}
.header-inner { display: flex; align-items: center; gap: 16px; height: 100%; max-width: 1380px; margin: 0 auto; padding: 0 20px; }
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-logo img { height: 38px; width: auto; }
.site-logo-text {
  font-family: var(--font-h); font-size: 22px; font-weight: 800;
  background: linear-gradient(135deg,#d4af37,#f0d896);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.02em;
}
.site-nav { display: flex; align-items: center; height: 100%; flex: 1; }
.site-nav ul { display: flex; align-items: center; height: 100%; }
.site-nav ul li { height: 100%; display: flex; align-items: center; position: relative; }
.site-nav ul li a {
  display: flex; align-items: center; height: 100%; padding: 0 15px;
  font-size: 13px; font-weight: 600; color: var(--text2);
  transition: color .15s; white-space: nowrap; position: relative;
}
.site-nav ul li a::after {
  content: ''; position: absolute; bottom: 0; left: 15px; right: 15px;
  height: 2px; background: linear-gradient(90deg,#d4af37,#e8c66a);
  opacity: 0; transition: opacity .15s; border-radius: 2px 2px 0 0;
}
.site-nav ul li a:hover, .site-nav ul li.current-menu-item a { color: var(--gold2); }
.site-nav ul li a:hover::after, .site-nav ul li.current-menu-item a::after { opacity: 1; }
.header-cta { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
  width: 36px; height: 36px; cursor: pointer;
  background: rgba(212,175,55,.08); border: 1px solid var(--border); border-radius: var(--r);
}
.hamburger span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; }
.mobile-nav {
  display: block; position: fixed; top: var(--hh); right: 0;
  width: 280px; height: calc(100vh - var(--hh));
  background: var(--bg2); border-left: 1px solid var(--border);
  z-index: 190; overflow-y: auto; padding: 12px 0 80px;
  transform: translateX(100%); transition: transform .3s;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul li { border-bottom: 1px solid rgba(212,175,55,.08); }
.mobile-nav ul li a { display: block; padding: 14px 22px; font-size: 15px; font-weight: 600; color: var(--text); }
.mobile-nav ul li a:hover { color: var(--gold); background: rgba(212,175,55,.05); }
.mobile-nav-cta { padding: 14px 18px; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-cta .btn { width: 100%; justify-content: center; }

/* HERO */
#hero { width: 100%; position: relative; background: var(--bg2); }
.hero-banner { display: block; width: 100%; position: relative; line-height: 0; overflow: hidden; }
.hero-img { width: 100%; height: 460px; object-fit: cover; object-position: center; display: block; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,15,16,.94) 0%, rgba(15,15,16,.6) 45%, transparent 100%);
  display: flex; align-items: center; padding: 0 50px;
}
.hero-text { max-width: 560px; }
.hero-title { font-size: 38px; font-weight: 800; color: #fff; margin-bottom: 12px; text-shadow: 0 2px 12px rgba(0,0,0,.7); line-height: 1.1; }
.hero-desc { font-size: 15px; color: rgba(255,255,255,.75); margin-bottom: 26px; line-height: 1.55; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-fallback {
  width: 100%; height: 460px;
  background: linear-gradient(135deg, #1a1508 0%, #151515 60%, #0f0f10 100%);
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px;
}
.hero-setup-hint {
  display: inline-block; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: 8px 14px; font-size: 12px; color: rgba(255,255,255,.55);
  margin-bottom: 20px; line-height: 1.5;
}
.hero-setup-hint strong { color: #fff; }

/* TRUST BAR - green accent icons for brand touch */
#m88-trust-bar { background: var(--card); border-bottom: 1px solid var(--border); border-top: 1px solid var(--border); }
.trust-bar-inner { max-width: 1380px; margin: 0 auto; padding: 0 20px; display: flex; align-items: stretch; }
.trust-bar-item {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 16px 12px; border-right: 1px solid var(--border); transition: background .2s;
}
.trust-bar-item:last-child { border-right: none; }
.trust-bar-item:hover { background: rgba(212,175,55,.05); }
.trust-bar-icon { width: 34px; height: 34px; flex-shrink: 0; background: rgba(31,122,82,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.trust-bar-icon svg { width: 18px; height: 18px; stroke: var(--green2); }
.trust-bar-text strong { display: block; font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.2; }
.trust-bar-text span { display: block; font-size: 10px; color: var(--muted); margin-top: 2px; }

/* STATS */
#m88-stats { max-width: 1380px; margin: 18px auto 0; padding: 0 20px; }
.stats-inner { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 0 24px; display: flex; align-items: stretch; overflow: hidden; }
.stat-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 18px 12px; gap: 4px; text-align: center; }
.stat-num {
  font-family: var(--font-h); font-size: 24px; font-weight: 800;
  background: linear-gradient(135deg,#d4af37,#f0d896);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.stat-label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.stat-sep { width: 1px; background: var(--border); margin: 14px 0; flex-shrink: 0; }
.stat-item--pay { flex: 1.4; }
.stat-pay-badges { display: flex; gap: 5px; flex-wrap: wrap; justify-content: center; margin-bottom: 4px; }
.stat-pay-badges span { background: rgba(212,175,55,.08); border: 1px solid rgba(212,175,55,.22); border-radius: 5px; padding: 2px 8px; font-size: 11px; font-weight: 700; color: var(--gold2); }

/* MAIN CONTENT */
#main-content { max-width: 1380px; margin: 20px auto 40px; padding: 0 20px; }
.content-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--r2); padding: 32px 36px 44px; position: relative; }
.content-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,#1f7a52,#d4af37,#e8c66a); border-radius: var(--r2) var(--r2) 0 0; }
.entry-title { font-family: var(--font-h); font-size: 26px; font-weight: 800; color: var(--text); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(212,175,55,.15); letter-spacing: -.02em; }
.entry-content { color: var(--text2); }
.entry-content p { font-size: 15px; line-height: 1.8; margin-bottom: 15px; color: #b8b8b0; }
.entry-content p strong, .entry-content p b { color: var(--text); font-weight: 700; }
.entry-content h2 { font-family: var(--font-h); font-size: 20px; font-weight: 800; color: var(--text); margin: 30px 0 12px; padding-left: 14px; position: relative; display: block; border-bottom: none; }
.entry-content h2::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 3px; background: linear-gradient(180deg,#d4af37,#e8c66a); border-radius: 2px; }
.entry-content h3 { font-size: 17px; font-weight: 700; color: #e0e0d8; margin: 22px 0 10px; }
.entry-content h4 { font-size: 12px; font-weight: 700; color: var(--gold); margin: 16px 0 7px; text-transform: uppercase; letter-spacing: .05em; }
.entry-content a { color: var(--gold); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(212,175,55,.35); text-underline-offset: 3px; }
.entry-content a:hover { color: var(--gold2); }
.entry-content ul { padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 7px; }
.entry-content ul li { position: relative; padding: 10px 14px 10px 40px; background: rgba(212,175,55,.05); border: 1px solid rgba(212,175,55,.12); border-radius: 8px; font-size: 14px; line-height: 1.6; color: #b8b8b0; }
.entry-content ul li::before { content: ''; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 7px; height: 7px; background: linear-gradient(135deg,#d4af37,#e8c66a); border-radius: 50%; }
.entry-content ol { counter-reset: oc; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 7px; }
.entry-content ol li { counter-increment: oc; position: relative; padding: 10px 14px 10px 52px; background: rgba(212,175,55,.05); border: 1px solid rgba(212,175,55,.12); border-radius: 8px; font-size: 14px; line-height: 1.6; color: #b8b8b0; }
.entry-content ol li::before { content: counter(oc); position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; background: linear-gradient(135deg,#d4af37,#e8c66a); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #151515; line-height: 1; }
.entry-content table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 20px 0; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.entry-content table th { background: rgba(212,175,55,.1); color: var(--text); font-weight: 700; font-size: 13px; padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--border2); }
.entry-content table td { padding: 9px 14px; font-size: 13px; color: var(--text2); border-bottom: 1px solid rgba(212,175,55,.07); }
.entry-content table tr:last-child td { border-bottom: none; }
.entry-content table tr:nth-child(even) td { background: rgba(212,175,55,.04); }
.entry-content blockquote { margin: 18px 0; padding: 14px 18px 14px 22px; background: rgba(31,122,82,.08); border-left: 3px solid var(--green2); border-radius: 0 10px 10px 0; }
.entry-content blockquote p { margin: 0; font-style: italic; color: #b8b8b0; }
img.alignright { float: right; margin: 0 0 1em 1.5em; }
img.alignleft  { float: left; margin: 0 1.5em 1em 0; }
img.aligncenter { display: block; margin: 0 auto; }

/* FAQ ACCORDION */
.accordion { margin: 22px 0; display: flex; flex-direction: column; gap: 8px; }
.accordion__block { background: rgba(212,175,55,.04); border: 1px solid rgba(212,175,55,.15); border-radius: 10px; overflow: hidden; transition: border-color .2s; }
.accordion__block:hover { border-color: rgba(212,175,55,.32); }
.faq__box { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; cursor: pointer; user-select: none; gap: 16px; }
.faq__box h3 { font-family: var(--font); font-size: 15px; font-weight: 600; color: var(--text); margin: 0; line-height: 1.4; flex: 1; }
.entry-content .faq__box h3 { margin: 0 !important; padding: 0 !important; border: none !important; font-size: 15px !important; color: var(--text) !important; }
.faq__plus { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; flex-shrink: 0; position: relative; background: rgba(212,175,55,.12); border-radius: 50%; }
.faq__plus span { display: block; position: absolute; background: var(--gold); border-radius: 2px; transition: transform .25s, opacity .25s; }
.faq__plus span:first-child { width: 12px; height: 2px; }
.faq__plus span:last-child { width: 2px; height: 12px; }
.faq__box.open .faq__plus span:last-child { transform: rotate(90deg); opacity: 0; }
.faq__box.open .faq__plus { background: rgba(212,175,55,.25); }
.submenu { box-sizing: border-box; display: none; }
.submenu p, .submenu li, .submenu div { font-size: 14px !important; line-height: 1.75 !important; color: #a0a098 !important; }
.submenu strong, .submenu b { color: #d8d8d0 !important; }
.submenu a { color: var(--gold) !important; }
.faq__box .ez-toc-section, .faq__box .ez-toc-section-end { display: none !important; }

/* COMMENTS */
.comments-section { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--border); }
.comments-title { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.comments-sub { font-size: 12px; color: var(--muted); margin-bottom: 18px; }
ol.comment-list { list-style: none; padding: 0; }
.comment-item { display: flex; gap: 12px; margin-bottom: 18px; }
.comment-avatar img { width: 40px; height: 40px; border-radius: var(--r); }
.comment-body { flex: 1; }
.comment-author { font-size: 13px; font-weight: 700; color: var(--gold); }
.comment-text { font-size: 14px; line-height: 1.6; color: var(--text2); margin-top: 5px; }
.comment-form-wrap { margin-top: 22px; }
.cf-label { display: block; font-size: 12px; font-weight: 600; color: var(--text2); margin: 10px 0 4px; }
.cf-input, .cf-textarea { width: 100%; max-width: 380px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); color: var(--text); font-family: var(--font); font-size: 14px; padding: 9px 13px; outline: none; transition: border-color .15s; }
.cf-input:focus, .cf-textarea:focus { border-color: var(--gold); }
.cf-textarea { max-width: 500px; height: 100px; resize: vertical; }

/* PAGINATION */
.pd-pagination { display: flex; justify-content: center; gap: 6px; margin: 28px 0; }
.pd-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--card); border: 1px solid var(--border); border-radius: var(--r); font-size: 13px; font-weight: 700; color: var(--text2); transition: all .15s; }
.pd-pagination .page-numbers:hover, .pd-pagination .page-numbers.current { background: linear-gradient(135deg,#d4af37,#e8c66a); border-color: transparent; color: #151515; }

/* SIDEBAR */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 290px; gap: 20px; align-items: start; }
.sidebar .widget { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 18px; margin-bottom: 14px; }
.sidebar .widget-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }

/* 404 */
.not-found-wrap { text-align: center; padding: 80px 20px; }
.not-found-wrap h1 { font-size: 80px; font-weight: 800; color: var(--gold); opacity: .25; }
.not-found-wrap h2 { font-size: 24px; color: var(--text); margin: 12px 0; }
.not-found-wrap p { color: var(--text2); margin-bottom: 22px; }
.search-form-wrap { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.search-form-wrap input { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); color: var(--text); font-size: 15px; padding: 11px 16px; outline: none; width: 300px; }
.search-form-wrap input:focus { border-color: var(--gold); }

/* FOOTER */
#site-footer { background: var(--bg2); margin-top: 50px; }
.footer-cta-strip {
  background: linear-gradient(90deg, rgba(31,122,82,.12) 0%, rgba(212,175,55,.12) 50%, rgba(31,122,82,.06) 100%);
  border-top: 2px solid;
  border-image: linear-gradient(90deg,#1f7a52,#d4af37,#e8c66a,#d4af37,#1f7a52) 1;
  padding: 24px 20px;
}
.footer-cta-strip__inner { max-width: 1380px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-cta-heading { font-family: var(--font-h); font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.footer-cta-sub { font-size: 13px; color: var(--text2); }
.footer-cta-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer-trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-trust-item { font-size: 12px; font-weight: 700; color: var(--gold2); }
.footer-body { max-width: 1380px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.1fr; gap: 36px; padding: 36px 20px 32px; border-bottom: 1px solid rgba(212,175,55,.08); }
.footer-brand-name { font-family: var(--font-h); font-size: 20px; font-weight: 800; background: linear-gradient(135deg,#d4af37,#f0d896); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; display: block; }
.footer-logo-img { margin-bottom: 12px; }
.footer-brand-desc { font-size: 12px; line-height: 1.65; color: var(--muted); margin-bottom: 14px; }
.footer-rating { margin-top: 14px; }
.footer-rating-stars { font-size: 16px; color: var(--gold); margin-bottom: 3px; }
.footer-rating-text { font-size: 11px; color: var(--muted); }
.footer-col-title { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; display: block; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links li small { display: block; font-size: 10px; color: var(--muted); }
.footer-links li a { font-size: 13px; font-weight: 600; color: var(--text2); transition: color .15s; }
.footer-links li a:hover { color: var(--gold2); }
.footer-apps { display: flex; flex-direction: column; gap: 7px; margin-top: 14px; }
.footer-app-btn { display: flex; align-items: center; gap: 8px; background: rgba(212,175,55,.06); border: 1px solid var(--border); border-radius: var(--r); padding: 9px 13px; transition: all .15s; }
.footer-app-btn:hover { background: rgba(212,175,55,.13); border-color: var(--border2); }
.footer-app-btn svg { width: 20px; flex-shrink: 0; }
.footer-app-meta small { display: block; font-size: 9px; color: var(--muted); }
.footer-app-meta span { display: block; font-size: 11px; font-weight: 700; color: var(--text); }
.footer-bottom { background: rgba(0,0,0,.4); padding: 16px 20px; }
.footer-bottom__inner { max-width: 1380px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 11px; color: var(--muted); }
.footer-copy-sep { margin: 0 6px; color: var(--muted); }
.footer-copy a { color: var(--muted); font-size: 11px; }
.footer-copy a:hover { color: var(--gold); }
.footer-badges { display: flex; align-items: center; gap: 10px; }
.age-badge { background: rgba(31,122,82,.15); border: 1px solid rgba(31,122,82,.3); color: #57c84d; font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 50px; }
.resp-badge { font-size: 11px; font-weight: 600; color: var(--muted); }

/* MOBILE BOTTOM NAV */
#mobile-nav-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(15,15,16,.98); border-top: 1px solid var(--border); padding: 6px 0; z-index: 200; }
.mnav-row { display: flex; align-items: center; justify-content: space-around; }
.mnav-item { flex: 1; }
.mnav-link { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 4px; }
.mnav-link svg { width: 20px; height: 20px; fill: var(--muted); transition: fill .15s; }
.mnav-link:hover svg { fill: var(--gold2); }
.mnav-label { font-size: 10px; font-weight: 600; color: var(--muted); }
.mnav-link:hover .mnav-label { color: var(--gold2); }
.mnav-cta { flex: 1.4; display: flex; justify-content: center; }
.mnav-cta a { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: linear-gradient(135deg,#d4af37,#e8c66a); border-radius: 50%; box-shadow: var(--gshadow); margin-top: -16px; }
.mnav-cta a svg { width: 22px; fill: #151515; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .footer-body { grid-template-columns: 1fr 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-bar-item { flex: 1 0 48%; border-bottom: 1px solid var(--border); }
}
@media (max-width: 900px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 700px) {
  :root { --hh: 54px; }
  .hero-img, .hero-fallback { height: 280px; }
  .hero-overlay { padding: 0 22px; }
  .hero-title { font-size: 24px; }
  .hero-desc { font-size: 13px; }
  .stats-inner { flex-wrap: wrap; padding: 8px 14px; }
  .stat-sep { display: none; }
  .stat-item { flex: 1 0 45%; padding: 12px 8px; }
  .stat-item--pay { flex: 1 0 100%; border-top: 1px solid var(--border); }
  #main-content { padding: 0 12px; margin-top: 14px; }
  .content-box { padding: 18px 16px 28px; }
  .content-box::before { border-radius: 0; }
  .footer-body { grid-template-columns: 1fr; gap: 20px; padding: 24px 20px; }
  .footer-cta-actions { align-items: flex-start; }
  #mobile-nav-bar { display: block; }
  body { padding-bottom: 64px; }
  .header-cta .btn-login { display: none; }
  .trust-bar-item { flex: 1 0 100%; }
}
@media (max-width: 480px) {
  .hero-img, .hero-fallback { height: 220px; }
  .hero-title { font-size: 20px; }
  .hero-desc { display: none; }
}
