/* ==========================================================================
   SUMBET888 Live Chat — Phase 7: Minimal White UI
   Colors: Blue #1A56DB + Gold #D4A017 (from phoenix logo)
   ========================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1A56DB;
  --blue-dark: #1648B8;
  --blue-light: #EFF4FF;
  --gold: #D4A017;
  --gold-dark: #B8870F;
  --gold-light: #FEF6E7;
  --white: #FFFFFF;
  --bg: #F8F9FA;
  --text: #1A1A1A;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --border-dark: #D1D5DB;
  --green: #16A34A;
  --green-light: #F0FDF4;
  --red: #DC2626;
  --red-light: #FEF2F2;
  --amber: #F59E0B;
  --amber-light: #FFFBEB;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow: none;
  --max-width: 480px;
  --admin-max-width: 1000px;
  --header-h: 56px;
}

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* --- Logo --- */
.logo {
  height: 40px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.logo-lg {
  height: 120px;
  width: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.logo-sm { height: 60px; width: auto; }

/* --- App Header (Customer) --- */
.app-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 1rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.app-header .brand { display: flex; align-items: center; gap: .5rem; }
.app-header .brand-name { font-size: 1.1rem; font-weight: 700; color: var(--blue); }
.app-header .header-actions { display: flex; align-items: center; gap: .75rem; }
.app-header .credit-chip {
  background: var(--blue-light);
  color: var(--blue);
  padding: .25rem .7rem;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
}

/* --- Admin Header --- */
.admin-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-header .brand { display: flex; align-items: center; gap: .5rem; }
.admin-header .brand-name { font-size: 1rem; font-weight: 700; color: var(--blue); }
.admin-header .admin-info { display: flex; align-items: center; gap: 1rem; font-size: .85rem; color: var(--text-muted); }
.admin-header .admin-info b { color: var(--text); }

/* --- Admin Layout --- */
.admin-body { display: flex; min-height: calc(100vh - var(--header-h)); }
.admin-sidebar {
  width: 200px;
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: 1rem 0;
  flex-shrink: 0;
}
.admin-sidebar a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1.2rem;
  color: var(--text-muted);
  font-size: .87rem;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background .15s;
}
.admin-sidebar a:hover { background: var(--bg); text-decoration: none; }
.admin-sidebar a.active {
  background: var(--blue-light);
  color: var(--blue);
  border-left-color: var(--blue);
  font-weight: 600;
}
.admin-sidebar a svg { width: 18px; height: 18px; flex-shrink: 0; }
.admin-main { flex: 1; padding: 1.5rem; overflow-x: auto; }
.admin-main .admin-wrap { max-width: var(--admin-max-width); margin: 0 auto; }

/* --- Layout Containers --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 1rem; }
.container-fluid { max-width: 100%; padding: 1rem; }

/* --- Cards --- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.card-tight { padding: 1rem; }
.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: var(--text);
}

/* --- Typography --- */
h1 { font-size: 1.3rem; font-weight: 700; }
h2 { font-size: 1.1rem; font-weight: 600; }
h3 { font-size: 1rem; font-weight: 600; }
.label { font-size: .8rem; color: var(--text-muted); margin-bottom: .25rem; }
.muted { color: var(--text-muted); }
.small { font-size: .82rem; }
.tiny { font-size: .72rem; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-blue { color: var(--blue); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }

/* --- Values --- */
.val-lg { font-size: 2rem; font-weight: 700; color: var(--text); }
.val-md { font-size: 1.5rem; font-weight: 700; }
.val-gold { color: var(--gold); }
.val-blue { color: var(--blue); }

/* --- Grid --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: .5rem; }

/* --- Icon Grid (Home Menu) --- */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.icon-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: 1rem .5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: border-color .15s;
}
.icon-tile:hover { border-color: var(--blue); text-decoration: none; }
.icon-tile svg { width: 28px; height: 28px; color: var(--blue); }
.icon-tile .tile-label { font-size: .75rem; color: var(--text-muted); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .7rem 1.2rem;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: none;
  transition: background .15s;
  white-space: nowrap;
}
.btn:hover { background: var(--blue-dark); text-decoration: none; }
.btn:disabled { opacity: .45; cursor: not-allowed; }

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-dark); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--border-dark);
}
.btn-outline:hover { background: var(--bg); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg); }

.btn-danger {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.btn-success {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.btn-sm { padding: .35rem .7rem; font-size: .8rem; }
.btn-block { display: flex; width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* --- Form Elements --- */
input[type="text"], input[type="password"], input[type="number"],
input[type="email"], input[type="tel"], input[type="url"], textarea, select {
  width: 100%;
  padding: .65rem .8rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color .15s;
}
input:focus, textarea:focus, select:focus { border-color: var(--blue); }
input::placeholder, textarea::placeholder { color: var(--text-light); }
textarea { resize: vertical; min-height: 80px; }
label { display: block; font-size: .82rem; color: var(--text-muted); margin-bottom: .25rem; font-weight: 500; }

/* --- Login Page --- */
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--white);
}
.login-card {
  max-width: 360px;
  width: 100%;
  text-align: center;
}
.login-card h1 { margin: 1rem 0 .25rem; color: var(--blue); font-size: 1.5rem; }
.login-card .sub { color: var(--text-muted); font-size: .85rem; margin-bottom: 1.5rem; }
.login-card .form-group { margin-bottom: 1rem; text-align: left; }
.login-card .btn { margin-top: .5rem; }
.login-card .error-msg {
  background: var(--red-light);
  color: var(--red);
  padding: .6rem .8rem;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  margin-bottom: 1rem;
  text-align: left;
}

/* --- Badges --- */
.badge {
  display: inline-block;
  padding: .15rem .5rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
}
.badge-pending { background: var(--amber-light); color: var(--amber); }
.badge-confirmed, .badge-approved, .badge-on { background: var(--green-light); color: var(--green); }
.badge-rejected, .badge-off { background: var(--red-light); color: var(--red); }
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-gold { background: var(--gold-light); color: var(--gold-dark); }

/* --- Tables --- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .85rem; }
th { text-align: left; padding: .5rem .6rem; color: var(--text-muted); font-size: .75rem; font-weight: 600; border-bottom: 1px solid var(--border); white-space: nowrap; }
td { padding: .55rem .6rem; border-bottom: 1px solid var(--border); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--bg); }

/* --- Stats (Admin Dashboard) --- */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: .75rem; }
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}
.stat-card .stat-val { font-size: 1.8rem; font-weight: 700; }
.stat-card .stat-label { font-size: .8rem; color: var(--text-muted); }

/* --- Chat --- */
.chat-body {
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--header-h));
}
#messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.msg {
  max-width: 78%;
  padding: .55rem .85rem;
  border-radius: 14px;
  font-size: .9rem;
  word-break: break-word;
  position: relative;
}
.msg.user {
  align-self: flex-end;
  background: var(--blue);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.msg.admin {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}
.msg img { max-width: 100%; border-radius: 8px; margin-top: .3rem; }
.msg .msg-time { font-size: .65rem; opacity: .6; margin-top: .2rem; }
.chat-input {
  display: flex;
  gap: .5rem;
  padding: .7rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.chat-input input[type="text"] { flex: 1; }
.chat-input label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .55rem .7rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin: 0;
}
.chat-input label svg { width: 22px; height: 22px; color: var(--text-muted); }
#img-preview { max-width: 60px; max-height: 60px; border-radius: 4px; display: none; }

/* --- Admin Chat Layout --- */
.admin-chat-body {
  display: flex;
  height: calc(100vh - var(--header-h));
}
.chat-sidebar {
  width: 240px;
  border-right: 1px solid var(--border);
  overflow-y: auto;
  background: var(--white);
  flex-shrink: 0;
}
.chat-sidebar .sidebar-header { padding: .8rem 1rem; border-bottom: 1px solid var(--border); font-size: .85rem; font-weight: 600; color: var(--text-muted); }
.chat-sidebar .chat-user-item {
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  font-size: .85rem;
}
.chat-sidebar .chat-user-item:hover { background: var(--bg); }
.chat-sidebar .chat-user-item.active { background: var(--blue-light); border-left: 3px solid var(--blue); }
.chat-sidebar .chat-user-item .cu-name { font-weight: 600; }
.chat-sidebar .chat-user-item .cu-preview { font-size: .75rem; color: var(--text-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-sidebar .unread-dot { background: var(--red); color: #fff; border-radius: 10px; padding: 0 5px; font-size: .68rem; float: right; }
.chat-area { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.chat-area .chat-area-header { padding: .65rem 1rem; border-bottom: 1px solid var(--border); font-size: .9rem; font-weight: 600; background: var(--white); }

/* --- Wheel --- */
.wheel-container { position: relative; width: 240px; height: 240px; margin: 0 auto 1rem; }
.wheel-pointer {
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 22px solid var(--gold);
  position: absolute;
  top: -8px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.wheel {
  width: 240px; height: 240px; border-radius: 50%;
  border: 8px solid var(--gold);
  background: conic-gradient(var(--blue) 0 25%, var(--gold) 0 50%, var(--green) 0 75%, #9333EA 0 100%);
  transition: transform 4s cubic-bezier(.2,.8,.2,1);
}
.wheel-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}

/* --- Box --- */
.box-icon {
  width: 140px; height: 140px; margin: 0 auto 1rem;
  font-size: 4rem; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-light), var(--gold-light));
  border-radius: 20px; border: 2px solid var(--gold);
}

/* --- Game Cards --- */
.game-card {
  display: flex; align-items: center; gap: .8rem;
  padding: 1rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  text-decoration: none; color: var(--text); margin-bottom: .6rem;
  transition: border-color .15s;
}
.game-card:hover { border-color: var(--blue); text-decoration: none; }
.game-card .gc-icon { font-size: 1.6rem; }
.game-card .gc-title { flex: 1; font-weight: 600; font-size: .95rem; }
.game-card .gc-arrow { color: var(--text-light); }

/* --- Result Box --- */
.result-box {
  margin-top: 1rem; padding: .8rem;
  background: var(--bg); border-radius: var(--radius-sm);
  min-height: 2.5rem; font-size: .9rem;
}

/* --- History List --- */
.hist-list { text-align: left; margin-top: 1rem; max-height: 200px; overflow-y: auto; }
.hist-list .hist-item { padding: .4rem 0; border-bottom: 1px solid var(--border); font-size: .8rem; color: var(--text-muted); }
.hist-list .hist-item:last-child { border-bottom: none; }

/* --- Slip Items --- */
.slip-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: .8rem; margin-bottom: .5rem;
  display: flex; justify-content: space-between; align-items: flex-start; gap: .5rem;
}
.slip-item img { max-width: 100px; max-height: 100px; border-radius: 4px; }

/* --- Tabs --- */
.tabs { display: flex; gap: .3rem; flex-wrap: wrap; }
.tabs button {
  padding: .4rem .8rem; border: 1px solid var(--border-dark); background: var(--white);
  cursor: pointer; border-radius: var(--radius-sm); font-size: .82rem; color: var(--text-muted);
}
.tabs button.active { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* --- Alert --- */
.alert { padding: .6rem .8rem; border-radius: var(--radius-sm); font-size: .85rem; margin-bottom: .5rem; }
.alert-success { background: var(--green-light); color: var(--green); }
.alert-error { background: var(--red-light); color: var(--red); }
.alert-info { background: var(--blue-light); color: var(--blue); }

/* --- QR Code --- */
.qr-box { background: var(--white); padding: 12px; border-radius: var(--radius); display: inline-block; border: 1px solid var(--border); }

/* --- Install Steps --- */
.steps { text-align: left; }
.steps .step { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .5rem; }
.steps .step .step-num {
  background: var(--blue); color: var(--white); border-radius: 50%;
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; flex-shrink: 0;
}
.steps .step .step-text { font-size: .85rem; color: var(--text-muted); padding-top: .15rem; }

/* --- Misc --- */
.divider { height: 1px; background: var(--border); margin: 1rem 0; }
.empty-state { text-align: center; color: var(--text-light); padding: 2rem 1rem; font-size: .9rem; }
.footer-text { text-align: center; color: var(--text-light); font-size: .75rem; padding: 1rem; }

/* --- Favicon inline --- */
.favicon-link { display: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
  .admin-sidebar { width: 60px; }
  .admin-sidebar a { justify-content: center; padding: .65rem 0; }
  .admin-sidebar a .sidebar-label { display: none; }
  .admin-sidebar a svg { width: 22px; height: 22px; }
}

@media (max-width: 600px) {
  .admin-sidebar { display: none; }
  .admin-body { flex-direction: column; }
  .admin-main { padding: 1rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .icon-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .chat-sidebar { width: 160px; }
  .app-header .credit-chip { font-size: .78rem; padding: .2rem .5rem; }
  .container { padding: .75rem; }
}

@media (max-width: 400px) {
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   SUMBET888 — Mobile Bottom Navigation (VIP168 pattern)
   ========================================================================== */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-around; align-items: center;
  padding: 6px 0 calc(6px + env(safe-area-inset-bottom, 0px));
  z-index: 1000; height: 64px; overflow: visible;
  box-shadow: 0 -2px 12px rgba(0,0,0,.06);
}
.bottom-nav a {
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none; color: var(--text-muted);
  padding: 4px 8px; font-size: .58rem; font-weight: 600;
  gap: 2px; transition: all .2s ease; min-width: 48px; border-radius: 8px;
}
.bottom-nav a .bn-icon { font-size: 1.25rem; font-style: normal; transition: transform .2s ease; }
.bottom-nav a .bn-label { font-size: .58rem; }
.bottom-nav a:hover { color: var(--blue); }
.bottom-nav a:hover .bn-icon { transform: translateY(-2px); }
.bottom-nav a.active { color: var(--gold); font-weight: 700; }
.bottom-nav a.active .bn-icon { filter: drop-shadow(0 0 4px rgba(212,160,23,.4)); }

/* Game button in bottom nav */
.bottom-nav .nav-game-link {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  text-decoration: none; min-width: 48px; padding: 4px 8px;
  position: relative; z-index: 1001;
}
.bottom-nav .nav-game-btn {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff; font-size: 1.6rem; line-height: 1;
  box-shadow: 0 4px 16px rgba(212,160,23,.5), 0 0 20px rgba(212,160,23,.3);
  transform: translateY(-14px);
  border: 3px solid #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.bottom-nav .nav-game-link:hover .nav-game-btn {
  transform: translateY(-18px);
  box-shadow: 0 6px 24px rgba(212,160,23,.7), 0 0 32px rgba(212,160,23,.4);
}
.bottom-nav .nav-game-link:active .nav-game-btn { transform: translateY(-10px) scale(.94); }
.bottom-nav .nav-game-label {
  font-size: .58rem; font-weight: 800; color: var(--gold);
  margin-top: -12px;
}
.bottom-nav-spacer { height: 70px; }

/* Tile sub label */
.icon-tile .tile-sub {
  font-size: .6rem; color: var(--gold); font-weight: 600;
}

/* Make sure body has padding for bottom nav */
body { padding-bottom: 70px; }

/* Chat body full height with bottom nav */
.chat-body {
  display: flex; flex-direction: column;
  height: calc(100vh - var(--header-h) - 70px);
  max-width: var(--max-width); margin: 0 auto;
}
.chat-body #messages {
  flex: 1; overflow-y: auto; padding: .5rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.chat-body .chat-input {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem; border-top: 1px solid var(--border);
  background: var(--white);
}
.chat-body .chat-input input[type="text"] {
  flex: 1; padding: .6rem .8rem; border: 1px solid var(--border);
  border-radius: 20px; font-size: .9rem; outline: none;
}
.chat-body .chat-input input[type="text"]:focus { border-color: var(--blue); }
.chat-body .chat-input button { white-space: nowrap; }
.chat-body .chat-input label { cursor: pointer; display: flex; align-items: center; }
.chat-body .chat-input svg { width: 24px; height: 24px; color: var(--text-muted); }
.chat-body .chat-input #img-preview {
  max-height: 40px; max-width: 40px; border-radius: 6px; display: none;
}
.chat-body .chat-input #img-preview[src] { display: block; }

/* Chat message bubbles */
.chat-msg { max-width: 80%; padding: .5rem .8rem; border-radius: 16px; font-size: .88rem; line-height: 1.4; word-break: break-word; }
.chat-msg.user { align-self: flex-end; background: var(--blue); color: #fff; border-bottom-right-radius: 4px; }
.chat-msg.admin { align-self: flex-start; background: var(--blue-light); color: var(--text); border-bottom-left-radius: 4px; }
.chat-msg img { max-width: 200px; border-radius: 8px; margin-top: 4px; cursor: pointer; }
.chat-msg .time { font-size: .6rem; opacity: .6; margin-top: 2px; }

/* Slip notice banner */
.slip-notice {
  background: var(--gold-light); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: .5rem .8rem;
  font-size: .78rem; color: var(--gold-dark); font-weight: 600;
  text-align: center; margin-bottom: .5rem;
}
