/* =============================================
   GAIMING - 77Best / Herogame Style
   Mobile-first dark gold theme
   ============================================= */

:root {
  --bg:        #1a0d05;
  --bg2:       #2a160a;
  --bg3:       #3d1f0e;
  --card:      #2a1409;
  --card-h:    #3a1d0e;
  --border:    #4a2611;
  --gold:      #ffd700;
  --gold2:     #ffb000;
  --gold-d:    #b88800;
  --gold-grad: linear-gradient(180deg, #ffe066 0%, #ffd700 50%, #b88800 100%);
  --gold-grad-h: linear-gradient(180deg, #fff099 0%, #ffd700 50%, #d4a200 100%);
  --gold-glow: 0 0 18px rgba(255,215,0,.45);
  --text:      #f5e8d4;
  --text2:     #b89070;
  --text3:     #6b4422;
  --green:     #00d084;
  --red:       #ff3d3d;
  --orange:    #ff6b00;
  --shadow:    0 4px 20px rgba(0,0,0,.6);
  --radius:    10px;
  --radius-sm: 6px;
  --trans:     all .2s ease;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 14px;
  line-height: 1.5;
  overscroll-behavior: none;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at top, rgba(255,176,0,.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom, rgba(255,215,0,.05) 0%, transparent 50%),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; }

::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* =============================================
   APP CONTAINER (mobile-frame max width)
   ============================================= */
.app {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  padding-bottom: 64px; /* bottom nav height */
  box-shadow: 0 0 40px rgba(0,0,0,.4);
}
@media (min-width: 768px) {
  .app { max-width: 480px; }
}

/* =============================================
   APP DOWNLOAD BANNER (top)
   ============================================= */
.app-banner {
  background: linear-gradient(135deg, #5a3010 0%, #2a160a 100%);
  padding: 8px 12px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-size: 12px;
}
.app-banner-close {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0,0,0,.5); color: var(--text2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.app-banner-text { flex: 1; line-height: 1.2; }
.app-banner-text strong { color: var(--gold); font-weight: 700; }
.app-banner-text span { color: var(--text2); font-size: 11px; }
.app-banner-btn {
  background: rgba(0,0,0,.45); border: 1px solid var(--border);
  color: var(--text); padding: 6px 12px; border-radius: 4px;
  font-size: 11px; font-weight: 600;
  display: flex; align-items: center; gap: 4px;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: var(--bg2);
  padding: 10px 12px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.menu-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 20px;
}
.logo {
  display: flex; align-items: center; gap: 6px;
  font-weight: 900; font-size: 22px; flex: 1;
  font-style: italic; letter-spacing: -.5px;
}
.logo-icon { font-size: 18px; }
.logo-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 1px 0 rgba(0,0,0,.3);
  font-family: 'Inter', sans-serif;
  font-weight: 900;
}
.header-actions { display: flex; gap: 8px; }
.btn-signin, .btn-signup {
  padding: 7px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(180deg, #4a2611 0%, #2a160a 100%);
  border: 1px solid var(--border);
  color: var(--text);
  transition: var(--trans);
}
.btn-signin:hover, .btn-signup:hover {
  background: linear-gradient(180deg, #5a3015 0%, #3a1d0e 100%);
}

/* User chip when logged in */
.user-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg3); border: 1px solid var(--border);
  padding: 5px 10px; border-radius: 18px;
}
.user-chip-bal { color: var(--gold); font-weight: 700; font-size: 13px; }
.user-chip-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  color: #2a160a; font-weight: 800; font-size: 11px;
}

/* =============================================
   SUBHEADER (sound + sort)
   ============================================= */
.subheader {
  background: var(--bg);
  padding: 8px 12px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 56px; z-index: 99;
}
.sound-btn {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 16px;
  flex-shrink: 0;
}
.marquee {
  flex: 1; overflow: hidden; white-space: nowrap;
  position: relative;
  font-size: 12px;
  color: var(--gold);
}
.marquee-inner {
  display: inline-block;
  animation: marquee 25s linear infinite;
  padding-left: 100%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
.sort-btn {
  display: flex; align-items: center; gap: 4px;
  color: var(--gold); font-size: 12px; font-weight: 600;
  padding: 4px 8px;
}

/* =============================================
   MAIN BODY (side-tabs + content)
   ============================================= */
.main-body { display: flex; min-height: calc(100vh - 200px); }

/* Side category tabs (vertical) */
.side-tabs {
  width: 70px;
  background: var(--bg2);
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  overflow-y: auto;
}
.side-tab {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  padding: 14px 4px;
  color: var(--text2);
  font-size: 11px; font-weight: 600;
  text-align: center; cursor: pointer;
  transition: var(--trans);
  border-left: 3px solid transparent;
  position: relative;
  gap: 4px;
}
.side-tab:hover { color: var(--text); background: rgba(255,215,0,.04); }
.side-tab.active {
  color: var(--gold);
  background: var(--bg);
  border-left-color: var(--gold);
}
.side-tab-icon {
  font-size: 22px; line-height: 1;
}
.side-tab-icon.flame { color: var(--red); }

/* Content area */
.content-area {
  flex: 1; padding: 10px; overflow-x: hidden;
}

/* =============================================
   GAME GRID (in side-tab content)
   ============================================= */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.game-card {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.game-card:active { transform: scale(.96); }
.game-card.hidden { display: none; }
.game-thumb {
  flex: 1; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.game-icon { font-size: 2.2rem; line-height: 1; }
.game-info {
  padding: 5px 7px; background: rgba(0,0,0,.55);
  font-size: 10px;
}
.game-name {
  font-weight: 700; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.2;
}
.game-provider { color: var(--text2); font-size: 9px; margin-top: 1px; }

/* Badges */
.game-badges { position: absolute; top: 4px; left: 4px; display: flex; flex-direction: column; gap: 3px; }
.badge { font-size: 8px; font-weight: 800; padding: 2px 5px; border-radius: 8px; text-transform: uppercase; letter-spacing: .04em; line-height: 1.2; }
.badge-hot { background: var(--red); color: #fff; }
.badge-new { background: var(--green); color: #1a0d05; }
.badge-feat { background: var(--gold); color: #1a0d05; }

/* Game gradients - warmer / casino vibe */
.g-1  { background: linear-gradient(135deg, #c2410c 0%, #7c2d12 100%); }
.g-2  { background: linear-gradient(135deg, #b91c1c 0%, #4c1d1d 100%); }
.g-3  { background: linear-gradient(135deg, #a16207 0%, #422006 100%); }
.g-4  { background: linear-gradient(135deg, #ca8a04 0%, #713f12 100%); }
.g-5  { background: linear-gradient(135deg, #92400e 0%, #451a03 100%); }
.g-6  { background: linear-gradient(135deg, #831843 0%, #4a044e 100%); }
.g-7  { background: linear-gradient(135deg, #1e40af 0%, #172554 100%); }
.g-8  { background: linear-gradient(135deg, #166534 0%, #052e16 100%); }
.g-9  { background: linear-gradient(135deg, #6b21a8 0%, #2e1065 100%); }
.g-10 { background: linear-gradient(135deg, #ea580c 0%, #9a3412 100%); }

/* =============================================
   FEATURED BANNERS (carousel)
   ============================================= */
.banner-carousel {
  margin: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.banner {
  background: linear-gradient(135deg, #ea580c 0%, #b91c1c 100%);
  padding: 16px;
  display: flex; align-items: center; gap: 12px;
  color: #fff;
  height: 110px;
  position: relative;
  overflow: hidden;
}
.banner-icon { font-size: 50px; flex-shrink: 0; }
.banner-text { flex: 1; }
.banner-text h3 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.banner-text p { font-size: 12px; opacity: .9; }
.banner-cta {
  background: var(--gold-grad); color: #2a160a;
  padding: 7px 14px; border-radius: 16px; font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   BOTTOM NAVIGATION
   ============================================= */
.bottom-nav {
  position: fixed; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; max-width: 480px;
  background: linear-gradient(180deg, #2a160a 0%, #1a0d05 100%);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 100;
  padding: 6px 0 max(6px, env(safe-area-inset-bottom));
}
.nav-item {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  padding: 6px 4px;
  font-size: 10px; font-weight: 600;
  color: var(--text2);
  position: relative;
  gap: 3px;
}
.nav-item:hover { color: var(--text); }
.nav-item.active { color: var(--gold); }
.nav-item-icon {
  font-size: 22px; line-height: 1;
  transition: transform .15s ease;
}
.nav-item.active .nav-item-icon { transform: translateY(-2px); }
.nav-item.center {
  background: radial-gradient(circle at center top, rgba(255,215,0,.18) 0%, transparent 60%);
}
.nav-item.center .nav-item-icon {
  background: var(--gold-grad);
  color: #2a160a;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 2px;
  box-shadow: var(--gold-glow);
  margin-top: -10px;
}

/* =============================================
   FLOATING BUTTON (right side)
   ============================================= */
.float-btn {
  position: fixed;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 56px;
  background: linear-gradient(180deg, #1a0d05 0%, #2a160a 100%);
  border: 1px solid var(--border); border-right: none;
  border-radius: 8px 0 0 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 16px;
  z-index: 95;
  cursor: pointer;
}
.float-btn-dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.2); }
}

/* =============================================
   PROMO POPUP MODAL
   ============================================= */
.promo-modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.75);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.promo-modal.hidden { display: none; }
.promo-card {
  background: linear-gradient(135deg, #ea580c 0%, #b91c1c 100%);
  border-radius: 16px;
  padding: 24px;
  width: 100%; max-width: 340px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
}
.promo-tag {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--gold-grad);
  color: #2a160a;
  padding: 6px 24px;
  border-radius: 16px;
  font-weight: 800; font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.promo-icon { font-size: 80px; margin: 14px 0; line-height: 1; }
.promo-percent {
  font-size: 60px; font-weight: 900; color: var(--gold);
  text-shadow: 2px 2px 0 #b88800, 0 0 30px rgba(255,215,0,.7);
  line-height: 1;
}
.promo-title {
  font-size: 22px; font-weight: 700; color: #fff;
  font-style: italic; margin: 6px 0;
}
.promo-actions {
  display: flex; gap: 10px; justify-content: center; margin-top: 16px;
}
.promo-btn {
  background: var(--gold-grad); color: #2a160a;
  padding: 10px 24px; border-radius: 20px;
  font-weight: 700; font-size: 13px;
  flex: 1;
}
.promo-close {
  position: absolute;
  bottom: -50px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: #fff; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.promo-skip {
  position: absolute;
  top: -30px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px;
  color: #fff; font-size: 12px;
  white-space: nowrap;
}
.promo-skip-check {
  width: 16px; height: 16px; background: #fff;
  border-radius: 2px;
}

/* Carousel arrows */
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px;
  background: rgba(0,0,0,.4); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.carousel-arrow.prev { left: 8px; }
.carousel-arrow.next { right: 8px; }

/* =============================================
   SIDE MENU DRAWER
   ============================================= */
.side-drawer {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 280px; max-width: 80%;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform .25s ease;
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.side-drawer.open { transform: translateX(0); }
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 1099; opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.drawer-overlay.show { opacity: 1; pointer-events: auto; }
.drawer-header {
  padding: 20px;
  background: linear-gradient(135deg, #2a160a, #1a0d05);
  border-bottom: 1px solid var(--border);
}
.drawer-user {
  display: flex; align-items: center; gap: 12px;
}
.drawer-user-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: #2a160a;
}
.drawer-user-info h4 { font-size: 15px; color: var(--text); margin-bottom: 2px; }
.drawer-user-info span { font-size: 12px; color: var(--gold); font-weight: 600; }
.drawer-nav { padding: 10px; flex: 1; }
.drawer-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 6px;
  color: var(--text); font-size: 14px;
  margin-bottom: 2px;
}
.drawer-link i { width: 20px; color: var(--gold); }
.drawer-link:hover { background: var(--bg3); }
.drawer-divider { height: 1px; background: var(--border); margin: 8px 14px; }
.drawer-link.danger { color: var(--red); }
.drawer-link.danger i { color: var(--red); }

/* =============================================
   AUTH PAGES
   ============================================= */
.auth-page {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; padding: 30px 20px;
  background:
    radial-gradient(ellipse at top, rgba(255,176,0,.15) 0%, transparent 50%),
    var(--bg);
}
.auth-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px; width: 100%; max-width: 380px;
  box-shadow: var(--shadow);
}
.auth-logo { text-align: center; margin-bottom: 20px; }
.auth-logo .logo { justify-content: center; font-size: 28px; }
.auth-title { font-size: 20px; font-weight: 800; margin-bottom: 4px; text-align: center; color: var(--gold); }
.auth-subtitle { color: var(--text2); text-align: center; margin-bottom: 22px; font-size: 13px; }

/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--text2); margin-bottom: 5px; }
.form-control {
  width: 100%; padding: 12px 14px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-size: 14px; transition: var(--trans);
}
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(255,215,0,.15); }
.form-control::placeholder { color: var(--text3); }
.input-group { position: relative; }
.input-group .form-control { padding-left: 38px; }
.input-group .input-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--text3); font-size: 14px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 20px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 14px; transition: var(--trans);
  border: 1px solid transparent;
}
.btn-gold {
  background: var(--gold-grad); color: #2a160a;
  box-shadow: 0 2px 8px rgba(255,215,0,.25);
}
.btn-gold:hover { background: var(--gold-grad-h); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }
.btn-lg { padding: 13px 24px; font-size: 15px; }
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-green { background: var(--green); color: #1a0d05; }
.btn-danger { background: var(--red); color: #fff; }

/* =============================================
   FLASH MESSAGES
   ============================================= */
.flash {
  margin: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
}
.flash-success { background: rgba(0,208,132,.15); border: 1px solid var(--green); color: var(--green); }
.flash-danger  { background: rgba(255,61,61,.15); border: 1px solid var(--red); color: var(--red); }
.flash-info    { background: rgba(255,215,0,.1); border: 1px solid var(--gold); color: var(--gold); }
.flash-close { margin-left: auto; cursor: pointer; font-size: 18px; line-height: 1; }

/* =============================================
   INNER PAGES (wallet/profile/etc)
   ============================================= */
.inner-page { padding: 14px 12px 20px; }
.page-title {
  font-size: 18px; font-weight: 700; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px; color: var(--gold);
}
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; margin-bottom: 12px;
}
.card-title {
  font-size: 14px; font-weight: 700; margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
}
.balance-display {
  text-align: center; padding: 24px 16px;
  background: linear-gradient(135deg, #b88800 0%, #2a160a 100%);
  border-radius: var(--radius); margin-bottom: 14px;
  border: 1px solid var(--gold-d);
}
.balance-label {
  font-size: 11px; color: var(--text2);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px;
}
.balance-value {
  font-size: 32px; font-weight: 900; color: var(--gold);
  text-shadow: 1px 2px 4px rgba(0,0,0,.5);
}

.stat-row {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 8px; margin-bottom: 14px;
}
.stat-box {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px; text-align: center;
}
.stat-box .val { font-size: 16px; font-weight: 800; color: var(--text); }
.stat-box .lbl { font-size: 10px; color: var(--text2); margin-top: 2px; text-transform: uppercase; }

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 12px; }
th { background: var(--bg2); padding: 8px 10px; text-align: left; color: var(--text2); font-weight: 600; font-size: 10px; text-transform: uppercase; }
td { padding: 8px 10px; border-bottom: 1px solid var(--border); color: var(--text); }
.badge-status { padding: 2px 8px; border-radius: 8px; font-size: 10px; font-weight: 700; }
.badge-status.pending { background: rgba(255,107,0,.15); color: var(--orange); }
.badge-status.approved, .badge-status.completed { background: rgba(0,208,132,.15); color: var(--green); }
.badge-status.rejected, .badge-status.failed { background: rgba(255,61,61,.15); color: var(--red); }

/* =============================================
   GAME PLAY PAGE
   ============================================= */
.game-play-page { padding-bottom: 0; }
.game-play-header {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 8px 12px; display: flex; align-items: center; gap: 10px;
  position: sticky; top: 0; z-index: 100;
}
.game-play-header h2 { font-size: 14px; font-weight: 700; flex: 1; color: var(--gold); }
.game-frame-wrap {
  width: 100%; background: #000;
  display: flex; align-items: center; justify-content: center;
  min-height: calc(100vh - 50px);
}
.game-frame-wrap iframe { width: 100%; height: calc(100vh - 50px); border: none; }
.game-demo-screen {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 40px 20px; text-align: center;
  min-height: calc(100vh - 50px); background: var(--bg);
  width: 100%;
}
.game-demo-screen .game-big-icon { font-size: 80px; margin-bottom: 16px; }
.game-demo-screen h2 { font-size: 22px; font-weight: 800; margin-bottom: 6px; color: var(--gold); }
.game-demo-screen p { color: var(--text2); max-width: 320px; margin-bottom: 20px; font-size: 13px; }

/* =============================================
   404
   ============================================= */
.not-found {
  text-align: center; padding: 60px 20px;
  display: flex; flex-direction: column; align-items: center;
}
.not-found .big-num {
  font-size: 100px; font-weight: 900; line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.not-found h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.not-found p { color: var(--text2); margin-bottom: 20px; font-size: 13px; }

/* Hero / banner area */
.hero-area { padding: 12px; }
