body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 13px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
  :root {
    --felt: #1a4a2e;
    --felt-light: #1f5534;
    --felt-dark: #102b1a;
    --ivory: #f5f0e8;
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --red: #c0392b;
    --shadow: rgba(0,0,0,0.5);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    background: var(--felt-dark);
    min-height: 100vh;
    font-family: 'Crimson Pro', Georgia, serif;
    color: var(--ivory);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
  }
  body::before {
    content: '';
    position: fixed; inset: 0;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(26,74,46,0.4) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%),
      repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.01) 40px, rgba(255,255,255,0.01) 41px);
    pointer-events: none;
  }
  body::after {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none; opacity: 0.4;
  }
  .container { width: 100%; max-width: 720px; position: relative; z-index: 1; }
  .header { text-align: center; margin-bottom: 30px; animation: fadeDown 0.8s ease both; }
  .header .subtitle { font-size: 11px; letter-spacing: 6px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; font-weight: 300; }
  .header h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 6vw, 3.5rem); font-weight: 700; color: var(--ivory); line-height: 1.1; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
  .header h1 em { color: var(--gold); font-style: italic; }
  .header .divider { display: flex; align-items: center; gap: 16px; margin-top: 20px; justify-content: center; }
  .header .divider::before { content: ''; flex: 1; max-width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
  .header .divider::after { content: ''; flex: 1; max-width: 80px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
  .header .divider span { color: var(--gold); font-size: 18px; }

  /* SCOREBAR */
  .scorebar { display: flex; justify-content: space-between; align-items: center; background: rgba(0,0,0,0.3); border: 1px solid rgba(201,168,76,0.2); border-radius: 4px; padding: 14px 20px; margin-bottom: 12px; animation: fadeDown 0.8s 0.1s ease both; gap: 12px; }
  .scorebar .stat { text-align: center; flex-shrink: 0; }
  .scorebar .stat .val { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); line-height: 1; }
  .scorebar .stat .lbl { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(245,240,232,0.4); margin-top: 4px; }
  .scorebar .stat .val.hs-val { color: #e8c96a; font-size: 1.3rem; }
  .progress-track { flex: 1; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
  .progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; transition: width 0.5s ease; }

  /* TIMER BAR */
  .timer-bar-wrap { margin-bottom: 16px; animation: fadeDown 0.5s 0.15s ease both; }
  .timer-bar-track { height: 6px; background: rgba(255,255,255,0.07); border-radius: 3px; overflow: hidden; position: relative; }
  .timer-bar-fill { height: 100%; border-radius: 3px; transition: width 0.1s linear, background 0.5s ease; }
  .timer-meta { display: flex; justify-content: space-between; margin-top: 6px; }
  .timer-meta .timer-val { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold); transition: color 0.3s; }
  .timer-meta .pts-preview { font-size: 0.9rem; color: rgba(245,240,232,0.5); }
  .timer-meta .pts-preview span { color: var(--gold-light); font-weight: 600; }

  /* CARD */
  .card { background: linear-gradient(145deg, rgba(26,74,46,0.6), rgba(16,43,26,0.8)); border: 1px solid rgba(201,168,76,0.25); border-radius: 8px; padding: 32px; margin-bottom: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05); animation: fadeUp 0.5s ease both; position: relative; overflow: hidden; }
  .card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
  .question-num { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; opacity: 0.8; }
  .question-text { font-family: 'Playfair Display', serif; font-size: clamp(1.05rem, 2.5vw, 1.3rem); line-height: 1.55; color: var(--ivory); font-weight: 400; }

  /* OPTIONS */
  .options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; animation: fadeUp 0.5s 0.1s ease both; }
  @media (max-width: 500px) { .options { grid-template-columns: 1fr; } .card { padding: 24px; } }
  .option-btn { background: rgba(0,0,0,0.25); border: 1px solid rgba(201,168,76,0.2); border-radius: 6px; padding: 16px 18px; color: var(--ivory); font-family: 'Crimson Pro', serif; font-size: 1.05rem; cursor: pointer; text-align: left; transition: all 0.2s ease; display: flex; align-items: flex-start; gap: 14px; line-height: 1.4; width: 100%; }
  .option-btn:hover:not(:disabled) { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.5); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .option-btn .letter { font-family: 'Playfair Display', serif; font-size: 0.85rem; color: var(--gold); font-weight: 700; min-width: 20px; padding-top: 1px; flex-shrink: 0; }
  .option-btn.correct { background: rgba(39,174,96,0.2); border-color: #27ae60; color: #a8f0c0; }
  .option-btn.correct .letter { color: #27ae60; }
  .option-btn.wrong { background: rgba(192,57,43,0.2); border-color: var(--red); color: #f0a8a8; }
  .option-btn.wrong .letter { color: var(--red); }
  .option-btn:disabled { cursor: default; transform: none !important; }
  @keyframes pulse-correct { 0% { box-shadow: 0 0 0 0 rgba(39,174,96,0.6); } 70% { box-shadow: 0 0 0 14px rgba(39,174,96,0); } 100% { box-shadow: 0 0 0 0 rgba(39,174,96,0); } }
  @keyframes shake-wrong { 0%,100% { transform: translateX(0); } 20% { transform: translateX(-8px); } 40% { transform: translateX(8px); } 60% { transform: translateX(-5px); } 80% { transform: translateX(5px); } }
  .option-btn.correct.anim { animation: pulse-correct 0.6s ease forwards; }
  .option-btn.wrong.anim { animation: shake-wrong 0.4s ease forwards; }

  /* POINTS POPUP */
  .pts-popup { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; pointer-events: none; z-index: 999; opacity: 0; }
  .pts-popup.show-correct { animation: ptsPop 0.9s ease forwards; color: #a8f0c0; text-shadow: 0 0 20px rgba(39,174,96,0.8); }
  .pts-popup.show-wrong { animation: ptsPopWrong 0.7s ease forwards; color: #f0a8a8; }
  @keyframes ptsPop { 0% { opacity: 0; transform: translate(-50%, -20px) scale(0.5); } 20% { opacity: 1; transform: translate(-50%, -60px) scale(1.2); } 70% { opacity: 1; transform: translate(-50%, -80px) scale(1); } 100% { opacity: 0; transform: translate(-50%, -100px) scale(0.9); } }
  @keyframes ptsPopWrong { 0% { opacity: 0; transform: translate(-50%, -20px) scale(0.5); } 20% { opacity: 1; transform: translate(-50%, -50px) scale(1.1); } 70% { opacity: 0.7; transform: translate(-50%, -60px); } 100% { opacity: 0; transform: translate(-50%, -80px); } }

  /* FEEDBACK */
  .feedback { margin-top: 14px; padding: 14px 18px; border-radius: 6px; font-size: 0.98rem; line-height: 1.5; display: none; }
  .feedback.show { display: block; animation: fadeUp 0.3s ease both; }
  .feedback.correct-fb { background: rgba(39,174,96,0.1); border: 1px solid rgba(39,174,96,0.3); color: #a8f0c0; }
  .feedback.wrong-fb { background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.3); color: #f0a8a8; }
  .feedback strong { display: block; margin-bottom: 4px; font-size: 1.08rem; }

  /* NEXT */
  .next-btn { display: none; width: 100%; margin-top: 14px; padding: 14px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border: none; border-radius: 6px; color: var(--felt-dark); font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 1px; cursor: pointer; transition: all 0.2s ease; }
  .next-btn.show { display: block; animation: fadeUp 0.3s ease both; }
  .next-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }

  /* TIMEOUT MESSAGE */
  .timeout-msg { display: none; margin-top: 14px; padding: 14px 18px; border-radius: 6px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.25); color: rgba(245,240,232,0.7); font-size: 0.98rem; text-align: center; font-style: italic; }
  .timeout-msg.show { display: block; animation: fadeUp 0.3s ease both; }

  /* SOUND TOGGLE */
  .sound-toggle { position: fixed; top: 16px; right: 16px; z-index: 100; background: rgba(0,0,0,0.4); border: 1px solid rgba(201,168,76,0.3); border-radius: 50%; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.2rem; transition: all 0.2s; user-select: none; }
  .sound-toggle:hover { background: rgba(201,168,76,0.15); }

  /* RESULTS */
  .results { display: none; text-align: center; }
  .results.show { display: block; animation: fadeUp 0.6s ease both; }
  .results-card { background: linear-gradient(145deg, rgba(26,74,46,0.6), rgba(16,43,26,0.8)); border: 1px solid rgba(201,168,76,0.3); border-radius: 8px; padding: 44px 36px; margin-bottom: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); position: relative; overflow: hidden; }
  .results-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
  .trophy { font-size: 3.5rem; margin-bottom: 12px; display: block; }
  .results h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--ivory); margin-bottom: 8px; }
  .score-big { font-family: 'Playfair Display', serif; font-size: 4.5rem; color: var(--gold); line-height: 1; margin: 16px 0 4px; }
  .score-big span { font-size: 1.8rem; color: rgba(201,168,76,0.6); }
  .score-sub { font-size: 0.9rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(245,240,232,0.35); margin-bottom: 10px; }
  .verdict { font-size: 1.15rem; color: rgba(245,240,232,0.65); margin-bottom: 24px; font-style: italic; }

  /* NEW HIGH SCORE BANNER */
  .new-hs-banner { display: none; background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(232,201,106,0.1)); border: 1px solid var(--gold); border-radius: 6px; padding: 12px 20px; margin-bottom: 20px; color: var(--gold-light); font-family: 'Playfair Display', serif; font-size: 1.1rem; letter-spacing: 1px; }
  .new-hs-banner.show { display: block; animation: fadeUp 0.5s 0.3s ease both; }

  .results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
  @media (max-width: 500px) { .results-grid { grid-template-columns: 1fr 1fr; } }
  .results-grid .rs { background: rgba(0,0,0,0.2); border-radius: 6px; padding: 14px 10px; }
  .results-grid .rs .val { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); }
  .results-grid .rs .val.hs { color: var(--gold-light); }
  .results-grid .rs .lbl { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(245,240,232,0.4); margin-top: 4px; }
  .restart-btn { padding: 14px 44px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border: none; border-radius: 6px; color: var(--felt-dark); font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 1px; cursor: pointer; transition: all 0.2s ease; }
  .restart-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(201,168,76,0.4); }
  .balls-row { display: flex; justify-content: center; gap: 10px; margin-top: 24px; opacity: 0.5; }
  .ball { width: 14px; height: 14px; border-radius: 50%; box-shadow: inset -3px -3px 6px rgba(0,0,0,0.4), inset 2px 2px 4px rgba(255,255,255,0.3); }
  .quiz-section { animation: fadeUp 0.5s ease both; }
  @keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

  /* FANCY HS BAR */
  .hs-bar {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, rgba(10,30,18,0.95), rgba(20,55,32,0.9));
    border: 1px solid rgba(201,168,76,0.45);
    border-radius: 10px; padding: 0; margin-bottom: 18px;
    animation: fadeDown 0.6s 0.05s ease both;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  }
  .hs-bar::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(201,168,76,0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .hs-bar::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-light) 60%, transparent 100%);
  }
  .hs-bar-inner { display: flex; align-items: center; padding: 14px 22px; gap: 0; }
  .hs-bar-trophy { font-size: 1.6rem; margin-right: 14px; filter: drop-shadow(0 0 8px rgba(201,168,76,0.6)); animation: trophyPulse 3s ease-in-out infinite; }
  @keyframes trophyPulse { 0%,100% { filter: drop-shadow(0 0 6px rgba(201,168,76,0.4)); } 50% { filter: drop-shadow(0 0 14px rgba(201,168,76,0.9)); } }
  .hs-bar-center { flex: 1; }
  .hs-bar-label { font-size: 9px; letter-spacing: 5px; text-transform: uppercase; color: rgba(201,168,76,0.55); display: block; margin-bottom: 3px; }
  .hs-bar-name-display { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: rgba(245,240,232,0.5); font-style: italic; margin-top: 2px; display: block; min-height: 1.1em; }
  .hs-bar-right { text-align: right; }
  .hs-bar-val {
    font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light), #fff8e0, var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; display: block;
    text-shadow: none;
    filter: drop-shadow(0 2px 8px rgba(201,168,76,0.4));
  }
  .hs-bar-pts { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(201,168,76,0.4); margin-top: 2px; display: block; }
  @keyframes hsShine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
  }
  .hs-bar-val.new-record {
    background: linear-gradient(90deg, var(--gold), #fff8e0, var(--gold-light), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    animation: hsShine 1.5s linear infinite;
  }

  /* COMPACT START CARD */
  .start-compact-card { background: linear-gradient(145deg, rgba(26,74,46,0.5), rgba(16,43,26,0.7)); border: 1px solid rgba(201,168,76,0.2); border-radius: 8px; padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; position: relative; overflow: hidden; animation: fadeUp 0.5s ease both; }
  .start-compact-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
  .start-info { color: rgba(245,240,232,0.55); font-size: 1rem; line-height: 1.5; text-align: left; flex: 1; }
  @media (max-width: 500px) { .start-compact-card { flex-direction: column; text-align: center; } .start-info { text-align: center; } }


  .visitor-strip { display: flex; align-items: center; gap: 6px; margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(201,168,76,0.12); justify-content: center; }
  .visitor-icon { font-size: 0.85rem; }
  #visitor-count { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold-light); }
  .visitor-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(245,240,232,0.3); }

  /* SECRET MENU */
  .lives-display { font-size: 1.3rem; line-height: 1; letter-spacing: 2px; }
  @keyframes loseLife { 0%{transform:scale(1)} 30%{transform:scale(1.5)} 60%{transform:scale(0.8)} 100%{transform:scale(1)} }
  .life-lost { animation: loseLife 0.5s ease both; }
  .secret-box { background: linear-gradient(145deg, #1a1a2e, #0f0f1a); border: 1px solid rgba(201,168,76,0.4); border-radius: 10px; padding: 28px 32px; width: 100%; max-width: 380px; box-shadow: 0 30px 80px rgba(0,0,0,0.8); animation: fadeUp 0.25s ease both; }
  .secret-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); }
  .secret-close { background: none; border: none; color: rgba(245,240,232,0.4); font-size: 1.1rem; cursor: pointer; padding: 4px 8px; border-radius: 4px; transition: color 0.2s; }
  .secret-close:hover { color: var(--ivory); }
  .secret-desc { font-size: 0.85rem; color: rgba(245,240,232,0.3); margin-bottom: 22px; letter-spacing: 1px; }
  .secret-desc kbd { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 3px; padding: 1px 6px; font-family: monospace; font-size: 0.8rem; color: rgba(245,240,232,0.5); }
  .secret-actions { display: flex; flex-direction: column; gap: 10px; }
  .secret-btn { padding: 13px 18px; border: none; border-radius: 6px; font-family: 'Crimson Pro', serif; font-size: 1rem; cursor: pointer; text-align: left; transition: all 0.2s; }
  .secret-btn.danger { background: rgba(192,57,43,0.15); border: 1px solid rgba(192,57,43,0.4); color: #f0a8a8; }
  .secret-btn.danger:hover { background: rgba(192,57,43,0.3); border-color: var(--red); transform: translateY(-1px); }



  /* NAME ENTRY */
  .name-entry { margin: 20px 0 0; padding: 20px; background: rgba(0,0,0,0.2); border: 1px solid rgba(201,168,76,0.2); border-radius: 6px; }
  .name-entry p { font-size: 0.95rem; color: rgba(245,240,232,0.6); margin-bottom: 12px; }
  .name-entry .name-row { display: flex; gap: 10px; }
  .name-entry input { flex: 1; background: rgba(0,0,0,0.3); border: 1px solid rgba(201,168,76,0.3); border-radius: 5px; padding: 11px 14px; color: var(--ivory); font-family: 'Crimson Pro', serif; font-size: 1.05rem; outline: none; transition: border-color 0.2s; }
  .name-entry input::placeholder { color: rgba(245,240,232,0.25); }
  .name-entry input:focus { border-color: var(--gold); }
  .name-entry .submit-btn { padding: 11px 22px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border: none; border-radius: 5px; color: var(--felt-dark); font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; white-space: nowrap; transition: all 0.2s; }
  .name-entry .submit-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(201,168,76,0.3); }
  .name-entry .submitted-msg { color: #a8f0c0; font-size: 0.95rem; margin-top: 8px; display: none; }
  .name-entry .submitted-msg.show { display: block; animation: fadeUp 0.3s ease both; }

  /* LEADERBOARD */
  .leaderboard-wrap { margin-top: 24px; animation: fadeUp 0.5s 0.2s ease both; }
  .lb-title { font-family: 'Playfair Display', serif; font-size: 1rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); text-align: center; margin-bottom: 14px; opacity: 0.8; }
  .lb-card { background: linear-gradient(145deg, rgba(26,74,46,0.5), rgba(16,43,26,0.7)); border: 1px solid rgba(201,168,76,0.2); border-radius: 8px; overflow: hidden; }
  .lb-row { display: grid; grid-template-columns: 36px 1fr auto; align-items: center; padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.2s; }
  .lb-row:last-child { border-bottom: none; }
  .lb-row.lb-header { background: rgba(0,0,0,0.2); padding: 9px 18px; }
  .lb-row.lb-me { background: rgba(201,168,76,0.1); border-left: 3px solid var(--gold); }
  .lb-row.lb-gold .lb-rank { color: #FFD700; }
  .lb-row.lb-silver .lb-rank { color: #C0C0C0; }
  .lb-row.lb-bronze .lb-rank { color: #CD7F32; }
  .lb-rank { font-family: 'Playfair Display', serif; font-size: 1rem; color: rgba(201,168,76,0.5); font-weight: 700; }
  .lb-name { font-size: 1rem; color: var(--ivory); padding: 0 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .lb-score { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); text-align: right; }
  .lb-header .lb-rank, .lb-header .lb-name, .lb-header .lb-score { font-family: 'Crimson Pro', serif; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(245,240,232,0.3); font-weight: 400; }
  .lb-loading { text-align: center; padding: 24px; color: rgba(245,240,232,0.3); font-style: italic; font-size: 0.95rem; }
  .lb-empty { text-align: center; padding: 20px; color: rgba(245,240,232,0.3); font-style: italic; font-size: 0.95rem; }
