/* ============================================================
   CommunityHub - Styles
   ============================================================ */
:root {
  --bg:#0d0f14;--bg2:#13161e;--bg3:#1a1e28;--bg4:#222635;
  --border:rgba(255,255,255,0.08);--border2:rgba(255,255,255,0.14);
  --text:#e8eaf0;--text2:#8b90a4;--text3:#555b72;
  --accent:#4f6ef7;--green:#22c55e;--red:#ef4444;--amber:#f59e0b;
  --logo-color:#e8eaf0;
  --r:12px;--r-sm:8px;--r-lg:18px;
  --font-head:'Syne',sans-serif;--font-body:'DM Sans',sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box;}
body{background:var(--bg);color:var(--text);font-family:var(--font-body);min-height:100vh;}
::-webkit-scrollbar{width:6px;}
::-webkit-scrollbar-track{background:var(--bg2);}
::-webkit-scrollbar-thumb{background:var(--bg4);border-radius:3px;}
a{color:inherit;text-decoration:none;}

/* ── NAV ── */
nav{position:fixed;top:0;left:0;right:0;z-index:100;height:62px;
  background:rgba(13,15,20,0.92);backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);display:flex;align-items:center;padding:0 28px;gap:16px;}
.nav-logo{font-family:var(--font-head);font-size:20px;font-weight:800;letter-spacing:-0.5px;color:var(--logo-color);}
.nav-links{display:flex;gap:4px;margin-left:24px;}
.nav-link{padding:7px 14px;border-radius:var(--r-sm);font-size:14px;font-weight:500;color:var(--text2);
  cursor:pointer;transition:all .18s;border:none;background:none;font-family:var(--font-body);}
.nav-link:hover,.nav-link.active{background:var(--bg3);color:var(--text);}
.nav-right{margin-left:auto;display:flex;align-items:center;gap:12px;}
/* pastille « 🎁 Cadeau VIP disponible » (barre du haut, dans le projet) */
.nav-gift{ display:inline-flex; align-items:center; gap:6px; position:relative; font-family:'Cinzel',Georgia,serif; font-weight:800; font-size:11.5px; letter-spacing:.4px; color:#fff3d6; cursor:pointer; border:none; padding:6px 14px 6px 11px; border-radius:20px;
  background:linear-gradient(180deg,#c8202a,#8f1218 60%,#5b0a12); box-shadow:inset 0 0 0 1.5px #d9b34a, 0 0 0 1px #6e4a0d, 0 2px 6px rgba(0,0,0,.5); animation:navGiftGlow 1.2s ease-in-out infinite alternate; transition:transform .12s; white-space:nowrap; }
.nav-gift[hidden]{ display:none !important; } /* display:inline-flex écrase l'attribut hidden sinon → pastille toujours visible */
.nav-gift:hover{ transform:scale(1.05); filter:brightness(1.12); }
.nav-gift::after{ content:''; position:absolute; top:-4px; right:-3px; width:11px; height:11px; border-radius:50%; background:#ff2d2d; border:2px solid #fff3d6; box-shadow:0 0 8px rgba(255,45,45,.9); animation:navGiftDot 1s ease-in-out infinite alternate; }
@keyframes navGiftGlow{ from{ box-shadow:inset 0 0 0 1.5px #d9b34a, 0 0 0 1px #6e4a0d, 0 2px 6px rgba(0,0,0,.5), 0 0 4px rgba(255,200,80,.2); } to{ box-shadow:inset 0 0 0 1.5px #d9b34a, 0 0 0 1px #6e4a0d, 0 2px 6px rgba(0,0,0,.5), 0 0 16px rgba(255,200,80,.9); } }
@keyframes navGiftDot{ from{ transform:scale(1); } to{ transform:scale(1.3); } }
.qb-flash{ animation:qbFlash .6s ease-in-out 4; }
@keyframes qbFlash{ 0%,100%{ filter:none; } 50%{ filter:brightness(1.35) drop-shadow(0 0 14px rgba(255,210,90,1)); } }
@media(max-width:700px){ .nav-gift span{ display:none; } .nav-gift{ padding:6px 10px; } }
.nav-user{display:flex;align-items:center;gap:8px;}
.nav-username{font-size:13px;font-weight:600;}
.nav-grade{font-size:10px;color:var(--text3);}

/* ── BUTTONS ── */
.btn{padding:8px 18px;border-radius:var(--r-sm);font-size:13px;font-weight:600;
  cursor:pointer;transition:all .18s;border:none;font-family:var(--font-body);display:inline-flex;align-items:center;gap:6px;}
.btn-primary{background:var(--accent);color:#fff;}.btn-primary:hover{background:#3d5ce5;transform:translateY(-1px);}
.btn-ghost{background:transparent;color:var(--text2);border:1px solid var(--border2);}.btn-ghost:hover{background:var(--bg3);color:var(--text);}
.btn-danger{background:var(--red);color:#fff;}.btn-danger:hover{background:#dc2626;}
.btn-sm{padding:5px 12px;font-size:12px;}

/* ── AVATAR ── */
.avatar{width:36px;height:36px;border-radius:50%;background:var(--bg4);
  display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:600;
  overflow:hidden;flex-shrink:0;}
.avatar img{width:100%;height:100%;object-fit:cover;}

/* ── PAGES ── */
.page{display:none;padding-top:62px;min-height:100vh;}
.page.active{display:block;}

/* ── HOME EDIT ── */
.home-edit-bar{display:none;position:fixed;top:62px;left:0;right:0;z-index:90;
  background:rgba(79,110,247,.12);border-bottom:1px solid rgba(79,110,247,.3);
  padding:10px 28px;align-items:center;gap:12px;}
.home-edit-bar.visible{display:flex;}
.edit-hint{font-size:13px;color:var(--accent);font-weight:500;}
.edit-actions{margin-left:auto;display:flex;gap:8px;}
.home-canvas{min-height:calc(100vh - 62px);}
.home-canvas.edit-mode{padding-top:44px;}
.home-section{position:relative;padding:60px 28px;}
.home-section .section-inner{max-width:1100px;margin:0 auto;}

/* Blocks */
.hblock{position:relative;display:inline-block;}
.edit-mode .hblock{cursor:pointer;}
.edit-mode .hblock:hover{outline:2px dashed rgba(79,110,247,.6);outline-offset:4px;border-radius:6px;}
.hblock-actions{display:none;position:absolute;top:-38px;left:0;z-index:10;
  background:var(--bg3);border:1px solid var(--border2);border-radius:var(--r-sm);
  padding:4px;gap:4px;}
/* Pont invisible : comble le vide entre les boutons et l'image pour ne pas perdre le survol */
.hblock-actions::after{content:"";position:absolute;left:0;top:100%;width:100%;height:16px;}
.edit-mode .hblock:hover .hblock-actions,
.edit-mode .hblock .hblock-actions:hover{display:flex;}
.hblock-action-btn{padding:4px 10px;font-size:11px;font-weight:600;border-radius:6px;
  cursor:pointer;border:none;background:var(--bg4);color:var(--text2);font-family:var(--font-body);transition:all .15s;}
.hblock-action-btn:hover{background:var(--accent);color:#fff;}

.hero-block{text-align:center;padding:80px 20px;}
.hero-block h1{font-family:var(--font-head);font-size:clamp(36px,6vw,72px);font-weight:800;line-height:1.08;letter-spacing:-2px;}
.hero-block p{font-size:18px;color:var(--text2);margin-top:16px;max-width:540px;margin-inline:auto;}
.hero-btns{display:flex;gap:12px;justify-content:center;margin-top:28px;flex-wrap:wrap;}

.img-block{display:flex;justify-content:center;}
.img-block img{max-width:100%;border-radius:var(--r-lg);border:1px solid var(--border);}
.img-placeholder{width:100%;min-height:200px;border-radius:var(--r-lg);border:2px dashed var(--border2);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;color:var(--text3);font-size:14px;}

.gallery-empty{width:100%;min-height:180px;border-radius:var(--r-lg);border:2px dashed var(--border2);display:flex;align-items:center;justify-content:center;color:var(--text3);font-size:15px;cursor:pointer;}
.gallery-grid{display:grid;gap:10px;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));align-items:center;}
.gallery-grid[data-count="1"]{grid-template-columns:1fr;}
.gallery-grid[data-count="2"]{grid-template-columns:repeat(2,1fr);}
.gallery-grid[data-count="3"]{grid-template-columns:repeat(3,1fr);}
.gallery-item{overflow:hidden;}
.gallery-item img{max-width:100%;max-height:800px;object-fit:contain;display:block;margin:0 auto;transition:transform .3s;border:none;border-radius:0;outline:none;}
.gallery-item:hover img{transform:scale(1.04);}
@media(max-width:600px){.gallery-grid{grid-template-columns:1fr!important;}}

.text-block{max-width:700px;}
.text-block h2{font-family:var(--font-head);font-size:28px;font-weight:700;margin-bottom:10px;}
.text-block p{color:var(--text2);line-height:1.8;font-size:15px;}

.cards-row{display:flex;gap:16px;flex-wrap:wrap;}
.info-card{flex:1;min-width:200px;background:var(--bg2);border:1px solid var(--border);border-radius:var(--r);padding:24px;}
.info-card .card-icon{font-size:28px;margin-bottom:12px;}
.info-card h3{font-family:var(--font-head);font-size:17px;font-weight:700;margin-bottom:8px;}
.info-card p{color:var(--text2);font-size:14px;line-height:1.7;}

/* ── COMMUNITY ── */
.comm-layout{max-width:1100px;margin:0 auto;padding:40px 28px;}
.comm-header{margin-bottom:24px;}
.comm-header h1{font-family:var(--font-head);font-size:32px;font-weight:800;}
.comm-header p{color:var(--text2);font-size:14px;margin-top:6px;}

.comm-search{margin-bottom:24px;}
.comm-search-row{display:flex;gap:10px;flex-wrap:wrap;}
.comm-search-wrap{position:relative;flex:1;min-width:220px;}
.comm-search-icon{position:absolute;left:12px;top:50%;transform:translateY(-50%);font-size:14px;pointer-events:none;opacity:.6;}
.comm-search-input{width:100%;padding:9px 36px 9px 36px;background:var(--bg2);border:1px solid var(--border);border-radius:var(--r-sm);font-size:14px;color:var(--text);outline:none;transition:border-color .15s;}
.comm-search-input:focus{border-color:var(--accent);}
.comm-search-input::placeholder{color:var(--text3);}
.comm-search-clear{position:absolute;right:10px;top:50%;transform:translateY(-50%);background:none;border:none;color:var(--text3);cursor:pointer;font-size:13px;padding:2px 6px;border-radius:4px;line-height:1;}
.comm-search-clear:hover{color:var(--text);background:var(--bg4);}
.comm-grade-select{padding:9px 12px;background:var(--bg2);border:1px solid var(--border);border-radius:var(--r-sm);font-size:14px;color:var(--text);outline:none;cursor:pointer;transition:border-color .15s;}
.comm-grade-select:focus{border-color:var(--accent);}
.comm-count{font-size:13px;color:var(--text3);margin-top:10px;min-height:18px;}

.comm-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:16px;}
.member-card{background:var(--bg2);border:1px solid var(--border);border-radius:var(--r);
  padding:20px;cursor:pointer;transition:all .2s;display:flex;flex-direction:column;align-items:center;gap:12px;text-align:center;position:relative;}
.member-card:hover{border-color:var(--border2);transform:translateY(-2px);background:var(--bg3);}
.member-avatar{width:64px;height:64px;border-radius:50%;background:var(--bg4);
  display:flex;align-items:center;justify-content:center;font-size:22px;font-weight:700;
  border:2px solid var(--border2);overflow:hidden;flex-shrink:0;}
.member-avatar img{width:100%;height:100%;object-fit:cover;}
.member-name{font-weight:600;font-size:15px;}
.grade-badge{display:inline-block;padding:3px 10px;border-radius:20px;font-size:11px;font-weight:700;background:var(--bg4);letter-spacing:.3px;}
.member-badges-corner{position:absolute;top:8px;right:8px;display:flex;flex-direction:column;gap:3px;}
.member-badge-card-icon{width:26px;height:26px;border-radius:6px;display:flex;align-items:center;justify-content:center;overflow:hidden;font-size:14px;line-height:1;flex-shrink:0;transition:transform .15s;}
.member-badge-card-icon:hover{transform:scale(1.15);}
.member-badge-card-icon img{width:100%;height:100%;object-fit:cover;display:block;}

/* ── BADGES ── */
.badge-chip{display:inline-flex;align-items:center;gap:5px;padding:4px 10px;border-radius:20px;font-size:12px;font-weight:600;border:1px solid transparent;white-space:nowrap;}
.badge-item{display:flex;align-items:center;gap:12px;padding:12px 16px;background:var(--bg3);border:1px solid var(--border);border-radius:var(--r-sm);margin-bottom:8px;}
.badge-item-icon{font-size:24px;width:36px;text-align:center;flex-shrink:0;}
.profile-badges-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:4px;}

/* ── PROFILE ── */
.profile-layout{max-width:800px;margin:0 auto;padding:40px 28px;}
.profile-header{background:var(--bg2);border:1px solid var(--border);border-radius:var(--r-lg);
  padding:32px;display:flex;gap:24px;align-items:flex-start;margin-bottom:24px;flex-wrap:wrap;}
.profile-avatar{width:88px;height:88px;border-radius:50%;background:var(--bg4);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;font-size:30px;font-weight:700;
  border:3px solid var(--border2);overflow:hidden;}
.profile-avatar img{width:100%;height:100%;object-fit:cover;}
.profile-info h1{font-family:var(--font-head);font-size:26px;font-weight:800;}
.profile-steam{font-size:12px;color:var(--text3);margin-top:4px;font-family:monospace;}
.profile-grades{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px;}
.profile-section{background:var(--bg2);border:1px solid var(--border);border-radius:var(--r);padding:24px;margin-bottom:16px;}
.profile-section h3{font-size:11px;font-weight:700;margin-bottom:16px;color:var(--text2);text-transform:uppercase;letter-spacing:1px;}

/* ── TOGGLE ── */
.toggle-row{display:flex;justify-content:space-between;align-items:center;padding:10px 0;border-bottom:1px solid var(--border);}
.toggle-row:last-child{border-bottom:none;}
.toggle-row label{font-size:14px;}
.toggle{width:40px;height:22px;background:var(--bg4);border-radius:11px;cursor:pointer;
  position:relative;transition:background .2s;border:none;flex-shrink:0;}
.toggle.on{background:var(--accent);}
.toggle::after{content:'';position:absolute;top:3px;left:3px;width:16px;height:16px;
  background:#fff;border-radius:50%;transition:transform .2s;}
.toggle.on::after{transform:translateX(18px);}

/* ── SETTINGS ── */
.settings-layout{display:flex;min-height:calc(100vh - 62px);}
.settings-sidebar{width:220px;flex-shrink:0;background:var(--bg2);border-right:1px solid var(--border);padding:28px 16px;}
.settings-sidebar h4{font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;color:var(--text3);padding:0 8px;margin-bottom:8px;}
.settings-nav-item{padding:9px 12px;border-radius:var(--r-sm);font-size:14px;color:var(--text2);
  cursor:pointer;transition:all .15s;display:flex;align-items:center;gap:10px;margin-bottom:2px;}
.settings-nav-item:hover{background:var(--bg3);color:var(--text);}
.settings-nav-item.active{background:var(--bg4);color:var(--text);font-weight:600;}
.settings-content{flex:1;padding:40px;overflow-y:auto;}
.settings-content h2{font-family:var(--font-head);font-size:24px;font-weight:800;margin-bottom:24px;}
.grades-panel-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px;}

/* Grades list */
.grade-item{background:var(--bg3);border:1px solid var(--border);border-radius:var(--r-sm);
  padding:14px 18px;margin-bottom:8px;display:flex;align-items:center;gap:14px;
  cursor:grab;transition:all .18s;user-select:none;}
.grade-item:hover{border-color:var(--border2);}
.grade-item.dragging{opacity:.5;}
.drag-handle{color:var(--text3);font-size:16px;}
.grade-rank{font-size:11px;color:var(--text3);font-weight:600;min-width:24px;}
.grade-name-display{font-weight:700;font-size:15px;}
.grade-perm-count{font-size:11px;color:var(--text3);margin-left:auto;}
.grade-actions-btns{display:flex;gap:6px;}
.drag-over{outline:2px dashed var(--accent);outline-offset:4px;border-radius:6px;}

/* ── MODALS ── */
.modal-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.7);z-index:200;
  align-items:center;justify-content:center;padding:20px;}
.modal-overlay.open{display:flex;}
.modal{background:var(--bg2);border:1px solid var(--border2);border-radius:var(--r-lg);
  padding:28px;width:100%;max-width:520px;max-height:80vh;overflow-y:auto;}
.modal h3{font-family:var(--font-head);font-size:20px;font-weight:800;margin-bottom:20px;}
.modal-footer{display:flex;gap:10px;justify-content:flex-end;margin-top:20px;}

/* ── FORMS ── */
.form-field{margin-bottom:16px;}
.form-label{display:block;font-size:12px;font-weight:600;color:var(--text2);text-transform:uppercase;letter-spacing:.8px;margin-bottom:7px;}
.form-input{width:100%;padding:10px 14px;background:var(--bg3);border:1px solid var(--border2);
  border-radius:var(--r-sm);color:var(--text);font-size:14px;font-family:var(--font-body);outline:none;transition:border-color .15s;}
.form-input:focus{border-color:var(--accent);}
.form-input[type="color"]{height:40px;cursor:pointer;padding:4px 8px;}
select.form-input{cursor:pointer;}
textarea.form-input{resize:vertical;}

/* Permissions */
.perm-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px;}
.perm-item{display:flex;align-items:center;gap:8px;padding:8px 10px;background:var(--bg3);
  border:1px solid var(--border);border-radius:var(--r-sm);cursor:pointer;}
.perm-item input{accent-color:var(--accent);width:14px;height:14px;cursor:pointer;}
.perm-item label{font-size:13px;cursor:pointer;color:var(--text2);}
.perm-item:has(input:checked){border-color:rgba(79,110,247,.4);background:rgba(79,110,247,.08);}
.perm-item:has(input:checked) label{color:var(--text);}

/* ── LOGIN ── */
.login-overlay{display:none;position:fixed;inset:0;background:var(--bg);z-index:300;
  align-items:center;justify-content:center;}
.login-overlay.open{display:flex;}
.login-card{background:var(--bg2);border:1px solid var(--border2);border-radius:var(--r-lg);
  padding:40px 48px;text-align:center;max-width:400px;width:100%;}
.login-logo{font-size:36px;margin-bottom:12px;}
.login-card h2{font-family:var(--font-head);font-size:28px;font-weight:800;margin-bottom:8px;}
.login-card p{color:var(--text2);font-size:14px;margin-bottom:28px;}
.steam-btn{display:flex;align-items:center;justify-content:center;gap:10px;
  width:100%;padding:13px;background:#1b2838;border:1px solid #4b5e6f;border-radius:var(--r-sm);
  color:#fff;font-size:14px;font-weight:600;cursor:pointer;font-family:var(--font-body);transition:all .18s;}
.steam-btn:hover{background:#223344;border-color:#6b9fd4;}

/* ── NOTICES ── */
.notice{padding:10px 16px;border-radius:var(--r-sm);font-size:13px;margin-bottom:16px;display:flex;align-items:center;gap:10px;}
.notice-info{background:rgba(79,110,247,.1);border:1px solid rgba(79,110,247,.25);color:#7c9ef7;}
.notice-danger{background:rgba(239,68,68,.1);border:1px solid rgba(239,68,68,.3);color:#ef4444;}
.notice-success{background:rgba(34,197,94,.1);border:1px solid rgba(34,197,94,.25);color:#22c55e;}

/* ── MISC ── */
.edit-mode-toggle{position:fixed;bottom:28px;right:28px;z-index:95;width:48px;height:48px;
  border-radius:50%;background:var(--accent);border:none;color:#fff;font-size:18px;
  cursor:pointer;display:none;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(79,110,247,.4);transition:all .18s;}
.edit-mode-toggle:hover{transform:scale(1.08);}
.edit-mode-toggle.visible{display:flex;}
.edit-mode-toggle.active{background:var(--green);}
.save-indicator{position:fixed;bottom:28px;left:50%;transform:translateX(-50%);
  background:var(--bg3);border:1px solid var(--border2);border-radius:var(--r-sm);
  padding:8px 16px;font-size:13px;color:var(--text2);z-index:90;opacity:0;transition:opacity .3s;pointer-events:none;}
.save-indicator.show{opacity:1;}
.back-btn{display:inline-flex;align-items:center;gap:6px;color:var(--text2);font-size:13px;
  cursor:pointer;margin-bottom:20px;transition:color .15s;background:none;border:none;font-family:var(--font-body);}
.back-btn:hover{color:var(--text);}
.empty-state{text-align:center;padding:60px 20px;color:var(--text3);}
.tag{display:inline-block;padding:3px 10px;border-radius:20px;font-size:11px;font-weight:700;background:var(--bg4);color:var(--text2);}
.stab{display:none;}.stab.active{display:block;}

/* Cards in block modal */
.card-edit-block{background:var(--bg3);border-radius:var(--r-sm);padding:14px;margin-bottom:10px;border:1px solid var(--border);}

/* ── APPARENCE ── */
.appearance-grid { display:flex; flex-direction:column; gap:24px; }
.appearance-section { background:var(--bg2); border:1px solid var(--border); border-radius:var(--r); padding:24px; }
.appearance-section-title { font-family:var(--font-head); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--text2); margin-bottom:16px; }
.color-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:16px; }
.color-item { display:flex; flex-direction:column; gap:8px; }
.color-preview-row { display:flex; align-items:center; gap:10px; }
.color-input { width:52px !important; height:36px !important; padding:3px 4px !important; cursor:pointer; border-radius:var(--r-sm) !important; flex-shrink:0; }
.color-hex { font-family:monospace; font-size:13px; color:var(--text2); }
.color-sample { font-size:12px; padding:6px 10px; border-radius:var(--r-sm); background:var(--bg3); color:var(--text2); border:1px solid var(--border); }
.form-hint { font-size:12px; color:var(--text3); margin-top:4px; }
.appearance-preview-bar { display:flex; align-items:center; justify-content:space-between; padding:16px 24px; background:var(--bg2); border:1px solid var(--border); border-radius:var(--r); flex-wrap:wrap; gap:12px; }

/* ── PROJETS ── */
.projet-layout{max-width:1100px;margin:0 auto;padding:40px 28px;}
.projet-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:32px;gap:16px;flex-wrap:wrap;}
.projet-header h1{font-family:var(--font-head);font-size:32px;font-weight:800;}
.projet-header p{color:var(--text2);font-size:14px;margin-top:6px;}
.projet-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:20px;}
.projet-card{background:var(--bg2);border:1px solid var(--border);border-radius:var(--r-lg);overflow:hidden;transition:all .2s;}
.projet-card:hover{border-color:var(--border2);transform:translateY(-2px);}
.projet-card-img{height:160px;background-size:cover;background-position:center;background-color:var(--bg3);}
.projet-card-img-empty{display:flex;align-items:center;justify-content:center;font-size:36px;color:var(--text3);}
.projet-card-body{padding:20px;}
.projet-card-header{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:10px;}
.projet-card-title{font-family:var(--font-head);font-size:18px;font-weight:700;flex:1;}
.projet-status-badge{display:inline-block;padding:3px 10px;border-radius:20px;font-size:11px;font-weight:700;white-space:nowrap;flex-shrink:0;}
.projet-card-desc{color:var(--text2);font-size:14px;line-height:1.7;margin-bottom:14px;}
.projet-card-footer{display:flex;align-items:center;justify-content:space-between;padding-top:12px;border-top:1px solid var(--border);}
.projet-card-date{font-size:12px;color:var(--text3);}

/* ── FOND DU SITE ── */
.site-bg{position:fixed;inset:0;z-index:-1;overflow:hidden;pointer-events:none;}
.site-bg video,.site-bg div{width:100%;height:100%;object-fit:cover;background-size:cover;background-position:center;}
body:has(.site-bg){background:rgba(13,15,20,0.75)!important;}

/* ── PAGINATION ── */
.pagination{display:flex;justify-content:center;gap:8px;margin-top:28px;flex-wrap:wrap;}
.page-btn{padding:7px 14px;border-radius:var(--r-sm);font-size:13px;font-weight:600;cursor:pointer;
  border:1px solid var(--border2);background:var(--bg2);color:var(--text2);transition:all .15s;font-family:var(--font-body);}
.page-btn:hover{background:var(--bg3);color:var(--text);}
.page-btn.active{background:var(--accent);color:#fff;border-color:var(--accent);}

/* ── ICON PICKER ── */
.icon-picker-row{display:flex;gap:8px;align-items:center;}
.emoji-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(38px,1fr));gap:4px;max-height:320px;overflow-y:auto;}
.emoji-btn{padding:6px;border-radius:var(--r-sm);font-size:22px;cursor:pointer;background:none;border:1px solid transparent;
  transition:all .12s;line-height:1;display:flex;align-items:center;justify-content:center;}
.emoji-btn:hover{background:var(--bg3);border-color:var(--border2);}

/* ── GRADE ICON ── */
.grade-icon{width:22px;height:22px;border-radius:4px;object-fit:cover;display:inline-block;flex-shrink:0;}
.grade-icon-emoji{font-size:16px;line-height:1;}

/* ── PROJET ROLES ── */
.projet-role-item{background:var(--bg3);border:1px solid var(--border);border-radius:var(--r-sm);
  padding:12px 16px;margin-bottom:8px;display:flex;align-items:center;gap:12px;
  cursor:grab;user-select:none;}
.projet-role-item:active{cursor:grabbing;}
.projet-role-item button{cursor:pointer;}
.projet-role-icon{width:28px;height:28px;border-radius:6px;display:flex;align-items:center;justify-content:center;font-size:16px;flex-shrink:0;overflow:hidden;}
.projet-role-icon img{width:100%;height:100%;object-fit:cover;}
.projet-role-actions{margin-left:auto;display:flex;gap:6px;}

.projet-member-row{display:flex;align-items:center;gap:10px;padding:10px;border-radius:var(--r-sm);
  background:var(--bg3);border:1px solid var(--border);margin-bottom:6px;}
.projet-member-row .avatar{width:32px;height:32px;font-size:11px;}

/* ── PROFILE PROJET ROLES ── */
.projet-role-badge{display:inline-flex;align-items:center;gap:5px;padding:3px 10px;border-radius:20px;
  font-size:11px;font-weight:700;background:var(--bg4);cursor:grab;user-select:none;margin:3px;}
.projet-role-badge img{width:14px;height:14px;border-radius:3px;object-fit:cover;}
.projet-roles-section{display:flex;flex-wrap:wrap;gap:4px;margin-top:8px;}
.projet-roles-section.dragging-over{outline:2px dashed var(--accent);outline-offset:4px;border-radius:6px;}

/* ── DIVIDER ── */
.divider{height:1px;background:var(--border);margin:16px 0;}

/* ── PROJET CARD BUTTONS ── */
.projet-card-actions{display:flex;gap:6px;}
.btn-icon{width:32px;height:32px;padding:0;display:flex;align-items:center;justify-content:center;font-size:15px;}

/* ── LOGS ── */
.logs-filters{display:flex;gap:12px;align-items:flex-end;margin-bottom:16px;flex-wrap:wrap;}
.logs-console{background:var(--bg);border:1px solid var(--border);border-radius:var(--r);padding:16px;font-family:monospace;font-size:12px;min-height:300px;max-height:600px;overflow-y:auto;}
.log-entry{padding:6px 8px;border-radius:4px;margin-bottom:3px;display:flex;gap:10px;align-items:baseline;transition:background .1s;}
.log-entry:hover{background:var(--bg3);}
.log-date{color:var(--text3);white-space:nowrap;flex-shrink:0;}
.log-action{font-weight:700;padding:1px 6px;border-radius:3px;font-size:11px;flex-shrink:0;}
.log-user{color:var(--accent);flex-shrink:0;}
.log-details{color:var(--text2);}
.log-ip{color:var(--text3);font-size:10px;margin-left:auto;flex-shrink:0;}
.logs-empty{color:var(--text3);text-align:center;padding:40px;}
.logs-pagination{display:flex;gap:8px;margin-top:12px;flex-wrap:wrap;}

/* Action colors */
.log-action.grade_create,.log-action.projet_create,.log-action.projet_role_save{background:rgba(34,197,94,.15);color:#22c55e;}
.log-action.grade_edit,.log-action.projet_edit,.log-action.profile_update{background:rgba(79,110,247,.15);color:#4f6ef7;}
.log-action.grade_delete,.log-action.projet_delete,.log-action.logs_cleared{background:rgba(239,68,68,.15);color:#ef4444;}
.log-action.grade_assign,.log-action.projet_role_assign{background:rgba(245,158,11,.15);color:#f59e0b;}
.log-action.projet_view{background:rgba(139,144,164,.15);color:#8b90a4;}

/* ── PAGE PROJET INTERNE ── */
.projet-detail-layout{display:flex;min-height:calc(100vh - 62px);}
.projet-detail-sidebar{width:240px;flex-shrink:0;background:var(--bg2);border-right:1px solid var(--border);padding:24px 16px;display:flex;flex-direction:column;}
.projet-detail-name{font-family:var(--font-head);font-size:18px;font-weight:800;margin-bottom:6px;color:var(--text);}
.projet-detail-status{font-size:12px;margin-bottom:4px;}
.projet-detail-nav{display:flex;flex-direction:column;gap:2px;}
.projet-detail-nav-item{padding:10px 12px;border-radius:var(--r-sm);font-size:14px;color:var(--text2);cursor:pointer;transition:all .15s;display:flex;align-items:center;gap:8px;}
.projet-detail-nav-item:hover{background:var(--bg3);color:var(--text);}
.projet-detail-nav-item.active{background:var(--bg4);color:var(--text);font-weight:600;}
.projet-detail-content{flex:1;padding:36px;overflow-y:auto;}
.projet-detail-content h2{font-family:var(--font-head);font-size:24px;font-weight:800;margin-bottom:20px;}

/* Overview section */
.projet-overview-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:16px;margin-bottom:24px;}
.projet-info-card{background:var(--bg2);border:1px solid var(--border);border-radius:var(--r);padding:20px;}
.projet-info-card h4{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:var(--text3);margin-bottom:10px;}
.projet-cover-img{width:100%;max-height:280px;object-fit:cover;border-radius:var(--r);margin-bottom:20px;border:1px solid var(--border);}

/* Drag handle for roles */
.drag-role-handle{cursor:grab;color:var(--text3);padding:0 4px;font-size:14px;flex-shrink:0;}
.drag-role-handle:active{cursor:grabbing;}
.projet-role-item.drag-over-role{outline:2px dashed var(--accent);outline-offset:2px;border-radius:var(--r-sm);}

/* ══ TABLEAU DE PRÉSENCE ══ */
.presence-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:16px;flex-wrap:wrap;gap:12px;}
.presence-header h2{font-family:var(--font-head);font-size:22px;font-weight:800;margin:0;}
.presence-week-label{font-size:13px;color:var(--text2);margin-top:4px;}
.presence-header-actions{display:flex;gap:8px;flex-wrap:wrap;}
.presence-week-nav{display:flex;gap:8px;align-items:center;margin-bottom:16px;flex-wrap:wrap;}
.presence-table-wrap{overflow-x:auto;border-radius:var(--r);border:1px solid var(--border);}
.presence-table{width:100%;border-collapse:collapse;font-size:12px;}
.presence-table th{background:var(--bg3);padding:8px 6px;text-align:center;border:1px solid var(--border);font-weight:600;white-space:nowrap;position:sticky;top:0;z-index:2;}
.presence-table td{border:1px solid rgba(255,255,255,0.06);padding:0;}
.presence-name-col{min-width:130px;text-align:center!important;position:sticky;left:0;z-index:3;background:var(--bg3);}
.presence-grade-col{min-width:110px;text-align:center!important;}
.presence-day-col{min-width:90px;font-size:11px;}
.presence-total-col{min-width:50px;font-weight:700;}
.presence-name-cell{padding:6px 8px;background:var(--bg2);position:sticky;left:0;z-index:1;font-size:13px;vertical-align:middle;text-align:center;height:44px;}
.presence-name-cell:hover{background:var(--bg3);}
.presence-member-name{font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:126px;display:inline-block;}
.presence-grade-cell{padding:6px 8px;font-size:11px;white-space:nowrap;text-align:center;vertical-align:middle;height:44px;font-weight:600;}
.presence-cell{text-align:center;height:40px;transition:opacity .15s;position:relative;}
.presence-cell:hover{opacity:.8;}
.presence-cell.locked{cursor:not-allowed!important;opacity:.6;}
.presence-cell-label{font-size:9px;font-weight:600;padding:2px 3px;line-height:1.3;text-align:center;display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.presence-total-cell{text-align:center;padding:8px;font-weight:700;font-size:14px;color:var(--green);}
.fired-row{opacity:.7;}
.presence-day-date{font-size:10px;opacity:.7;margin-top:1px;}
.server-toggle{font-size:11px;cursor:pointer;margin-top:2px;opacity:.8;}
.server-toggle:hover{opacity:1;}
.today{background:rgba(79,110,247,.15)!important;outline:2px solid var(--accent);}
.closed-day{background:rgba(0,0,0,.3)!important;}
.day-closed.presence-cell{opacity:.7;}
.presence-cell.pending-absence{box-shadow:inset 0 0 0 2px #22d3ee;}
.presence-legend{display:flex;flex-wrap:wrap;gap:6px;margin-top:12px;}
.legend-item{padding:3px 8px;border-radius:4px;font-size:11px;font-weight:600;}
.presence-section{background:var(--bg2);border:1px solid var(--border);border-radius:var(--r);padding:20px;}
.presence-section-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px;}
.presence-section h3{font-size:14px;font-weight:700;color:var(--text);margin:0;}
.direct-perms-list{display:flex;flex-wrap:wrap;gap:6px;min-height:30px;}
.member-profile-actions{margin-bottom:12px;display:flex;gap:8px;}
.btn-success{background:var(--green);color:#fff;}.btn-success:hover{background:#16a34a;}

/* ── BADGE DEMANDES ABSENCE ── */
.absence-badge{display:inline-flex;align-items:center;justify-content:center;
  background:var(--red);color:#fff;font-size:10px;font-weight:700;
  min-width:16px;height:16px;border-radius:8px;padding:0 4px;margin-left:5px;vertical-align:middle;}

/* ── POLLING ANIMATION ── */
@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); box-shadow: 0 0 0 4px rgba(239,68,68,.3); }
  100% { transform: scale(1); }
}

/* ── MODIFIER RÔLE bouton ── */
.projet-member-row .btn { flex-shrink: 0; }

/* ── ALERTE ABSENCE LONGUE ── */
.presence-alert{background:rgba(245,158,11,.12);border:1px solid rgba(245,158,11,.35);
  border-radius:var(--r-sm);padding:10px 16px;font-size:13px;color:#f59e0b;margin-bottom:12px;}
.presence-alert strong{color:#fcd34d;}

/* ── QUOTA ── */
.quota-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px;flex-wrap:wrap;gap:12px;}
.quota-header h2{font-family:var(--font-head);font-size:22px;font-weight:800;margin:0;}
.quota-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:16px;}
.quota-card{background:var(--bg2);border:1px solid var(--border);border-radius:var(--r);padding:18px;display:flex;flex-direction:column;gap:10px;transition:border-color .2s;}
.quota-card:hover{border-color:var(--border2);}
.quota-card-alert{border-color:#f59e0b44;background:rgba(245,158,11,.04);}
.quota-card-header{display:flex;align-items:center;justify-content:space-between;gap:8px;flex-wrap:wrap;}
.quota-alert-badge{font-size:11px;font-weight:700;color:#f59e0b;background:rgba(245,158,11,.15);border:1px solid rgba(245,158,11,.35);padding:3px 8px;border-radius:12px;}
.quota-resource-row{margin-bottom:8px;}
.quota-progress-bar{height:6px;background:var(--bg4);border-radius:3px;overflow:hidden;}
.quota-progress-fill{height:100%;border-radius:3px;transition:width .3s;}
.quota-card-footer{display:flex;align-items:center;flex-wrap:wrap;gap:8px;padding-top:10px;border-top:1px solid var(--border);margin-top:4px;}

/* ── PARAMÈTRES PROJET ── */
.param-section{background:var(--bg2);border:1px solid var(--border);border-radius:var(--r);padding:20px;margin-bottom:16px;}
.param-section h3{font-size:16px;font-weight:700;margin-bottom:16px;}
.resource-item{display:flex;align-items:center;gap:10px;padding:10px;background:var(--bg3);border-radius:var(--r-sm);border:1px solid var(--border);margin-bottom:8px;}

/* ── ZOOM IMAGE ── */
#imageZoomModal { cursor: zoom-out; z-index: 400; }

/* ── QUOTA ── */
.quota-progress-bar{height:6px;background:var(--bg4);border-radius:3px;overflow:hidden;}
.quota-progress-fill{height:100%;border-radius:3px;transition:width .3s;}

/* ── EFFECTIF TABLE ── */
.effectif-table { width:100%; border-collapse:collapse; font-size:13px; }
.effectif-table th {
  background:var(--bg3); color:var(--text2); font-size:11px; font-weight:700;
  text-transform:uppercase; letter-spacing:.5px; padding:10px 12px;
  border-bottom:1px solid var(--border); text-align:left; white-space:nowrap;
  position:sticky; top:0; z-index:3;
}
.effectif-table th:first-child {
  position:sticky; left:0; top:0; z-index:4;
  box-shadow: 2px 0 6px rgba(0,0,0,.25);
}
/* Ligne de séparation de grade : sticky sur la colonne nom */
.effectif-group-row td {
  position:sticky; left:0;
  background:var(--bg3);
  z-index:2;
}
.effectif-table td {
  padding:8px 12px; border-bottom:1px solid var(--border);
  vertical-align:middle; color:var(--text);
}
.effectif-table td:first-child {
  position:sticky; left:0; z-index:2;
  background:var(--bg2);
  box-shadow: 2px 0 6px rgba(0,0,0,.25);
}
.effectif-table tr:hover td { background:var(--bg3); }
.effectif-table tr:last-child td { border-bottom:none; }
.effectif-input {
  width:100%; background:transparent; border:none; color:var(--text);
  font-size:13px; padding:8px 12px; outline:none;
}
.effectif-input:focus { background:var(--bg3); }
.effectif-select {
  width:100%; background:var(--bg2); border:none; color:var(--text);
  font-size:12px; font-weight:600; padding:8px 12px; cursor:pointer; outline:none;
}
.effectif-select option { background:var(--bg2); color:var(--text); }
.effectif-select:focus { background:var(--bg3); }
.effectif-col-btn {
  background:none; border:none; cursor:pointer; font-size:12px; opacity:.6; padding:2px;
  line-height:1;
}
.effectif-col-btn:hover { opacity:1; }

/* ══════════════════════════════════════════
   DOSSIERS PERSONNELS
   ══════════════════════════════════════════ */
.dossier-layout { display:flex; flex-direction:column; gap:0; }
.dossier-admin-panel { background:var(--bg2); border:1px solid var(--border); border-radius:var(--r); padding:18px 20px; }
.dossier-own-panel { padding:4px 0; }
.dossier-gate { text-align:center; padding:20px 0; }

.dossier-level-banner {
  padding:8px 14px; border-radius:var(--r-sm); border:1px solid; font-size:13px; font-weight:700;
  margin-bottom:16px; display:inline-block;
}

.dossier-section { margin-bottom:20px; }
.dossier-section-title { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--text3); margin-bottom:10px; }

/* Membres grid */
.dossier-members-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(120px,1fr)); gap:10px; }
.dossier-member-card {
  background:var(--bg2); border:1px solid var(--border); border-radius:var(--r-sm);
  padding:14px 10px; cursor:pointer; text-align:center;
  transition:border-color .15s, transform .1s;
  position:relative;
}
.dossier-member-card:hover { border-color:var(--accent); transform:translateY(-1px); }
.dossier-member-avatar {
  width:44px; height:44px; border-radius:50%; background:var(--bg3); margin:0 auto 8px;
  display:flex; align-items:center; justify-content:center; font-size:18px; position:relative;
  overflow:visible;
}
.dossier-member-warn-dot {
  position:absolute; bottom:1px; right:1px; width:10px; height:10px; border-radius:50%;
  border:2px solid var(--bg2);
}
.dossier-member-name { font-size:12px; font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.dossier-member-sev  { font-size:11px; font-weight:700; margin-top:4px; }

/* Warning cards */
.dossier-warn-card {
  background:var(--bg2); border:1px solid var(--border); border-left:3px solid var(--border);
  border-radius:var(--r-sm); padding:12px 14px; margin-bottom:8px;
}
.dossier-warn-card.dossier-neutralized { opacity:.55; }
.dossier-warn-top { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-bottom:8px; }
.dossier-sev-badge { font-size:12px; font-weight:700; padding:2px 8px; border-radius:10px; white-space:nowrap; }
.dossier-warn-reason { font-size:13px; color:var(--text); line-height:1.6; white-space:pre-wrap; word-break:break-word; }
.dossier-warn-author { font-size:11px; color:var(--text3); margin-top:6px; }

/* Reduce panel */
.dossier-reduce-panel {
  display:flex; align-items:center; gap:6px; margin-top:8px;
  background:var(--bg3); border:1px solid var(--border); border-radius:var(--r-sm); padding:6px 10px;
}

/* Note cards */
.dossier-note-card {
  background:var(--bg2); border:1px solid var(--border); border-left:3px solid var(--accent);
  border-radius:var(--r-sm); padding:12px 14px; margin-bottom:8px;
}
.dossier-note-body { font-size:13px; line-height:1.6; white-space:pre-wrap; word-break:break-word; }
.dossier-note-meta { font-size:11px; color:var(--text3); margin-top:6px; display:flex; align-items:center; flex-wrap:wrap; gap:4px; }

/* Recruitment */
.dossier-recruit-view { display:flex; flex-direction:column; gap:6px; }
.dossier-recruit-row { display:flex; justify-content:space-between; align-items:center; font-size:13px; padding:5px 0; border-bottom:1px solid var(--border2); }
.dossier-recruit-label { color:var(--text2); font-size:12px; }
.dossier-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
@media(max-width:600px) { .dossier-form-grid { grid-template-columns:1fr; } }

/* Sev radio */
.dossier-sev-radio { display:flex; align-items:center; gap:6px; font-size:13px; cursor:pointer; padding:6px 10px; border:1px solid var(--border); border-radius:var(--r-sm); user-select:none; }
.dossier-sev-radio:has(input:checked) { border-color:var(--accent); background:color-mix(in srgb, var(--accent) 8%, transparent); }
.dossier-sev-radio input { margin:0; }

/* Community dossiers */
.comm-dossier-group { display:flex; flex-direction:column; gap:8px; }
.comm-dossier-group-title { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--text3); margin-bottom:6px; padding:0 4px; }
.comm-dossier-card {
  background:var(--bg2); border:1px solid var(--border); border-radius:var(--r);
  overflow:hidden;
}
.comm-dossier-card.comm-dossier-self { opacity:.6; }
.comm-dossier-header {
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  padding:12px 16px; cursor:pointer; user-select:none;
}
.comm-dossier-header:hover { background:var(--bg3); }
.comm-dossier-body { display:none; padding:8px 16px 14px; border-top:1px solid var(--border2); }
.comm-dossier-body.open { display:block; }
.comm-dossier-projet { display:block; padding:10px 0; border-bottom:1px solid var(--border2); }
.comm-dossier-projet:last-child { border-bottom:none; }
.comm-dossier-projet-head { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.comm-dossier-projet-name { font-size:13px; font-weight:700; }
.comm-dossier-section-title { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; color:var(--text3); margin:8px 0 5px; }

/* Liste de sélection d'un membre (assignation de rôle) */
.assign-member-list{max-height:280px;overflow-y:auto;border:1px solid var(--border);border-radius:var(--r-sm);background:var(--bg3);padding:4px;display:flex;flex-direction:column;gap:2px;}
.assign-member-row{display:flex;align-items:center;gap:10px;padding:8px 10px;border-radius:var(--r-sm);cursor:pointer;transition:background .12s;}
.assign-member-row:hover{background:var(--bg4);}
.assign-member-row.selected{background:color-mix(in srgb,var(--accent) 18%,transparent);box-shadow:inset 0 0 0 1px color-mix(in srgb,var(--accent) 55%,transparent);}
.assign-member-avatar{width:30px;height:30px;border-radius:50%;object-fit:cover;flex-shrink:0;}
.assign-member-avatar-fallback{width:30px;height:30px;border-radius:50%;background:var(--bg2);display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;color:var(--text2);flex-shrink:0;}
.assign-member-check{margin-left:auto;color:var(--accent);font-weight:700;opacity:0;flex-shrink:0;}
.assign-member-row.selected .assign-member-check{opacity:1;}

/* Sélecteur de jours pour absence permanente */
.absence-day{display:flex;align-items:center;gap:5px;padding:6px 11px;background:var(--bg3);border:1px solid var(--border);border-radius:20px;font-size:13px;cursor:pointer;user-select:none;transition:border-color .15s,background .15s;}
.absence-day:hover{border-color:var(--accent);}
.absence-day input{accent-color:var(--accent);cursor:pointer;}

/* Header de modal avec croix de fermeture (modals dossiers) */
.modal-header { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:14px; }
.modal-header h3 { margin:0; }
.modal-close {
  background:transparent; border:none; color:var(--text3);
  font-size:15px; line-height:1; cursor:pointer;
  width:30px; height:30px; border-radius:8px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  transition:background .15s, color .15s;
}
.modal-close:hover { background:var(--bg3); color:var(--text); }

/* ── DISPONIBILITE ─────────────────────────── */
.dispo-day-row{display:flex;align-items:center;gap:4px;margin-bottom:2px;}
.dispo-day-label{width:36px;font-size:11px;font-weight:700;color:var(--text3);flex-shrink:0;text-align:right;padding-right:4px;}
.dispo-hours-grid{display:grid;grid-template-columns:repeat(24,1fr);gap:1px;flex:1;min-width:0;}
.dispo-hour-cell{font-size:9px;text-align:center;padding:6px 0;border-radius:3px;background:var(--bg3);color:var(--text3);cursor:pointer;user-select:none;transition:background .1s;}
.dispo-hour-cell:hover{opacity:.8;}
.dispo-hour-cell.available{background:var(--accent);color:#fff;}
.dispo-hour-header{display:flex;align-items:center;gap:4px;margin-bottom:4px;}
.dispo-hour-header .dispo-hours-grid div{font-size:8px;text-align:center;color:var(--text3);}
.dispo-tableau{border-collapse:collapse;font-size:12px;width:100%;}
.dispo-tableau th,.dispo-tableau td{padding:4px 1px;border:1px solid var(--border);text-align:center;}
.dispo-tableau thead th{background:var(--bg3);font-size:9px;font-weight:700;position:sticky;top:0;z-index:2;}
.dispo-att-name-th{white-space:nowrap;text-align:left!important;}
.dispo-att-name{cursor:pointer;font-weight:600;font-size:12px;display:flex;align-items:center;gap:6px;white-space:nowrap;}
.dispo-att-name:hover{color:var(--accent);}
/* Effectif : petit bouton « notes » à côté du nom (icône + compteur, jamais sur 2 lignes) */
.eff-notes-btn{display:inline-flex;align-items:center;gap:3px;flex-shrink:0;margin-left:6px;padding:2px 6px;height:22px;border-radius:11px;border:1px solid var(--border2);background:var(--bg3);color:var(--text2);font-size:12px;line-height:1;cursor:pointer;white-space:nowrap;transition:background .15s,border-color .15s;}
.eff-notes-btn:hover{background:var(--bg4);border-color:var(--accent);}
.eff-notes-n{font-size:10px;font-weight:800;color:#fff;background:var(--accent);border-radius:8px;padding:0 5px;min-width:14px;text-align:center;line-height:14px;}
/* bouton « ⚠️ À convoquer » (quota insuffisant) + compteur */
.quota-convoc-btn{position:relative;}
.quota-convoc-btn.has-notif{border-color:rgba(239,68,68,.6);color:#fca5a5;}
.quota-convoc-badge{display:inline-flex;align-items:center;justify-content:center;min-width:18px;height:18px;padding:0 5px;margin-left:4px;border-radius:9px;background:#ef4444;color:#fff;font-size:11px;font-weight:800;box-shadow:0 0 0 2px rgba(239,68,68,.25);animation:vipDot 1s ease-in-out infinite alternate;}
.quota-convoc-badge[hidden]{display:none;}
/* menu de choix du statut de présence (mode « liste ») */
.presence-status-menu{position:absolute;z-index:12000;min-width:210px;background:var(--bg2);border:1px solid var(--border2);border-radius:var(--r-sm);box-shadow:0 10px 30px rgba(0,0,0,.6);padding:4px;}
.psm-item{display:flex;align-items:center;gap:8px;padding:7px 10px;font-size:13px;border-radius:6px;cursor:pointer;color:var(--text);}
.psm-item:hover{background:var(--bg3);}
.psm-item.on{font-weight:700;}
.psm-dot{width:10px;height:10px;border-radius:50%;flex:none;box-shadow:0 0 0 1px rgba(255,255,255,.25);}
.dispo-att-cell{height:28px;text-align:center;cursor:pointer;transition:background .15s;position:relative;}
.dispo-att-cell:hover::after{content:attr(data-tip);position:absolute;bottom:110%;left:50%;transform:translateX(-50%);background:#000;color:#fff;font-size:10px;padding:3px 8px;border-radius:4px;white-space:nowrap;z-index:10;pointer-events:none;}
.dispo-att-cell.not-scheduled{background:#000000;}
.dispo-att-cell.scheduled{background:#c0392b;}
.dispo-att-cell.scheduled:hover{background:#d64c3b;}
.dispo-att-cell.checked{background:#22a55a;}
.dispo-att-cell.checked:hover{background:#2bbd6a;}
.dispo-att-cell.absent{background:#8e44ad;cursor:not-allowed;}
.dispo-att-cell.scheduled.blocked{cursor:not-allowed;box-shadow:inset 0 0 0 2px rgba(0,0,0,.4);}
.dispo-att-cell.scheduled.blocked:hover{background:#c0392b;}
/* identifiant court (R1…) sur les créneaux + badge à côté du nom */
.dispo-att-tag{display:none;font-style:normal;font-size:9.5px;font-weight:800;line-height:28px;color:#fff;letter-spacing:.3px;text-shadow:0 1px 2px rgba(0,0,0,.8);pointer-events:none;}
.dispo-att-cell.checked .dispo-att-tag{display:inline;} /* identifiant visible uniquement sur les cases cochées (présent) */
.dispo-tag-badge{display:inline-block;margin-left:6px;padding:0 6px;border-radius:8px;font-size:10px;font-weight:800;background:var(--accent);color:#fff;vertical-align:middle;}


/* ── BANQUE ─────────────────────────────────── */
.banque-my-card{background:var(--bg2);border:1px solid var(--border);border-radius:var(--r);padding:20px;}
.banque-cat-section{margin-bottom:16px;}
.banque-cat-header{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:var(--text2);margin-bottom:8px;padding:4px 0;border-bottom:1px solid var(--border2);}
.banque-cat-items{display:flex;flex-direction:column;gap:4px;}
/* sous-catégories (1 niveau) */
.banque-subcat-section{margin:8px 0 6px 14px;padding-left:10px;border-left:2px solid var(--border2);}
.banque-subcat-header{font-size:11px;font-weight:700;letter-spacing:.6px;color:var(--text3);margin-bottom:6px;padding:2px 0;}
.banque-recap-sub{margin:8px 0 4px 16px;}
.banque-config-subcat{margin:0 12px 10px 28px;border:1px solid var(--border);border-radius:var(--r-sm);overflow:hidden;background:var(--bg);}
.banque-config-subcat-header{padding:8px 12px;}
.banque-item-row{display:flex;align-items:center;gap:10px;padding:8px 10px;background:var(--bg3);border-radius:var(--r-sm);border:1px solid transparent;transition:border-color .15s;}
.banque-item-row:hover{border-color:var(--border);}
.banque-item-icon{width:28px;height:28px;object-fit:contain;border-radius:4px;flex-shrink:0;}
.banque-item-icon-placeholder{font-size:20px;flex-shrink:0;width:28px;text-align:center;}
.banque-item-meta{flex:1;min-width:0;display:flex;flex-direction:column;gap:1px;}
.banque-item-name{font-size:13px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.banque-item-desc{font-size:11px;color:var(--text3);}
.banque-item-qty{font-size:15px;font-weight:700;color:var(--text3);min-width:32px;text-align:right;flex-shrink:0;}
.banque-qty-positive{color:var(--green)!important;}
.banque-qty-input{width:64px;text-align:center;background:var(--bg4);border:1px solid var(--accent);border-radius:4px;color:var(--text);padding:2px 6px;font-size:13px;font-weight:700;}
.banque-edit-btn{opacity:.5;transition:opacity .15s;}
.banque-item-row:hover .banque-edit-btn{opacity:1;}
.banque-members-grid{display:flex;flex-wrap:wrap;gap:8px;}
.banque-member-chip{display:flex;align-items:center;gap:8px;padding:8px 12px;background:var(--bg2);border:1px solid var(--border);border-radius:var(--r-sm);cursor:pointer;font-size:13px;transition:border-color .15s,background .15s;}
.banque-member-chip:hover{border-color:var(--accent);background:var(--bg3);}
/* Récap */
.banque-recap-section{background:var(--bg2);border:1px solid var(--border);border-radius:var(--r);margin-bottom:12px;overflow:hidden;}
.banque-recap-cat-header{display:flex;align-items:center;gap:8px;padding:12px 16px;cursor:pointer;user-select:none;font-size:14px;}
.banque-recap-cat-header:hover{background:var(--bg3);}
.banque-recap-arrow{font-size:10px;color:var(--text3);}
.banque-recap-body{border-top:1px solid var(--border);}
.banque-recap-table{border-collapse:collapse;width:100%;font-size:12px;}
.banque-recap-table th,.banque-recap-table td{padding:6px 8px;border:1px solid var(--border2);}
.banque-recap-th{background:var(--bg3);text-align:center;font-weight:600;font-size:11px;min-width:60px;max-width:90px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.banque-recap-th-item{background:var(--bg3);text-align:left;font-weight:700;font-size:11px;min-width:100px;}
.banque-recap-th-name{display:block;font-size:10px;}
.banque-recap-td{text-align:center;font-weight:700;}
.banque-recap-td-item{text-align:left;font-size:12px;}
.banque-recap-total{background:var(--bg3);}
/* Config */
.banque-config-cat{background:var(--bg2);border:1px solid var(--border);border-radius:var(--r);margin-bottom:12px;overflow:hidden;}
.banque-config-cat-header{display:flex;align-items:center;gap:10px;padding:12px 14px;background:var(--bg3);border-bottom:1px solid var(--border);}
.banque-config-items{padding:8px 12px;display:flex;flex-direction:column;gap:4px;}
.banque-config-item{display:flex;align-items:center;gap:8px;padding:8px 10px;background:var(--bg3);border-radius:var(--r-sm);}
.banque-move-select{font-size:11px;padding:3px 6px;background:var(--bg4);border:1px solid var(--border);border-radius:4px;color:var(--text);cursor:pointer;max-width:130px;}

/* ============================================================
   QUEST BOARD - DA médiévale (parchemin / bois / lanternes)
   ============================================================ */
.questboard{
  --qb-ink:#3a2712; --qb-ink2:#6b4e2e; --qb-line:#c8a768;
  --qb-parch1:#f3e3bf; --qb-parch2:#e2c68f; --qb-parch-edge:#a8813f;
  /* Texture parchemin vieilli (grain + taches) et assombrissement des bords */
  --qb-tex:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' seed='7' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.30  0 0 0 0 0.20  0 0 0 0 0.06  0 0 0 0.22 0'/%3E%3C/filter%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.018' numOctaves='4' seed='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.42  0 0 0 0 0.26  0 0 0 0 0.08  0 0 0 0.6 -0.16'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23s)'/%3E%3Crect width='100%' height='100%' filter='url(%23g)'/%3E%3C/svg%3E");
  --qb-age:
    radial-gradient(ellipse 90% 80% at 50% 45%, transparent 52%, rgba(120,78,28,.16) 78%, rgba(96,58,18,.42) 100%),
    radial-gradient(30% 24% at 12% 88%, rgba(140,92,36,.26), transparent 70%),
    radial-gradient(26% 20% at 86% 14%, rgba(140,92,36,.22), transparent 70%),
    radial-gradient(18% 14% at 72% 78%, rgba(120,76,28,.16), transparent 70%);
  position:relative; margin:-4px; padding:22px 20px 30px; border-radius:var(--r-lg);
  background-color:#2c1d10;
  background-image:
    repeating-linear-gradient(90deg, rgba(0,0,0,.28) 0 2px, rgba(0,0,0,0) 2px 6px),
    linear-gradient(90deg, #3d2a17 0 12.5%, #4a331c 12.5% 25%, #3a2715 25% 37.5%, #47301a 37.5% 50%, #3d2a17 50% 62.5%, #4a331c 62.5% 75%, #3a2715 75% 87.5%, #47301a 87.5% 100%);
  box-shadow:inset 0 0 90px rgba(0,0,0,.6), inset 0 0 0 6px #5a3f22, inset 0 0 0 8px #2a1c0e;
  border:2px solid #24170b;
}
.questboard::before{ /* clous d'angle */
  content:''; position:absolute; inset:12px; border:2px dashed rgba(90,63,34,.5);
  border-radius:10px; pointer-events:none;
}
.qb-topbar{position:relative; z-index:2; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; margin-bottom:18px;}
.qb-sign{
  font-family:'Cinzel','Playfair Display',Georgia,serif; font-weight:800; letter-spacing:2px;
  color:#f3e2b8; text-transform:uppercase; font-size:24px; padding:10px 26px; margin:0;
  background:linear-gradient(180deg,#6b4a27,#4a3118); border:2px solid #2c1c0d; border-radius:8px;
  box-shadow:0 4px 0 #24170b, inset 0 1px 0 rgba(255,220,150,.25), 0 6px 14px rgba(0,0,0,.5);
  text-shadow:0 1px 0 #2a1c0e, 0 -1px 0 rgba(255,230,170,.15);
  position:relative;
}
.qb-sign::before,.qb-sign::after{content:'•'; position:absolute; top:50%; transform:translateY(-50%); color:#caa35f; font-size:14px;}
.qb-sign::before{left:9px;} .qb-sign::after{right:9px;}
.qb-actions{display:flex; gap:8px; flex-wrap:wrap; z-index:2;}
.questboard .btn-ghost{background:rgba(246,232,200,.08); color:#f0e2c0; border-color:rgba(202,163,95,.5);}
.questboard .btn-ghost:hover{background:rgba(246,232,200,.18); color:#fff5df;}
.questboard .qb-actions .btn-primary{background:linear-gradient(180deg,#a3701f,#815416); color:#fce9c4; border:1px solid #4a2c10; box-shadow:0 2px 0 #3a2410;}
.questboard .qb-actions .btn-primary:hover{background:linear-gradient(180deg,#b57f26,#8f5f1a);}

.qb-stats{position:relative; z-index:2; display:flex; gap:14px; flex-wrap:wrap; margin-bottom:22px;}
.qb-stat{
  flex:1; min-width:180px; padding:14px 18px; border-radius:6px; color:var(--qb-ink);
  background:linear-gradient(160deg,var(--qb-parch1),var(--qb-parch2));
  border:1px solid var(--qb-parch-edge);
  box-shadow:0 6px 14px rgba(0,0,0,.4), inset 0 0 22px rgba(150,110,50,.18);
}
.qb-stat .lbl{font-size:11px; text-transform:uppercase; letter-spacing:1px; color:var(--qb-ink2); font-weight:700;}
.qb-stat .val{font-size:30px; font-weight:800; font-family:'Cinzel',Georgia,serif;}

.qb-grid{position:relative; z-index:2; display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:20px;}
/* Slot de carte : simple enveloppe de réutilisation (voir questRenderGrid), transparente pour la grille
   (display:contents → la carte reste l'élément de grille, exactement comme avant : aucun chevauchement, rien de découpé). */
.qb-slot{ display:contents; }


/* Carte = parchemin cloué */
.qb-card{
  position:relative; padding:18px 16px 15px; color:var(--qb-ink);
  font-family:'EB Garamond',Georgia,'Times New Roman',serif;
  background:
    var(--qb-tex),
    var(--qb-age),
    radial-gradient(120% 80% at 50% -10%, rgba(120,85,40,.20), transparent 60%),
    linear-gradient(158deg,var(--qb-parch1),var(--qb-parch2) 88%);
  border:1px solid var(--qb-parch-edge);
  border-radius:3px;
  box-shadow:0 8px 18px rgba(0,0,0,.45), inset 0 0 46px rgba(120,80,30,.32), inset 0 0 0 1px rgba(255,245,215,.45);
  display:flex; flex-direction:column; gap:9px;
}
.qb-card::after{ /* punaise en haut */
  content:''; position:absolute; top:7px; left:50%; transform:translateX(-50%);
  width:12px; height:12px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, #7a4b2a, #3a2410 70%);
  box-shadow:0 2px 3px rgba(0,0,0,.5), inset 0 1px 1px rgba(255,200,150,.4);
}
.qb-card.qb-template{background:linear-gradient(158deg,#efe1f2,#dcc6e6 88%); border-color:#a06fb0;}
.qb-card.qb-archived{opacity:.72; filter:grayscale(.15);}

/* ── Mise en avant ÉPIQUE des rangs A et S (S > A) ── */
.qb-hot{ position:relative; z-index:1; overflow:visible; margin:10px 10px 12px;
  padding:28px 30px 40px !important; border-radius:6px !important; }
/* Le contenu passe DEVANT les filigranes ; le sceau est tamponné par-dessus le cadre */
.qb-hot .qb-head,.qb-hot .qb-desc,.qb-hot .qb-obj,.qb-hot .qb-foot,.qb-hot .qb-divider,.qb-hot .qb-deadline,.qb-hot .qb-mgr{ position:relative; z-index:2; }
.qb-hot .qb-seal-hot{ z-index:4; }
/* Parchemin plus riche + reflet lumineux animé (en fond, pas en pseudo-élément) */
.qb-hot{
  background:
    linear-gradient(100deg, transparent 38%, rgba(255,255,255,.28) 50%, transparent 62%),
    var(--qb-tex),
    var(--qb-age),
    radial-gradient(120% 90% at 50% -10%, rgba(180,130,60,.30), transparent 60%),
    radial-gradient(90% 60% at 50% 110%, rgba(120,80,30,.22), transparent 60%),
    linear-gradient(158deg,#f5e6c6,#e6cd98 88%) !important;
  background-size:260% 100%, 320px 320px, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100% !important;
  background-repeat:no-repeat, repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat !important;
}
.qb-hot::before{ content:none !important; }
@keyframes qbSheen{ 0%{background-position:120% 0,0 0,0 0,0 0;} 45%,100%{background-position:-160% 0,0 0,0 0,0 0;} }

/* Cadre S : liseré velours rouge entre deux filets d'or + halo rouge pulsé */
.qb-hot-S{ border:2px solid #d9b34a !important; animation:qbSheen 3.6s ease-in-out infinite, qbGlowS 2.2s ease-in-out infinite; }
@keyframes qbGlowS{
  0%,100%{ box-shadow:0 0 0 1px #3a0508, 0 0 14px rgba(239,68,68,.45), 0 14px 28px rgba(0,0,0,.6); }
  50%    { box-shadow:0 0 0 1px #4a080d, 0 0 32px rgba(239,68,68,.95), 0 14px 32px rgba(0,0,0,.65); }
}
/* Cadre A : double filet d'or (pas de velours) + halo ambre plus doux */
.qb-hot-A{ border:2px solid #d9b34a !important; animation:qbSheen 4.2s ease-in-out infinite, qbGlowA 2.6s ease-in-out infinite; }
@keyframes qbGlowA{
  0%,100%{ box-shadow:0 0 0 3px #7a5a12, 0 0 0 5px #d9b34a, 0 0 8px rgba(245,158,11,.35), 0 10px 22px rgba(0,0,0,.55); }
  50%    { box-shadow:0 0 0 3px #8a6a1c, 0 0 0 5px #f3d97a, 0 0 20px rgba(245,158,11,.8),  0 10px 26px rgba(0,0,0,.6); }
}

/* Filigranes dorés (volutes) : discrets, tirés vers l'intérieur des coins */
.qb-orn{ position:absolute; width:40px; height:40px; pointer-events:none; z-index:1; opacity:.75;
  background:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22%3E%3Cpath d=%22M12.0 12.0 L15.8 9.2 L19.9 7.0 L24.2 5.5 L28.7 4.5 L33.1 4.2 L37.6 4.6 L41.8 5.5 L45.9 7.0 L49.6 9.0 L53.0 11.5 L55.9 14.4 L58.4 17.7 L60.4 21.2 L61.8 24.8 L62.7 28.6 L63.0 32.5 L62.8 36.2 L62.1 39.9 L60.9 43.4 L59.3 46.6 L57.2 49.5 L54.8 52.0 L52.2 54.2 L49.2 55.9 L46.2 57.1 L43.0 57.9 L39.8 58.3 L36.7 58.2 L33.7 57.7 L30.8 56.7 L28.1 55.4 L25.7 53.8 L23.6 51.8 L21.8 49.7 L20.4 47.3 L19.4 44.8 L18.7 42.3 L18.4 39.8 L18.5 37.3 L18.9 34.8 L19.6 32.6 L20.7 30.5 L22.0 28.6 L23.5 27.0 L25.1 25.6 L26.9 24.5 L28.8 23.8 L30.8 23.3 L32.7 23.1 L34.6 23.2 L36.3 23.5 L38.0 24.1 L39.5 24.9 L40.8 25.8 L42.0 27.0 L42.9 28.2 L43.6 29.5 L44.0 30.8 L44.3 32.2 L44.3 33.5 L44.2 34.7 L43.9 35.9 L43.4 36.9 L42.8 37.8 L42.1 38.6 L41.3 39.2 L40.5 39.6 L39.6 39.9 L38.8 40.0 L38.0 40.0%22 fill=%22none%22 stroke=%22%237a5510%22 stroke-width=%226.2%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22/%3E%3Cpath d=%22M60.0 17.0 L60.3 15.3 L60.7 13.7 L61.4 12.2 L62.2 10.8 L63.1 9.5 L64.2 8.3 L65.5 7.3 L66.8 6.5 L68.2 5.8 L69.6 5.4 L71.1 5.1 L72.6 5.0 L74.1 5.0 L75.5 5.3 L76.8 5.7 L78.1 6.3 L79.3 7.0 L80.4 7.8 L81.4 8.8 L82.2 9.9 L82.8 11.0 L83.4 12.2 L83.7 13.4 L84.0 14.6 L84.0 15.9 L83.9 17.1 L83.7 18.3 L83.3 19.4 L82.8 20.4 L82.2 21.4 L81.5 22.3 L80.6 23.0 L79.8 23.7 L78.8 24.2 L77.9 24.6 L76.9 24.8 L75.9 25.0 L74.9 25.0 L73.9 24.9 L73.0 24.6 L72.1 24.3 L71.3 23.9 L70.5 23.4 L69.9 22.8 L69.3 22.1 L68.9 21.4 L68.5 20.7 L68.2 19.9 L68.1 19.1 L68.0 18.4 L68.0 17.6 L68.2 16.9 L68.4 16.2 L68.7 15.6 L69.0 15.0 L69.4 14.5 L69.9 14.1 L70.4 13.7 L70.9 13.4 L71.5 13.2 L72.0 13.0 L72.6 13.0 L73.1 13.0 L73.6 13.1 L74.1 13.2 L74.5 13.4 L74.9 13.6 L75.2 13.9 L75.5 14.2 L75.8 14.6%22 fill=%22none%22 stroke=%22%237a5510%22 stroke-width=%226.2%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22/%3E%3Cpath d=%22M17.0 60.0 L15.3 60.3 L13.7 60.7 L12.2 61.4 L10.8 62.2 L9.5 63.1 L8.3 64.2 L7.3 65.5 L6.5 66.8 L5.8 68.2 L5.4 69.6 L5.1 71.1 L5.0 72.6 L5.0 74.1 L5.3 75.5 L5.7 76.8 L6.3 78.1 L7.0 79.3 L7.8 80.4 L8.8 81.4 L9.9 82.2 L11.0 82.8 L12.2 83.4 L13.4 83.7 L14.6 84.0 L15.9 84.0 L17.1 83.9 L18.3 83.7 L19.4 83.3 L20.4 82.8 L21.4 82.2 L22.3 81.5 L23.0 80.6 L23.7 79.8 L24.2 78.8 L24.6 77.9 L24.8 76.9 L25.0 75.9 L25.0 74.9 L24.9 73.9 L24.6 73.0 L24.3 72.1 L23.9 71.3 L23.4 70.5 L22.8 69.9 L22.1 69.3 L21.4 68.9 L20.7 68.5 L19.9 68.2 L19.1 68.1 L18.4 68.0 L17.6 68.0 L16.9 68.2 L16.2 68.4 L15.6 68.7 L15.0 69.0 L14.5 69.4 L14.1 69.9 L13.7 70.4 L13.4 70.9 L13.2 71.5 L13.0 72.0 L13.0 72.6 L13.0 73.1 L13.1 73.6 L13.2 74.1 L13.4 74.5 L13.6 74.9 L13.9 75.2 L14.2 75.5 L14.6 75.8%22 fill=%22none%22 stroke=%22%237a5510%22 stroke-width=%226.2%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22/%3E%3Cpath d=%22M6 6 C24 4 44 6 60 14%22 fill=%22none%22 stroke=%22%237a5510%22 stroke-width=%226.2%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22/%3E%3Cpath d=%22M6 6 C4 24 6 44 14 60%22 fill=%22none%22 stroke=%22%237a5510%22 stroke-width=%226.2%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22/%3E%3Cpath d=%22M44.5 27.3 L44.9 26.5 L45.4 25.8 L45.9 25.2 L46.6 24.6 L47.2 24.1 L47.9 23.7 L48.7 23.4 L49.4 23.2 L50.2 23.0 L51.0 22.9 L51.7 22.9 L52.5 23.0 L53.2 23.2 L53.9 23.5 L54.6 23.8 L55.2 24.2 L55.7 24.6 L56.2 25.1 L56.7 25.7 L57.0 26.3 L57.3 26.9 L57.6 27.5 L57.7 28.1 L57.8 28.8 L57.8 29.4 L57.8 30.0 L57.6 30.7 L57.5 31.2 L57.2 31.8 L56.9 32.3 L56.6 32.8 L56.2 33.2 L55.7 33.6 L55.3 33.9 L54.8 34.1 L54.3 34.3 L53.8 34.5 L53.3 34.6 L52.8 34.6 L52.3 34.6 L51.8 34.5 L51.3 34.3 L50.9 34.2 L50.4 33.9 L50.1 33.7 L49.7 33.4 L49.4 33.0 L49.2 32.7 L49.0 32.3 L48.8 31.9 L48.7 31.5 L48.7 31.2 L48.6 30.8 L48.7 30.4 L48.7 30.0 L48.8 29.7 L49.0 29.4 L49.1 29.1 L49.3 28.8 L49.5 28.6 L49.8 28.4 L50.0 28.2 L50.3 28.0 L50.6 27.9 L50.8 27.9 L51.1 27.8 L51.4 27.8 L51.6 27.9 L51.8 27.9 L52.1 28.0%22 fill=%22none%22 stroke=%22%237a5510%22 stroke-width=%226.2%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22/%3E%3Cpath d=%22M27.3 44.5 L26.5 44.9 L25.8 45.4 L25.2 45.9 L24.6 46.6 L24.1 47.2 L23.7 47.9 L23.4 48.7 L23.2 49.4 L23.0 50.2 L22.9 51.0 L22.9 51.7 L23.0 52.5 L23.2 53.2 L23.5 53.9 L23.8 54.6 L24.2 55.2 L24.6 55.7 L25.1 56.2 L25.7 56.7 L26.3 57.0 L26.9 57.3 L27.5 57.6 L28.1 57.7 L28.8 57.8 L29.4 57.8 L30.0 57.8 L30.7 57.6 L31.2 57.5 L31.8 57.2 L32.3 56.9 L32.8 56.6 L33.2 56.2 L33.6 55.7 L33.9 55.3 L34.1 54.8 L34.3 54.3 L34.5 53.8 L34.6 53.3 L34.6 52.8 L34.6 52.3 L34.5 51.8 L34.3 51.3 L34.2 50.9 L33.9 50.4 L33.7 50.1 L33.4 49.7 L33.0 49.4 L32.7 49.2 L32.3 49.0 L31.9 48.8 L31.5 48.7 L31.2 48.7 L30.8 48.6 L30.4 48.7 L30.0 48.7 L29.7 48.8 L29.4 49.0 L29.1 49.1 L28.8 49.3 L28.6 49.5 L28.4 49.8 L28.2 50.0 L28.0 50.3 L27.9 50.6 L27.9 50.8 L27.8 51.1 L27.8 51.4 L27.9 51.6 L27.9 51.8 L28.0 52.1%22 fill=%22none%22 stroke=%22%237a5510%22 stroke-width=%226.2%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22/%3E%3Cpath d=%22M58.0 24.0 Q47.1 24.7 40.0 33.0 Q50.9 32.3 58.0 24.0 Z%22 fill=%22%237a5510%22 stroke=%22%237a5510%22 stroke-width=%222.4%22/%3E%3Cpath d=%22M24.0 58.0 Q32.3 50.9 33.0 40.0 Q24.7 47.1 24.0 58.0 Z%22 fill=%22%237a5510%22 stroke=%22%237a5510%22 stroke-width=%222.4%22/%3E%3Cpath d=%22M62.0 58.0 Q55.1 46.1 42.0 42.0 Q48.9 53.9 62.0 58.0 Z%22 fill=%22%237a5510%22 stroke=%22%237a5510%22 stroke-width=%222.4%22/%3E%3Cpath d=%22M14.0 26.0 Q19.2 30.5 26.0 30.0 Q20.8 25.5 14.0 26.0 Z%22 fill=%22%237a5510%22 stroke=%22%237a5510%22 stroke-width=%222.4%22/%3E%3Cpath d=%22M26.0 14.0 Q25.5 20.8 30.0 26.0 Q30.5 19.2 26.0 14.0 Z%22 fill=%22%237a5510%22 stroke=%22%237a5510%22 stroke-width=%222.4%22/%3E%3Cpath d=%22M12.0 12.0 L15.8 9.2 L19.9 7.0 L24.2 5.5 L28.7 4.5 L33.1 4.2 L37.6 4.6 L41.8 5.5 L45.9 7.0 L49.6 9.0 L53.0 11.5 L55.9 14.4 L58.4 17.7 L60.4 21.2 L61.8 24.8 L62.7 28.6 L63.0 32.5 L62.8 36.2 L62.1 39.9 L60.9 43.4 L59.3 46.6 L57.2 49.5 L54.8 52.0 L52.2 54.2 L49.2 55.9 L46.2 57.1 L43.0 57.9 L39.8 58.3 L36.7 58.2 L33.7 57.7 L30.8 56.7 L28.1 55.4 L25.7 53.8 L23.6 51.8 L21.8 49.7 L20.4 47.3 L19.4 44.8 L18.7 42.3 L18.4 39.8 L18.5 37.3 L18.9 34.8 L19.6 32.6 L20.7 30.5 L22.0 28.6 L23.5 27.0 L25.1 25.6 L26.9 24.5 L28.8 23.8 L30.8 23.3 L32.7 23.1 L34.6 23.2 L36.3 23.5 L38.0 24.1 L39.5 24.9 L40.8 25.8 L42.0 27.0 L42.9 28.2 L43.6 29.5 L44.0 30.8 L44.3 32.2 L44.3 33.5 L44.2 34.7 L43.9 35.9 L43.4 36.9 L42.8 37.8 L42.1 38.6 L41.3 39.2 L40.5 39.6 L39.6 39.9 L38.8 40.0 L38.0 40.0%22 fill=%22none%22 stroke=%22%23d4ac3c%22 stroke-width=%223.4%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22/%3E%3Cpath d=%22M60.0 17.0 L60.3 15.3 L60.7 13.7 L61.4 12.2 L62.2 10.8 L63.1 9.5 L64.2 8.3 L65.5 7.3 L66.8 6.5 L68.2 5.8 L69.6 5.4 L71.1 5.1 L72.6 5.0 L74.1 5.0 L75.5 5.3 L76.8 5.7 L78.1 6.3 L79.3 7.0 L80.4 7.8 L81.4 8.8 L82.2 9.9 L82.8 11.0 L83.4 12.2 L83.7 13.4 L84.0 14.6 L84.0 15.9 L83.9 17.1 L83.7 18.3 L83.3 19.4 L82.8 20.4 L82.2 21.4 L81.5 22.3 L80.6 23.0 L79.8 23.7 L78.8 24.2 L77.9 24.6 L76.9 24.8 L75.9 25.0 L74.9 25.0 L73.9 24.9 L73.0 24.6 L72.1 24.3 L71.3 23.9 L70.5 23.4 L69.9 22.8 L69.3 22.1 L68.9 21.4 L68.5 20.7 L68.2 19.9 L68.1 19.1 L68.0 18.4 L68.0 17.6 L68.2 16.9 L68.4 16.2 L68.7 15.6 L69.0 15.0 L69.4 14.5 L69.9 14.1 L70.4 13.7 L70.9 13.4 L71.5 13.2 L72.0 13.0 L72.6 13.0 L73.1 13.0 L73.6 13.1 L74.1 13.2 L74.5 13.4 L74.9 13.6 L75.2 13.9 L75.5 14.2 L75.8 14.6%22 fill=%22none%22 stroke=%22%23d4ac3c%22 stroke-width=%223.4%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22/%3E%3Cpath d=%22M17.0 60.0 L15.3 60.3 L13.7 60.7 L12.2 61.4 L10.8 62.2 L9.5 63.1 L8.3 64.2 L7.3 65.5 L6.5 66.8 L5.8 68.2 L5.4 69.6 L5.1 71.1 L5.0 72.6 L5.0 74.1 L5.3 75.5 L5.7 76.8 L6.3 78.1 L7.0 79.3 L7.8 80.4 L8.8 81.4 L9.9 82.2 L11.0 82.8 L12.2 83.4 L13.4 83.7 L14.6 84.0 L15.9 84.0 L17.1 83.9 L18.3 83.7 L19.4 83.3 L20.4 82.8 L21.4 82.2 L22.3 81.5 L23.0 80.6 L23.7 79.8 L24.2 78.8 L24.6 77.9 L24.8 76.9 L25.0 75.9 L25.0 74.9 L24.9 73.9 L24.6 73.0 L24.3 72.1 L23.9 71.3 L23.4 70.5 L22.8 69.9 L22.1 69.3 L21.4 68.9 L20.7 68.5 L19.9 68.2 L19.1 68.1 L18.4 68.0 L17.6 68.0 L16.9 68.2 L16.2 68.4 L15.6 68.7 L15.0 69.0 L14.5 69.4 L14.1 69.9 L13.7 70.4 L13.4 70.9 L13.2 71.5 L13.0 72.0 L13.0 72.6 L13.0 73.1 L13.1 73.6 L13.2 74.1 L13.4 74.5 L13.6 74.9 L13.9 75.2 L14.2 75.5 L14.6 75.8%22 fill=%22none%22 stroke=%22%23d4ac3c%22 stroke-width=%223.4%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22/%3E%3Cpath d=%22M6 6 C24 4 44 6 60 14%22 fill=%22none%22 stroke=%22%23d4ac3c%22 stroke-width=%223.4%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22/%3E%3Cpath d=%22M6 6 C4 24 6 44 14 60%22 fill=%22none%22 stroke=%22%23d4ac3c%22 stroke-width=%223.4%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22/%3E%3Cpath d=%22M44.5 27.3 L44.9 26.5 L45.4 25.8 L45.9 25.2 L46.6 24.6 L47.2 24.1 L47.9 23.7 L48.7 23.4 L49.4 23.2 L50.2 23.0 L51.0 22.9 L51.7 22.9 L52.5 23.0 L53.2 23.2 L53.9 23.5 L54.6 23.8 L55.2 24.2 L55.7 24.6 L56.2 25.1 L56.7 25.7 L57.0 26.3 L57.3 26.9 L57.6 27.5 L57.7 28.1 L57.8 28.8 L57.8 29.4 L57.8 30.0 L57.6 30.7 L57.5 31.2 L57.2 31.8 L56.9 32.3 L56.6 32.8 L56.2 33.2 L55.7 33.6 L55.3 33.9 L54.8 34.1 L54.3 34.3 L53.8 34.5 L53.3 34.6 L52.8 34.6 L52.3 34.6 L51.8 34.5 L51.3 34.3 L50.9 34.2 L50.4 33.9 L50.1 33.7 L49.7 33.4 L49.4 33.0 L49.2 32.7 L49.0 32.3 L48.8 31.9 L48.7 31.5 L48.7 31.2 L48.6 30.8 L48.7 30.4 L48.7 30.0 L48.8 29.7 L49.0 29.4 L49.1 29.1 L49.3 28.8 L49.5 28.6 L49.8 28.4 L50.0 28.2 L50.3 28.0 L50.6 27.9 L50.8 27.9 L51.1 27.8 L51.4 27.8 L51.6 27.9 L51.8 27.9 L52.1 28.0%22 fill=%22none%22 stroke=%22%23d4ac3c%22 stroke-width=%223.4%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22/%3E%3Cpath d=%22M27.3 44.5 L26.5 44.9 L25.8 45.4 L25.2 45.9 L24.6 46.6 L24.1 47.2 L23.7 47.9 L23.4 48.7 L23.2 49.4 L23.0 50.2 L22.9 51.0 L22.9 51.7 L23.0 52.5 L23.2 53.2 L23.5 53.9 L23.8 54.6 L24.2 55.2 L24.6 55.7 L25.1 56.2 L25.7 56.7 L26.3 57.0 L26.9 57.3 L27.5 57.6 L28.1 57.7 L28.8 57.8 L29.4 57.8 L30.0 57.8 L30.7 57.6 L31.2 57.5 L31.8 57.2 L32.3 56.9 L32.8 56.6 L33.2 56.2 L33.6 55.7 L33.9 55.3 L34.1 54.8 L34.3 54.3 L34.5 53.8 L34.6 53.3 L34.6 52.8 L34.6 52.3 L34.5 51.8 L34.3 51.3 L34.2 50.9 L33.9 50.4 L33.7 50.1 L33.4 49.7 L33.0 49.4 L32.7 49.2 L32.3 49.0 L31.9 48.8 L31.5 48.7 L31.2 48.7 L30.8 48.6 L30.4 48.7 L30.0 48.7 L29.7 48.8 L29.4 49.0 L29.1 49.1 L28.8 49.3 L28.6 49.5 L28.4 49.8 L28.2 50.0 L28.0 50.3 L27.9 50.6 L27.9 50.8 L27.8 51.1 L27.8 51.4 L27.9 51.6 L27.9 51.8 L28.0 52.1%22 fill=%22none%22 stroke=%22%23d4ac3c%22 stroke-width=%223.4%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22/%3E%3Cpath d=%22M58.0 24.0 Q47.1 24.7 40.0 33.0 Q50.9 32.3 58.0 24.0 Z%22 fill=%22%23d4ac3c%22/%3E%3Cpath d=%22M24.0 58.0 Q32.3 50.9 33.0 40.0 Q24.7 47.1 24.0 58.0 Z%22 fill=%22%23d4ac3c%22/%3E%3Cpath d=%22M62.0 58.0 Q55.1 46.1 42.0 42.0 Q48.9 53.9 62.0 58.0 Z%22 fill=%22%23d4ac3c%22/%3E%3Cpath d=%22M14.0 26.0 Q19.2 30.5 26.0 30.0 Q20.8 25.5 14.0 26.0 Z%22 fill=%22%23d4ac3c%22/%3E%3Cpath d=%22M26.0 14.0 Q25.5 20.8 30.0 26.0 Q30.5 19.2 26.0 14.0 Z%22 fill=%22%23d4ac3c%22/%3E%3Cpath d=%22M12.0 12.0 L15.8 9.2 L19.9 7.0 L24.2 5.5 L28.7 4.5 L33.1 4.2 L37.6 4.6 L41.8 5.5 L45.9 7.0 L49.6 9.0 L53.0 11.5 L55.9 14.4 L58.4 17.7 L60.4 21.2 L61.8 24.8 L62.7 28.6 L63.0 32.5 L62.8 36.2 L62.1 39.9 L60.9 43.4 L59.3 46.6 L57.2 49.5 L54.8 52.0 L52.2 54.2 L49.2 55.9 L46.2 57.1 L43.0 57.9 L39.8 58.3 L36.7 58.2 L33.7 57.7 L30.8 56.7 L28.1 55.4 L25.7 53.8 L23.6 51.8 L21.8 49.7 L20.4 47.3 L19.4 44.8 L18.7 42.3 L18.4 39.8 L18.5 37.3 L18.9 34.8 L19.6 32.6 L20.7 30.5 L22.0 28.6 L23.5 27.0 L25.1 25.6 L26.9 24.5 L28.8 23.8 L30.8 23.3 L32.7 23.1 L34.6 23.2 L36.3 23.5 L38.0 24.1 L39.5 24.9 L40.8 25.8 L42.0 27.0 L42.9 28.2 L43.6 29.5 L44.0 30.8 L44.3 32.2 L44.3 33.5 L44.2 34.7 L43.9 35.9 L43.4 36.9 L42.8 37.8 L42.1 38.6 L41.3 39.2 L40.5 39.6 L39.6 39.9 L38.8 40.0 L38.0 40.0%22 fill=%22none%22 stroke=%22%23f7e3a0%22 stroke-width=%221.0%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 transform=%22translate%28-0.7,-0.7%29%22 opacity=%22.85%22/%3E%3Cpath d=%22M60.0 17.0 L60.3 15.3 L60.7 13.7 L61.4 12.2 L62.2 10.8 L63.1 9.5 L64.2 8.3 L65.5 7.3 L66.8 6.5 L68.2 5.8 L69.6 5.4 L71.1 5.1 L72.6 5.0 L74.1 5.0 L75.5 5.3 L76.8 5.7 L78.1 6.3 L79.3 7.0 L80.4 7.8 L81.4 8.8 L82.2 9.9 L82.8 11.0 L83.4 12.2 L83.7 13.4 L84.0 14.6 L84.0 15.9 L83.9 17.1 L83.7 18.3 L83.3 19.4 L82.8 20.4 L82.2 21.4 L81.5 22.3 L80.6 23.0 L79.8 23.7 L78.8 24.2 L77.9 24.6 L76.9 24.8 L75.9 25.0 L74.9 25.0 L73.9 24.9 L73.0 24.6 L72.1 24.3 L71.3 23.9 L70.5 23.4 L69.9 22.8 L69.3 22.1 L68.9 21.4 L68.5 20.7 L68.2 19.9 L68.1 19.1 L68.0 18.4 L68.0 17.6 L68.2 16.9 L68.4 16.2 L68.7 15.6 L69.0 15.0 L69.4 14.5 L69.9 14.1 L70.4 13.7 L70.9 13.4 L71.5 13.2 L72.0 13.0 L72.6 13.0 L73.1 13.0 L73.6 13.1 L74.1 13.2 L74.5 13.4 L74.9 13.6 L75.2 13.9 L75.5 14.2 L75.8 14.6%22 fill=%22none%22 stroke=%22%23f7e3a0%22 stroke-width=%221.0%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 transform=%22translate%28-0.7,-0.7%29%22 opacity=%22.85%22/%3E%3Cpath d=%22M17.0 60.0 L15.3 60.3 L13.7 60.7 L12.2 61.4 L10.8 62.2 L9.5 63.1 L8.3 64.2 L7.3 65.5 L6.5 66.8 L5.8 68.2 L5.4 69.6 L5.1 71.1 L5.0 72.6 L5.0 74.1 L5.3 75.5 L5.7 76.8 L6.3 78.1 L7.0 79.3 L7.8 80.4 L8.8 81.4 L9.9 82.2 L11.0 82.8 L12.2 83.4 L13.4 83.7 L14.6 84.0 L15.9 84.0 L17.1 83.9 L18.3 83.7 L19.4 83.3 L20.4 82.8 L21.4 82.2 L22.3 81.5 L23.0 80.6 L23.7 79.8 L24.2 78.8 L24.6 77.9 L24.8 76.9 L25.0 75.9 L25.0 74.9 L24.9 73.9 L24.6 73.0 L24.3 72.1 L23.9 71.3 L23.4 70.5 L22.8 69.9 L22.1 69.3 L21.4 68.9 L20.7 68.5 L19.9 68.2 L19.1 68.1 L18.4 68.0 L17.6 68.0 L16.9 68.2 L16.2 68.4 L15.6 68.7 L15.0 69.0 L14.5 69.4 L14.1 69.9 L13.7 70.4 L13.4 70.9 L13.2 71.5 L13.0 72.0 L13.0 72.6 L13.0 73.1 L13.1 73.6 L13.2 74.1 L13.4 74.5 L13.6 74.9 L13.9 75.2 L14.2 75.5 L14.6 75.8%22 fill=%22none%22 stroke=%22%23f7e3a0%22 stroke-width=%221.0%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 transform=%22translate%28-0.7,-0.7%29%22 opacity=%22.85%22/%3E%3Cpath d=%22M6 6 C24 4 44 6 60 14%22 fill=%22none%22 stroke=%22%23f7e3a0%22 stroke-width=%221.0%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 transform=%22translate%28-0.7,-0.7%29%22 opacity=%22.85%22/%3E%3Cpath d=%22M6 6 C4 24 6 44 14 60%22 fill=%22none%22 stroke=%22%23f7e3a0%22 stroke-width=%221.0%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 transform=%22translate%28-0.7,-0.7%29%22 opacity=%22.85%22/%3E%3Cpath d=%22M44.5 27.3 L44.9 26.5 L45.4 25.8 L45.9 25.2 L46.6 24.6 L47.2 24.1 L47.9 23.7 L48.7 23.4 L49.4 23.2 L50.2 23.0 L51.0 22.9 L51.7 22.9 L52.5 23.0 L53.2 23.2 L53.9 23.5 L54.6 23.8 L55.2 24.2 L55.7 24.6 L56.2 25.1 L56.7 25.7 L57.0 26.3 L57.3 26.9 L57.6 27.5 L57.7 28.1 L57.8 28.8 L57.8 29.4 L57.8 30.0 L57.6 30.7 L57.5 31.2 L57.2 31.8 L56.9 32.3 L56.6 32.8 L56.2 33.2 L55.7 33.6 L55.3 33.9 L54.8 34.1 L54.3 34.3 L53.8 34.5 L53.3 34.6 L52.8 34.6 L52.3 34.6 L51.8 34.5 L51.3 34.3 L50.9 34.2 L50.4 33.9 L50.1 33.7 L49.7 33.4 L49.4 33.0 L49.2 32.7 L49.0 32.3 L48.8 31.9 L48.7 31.5 L48.7 31.2 L48.6 30.8 L48.7 30.4 L48.7 30.0 L48.8 29.7 L49.0 29.4 L49.1 29.1 L49.3 28.8 L49.5 28.6 L49.8 28.4 L50.0 28.2 L50.3 28.0 L50.6 27.9 L50.8 27.9 L51.1 27.8 L51.4 27.8 L51.6 27.9 L51.8 27.9 L52.1 28.0%22 fill=%22none%22 stroke=%22%23f7e3a0%22 stroke-width=%221.0%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 transform=%22translate%28-0.7,-0.7%29%22 opacity=%22.85%22/%3E%3Cpath d=%22M27.3 44.5 L26.5 44.9 L25.8 45.4 L25.2 45.9 L24.6 46.6 L24.1 47.2 L23.7 47.9 L23.4 48.7 L23.2 49.4 L23.0 50.2 L22.9 51.0 L22.9 51.7 L23.0 52.5 L23.2 53.2 L23.5 53.9 L23.8 54.6 L24.2 55.2 L24.6 55.7 L25.1 56.2 L25.7 56.7 L26.3 57.0 L26.9 57.3 L27.5 57.6 L28.1 57.7 L28.8 57.8 L29.4 57.8 L30.0 57.8 L30.7 57.6 L31.2 57.5 L31.8 57.2 L32.3 56.9 L32.8 56.6 L33.2 56.2 L33.6 55.7 L33.9 55.3 L34.1 54.8 L34.3 54.3 L34.5 53.8 L34.6 53.3 L34.6 52.8 L34.6 52.3 L34.5 51.8 L34.3 51.3 L34.2 50.9 L33.9 50.4 L33.7 50.1 L33.4 49.7 L33.0 49.4 L32.7 49.2 L32.3 49.0 L31.9 48.8 L31.5 48.7 L31.2 48.7 L30.8 48.6 L30.4 48.7 L30.0 48.7 L29.7 48.8 L29.4 49.0 L29.1 49.1 L28.8 49.3 L28.6 49.5 L28.4 49.8 L28.2 50.0 L28.0 50.3 L27.9 50.6 L27.9 50.8 L27.8 51.1 L27.8 51.4 L27.9 51.6 L27.9 51.8 L28.0 52.1%22 fill=%22none%22 stroke=%22%23f7e3a0%22 stroke-width=%221.0%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 transform=%22translate%28-0.7,-0.7%29%22 opacity=%22.85%22/%3E%3Ccircle cx=%2238.0%22 cy=%2240.0%22 r=%222.6%22 fill=%22%237a5510%22/%3E%3Ccircle cx=%2237.5%22 cy=%2239.5%22 r=%221.9%22 fill=%22%23f7e3a0%22/%3E%3Ccircle cx=%2275.8%22 cy=%2214.6%22 r=%222.6%22 fill=%22%237a5510%22/%3E%3Ccircle cx=%2275.3%22 cy=%2214.1%22 r=%221.9%22 fill=%22%23f7e3a0%22/%3E%3Ccircle cx=%2214.6%22 cy=%2275.8%22 r=%222.6%22 fill=%22%237a5510%22/%3E%3Ccircle cx=%2214.1%22 cy=%2275.3%22 r=%221.9%22 fill=%22%23f7e3a0%22/%3E%3Ccircle cx=%2252.1%22 cy=%2228.0%22 r=%222.6%22 fill=%22%237a5510%22/%3E%3Ccircle cx=%2251.6%22 cy=%2227.5%22 r=%221.9%22 fill=%22%23f7e3a0%22/%3E%3Ccircle cx=%2228.0%22 cy=%2252.1%22 r=%222.6%22 fill=%22%237a5510%22/%3E%3Ccircle cx=%2227.5%22 cy=%2251.6%22 r=%221.9%22 fill=%22%23f7e3a0%22/%3E%3Ccircle cx=%228.0%22 cy=%228.0%22 r=%222.6%22 fill=%22%237a5510%22/%3E%3Ccircle cx=%227.5%22 cy=%227.5%22 r=%221.9%22 fill=%22%23f7e3a0%22/%3E%3Ccircle cx=%2266.0%22 cy=%2210.0%22 r=%222.6%22 fill=%22%237a5510%22/%3E%3Ccircle cx=%2265.5%22 cy=%229.5%22 r=%221.9%22 fill=%22%23f7e3a0%22/%3E%3Ccircle cx=%2210.0%22 cy=%2266.0%22 r=%222.6%22 fill=%22%237a5510%22/%3E%3Ccircle cx=%229.5%22 cy=%2265.5%22 r=%221.9%22 fill=%22%23f7e3a0%22/%3E%3Ccircle cx=%2256.0%22 cy=%2260.0%22 r=%222.6%22 fill=%22%237a5510%22/%3E%3Ccircle cx=%2255.5%22 cy=%2259.5%22 r=%221.9%22 fill=%22%23f7e3a0%22/%3E%3Ccircle cx=%2260.0%22 cy=%2256.0%22 r=%222.6%22 fill=%22%237a5510%22/%3E%3Ccircle cx=%2259.5%22 cy=%2255.5%22 r=%221.9%22 fill=%22%23f7e3a0%22/%3E%3C/svg%3E") center/contain no-repeat; }
.qb-orn-tl{ top:16px; left:16px; }
.qb-orn-tr{ top:16px; right:16px; transform:scaleX(-1); }
.qb-orn-bl{ bottom:16px; left:16px; transform:scaleY(-1); }
.qb-orn-br{ bottom:16px; right:16px; transform:scale(-1,-1); }
.qb-hot-A .qb-orn{ width:34px; height:34px; opacity:.65; }
/* Équerres d'angle dorées SUR le cadre (coins extérieurs) */
.qb-cnr{ position:absolute; width:64px; height:64px; pointer-events:none; z-index:6;
  background:url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 100 100%27%3E%3Cdefs%3E%3ClinearGradient id=%27cg%27 x1=%270%27 y1=%270%27 x2=%271%27 y2=%271%27%3E%3Cstop offset=%270%27 stop-color=%27%23fff6cc%27/%3E%3Cstop offset=%27.4%27 stop-color=%27%23e6c25c%27/%3E%3Cstop offset=%271%27 stop-color=%27%236e4608%27/%3E%3C/linearGradient%3E%3ClinearGradient id=%27cg2%27 x1=%270%27 y1=%270%27 x2=%271%27 y2=%271%27%3E%3Cstop offset=%270%27 stop-color=%27%23b8862a%27/%3E%3Cstop offset=%271%27 stop-color=%27%23fff6cc%27/%3E%3C/linearGradient%3E%3ClinearGradient id=%27lf%27 x1=%270%27 y1=%270%27 x2=%271%27 y2=%271%27%3E%3Cstop offset=%270%27 stop-color=%27%23fff1b8%27/%3E%3Cstop offset=%271%27 stop-color=%27%23a8781d%27/%3E%3C/linearGradient%3E%3CradialGradient id=%27cr%27 cx=%27.38%27 cy=%27.3%27 r=%27.75%27%3E%3Cstop offset=%270%27 stop-color=%27%23ffb0b0%27/%3E%3Cstop offset=%27.35%27 stop-color=%27%23e0202c%27/%3E%3Cstop offset=%271%27 stop-color=%27%234a0206%27/%3E%3C/radialGradient%3E%3C/defs%3E%3Cpath d=%27M0 0 L78 0 Q74 8 68 10 Q60 12 58 18 L18 18 L18 58 Q12 60 10 68 Q8 74 0 78 Z%27 fill=%27url(%23cg)%27 stroke=%27%233a2404%27 stroke-width=%271.6%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M0 0 L40 0 L0 40 Z%27 fill=%27url(%23cg2)%27 opacity=%27.95%27/%3E%3Cpath d=%27M3 3 L72 3 M3 3 L3 72 M14 14 L58 14 M14 14 L14 58%27 stroke=%27%23fff8dc%27 stroke-width=%271%27 opacity=%27.8%27/%3E%3Cpath d=%27M9 9 L64 9 M9 9 L9 64%27 stroke=%27%235a3a06%27 stroke-width=%27.8%27 opacity=%27.55%27 stroke-dasharray=%273 2%27/%3E%3Ccircle cx=%2718%27 cy=%275%27 r=%271.1%27 fill=%27%23fff4c4%27 stroke=%27%235a3a06%27 stroke-width=%27.4%27/%3E%3Ccircle cx=%275%27 cy=%2718%27 r=%271.1%27 fill=%27%23fff4c4%27 stroke=%27%235a3a06%27 stroke-width=%27.4%27/%3E%3Ccircle cx=%2724%27 cy=%275%27 r=%271.1%27 fill=%27%23fff4c4%27 stroke=%27%235a3a06%27 stroke-width=%27.4%27/%3E%3Ccircle cx=%275%27 cy=%2724%27 r=%271.1%27 fill=%27%23fff4c4%27 stroke=%27%235a3a06%27 stroke-width=%27.4%27/%3E%3Ccircle cx=%2730%27 cy=%275%27 r=%271.1%27 fill=%27%23fff4c4%27 stroke=%27%235a3a06%27 stroke-width=%27.4%27/%3E%3Ccircle cx=%275%27 cy=%2730%27 r=%271.1%27 fill=%27%23fff4c4%27 stroke=%27%235a3a06%27 stroke-width=%27.4%27/%3E%3Ccircle cx=%2736%27 cy=%275%27 r=%271.1%27 fill=%27%23fff4c4%27 stroke=%27%235a3a06%27 stroke-width=%27.4%27/%3E%3Ccircle cx=%275%27 cy=%2736%27 r=%271.1%27 fill=%27%23fff4c4%27 stroke=%27%235a3a06%27 stroke-width=%27.4%27/%3E%3Ccircle cx=%2742%27 cy=%275%27 r=%271.1%27 fill=%27%23fff4c4%27 stroke=%27%235a3a06%27 stroke-width=%27.4%27/%3E%3Ccircle cx=%275%27 cy=%2742%27 r=%271.1%27 fill=%27%23fff4c4%27 stroke=%27%235a3a06%27 stroke-width=%27.4%27/%3E%3Ccircle cx=%2748%27 cy=%275%27 r=%271.1%27 fill=%27%23fff4c4%27 stroke=%27%235a3a06%27 stroke-width=%27.4%27/%3E%3Ccircle cx=%275%27 cy=%2748%27 r=%271.1%27 fill=%27%23fff4c4%27 stroke=%27%235a3a06%27 stroke-width=%27.4%27/%3E%3Ccircle cx=%2754%27 cy=%275%27 r=%271.1%27 fill=%27%23fff4c4%27 stroke=%27%235a3a06%27 stroke-width=%27.4%27/%3E%3Ccircle cx=%275%27 cy=%2754%27 r=%271.1%27 fill=%27%23fff4c4%27 stroke=%27%235a3a06%27 stroke-width=%27.4%27/%3E%3Ccircle cx=%2760%27 cy=%275%27 r=%271.1%27 fill=%27%23fff4c4%27 stroke=%27%235a3a06%27 stroke-width=%27.4%27/%3E%3Ccircle cx=%275%27 cy=%2760%27 r=%271.1%27 fill=%27%23fff4c4%27 stroke=%27%235a3a06%27 stroke-width=%27.4%27/%3E%3Ccircle cx=%2766%27 cy=%275%27 r=%271.1%27 fill=%27%23fff4c4%27 stroke=%27%235a3a06%27 stroke-width=%27.4%27/%3E%3Ccircle cx=%275%27 cy=%2766%27 r=%271.1%27 fill=%27%23fff4c4%27 stroke=%27%235a3a06%27 stroke-width=%27.4%27/%3E%3Ccircle cx=%2710%27 cy=%2710%27 r=%274.6%27 fill=%27url(%23cr)%27 stroke=%27%233a2404%27 stroke-width=%27.9%27/%3E%3Ccircle cx=%278.6%27 cy=%278.6%27 r=%271.2%27 fill=%27%23fff%27 opacity=%27.8%27/%3E%3Ccircle cx=%2764%27 cy=%278%27 r=%272.4%27 fill=%27%23fff4c4%27 stroke=%27%233a2404%27 stroke-width=%27.7%27/%3E%3Ccircle cx=%278%27 cy=%2764%27 r=%272.4%27 fill=%27%23fff4c4%27 stroke=%27%233a2404%27 stroke-width=%27.7%27/%3E%3Cpath d=%27M26 26 C 52 24, 66 34, 66 54 C 66 68, 54 72, 46 64 C 40 58, 46 48, 56 52 C 60 54, 60 60, 56 60%27 stroke=%27%238a5f12%27 stroke-width=%273.2%27 fill=%27none%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M26 26 C 52 24, 66 34, 66 54 C 66 68, 54 72, 46 64 C 40 58, 46 48, 56 52 C 60 54, 60 60, 56 60%27 stroke=%27url(%23lf)%27 stroke-width=%271.8%27 fill=%27none%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M26 26 C 24 52, 34 66, 54 66%27 stroke=%27%238a5f12%27 stroke-width=%273.2%27 fill=%27none%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M26 26 C 24 52, 34 66, 54 66%27 stroke=%27url(%23lf)%27 stroke-width=%271.8%27 fill=%27none%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M30 34 Q44 26 50 40 Q38 46 30 34 Z%27 fill=%27url(%23lf)%27 stroke=%27%236e4608%27 stroke-width=%27.7%27/%3E%3Cpath d=%27M32 34 Q42 34 48 39%27 stroke=%27%236e4608%27 stroke-width=%27.6%27 fill=%27none%27/%3E%3Cpath d=%27M28 48 Q32 36 44 46 Q36 56 28 48 Z%27 fill=%27url(%23lf)%27 stroke=%27%236e4608%27 stroke-width=%27.7%27/%3E%3Cpath d=%27M30 48 Q36 42 42 46%27 stroke=%27%236e4608%27 stroke-width=%27.6%27 fill=%27none%27/%3E%3Cpath d=%27M44 30 Q56 30 58 42 Q48 42 44 30 Z%27 fill=%27url(%23lf)%27 stroke=%27%236e4608%27 stroke-width=%27.7%27/%3E%3Ccircle cx=%2756%27 cy=%2756%27 r=%272.4%27 fill=%27%23fff4c4%27 stroke=%27%236e4608%27 stroke-width=%27.6%27/%3E%3Ccircle cx=%2770%27 cy=%2770%27 r=%271.8%27 fill=%27%23e6c25c%27 stroke=%27%236e4608%27 stroke-width=%27.5%27/%3E%3Ccircle cx=%2778%27 cy=%2778%27 r=%271.2%27 fill=%27%23e6c25c%27/%3E%3C/svg%3E") center/contain no-repeat; filter:drop-shadow(0 2px 3px rgba(0,0,0,.6)); }
.qb-cnr-tl{ top:-14px; left:-14px; }
.qb-cnr-tr{ top:-14px; right:-14px; transform:scaleX(-1); }
.qb-cnr-bl{ bottom:-14px; left:-14px; transform:scaleY(-1); }
.qb-cnr-br{ bottom:-14px; right:-14px; transform:scale(-1,-1); }
.qb-hot-A .qb-cnr{ width:44px; height:44px; top:auto; }
.qb-hot-A .qb-cnr-tl,.qb-hot-A .qb-cnr-tr{ top:-7px; } .qb-hot-A .qb-cnr-tl,.qb-hot-A .qb-cnr-bl{ left:-7px; }
.qb-hot-A .qb-cnr-tr,.qb-hot-A .qb-cnr-br{ right:-7px; } .qb-hot-A .qb-cnr-bl,.qb-hot-A .qb-cnr-br{ bottom:-7px; }
/* Filet d'or intérieur (remplace la punaise) */
.qb-hot::after{ content:'' !important; position:absolute; inset:9px; border:1.5px solid #d9b34a !important;
  border-radius:3px; background:none !important; box-shadow:inset 0 0 0 1px rgba(255,240,200,.55), 0 0 0 1px rgba(122,85,16,.35) !important;
  pointer-events:none; width:auto !important; height:auto !important; top:9px !important; left:9px !important; transform:none !important; z-index:2; }
.qb-hot-A::after{ inset:8px; opacity:.85; }

/* Tiare d'or sur velours, posée sur le bord haut (rang S uniquement) */
.qb-crown{ position:absolute; top:-34px; left:50%; width:min(54%,220px); height:54px; transform:translateX(-50%); z-index:7;
  background:url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 240 104%27%3E%3Cdefs%3E%3ClinearGradient id=%27tg%27 x1=%270%27 y1=%270%27 x2=%270%27 y2=%271%27%3E%3Cstop offset=%270%27 stop-color=%27%23fff6cc%27/%3E%3Cstop offset=%27.25%27 stop-color=%27%23f5d264%27/%3E%3Cstop offset=%27.6%27 stop-color=%27%23cf9a2c%27/%3E%3Cstop offset=%271%27 stop-color=%27%237a5010%27/%3E%3C/linearGradient%3E%3ClinearGradient id=%27tgh%27 x1=%270%27 y1=%270%27 x2=%271%27 y2=%270%27%3E%3Cstop offset=%270%27 stop-color=%27%237a5010%27/%3E%3Cstop offset=%27.5%27 stop-color=%27%23fff0b0%27/%3E%3Cstop offset=%271%27 stop-color=%27%237a5010%27/%3E%3C/linearGradient%3E%3ClinearGradient id=%27tg2%27 x1=%270%27 y1=%270%27 x2=%271%27 y2=%270%27%3E%3Cstop offset=%270%27 stop-color=%27%238a5f12%27/%3E%3Cstop offset=%27.5%27 stop-color=%27%23ffe9a0%27/%3E%3Cstop offset=%271%27 stop-color=%27%238a5f12%27/%3E%3C/linearGradient%3E%3CradialGradient id=%27rb%27 cx=%27.38%27 cy=%27.28%27 r=%27.75%27%3E%3Cstop offset=%270%27 stop-color=%27%23ffb0b0%27/%3E%3Cstop offset=%27.3%27 stop-color=%27%23e8222e%27/%3E%3Cstop offset=%271%27 stop-color=%27%234a0206%27/%3E%3C/radialGradient%3E%3CradialGradient id=%27glow%27 cx=%27.5%27 cy=%27.5%27 r=%27.5%27%3E%3Cstop offset=%270%27 stop-color=%27%23ff4040%27 stop-opacity=%27.55%27/%3E%3Cstop offset=%271%27 stop-color=%27%23ff4040%27 stop-opacity=%270%27/%3E%3C/radialGradient%3E%3CradialGradient id=%27sp%27 cx=%27.38%27 cy=%27.3%27 r=%27.75%27%3E%3Cstop offset=%270%27 stop-color=%27%23bfe4ff%27/%3E%3Cstop offset=%27.4%27 stop-color=%27%232f6fdc%27/%3E%3Cstop offset=%271%27 stop-color=%27%230a1f55%27/%3E%3C/radialGradient%3E%3CradialGradient id=%27pearl%27 cx=%27.35%27 cy=%27.3%27 r=%27.7%27%3E%3Cstop offset=%270%27 stop-color=%27%23fff%27/%3E%3Cstop offset=%27.6%27 stop-color=%27%23f3e6c8%27/%3E%3Cstop offset=%271%27 stop-color=%27%23a88c5a%27/%3E%3C/radialGradient%3E%3ClinearGradient id=%27vel%27 x1=%270%27 y1=%270%27 x2=%271%27 y2=%270%27%3E%3Cstop offset=%270%27 stop-color=%27%236e0c12%27 stop-opacity=%270%27/%3E%3Cstop offset=%27.14%27 stop-color=%27%23a5151e%27/%3E%3Cstop offset=%27.5%27 stop-color=%27%23d0202b%27/%3E%3Cstop offset=%27.86%27 stop-color=%27%23a5151e%27/%3E%3Cstop offset=%271%27 stop-color=%27%236e0c12%27 stop-opacity=%270%27/%3E%3C/linearGradient%3E%3ClinearGradient id=%27velS%27 x1=%270%27 y1=%270%27 x2=%270%27 y2=%271%27%3E%3Cstop offset=%270%27 stop-color=%27%23fff%27 stop-opacity=%27.28%27/%3E%3Cstop offset=%27.5%27 stop-color=%27%23000%27 stop-opacity=%270%27/%3E%3Cstop offset=%271%27 stop-color=%27%23000%27 stop-opacity=%27.4%27/%3E%3C/linearGradient%3E%3ClinearGradient id=%27trim%27 x1=%270%27 y1=%270%27 x2=%271%27 y2=%270%27%3E%3Cstop offset=%270%27 stop-color=%27%23d9b34a%27 stop-opacity=%270%27/%3E%3Cstop offset=%27.15%27 stop-color=%27%23f3d97a%27/%3E%3Cstop offset=%27.85%27 stop-color=%27%23f3d97a%27/%3E%3Cstop offset=%271%27 stop-color=%27%23d9b34a%27 stop-opacity=%270%27/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d=%27M0 88 Q30 62 62 72 Q92 82 120 68 Q148 82 178 72 Q210 62 240 88 L240 104 L0 104 Z%27 fill=%27url(%23vel)%27/%3E%3Cpath d=%27M0 88 Q30 62 62 72 Q92 82 120 68 Q148 82 178 72 Q210 62 240 88 L240 104 L0 104 Z%27 fill=%27url(%23velS)%27/%3E%3Cpath d=%27M36 76 Q46 90 40 104 M70 78 Q80 92 72 104 M104 74 Q110 90 104 104 M136 74 Q130 90 136 104 M170 78 Q160 92 168 104 M204 76 Q194 90 200 104%27 stroke=%27%234a0509%27 stroke-width=%271.3%27 fill=%27none%27 opacity=%27.55%27/%3E%3Cpath d=%27M0 90 Q30 64 62 74 Q92 84 120 70 Q148 84 178 74 Q210 64 240 90%27 stroke=%27url(%23trim)%27 stroke-width=%272%27 fill=%27none%27/%3E%3Cpath d=%27M0 93 Q30 67 62 77 Q92 87 120 73 Q148 87 178 77 Q210 67 240 93%27 stroke=%27url(%23trim)%27 stroke-width=%27.8%27 fill=%27none%27 stroke-dasharray=%272 2%27/%3E%3Cpath d=%27M24 80 L24 92%27 stroke=%27%23f3d97a%27 stroke-width=%271.4%27/%3E%3Cellipse cx=%2724%27 cy=%2795%27 rx=%273.2%27 ry=%274.5%27 fill=%27%23f3d97a%27 stroke=%27%238a5f12%27 stroke-width=%27.6%27/%3E%3Cpath d=%27M21.5 97 L21 102 M24 98 L24 103 M26.5 97 L27 102%27 stroke=%27%23d9b34a%27 stroke-width=%27.9%27/%3E%3Cpath d=%27M216 80 L216 92%27 stroke=%27%23f3d97a%27 stroke-width=%271.4%27/%3E%3Cellipse cx=%27216%27 cy=%2795%27 rx=%273.2%27 ry=%274.5%27 fill=%27%23f3d97a%27 stroke=%27%238a5f12%27 stroke-width=%27.6%27/%3E%3Cpath d=%27M213.5 97 L213 102 M216 98 L216 103 M218.5 97 L219 102%27 stroke=%27%23d9b34a%27 stroke-width=%27.9%27/%3E%3Cellipse cx=%27120%27 cy=%2788%27 rx=%27100%27 ry=%276%27 fill=%27%23000%27 opacity=%27.3%27/%3E%3Ccircle cx=%27120%27 cy=%2746%27 r=%2726%27 fill=%27url(%23glow)%27/%3E%3Cpath d=%27M30 84 C 18 72, 4 48, 10 24 C 26 38, 42 50, 50 60 L62 34 L78 62 C 94 46, 110 26, 120 4 C 130 26, 146 46, 162 62 L178 34 L190 60 C 198 50, 214 38, 230 24 C 236 48, 222 72, 210 84 Q120 94 30 84 Z%27 fill=%27url(%23tg)%27 stroke=%27%234a2e04%27 stroke-width=%271.8%27 stroke-linejoin=%27round%27/%3E%3Cpath d=%27M34 82 Q120 92 206 82 L210 84 Q120 94 30 84 Z%27 fill=%27%237a5010%27 opacity=%27.35%27/%3E%3Cpath d=%27M14 30 C 28 42, 42 52, 48 62 M226 30 C 212 42, 198 52, 192 62 M62 40 L70 58 M178 40 L170 58 M120 12 C 112 30, 100 46, 86 60 M120 12 C 128 30, 140 46, 154 60%27 stroke=%27%23fff8dc%27 stroke-width=%271.5%27 fill=%27none%27 stroke-linecap=%27round%27 opacity=%27.9%27/%3E%3Cpath d=%27M18 44 C 30 54, 40 60, 46 66 M222 44 C 210 54, 200 60, 194 66%27 stroke=%27%235a3a06%27 stroke-width=%271%27 fill=%27none%27 opacity=%27.6%27/%3E%3Cpath d=%27M22 50 C 30 44, 38 48, 36 56 C 34 62, 26 60, 28 54 M218 50 C 210 44, 202 48, 204 56 C 206 62, 214 60, 212 54%27 stroke=%27%236e4a0d%27 stroke-width=%271.1%27 fill=%27none%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M24 52 C 31 47, 37 50, 35 56 M216 52 C 209 47, 203 50, 205 56%27 stroke=%27%23fff3c0%27 stroke-width=%27.6%27 fill=%27none%27 opacity=%27.8%27/%3E%3Cpath d=%27M90 70 C 98 62, 108 66, 104 74 M150 70 C 142 62, 132 66, 136 74%27 stroke=%27%236e4a0d%27 stroke-width=%271%27 fill=%27none%27 stroke-linecap=%27round%27/%3E%3Cpath d=%27M34 80 Q120 89 206 80%27 stroke=%27%235a3a06%27 stroke-width=%271.2%27 fill=%27none%27/%3E%3Cpath d=%27M36 76 Q120 85 204 76%27 stroke=%27%23fff0b8%27 stroke-width=%271%27 fill=%27none%27 opacity=%27.85%27/%3E%3Ccircle cx=%2744%27 cy=%2783.5%27 r=%271.5%27 fill=%27%23fff3c0%27 stroke=%27%236e4a0d%27 stroke-width=%27.5%27/%3E%3Ccircle cx=%2756%27 cy=%2784.3%27 r=%272.3%27 fill=%27url(%23sp)%27 stroke=%27%232a1a03%27 stroke-width=%27.5%27/%3E%3Ccircle cx=%2768%27 cy=%2785.0%27 r=%271.5%27 fill=%27%23fff3c0%27 stroke=%27%236e4a0d%27 stroke-width=%27.5%27/%3E%3Ccircle cx=%2780%27 cy=%2785.6%27 r=%271.5%27 fill=%27%23fff3c0%27 stroke=%27%236e4a0d%27 stroke-width=%27.5%27/%3E%3Ccircle cx=%2792%27 cy=%2786.0%27 r=%272.3%27 fill=%27url(%23sp)%27 stroke=%27%232a1a03%27 stroke-width=%27.5%27/%3E%3Ccircle cx=%27104%27 cy=%2786.3%27 r=%271.5%27 fill=%27%23fff3c0%27 stroke=%27%236e4a0d%27 stroke-width=%27.5%27/%3E%3Ccircle cx=%27116%27 cy=%2786.5%27 r=%271.5%27 fill=%27%23fff3c0%27 stroke=%27%236e4a0d%27 stroke-width=%27.5%27/%3E%3Ccircle cx=%27128%27 cy=%2786.5%27 r=%272.3%27 fill=%27url(%23sp)%27 stroke=%27%232a1a03%27 stroke-width=%27.5%27/%3E%3Ccircle cx=%27140%27 cy=%2786.3%27 r=%271.5%27 fill=%27%23fff3c0%27 stroke=%27%236e4a0d%27 stroke-width=%27.5%27/%3E%3Ccircle cx=%27152%27 cy=%2785.9%27 r=%271.5%27 fill=%27%23fff3c0%27 stroke=%27%236e4a0d%27 stroke-width=%27.5%27/%3E%3Ccircle cx=%27164%27 cy=%2785.4%27 r=%272.3%27 fill=%27url(%23sp)%27 stroke=%27%232a1a03%27 stroke-width=%27.5%27/%3E%3Ccircle cx=%27176%27 cy=%2784.7%27 r=%271.5%27 fill=%27%23fff3c0%27 stroke=%27%236e4a0d%27 stroke-width=%27.5%27/%3E%3Ccircle cx=%27188%27 cy=%2784.0%27 r=%271.5%27 fill=%27%23fff3c0%27 stroke=%27%236e4a0d%27 stroke-width=%27.5%27/%3E%3Cpath d=%27M62 42 L67 50 L62 58 L57 50 Z%27 fill=%27url(%23sp)%27 stroke=%27%232a1a03%27 stroke-width=%27.8%27/%3E%3Cpath d=%27M178 42 L183 50 L178 58 L173 50 Z%27 fill=%27url(%23sp)%27 stroke=%27%232a1a03%27 stroke-width=%27.8%27/%3E%3Cpath d=%27M120 20 C 102 40, 102 58, 120 68 C 138 58, 138 40, 120 20 Z%27 fill=%27url(%23tg2)%27 stroke=%27%234a2e04%27 stroke-width=%271.2%27/%3E%3Cpath d=%27M120 25 C 106 41, 106 55, 120 63 C 134 55, 134 41, 120 25 Z%27 fill=%27url(%23rb)%27 stroke=%27%232a0104%27 stroke-width=%27.8%27/%3E%3Cpath d=%27M120 25 L113 46 L120 63 L127 46 Z M112 39 L128 39 M110 50 L130 50 M113 46 L120 40 L127 46%27 stroke=%27%23ffb3b3%27 stroke-width=%27.7%27 fill=%27none%27 opacity=%27.75%27/%3E%3Cellipse cx=%27114.5%27 cy=%2735%27 rx=%272.4%27 ry=%274.5%27 fill=%27%23fff%27 opacity=%27.6%27 transform=%27rotate(-22 114.5 35)%27/%3E%3Ccircle cx=%2762%27 cy=%2734%27 r=%272.8%27 fill=%27url(%23pearl)%27 stroke=%27%236e4a0d%27 stroke-width=%27.8%27/%3E%3Ccircle cx=%27178%27 cy=%2734%27 r=%272.8%27 fill=%27url(%23pearl)%27 stroke=%27%236e4a0d%27 stroke-width=%27.8%27/%3E%3Ccircle cx=%27120%27 cy=%275%27 r=%273.2%27 fill=%27url(%23pearl)%27 stroke=%27%236e4a0d%27 stroke-width=%27.8%27/%3E%3Ccircle cx=%2710%27 cy=%2725%27 r=%272.6%27 fill=%27url(%23pearl)%27 stroke=%27%236e4a0d%27 stroke-width=%27.8%27/%3E%3Ccircle cx=%27230%27 cy=%2725%27 r=%272.6%27 fill=%27url(%23pearl)%27 stroke=%27%236e4a0d%27 stroke-width=%27.8%27/%3E%3Cpath d=%27M100 26 Q100 30 104 30 Q100 30 100 34 Q100 30 96 30 Q100 30 100 26 Z%27 fill=%27%23fff%27 opacity=%27.9%27/%3E%3Cpath d=%27M146 55 Q146 58 149 58 Q146 58 146 61 Q146 58 143 58 Q146 58 146 55 Z%27 fill=%27%23fff%27 opacity=%27.9%27/%3E%3Cpath d=%27M40 29.4 Q40 32 42.6 32 Q40 32 40 34.6 Q40 32 37.4 32 Q40 32 40 29.4 Z%27 fill=%27%23fff%27 opacity=%27.9%27/%3E%3Cpath d=%27M206 37.4 Q206 40 208.6 40 Q206 40 206 42.6 Q206 40 203.4 40 Q206 40 206 37.4 Z%27 fill=%27%23fff%27 opacity=%27.9%27/%3E%3Cpath d=%27M124 13.8 Q124 16 126.2 16 Q124 16 124 18.2 Q124 16 121.8 16 Q124 16 124 13.8 Z%27 fill=%27%23fff%27 opacity=%27.9%27/%3E%3C/svg%3E") center bottom/100% 100% no-repeat;
  filter:drop-shadow(0 4px 5px rgba(0,0,0,.6)); animation:qbCrown 2.6s ease-in-out infinite; }
@keyframes qbCrown{ 0%,100%{ filter:drop-shadow(0 4px 5px rgba(0,0,0,.6)); } 50%{ filter:drop-shadow(0 4px 5px rgba(0,0,0,.6)) drop-shadow(0 0 10px rgba(255,214,102,.9)); } }
.qb-hot-S{ padding-top:30px !important; margin-top:26px !important; }

/* Sceau de cire : bord irrégulier, relief, couronne de laurier ; S = cire rouge + ruban, A = cire d'or */
.qb-hot .qb-seal-hot{ width:66px; height:66px; font-size:28px; border:none; border-radius:0; background:none; box-shadow:none;
  font-family:'Cinzel',Georgia,serif; font-weight:900; letter-spacing:0; overflow:visible; animation:qbSealPulse 2.4s ease-in-out infinite; }
.qb-hot .qb-seal-hot::before{ content:''; position:absolute; inset:-6px; border:none !important; border-radius:0; box-shadow:none !important; background-size:contain; background-position:center; background-repeat:no-repeat; z-index:-1; }
.qb-hot-S .qb-seal-hot{ color:#f6dc8a; text-shadow:0 1px 0 #7a4f14, 0 -1px 0 #fff3c0, 0 2px 3px rgba(0,0,0,.6); -webkit-text-stroke:.5px #6a1a12; }
.qb-hot-S .qb-seal-hot::before{ background-image:url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 100 100%27%3E%3Cdefs%3E%3CradialGradient id=%27w%27 cx=%27.36%27 cy=%27.3%27 r=%27.8%27%3E%3Cstop offset=%270%27 stop-color=%27%23ff7a7a%27/%3E%3Cstop offset=%27.4%27 stop-color=%27%23c8202a%27/%3E%3Cstop offset=%271%27 stop-color=%27%234e0710%27/%3E%3C/radialGradient%3E%3ClinearGradient id=%27lg%27 x1=%270%27 y1=%270%27 x2=%271%27 y2=%271%27%3E%3Cstop offset=%270%27 stop-color=%27%23fff4c4%27/%3E%3Cstop offset=%27.5%27 stop-color=%27%23f3d97a%27/%3E%3Cstop offset=%271%27 stop-color=%27%237a4f14%27/%3E%3C/linearGradient%3E%3CradialGradient id=%27hl%27 cx=%27.33%27 cy=%27.22%27 r=%27.45%27%3E%3Cstop offset=%270%27 stop-color=%27%23fff%27 stop-opacity=%27.7%27/%3E%3Cstop offset=%271%27 stop-color=%27%23fff%27 stop-opacity=%270%27/%3E%3C/radialGradient%3E%3CradialGradient id=%27hl2%27 cx=%27.75%27 cy=%27.8%27 r=%27.35%27%3E%3Cstop offset=%270%27 stop-color=%27%23fff%27 stop-opacity=%27.22%27/%3E%3Cstop offset=%271%27 stop-color=%27%23fff%27 stop-opacity=%270%27/%3E%3C/radialGradient%3E%3ClinearGradient id=%27streak%27 x1=%270%27 y1=%270%27 x2=%271%27 y2=%271%27%3E%3Cstop offset=%27.3%27 stop-color=%27%23fff%27 stop-opacity=%270%27/%3E%3Cstop offset=%27.5%27 stop-color=%27%23fff%27 stop-opacity=%27.28%27/%3E%3Cstop offset=%27.7%27 stop-color=%27%23fff%27 stop-opacity=%270%27/%3E%3C/linearGradient%3E%3Cfilter id=%27sh%27 x=%27-25%%27 y=%27-25%%27 width=%27150%%27 height=%27150%%27%3E%3CfeDropShadow dx=%270%27 dy=%273.5%27 stdDeviation=%272.4%27 flood-color=%27%23000%27 flood-opacity=%27.62%27/%3E%3C/filter%3E%3C/defs%3E%3Cpath d=%27M82 62 C 90 66, 92 76, 86 80 C 80 82, 76 74, 78 68 Z%27 fill=%27%23c8202a%27 stroke=%27%234e0710%27 stroke-width=%27.8%27/%3E%3Cellipse cx=%2784%27 cy=%2769%27 rx=%271.6%27 ry=%272.6%27 fill=%27%23fff%27 opacity=%27.35%27 transform=%27rotate(25 84 69)%27/%3E%3Cpath d=%27M20 26 C 12 28, 8 36, 14 40 C 20 42, 24 34, 22 30 Z%27 fill=%27%23c8202a%27 stroke=%27%234e0710%27 stroke-width=%27.8%27/%3E%3Cellipse cx=%2716%27 cy=%2732%27 rx=%271.3%27 ry=%272.2%27 fill=%27%23fff%27 opacity=%27.35%27 transform=%27rotate(-30 16 32)%27/%3E%3Ccircle cx=%2790%27 cy=%2738%27 r=%273%27 fill=%27%23c8202a%27 stroke=%27%234e0710%27 stroke-width=%27.7%27/%3E%3Ccircle cx=%2789%27 cy=%2737%27 r=%27.9%27 fill=%27%23fff%27 opacity=%27.5%27/%3E%3Ccircle cx=%2730%27 cy=%2788%27 r=%272.4%27 fill=%27%23c8202a%27 stroke=%27%234e0710%27 stroke-width=%27.7%27/%3E%3Cpath d=%27M95.0,52.6 L97.3,54.1 L98.2,55.6 L97.6,57.1 L96.7,58.5 L95.8,59.9 L94.8,61.1 L93.4,62.3 L92.0,63.4 L91.0,64.5 L90.0,65.6 L88.8,66.6 L87.6,67.5 L87.2,68.7 L87.6,70.3 L87.6,71.8 L86.4,72.6 L84.6,73.0 L83.1,73.6 L82.5,74.7 L82.3,76.1 L82.3,77.6 L82.4,79.4 L82.8,81.5 L82.8,83.4 L82.2,84.8 L81.2,85.8 L80.3,87.0 L79.5,88.3 L78.3,89.1 L76.2,88.7 L73.8,87.6 L71.9,87.2 L70.8,87.7 L69.9,88.8 L68.9,89.8 L68.0,90.8 L67.0,92.0 L65.9,92.7 L64.5,92.8 L63.0,92.6 L61.7,93.0 L60.7,94.3 L59.5,95.3 L58.2,95.4 L56.8,95.3 L55.5,96.1 L54.3,97.8 L52.9,99.3 L51.5,99.9 L50.0,99.8 L48.5,99.1 L47.2,97.6 L46.0,95.3 L44.9,93.1 L43.8,92.0 L42.5,91.9 L41.3,91.7 L40.2,90.9 L39.1,90.1 L37.8,90.1 L36.2,90.8 L34.6,91.4 L33.3,91.3 L32.1,90.7 L30.9,90.1 L29.7,89.5 L28.7,88.7 L27.4,88.3 L25.5,88.7 L23.1,89.6 L21.1,89.9 L20.0,88.9 L19.4,87.3 L18.7,85.9 L17.8,84.8 L17.3,83.3 L17.4,81.3 L17.7,79.3 L17.7,77.7 L17.4,76.3 L16.9,75.1 L15.9,74.2 L14.1,73.8 L11.8,73.6 L10.3,72.8 L10.1,71.4 L10.4,69.7 L10.0,68.4 L9.0,67.4 L8.1,66.2 L7.7,64.9 L7.4,63.5 L6.7,62.3 L6.1,61.0 L5.9,59.6 L5.8,58.2 L5.5,56.8 L5.4,55.4 L6.6,54.0 L9.0,52.6 L11.4,51.4 L12.3,50.2 L12.0,49.0 L11.3,47.7 L10.9,46.4 L10.3,45.0 L9.5,43.5 L8.7,42.0 L8.4,40.5 L8.3,39.0 L7.9,37.4 L7.6,35.8 L8.3,34.5 L9.8,33.7 L11.0,32.7 L11.1,31.2 L10.5,29.3 L10.5,27.5 L11.3,26.3 L12.7,25.5 L14.3,24.9 L16.2,24.6 L18.2,24.6 L20.1,24.6 L21.4,24.0 L22.3,23.1 L23.4,22.5 L24.7,22.1 L25.6,21.1 L25.6,19.1 L25.5,16.5 L25.9,14.6 L27.0,13.7 L28.4,13.4 L29.9,13.2 L31.4,13.0 L32.9,13.1 L34.2,12.8 L35.3,11.8 L36.4,10.8 L37.8,10.5 L39.3,11.0 L40.8,11.3 L42.1,10.9 L43.3,10.4 L44.7,10.8 L46.2,12.1 L47.5,13.5 L48.8,14.0 L50.0,13.8 L51.2,13.1 L52.6,11.8 L54.1,9.7 L55.7,7.8 L57.2,7.0 L58.6,7.4 L60.0,7.8 L61.6,7.6 L63.1,7.5 L64.4,8.3 L65.4,9.9 L66.3,11.5 L67.4,12.4 L68.7,12.9 L69.9,13.5 L71.2,14.1 L72.4,14.6 L73.5,15.6 L73.8,17.6 L73.7,20.0 L73.8,21.9 L74.8,22.6 L76.3,22.8 L77.6,23.3 L78.6,24.0 L80.0,24.4 L81.9,24.5 L83.9,24.5 L85.6,25.0 L87.0,25.7 L88.1,26.7 L88.6,28.1 L88.1,30.1 L87.2,32.2 L86.9,33.8 L87.9,34.8 L89.3,35.6 L90.0,36.8 L89.9,38.2 L89.9,39.6 L90.3,40.9 L90.7,42.2 L90.6,43.5 L90.6,44.9 L90.8,46.1 L91.1,47.4 L91.1,48.7 L91.3,50.0 L92.6,51.3 Z%27 fill=%27%234e0710%27 filter=%27url(%23sh)%27/%3E%3Cpath d=%27M95.0,50.0 L97.3,51.5 L98.2,53.0 L97.6,54.5 L96.7,55.9 L95.8,57.3 L94.8,58.5 L93.4,59.7 L92.0,60.8 L91.0,61.9 L90.0,63.0 L88.8,64.0 L87.6,64.9 L87.2,66.1 L87.6,67.7 L87.6,69.2 L86.4,70.0 L84.6,70.4 L83.1,71.0 L82.5,72.1 L82.3,73.5 L82.3,75.0 L82.4,76.8 L82.8,78.9 L82.8,80.8 L82.2,82.2 L81.2,83.2 L80.3,84.4 L79.5,85.7 L78.3,86.5 L76.2,86.1 L73.8,85.0 L71.9,84.6 L70.8,85.1 L69.9,86.2 L68.9,87.2 L68.0,88.2 L67.0,89.4 L65.9,90.1 L64.5,90.2 L63.0,90.0 L61.7,90.4 L60.7,91.7 L59.5,92.7 L58.2,92.8 L56.8,92.7 L55.5,93.5 L54.3,95.2 L52.9,96.7 L51.5,97.3 L50.0,97.2 L48.5,96.5 L47.2,95.0 L46.0,92.7 L44.9,90.5 L43.8,89.4 L42.5,89.3 L41.3,89.1 L40.2,88.3 L39.1,87.5 L37.8,87.5 L36.2,88.2 L34.6,88.8 L33.3,88.7 L32.1,88.1 L30.9,87.5 L29.7,86.9 L28.7,86.1 L27.4,85.7 L25.5,86.1 L23.1,87.0 L21.1,87.3 L20.0,86.3 L19.4,84.7 L18.7,83.3 L17.8,82.2 L17.3,80.7 L17.4,78.7 L17.7,76.7 L17.7,75.1 L17.4,73.7 L16.9,72.5 L15.9,71.6 L14.1,71.2 L11.8,71.0 L10.3,70.2 L10.1,68.8 L10.4,67.1 L10.0,65.8 L9.0,64.8 L8.1,63.6 L7.7,62.3 L7.4,60.9 L6.7,59.7 L6.1,58.4 L5.9,57.0 L5.8,55.6 L5.5,54.2 L5.4,52.8 L6.6,51.4 L9.0,50.0 L11.4,48.8 L12.3,47.6 L12.0,46.4 L11.3,45.1 L10.9,43.8 L10.3,42.4 L9.5,40.9 L8.7,39.4 L8.4,37.9 L8.3,36.4 L7.9,34.8 L7.6,33.2 L8.3,31.9 L9.8,31.1 L11.0,30.1 L11.1,28.6 L10.5,26.7 L10.5,24.9 L11.3,23.7 L12.7,22.9 L14.3,22.3 L16.2,22.0 L18.2,22.0 L20.1,22.0 L21.4,21.4 L22.3,20.5 L23.4,19.9 L24.7,19.5 L25.6,18.5 L25.6,16.5 L25.5,13.9 L25.9,12.0 L27.0,11.1 L28.4,10.8 L29.9,10.6 L31.4,10.4 L32.9,10.5 L34.2,10.2 L35.3,9.2 L36.4,8.2 L37.8,7.9 L39.3,8.4 L40.8,8.7 L42.1,8.3 L43.3,7.8 L44.7,8.2 L46.2,9.5 L47.5,10.9 L48.8,11.4 L50.0,11.2 L51.2,10.5 L52.6,9.2 L54.1,7.1 L55.7,5.2 L57.2,4.4 L58.6,4.8 L60.0,5.2 L61.6,5.0 L63.1,4.9 L64.4,5.7 L65.4,7.3 L66.3,8.9 L67.4,9.8 L68.7,10.3 L69.9,10.9 L71.2,11.5 L72.4,12.0 L73.5,13.0 L73.8,15.0 L73.7,17.4 L73.8,19.3 L74.8,20.0 L76.3,20.2 L77.6,20.7 L78.6,21.4 L80.0,21.8 L81.9,21.9 L83.9,21.9 L85.6,22.4 L87.0,23.1 L88.1,24.1 L88.6,25.5 L88.1,27.5 L87.2,29.6 L86.9,31.2 L87.9,32.2 L89.3,33.0 L90.0,34.2 L89.9,35.6 L89.9,37.0 L90.3,38.3 L90.7,39.6 L90.6,40.9 L90.6,42.3 L90.8,43.5 L91.1,44.8 L91.1,46.1 L91.3,47.4 L92.6,48.7 Z%27 fill=%27url(%23w)%27 stroke=%27%234e0710%27 stroke-width=%271%27/%3E%3Cpath d=%27M95.0,50.0 L97.3,51.5 L98.2,53.0 L97.6,54.5 L96.7,55.9 L95.8,57.3 L94.8,58.5 L93.4,59.7 L92.0,60.8 L91.0,61.9 L90.0,63.0 L88.8,64.0 L87.6,64.9 L87.2,66.1 L87.6,67.7 L87.6,69.2 L86.4,70.0 L84.6,70.4 L83.1,71.0 L82.5,72.1 L82.3,73.5 L82.3,75.0 L82.4,76.8 L82.8,78.9 L82.8,80.8 L82.2,82.2 L81.2,83.2 L80.3,84.4 L79.5,85.7 L78.3,86.5 L76.2,86.1 L73.8,85.0 L71.9,84.6 L70.8,85.1 L69.9,86.2 L68.9,87.2 L68.0,88.2 L67.0,89.4 L65.9,90.1 L64.5,90.2 L63.0,90.0 L61.7,90.4 L60.7,91.7 L59.5,92.7 L58.2,92.8 L56.8,92.7 L55.5,93.5 L54.3,95.2 L52.9,96.7 L51.5,97.3 L50.0,97.2 L48.5,96.5 L47.2,95.0 L46.0,92.7 L44.9,90.5 L43.8,89.4 L42.5,89.3 L41.3,89.1 L40.2,88.3 L39.1,87.5 L37.8,87.5 L36.2,88.2 L34.6,88.8 L33.3,88.7 L32.1,88.1 L30.9,87.5 L29.7,86.9 L28.7,86.1 L27.4,85.7 L25.5,86.1 L23.1,87.0 L21.1,87.3 L20.0,86.3 L19.4,84.7 L18.7,83.3 L17.8,82.2 L17.3,80.7 L17.4,78.7 L17.7,76.7 L17.7,75.1 L17.4,73.7 L16.9,72.5 L15.9,71.6 L14.1,71.2 L11.8,71.0 L10.3,70.2 L10.1,68.8 L10.4,67.1 L10.0,65.8 L9.0,64.8 L8.1,63.6 L7.7,62.3 L7.4,60.9 L6.7,59.7 L6.1,58.4 L5.9,57.0 L5.8,55.6 L5.5,54.2 L5.4,52.8 L6.6,51.4 L9.0,50.0 L11.4,48.8 L12.3,47.6 L12.0,46.4 L11.3,45.1 L10.9,43.8 L10.3,42.4 L9.5,40.9 L8.7,39.4 L8.4,37.9 L8.3,36.4 L7.9,34.8 L7.6,33.2 L8.3,31.9 L9.8,31.1 L11.0,30.1 L11.1,28.6 L10.5,26.7 L10.5,24.9 L11.3,23.7 L12.7,22.9 L14.3,22.3 L16.2,22.0 L18.2,22.0 L20.1,22.0 L21.4,21.4 L22.3,20.5 L23.4,19.9 L24.7,19.5 L25.6,18.5 L25.6,16.5 L25.5,13.9 L25.9,12.0 L27.0,11.1 L28.4,10.8 L29.9,10.6 L31.4,10.4 L32.9,10.5 L34.2,10.2 L35.3,9.2 L36.4,8.2 L37.8,7.9 L39.3,8.4 L40.8,8.7 L42.1,8.3 L43.3,7.8 L44.7,8.2 L46.2,9.5 L47.5,10.9 L48.8,11.4 L50.0,11.2 L51.2,10.5 L52.6,9.2 L54.1,7.1 L55.7,5.2 L57.2,4.4 L58.6,4.8 L60.0,5.2 L61.6,5.0 L63.1,4.9 L64.4,5.7 L65.4,7.3 L66.3,8.9 L67.4,9.8 L68.7,10.3 L69.9,10.9 L71.2,11.5 L72.4,12.0 L73.5,13.0 L73.8,15.0 L73.7,17.4 L73.8,19.3 L74.8,20.0 L76.3,20.2 L77.6,20.7 L78.6,21.4 L80.0,21.8 L81.9,21.9 L83.9,21.9 L85.6,22.4 L87.0,23.1 L88.1,24.1 L88.6,25.5 L88.1,27.5 L87.2,29.6 L86.9,31.2 L87.9,32.2 L89.3,33.0 L90.0,34.2 L89.9,35.6 L89.9,37.0 L90.3,38.3 L90.7,39.6 L90.6,40.9 L90.6,42.3 L90.8,43.5 L91.1,44.8 L91.1,46.1 L91.3,47.4 L92.6,48.7 Z%27 fill=%27url(%23hl)%27/%3E%3Cpath d=%27M95.0,50.0 L97.3,51.5 L98.2,53.0 L97.6,54.5 L96.7,55.9 L95.8,57.3 L94.8,58.5 L93.4,59.7 L92.0,60.8 L91.0,61.9 L90.0,63.0 L88.8,64.0 L87.6,64.9 L87.2,66.1 L87.6,67.7 L87.6,69.2 L86.4,70.0 L84.6,70.4 L83.1,71.0 L82.5,72.1 L82.3,73.5 L82.3,75.0 L82.4,76.8 L82.8,78.9 L82.8,80.8 L82.2,82.2 L81.2,83.2 L80.3,84.4 L79.5,85.7 L78.3,86.5 L76.2,86.1 L73.8,85.0 L71.9,84.6 L70.8,85.1 L69.9,86.2 L68.9,87.2 L68.0,88.2 L67.0,89.4 L65.9,90.1 L64.5,90.2 L63.0,90.0 L61.7,90.4 L60.7,91.7 L59.5,92.7 L58.2,92.8 L56.8,92.7 L55.5,93.5 L54.3,95.2 L52.9,96.7 L51.5,97.3 L50.0,97.2 L48.5,96.5 L47.2,95.0 L46.0,92.7 L44.9,90.5 L43.8,89.4 L42.5,89.3 L41.3,89.1 L40.2,88.3 L39.1,87.5 L37.8,87.5 L36.2,88.2 L34.6,88.8 L33.3,88.7 L32.1,88.1 L30.9,87.5 L29.7,86.9 L28.7,86.1 L27.4,85.7 L25.5,86.1 L23.1,87.0 L21.1,87.3 L20.0,86.3 L19.4,84.7 L18.7,83.3 L17.8,82.2 L17.3,80.7 L17.4,78.7 L17.7,76.7 L17.7,75.1 L17.4,73.7 L16.9,72.5 L15.9,71.6 L14.1,71.2 L11.8,71.0 L10.3,70.2 L10.1,68.8 L10.4,67.1 L10.0,65.8 L9.0,64.8 L8.1,63.6 L7.7,62.3 L7.4,60.9 L6.7,59.7 L6.1,58.4 L5.9,57.0 L5.8,55.6 L5.5,54.2 L5.4,52.8 L6.6,51.4 L9.0,50.0 L11.4,48.8 L12.3,47.6 L12.0,46.4 L11.3,45.1 L10.9,43.8 L10.3,42.4 L9.5,40.9 L8.7,39.4 L8.4,37.9 L8.3,36.4 L7.9,34.8 L7.6,33.2 L8.3,31.9 L9.8,31.1 L11.0,30.1 L11.1,28.6 L10.5,26.7 L10.5,24.9 L11.3,23.7 L12.7,22.9 L14.3,22.3 L16.2,22.0 L18.2,22.0 L20.1,22.0 L21.4,21.4 L22.3,20.5 L23.4,19.9 L24.7,19.5 L25.6,18.5 L25.6,16.5 L25.5,13.9 L25.9,12.0 L27.0,11.1 L28.4,10.8 L29.9,10.6 L31.4,10.4 L32.9,10.5 L34.2,10.2 L35.3,9.2 L36.4,8.2 L37.8,7.9 L39.3,8.4 L40.8,8.7 L42.1,8.3 L43.3,7.8 L44.7,8.2 L46.2,9.5 L47.5,10.9 L48.8,11.4 L50.0,11.2 L51.2,10.5 L52.6,9.2 L54.1,7.1 L55.7,5.2 L57.2,4.4 L58.6,4.8 L60.0,5.2 L61.6,5.0 L63.1,4.9 L64.4,5.7 L65.4,7.3 L66.3,8.9 L67.4,9.8 L68.7,10.3 L69.9,10.9 L71.2,11.5 L72.4,12.0 L73.5,13.0 L73.8,15.0 L73.7,17.4 L73.8,19.3 L74.8,20.0 L76.3,20.2 L77.6,20.7 L78.6,21.4 L80.0,21.8 L81.9,21.9 L83.9,21.9 L85.6,22.4 L87.0,23.1 L88.1,24.1 L88.6,25.5 L88.1,27.5 L87.2,29.6 L86.9,31.2 L87.9,32.2 L89.3,33.0 L90.0,34.2 L89.9,35.6 L89.9,37.0 L90.3,38.3 L90.7,39.6 L90.6,40.9 L90.6,42.3 L90.8,43.5 L91.1,44.8 L91.1,46.1 L91.3,47.4 L92.6,48.7 Z%27 fill=%27url(%23hl2)%27/%3E%3Cpath d=%27M95.0,50.0 L97.3,51.5 L98.2,53.0 L97.6,54.5 L96.7,55.9 L95.8,57.3 L94.8,58.5 L93.4,59.7 L92.0,60.8 L91.0,61.9 L90.0,63.0 L88.8,64.0 L87.6,64.9 L87.2,66.1 L87.6,67.7 L87.6,69.2 L86.4,70.0 L84.6,70.4 L83.1,71.0 L82.5,72.1 L82.3,73.5 L82.3,75.0 L82.4,76.8 L82.8,78.9 L82.8,80.8 L82.2,82.2 L81.2,83.2 L80.3,84.4 L79.5,85.7 L78.3,86.5 L76.2,86.1 L73.8,85.0 L71.9,84.6 L70.8,85.1 L69.9,86.2 L68.9,87.2 L68.0,88.2 L67.0,89.4 L65.9,90.1 L64.5,90.2 L63.0,90.0 L61.7,90.4 L60.7,91.7 L59.5,92.7 L58.2,92.8 L56.8,92.7 L55.5,93.5 L54.3,95.2 L52.9,96.7 L51.5,97.3 L50.0,97.2 L48.5,96.5 L47.2,95.0 L46.0,92.7 L44.9,90.5 L43.8,89.4 L42.5,89.3 L41.3,89.1 L40.2,88.3 L39.1,87.5 L37.8,87.5 L36.2,88.2 L34.6,88.8 L33.3,88.7 L32.1,88.1 L30.9,87.5 L29.7,86.9 L28.7,86.1 L27.4,85.7 L25.5,86.1 L23.1,87.0 L21.1,87.3 L20.0,86.3 L19.4,84.7 L18.7,83.3 L17.8,82.2 L17.3,80.7 L17.4,78.7 L17.7,76.7 L17.7,75.1 L17.4,73.7 L16.9,72.5 L15.9,71.6 L14.1,71.2 L11.8,71.0 L10.3,70.2 L10.1,68.8 L10.4,67.1 L10.0,65.8 L9.0,64.8 L8.1,63.6 L7.7,62.3 L7.4,60.9 L6.7,59.7 L6.1,58.4 L5.9,57.0 L5.8,55.6 L5.5,54.2 L5.4,52.8 L6.6,51.4 L9.0,50.0 L11.4,48.8 L12.3,47.6 L12.0,46.4 L11.3,45.1 L10.9,43.8 L10.3,42.4 L9.5,40.9 L8.7,39.4 L8.4,37.9 L8.3,36.4 L7.9,34.8 L7.6,33.2 L8.3,31.9 L9.8,31.1 L11.0,30.1 L11.1,28.6 L10.5,26.7 L10.5,24.9 L11.3,23.7 L12.7,22.9 L14.3,22.3 L16.2,22.0 L18.2,22.0 L20.1,22.0 L21.4,21.4 L22.3,20.5 L23.4,19.9 L24.7,19.5 L25.6,18.5 L25.6,16.5 L25.5,13.9 L25.9,12.0 L27.0,11.1 L28.4,10.8 L29.9,10.6 L31.4,10.4 L32.9,10.5 L34.2,10.2 L35.3,9.2 L36.4,8.2 L37.8,7.9 L39.3,8.4 L40.8,8.7 L42.1,8.3 L43.3,7.8 L44.7,8.2 L46.2,9.5 L47.5,10.9 L48.8,11.4 L50.0,11.2 L51.2,10.5 L52.6,9.2 L54.1,7.1 L55.7,5.2 L57.2,4.4 L58.6,4.8 L60.0,5.2 L61.6,5.0 L63.1,4.9 L64.4,5.7 L65.4,7.3 L66.3,8.9 L67.4,9.8 L68.7,10.3 L69.9,10.9 L71.2,11.5 L72.4,12.0 L73.5,13.0 L73.8,15.0 L73.7,17.4 L73.8,19.3 L74.8,20.0 L76.3,20.2 L77.6,20.7 L78.6,21.4 L80.0,21.8 L81.9,21.9 L83.9,21.9 L85.6,22.4 L87.0,23.1 L88.1,24.1 L88.6,25.5 L88.1,27.5 L87.2,29.6 L86.9,31.2 L87.9,32.2 L89.3,33.0 L90.0,34.2 L89.9,35.6 L89.9,37.0 L90.3,38.3 L90.7,39.6 L90.6,40.9 L90.6,42.3 L90.8,43.5 L91.1,44.8 L91.1,46.1 L91.3,47.4 L92.6,48.7 Z%27 fill=%27url(%23streak)%27/%3E%3Ccircle cx=%2791.0%27 cy=%2750.0%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2790.6%27 cy=%2755.4%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2789.6%27 cy=%2760.6%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2787.9%27 cy=%2765.7%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2785.5%27 cy=%2770.5%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2782.5%27 cy=%2775.0%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2779.0%27 cy=%2779.0%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2775.0%27 cy=%2782.5%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2770.5%27 cy=%2785.5%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2765.7%27 cy=%2787.9%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2760.6%27 cy=%2789.6%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2755.4%27 cy=%2790.6%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2750.0%27 cy=%2791.0%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2744.6%27 cy=%2790.6%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2739.4%27 cy=%2789.6%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2734.3%27 cy=%2787.9%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2729.5%27 cy=%2785.5%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2725.0%27 cy=%2782.5%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2721.0%27 cy=%2779.0%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2717.5%27 cy=%2775.0%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2714.5%27 cy=%2770.5%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2712.1%27 cy=%2765.7%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2710.4%27 cy=%2760.6%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%279.4%27 cy=%2755.4%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%279.0%27 cy=%2750.0%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%279.4%27 cy=%2744.6%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2710.4%27 cy=%2739.4%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2712.1%27 cy=%2734.3%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2714.5%27 cy=%2729.5%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2717.5%27 cy=%2725.0%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2721.0%27 cy=%2721.0%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2725.0%27 cy=%2717.5%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2729.5%27 cy=%2714.5%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2734.3%27 cy=%2712.1%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2739.4%27 cy=%2710.4%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2744.6%27 cy=%279.4%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2750.0%27 cy=%279.0%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2755.4%27 cy=%279.4%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2760.6%27 cy=%2710.4%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2765.7%27 cy=%2712.1%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2770.5%27 cy=%2714.5%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2775.0%27 cy=%2717.5%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2779.0%27 cy=%2721.0%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2782.5%27 cy=%2725.0%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2785.5%27 cy=%2729.5%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2787.9%27 cy=%2734.3%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2789.6%27 cy=%2739.4%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2790.6%27 cy=%2744.6%27 r=%27.9%27 fill=%27%23ff7a7a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2750%27 cy=%2750%27 r=%2736%27 fill=%27none%27 stroke=%27%234e0710%27 stroke-width=%272.8%27 opacity=%27.85%27/%3E%3Cpath d=%27M87.2 50.0 L84.5 53.0%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M86.8 55.2 L83.7 57.8%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M85.8 60.3 L82.3 62.4%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M84.0 65.1 L80.3 66.8%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M81.5 69.7 L77.6 70.8%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M78.5 73.9 L74.5 74.5%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M74.9 77.6 L70.8 77.6%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M70.8 80.8 L66.8 80.3%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M66.3 83.4 L62.4 82.3%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M61.5 85.4 L57.8 83.7%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M56.5 86.6 L53.0 84.5%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M51.3 87.2 L48.2 84.6%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M46.1 87.0 L43.4 84.0%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M41.0 86.1 L38.7 82.7%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M36.1 84.5 L34.3 80.8%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M31.4 82.2 L30.2 78.3%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M27.1 79.3 L26.4 75.3%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M23.2 75.8 L23.1 71.8%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M19.9 71.9 L20.3 67.8%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M17.2 67.5 L18.2 63.5%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M15.0 62.7 L16.6 59.0%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M13.6 57.7 L15.7 54.2%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M12.9 52.6 L15.4 49.4%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M12.9 47.4 L15.8 44.6%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M13.6 42.3 L16.9 39.9%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M15.0 37.3 L18.6 35.4%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M17.2 32.5 L21.0 31.2%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M19.9 28.1 L23.9 27.3%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M23.2 24.2 L27.3 23.9%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M27.1 20.7 L31.2 21.0%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M31.4 17.8 L35.4 18.6%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M36.1 15.5 L39.9 16.9%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M41.0 13.9 L44.6 15.8%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M46.1 13.0 L49.4 15.4%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M51.3 12.8 L54.2 15.7%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M56.5 13.4 L59.0 16.6%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M61.5 14.6 L63.5 18.2%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M66.3 16.6 L67.8 20.3%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M70.8 19.2 L71.8 23.1%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M74.9 22.4 L75.3 26.4%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M78.5 26.1 L78.3 30.2%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M81.5 30.3 L80.8 34.3%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M84.0 34.9 L82.7 38.7%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M85.8 39.7 L84.0 43.4%27 stroke=%27%234e0710%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M86.8 44.8 L84.6 48.2%27 stroke=%27%23ff7a7a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Ccircle cx=%2750%27 cy=%2750%27 r=%2733%27 fill=%27none%27 stroke=%27%23ff7a7a%27 stroke-width=%27.9%27 opacity=%27.6%27/%3E%3Ccircle cx=%2750%27 cy=%2750%27 r=%2739%27 fill=%27none%27 stroke=%27%23ff7a7a%27 stroke-width=%27.7%27 opacity=%27.4%27/%3E%3Cpath d=%27M50 50 L82.0 50.0 L81.8 53.3 Z%27 fill=%27%23ff7a7a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L80.1 60.9 L78.8 64.0 Z%27 fill=%27%23ff7a7a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L74.5 70.6 L72.2 73.0 Z%27 fill=%27%23ff7a7a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L66.0 77.7 L63.0 79.2 Z%27 fill=%27%23ff7a7a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L55.6 81.5 L52.2 81.9 Z%27 fill=%27%23ff7a7a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L44.4 81.5 L41.2 80.8 Z%27 fill=%27%23ff7a7a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L34.0 77.7 L31.2 75.9 Z%27 fill=%27%23ff7a7a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L25.5 70.6 L23.5 67.9 Z%27 fill=%27%23ff7a7a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L19.9 60.9 L19.0 57.7 Z%27 fill=%27%23ff7a7a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L18.0 50.0 L18.2 46.7 Z%27 fill=%27%23ff7a7a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L19.9 39.1 L21.2 36.0 Z%27 fill=%27%23ff7a7a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L25.5 29.4 L27.8 27.0 Z%27 fill=%27%23ff7a7a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L34.0 22.3 L37.0 20.8 Z%27 fill=%27%23ff7a7a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L44.4 18.5 L47.8 18.1 Z%27 fill=%27%23ff7a7a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L55.6 18.5 L58.8 19.2 Z%27 fill=%27%23ff7a7a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L66.0 22.3 L68.8 24.1 Z%27 fill=%27%23ff7a7a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L74.5 29.4 L76.5 32.1 Z%27 fill=%27%23ff7a7a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L80.1 39.1 L81.0 42.3 Z%27 fill=%27%23ff7a7a%27 opacity=%27.13%27/%3E%3Cellipse cx=%2746.6%27 cy=%2773.9%27 rx=%276.6%27 ry=%272.9%27 transform=%27rotate(150.0 46.6 73.9)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2746.6%27 y1=%2773.9%27 x2=%2742.8%27 y2=%2776.1%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2745.4%27 cy=%2782.6%27 rx=%276.6%27 ry=%272.9%27 transform=%27rotate(226.0 45.4 82.6)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2745.4%27 y1=%2782.6%27 x2=%2742.4%27 y2=%2779.4%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2741.0%27 cy=%2772.3%27 rx=%276.3%27 ry=%272.8%27 transform=%27rotate(164.0 41.0 72.3)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2741.0%27 y1=%2772.3%27 x2=%2736.9%27 y2=%2773.5%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2737.7%27 cy=%2780.5%27 rx=%276.3%27 ry=%272.8%27 transform=%27rotate(240.0 37.7 80.5)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2737.7%27 y1=%2780.5%27 x2=%2735.6%27 y2=%2776.9%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Ccircle cx=%2739.3%27 cy=%2776.4%27 r=%271.5%27 fill=%27%23ffe9a0%27 stroke=%27%237a4f14%27 stroke-width=%27.3%27/%3E%3Ccircle cx=%2738.9%27 cy=%2776.0%27 r=%27.5%27 fill=%27%23fff%27 opacity=%27.7%27/%3E%3Cellipse cx=%2735.8%27 cy=%2769.5%27 rx=%276.0%27 ry=%272.7%27 transform=%27rotate(178.0 35.8 69.5)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2735.8%27 y1=%2769.5%27 x2=%2731.8%27 y2=%2769.6%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2730.7%27 cy=%2776.6%27 rx=%276.0%27 ry=%272.7%27 transform=%27rotate(254.0 30.7 76.6)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2730.7%27 y1=%2776.6%27 x2=%2729.6%27 y2=%2772.7%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2731.5%27 cy=%2765.5%27 rx=%275.8%27 ry=%272.5%27 transform=%27rotate(192.0 31.5 65.5)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2731.5%27 y1=%2765.5%27 x2=%2727.8%27 y2=%2764.7%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2724.8%27 cy=%2771.1%27 rx=%275.8%27 ry=%272.5%27 transform=%27rotate(268.0 24.8 71.1)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2724.8%27 y1=%2771.1%27 x2=%2724.7%27 y2=%2767.3%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2728.3%27 cy=%2760.6%27 rx=%275.5%27 ry=%272.4%27 transform=%27rotate(206.0 28.3 60.6)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2728.3%27 y1=%2760.6%27 x2=%2725.0%27 y2=%2759.0%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2720.4%27 cy=%2764.4%27 rx=%275.5%27 ry=%272.4%27 transform=%27rotate(282.0 20.4 64.4)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2720.4%27 y1=%2764.4%27 x2=%2721.2%27 y2=%2760.8%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Ccircle cx=%2724.4%27 cy=%2762.5%27 r=%271.5%27 fill=%27%23ffe9a0%27 stroke=%27%237a4f14%27 stroke-width=%27.3%27/%3E%3Ccircle cx=%2724.0%27 cy=%2762.1%27 r=%27.5%27 fill=%27%23fff%27 opacity=%27.7%27/%3E%3Cellipse cx=%2726.4%27 cy=%2755.0%27 rx=%275.2%27 ry=%272.3%27 transform=%27rotate(220.0 26.4 55.0)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2726.4%27 y1=%2755.0%27 x2=%2723.8%27 y2=%2752.8%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2717.8%27 cy=%2756.8%27 rx=%275.2%27 ry=%272.3%27 transform=%27rotate(296.0 17.8 56.8)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2717.8%27 y1=%2756.8%27 x2=%2719.3%27 y2=%2753.7%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2725.9%27 cy=%2749.2%27 rx=%274.9%27 ry=%272.2%27 transform=%27rotate(234.0 25.9 49.2)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2725.9%27 y1=%2749.2%27 x2=%2724.0%27 y2=%2746.5%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2717.1%27 cy=%2748.9%27 rx=%274.9%27 ry=%272.2%27 transform=%27rotate(310.0 17.1 48.9)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2717.1%27 y1=%2748.9%27 x2=%2719.2%27 y2=%2746.3%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2726.8%27 cy=%2743.4%27 rx=%274.7%27 ry=%272.0%27 transform=%27rotate(248.0 26.8 43.4)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2726.8%27 y1=%2743.4%27 x2=%2725.7%27 y2=%2740.5%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2718.4%27 cy=%2740.9%27 rx=%274.7%27 ry=%272.0%27 transform=%27rotate(324.0 18.4 40.9)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2718.4%27 y1=%2740.9%27 x2=%2720.9%27 y2=%2739.1%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Ccircle cx=%2722.6%27 cy=%2742.1%27 r=%271.5%27 fill=%27%23ffe9a0%27 stroke=%27%237a4f14%27 stroke-width=%27.3%27/%3E%3Ccircle cx=%2722.2%27 cy=%2741.7%27 r=%27.5%27 fill=%27%23fff%27 opacity=%27.7%27/%3E%3Cellipse cx=%2729.1%27 cy=%2737.9%27 rx=%274.4%27 ry=%271.9%27 transform=%27rotate(262.0 29.1 37.9)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2729.1%27 y1=%2737.9%27 x2=%2728.7%27 y2=%2735.1%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2721.5%27 cy=%2733.5%27 rx=%274.4%27 ry=%271.9%27 transform=%27rotate(338.0 21.5 33.5)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2721.5%27 y1=%2733.5%27 x2=%2724.2%27 y2=%2732.5%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2732.7%27 cy=%2733.3%27 rx=%274.1%27 ry=%271.8%27 transform=%27rotate(276.0 32.7 33.3)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2732.7%27 y1=%2733.3%27 x2=%2732.9%27 y2=%2730.5%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2726.3%27 cy=%2727.1%27 rx=%274.1%27 ry=%271.8%27 transform=%27rotate(352.0 26.3 27.1)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2726.3%27 y1=%2727.1%27 x2=%2729.0%27 y2=%2726.8%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2737.2%27 cy=%2729.6%27 rx=%273.8%27 ry=%271.7%27 transform=%27rotate(290.0 37.2 29.6)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2737.2%27 y1=%2729.6%27 x2=%2738.1%27 y2=%2727.2%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2732.6%27 cy=%2722.1%27 rx=%273.8%27 ry=%271.7%27 transform=%27rotate(366.0 32.6 22.1)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2732.6%27 y1=%2722.1%27 x2=%2735.1%27 y2=%2722.4%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Ccircle cx=%2734.9%27 cy=%2725.8%27 r=%271.5%27 fill=%27%23ffe9a0%27 stroke=%27%237a4f14%27 stroke-width=%27.3%27/%3E%3Ccircle cx=%2734.5%27 cy=%2725.4%27 r=%27.5%27 fill=%27%23fff%27 opacity=%27.7%27/%3E%3Cellipse cx=%2753.4%27 cy=%2773.9%27 rx=%276.6%27 ry=%272.9%27 transform=%27rotate(210.0 53.4 73.9)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2753.4%27 y1=%2773.9%27 x2=%2749.5%27 y2=%2771.7%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2754.6%27 cy=%2782.6%27 rx=%276.6%27 ry=%272.9%27 transform=%27rotate(134.0 54.6 82.6)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2754.6%27 y1=%2782.6%27 x2=%2751.5%27 y2=%2785.7%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2759.0%27 cy=%2772.3%27 rx=%276.3%27 ry=%272.8%27 transform=%27rotate(196.0 59.0 72.3)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2759.0%27 y1=%2772.3%27 x2=%2755.0%27 y2=%2771.2%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2762.3%27 cy=%2780.5%27 rx=%276.3%27 ry=%272.8%27 transform=%27rotate(120.0 62.3 80.5)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2762.3%27 y1=%2780.5%27 x2=%2760.2%27 y2=%2784.2%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Ccircle cx=%2760.7%27 cy=%2776.4%27 r=%271.5%27 fill=%27%23ffe9a0%27 stroke=%27%237a4f14%27 stroke-width=%27.3%27/%3E%3Ccircle cx=%2760.3%27 cy=%2776.0%27 r=%27.5%27 fill=%27%23fff%27 opacity=%27.7%27/%3E%3Cellipse cx=%2764.2%27 cy=%2769.5%27 rx=%276.0%27 ry=%272.7%27 transform=%27rotate(182.0 64.2 69.5)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2764.2%27 y1=%2769.5%27 x2=%2760.1%27 y2=%2769.4%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2769.3%27 cy=%2776.6%27 rx=%276.0%27 ry=%272.7%27 transform=%27rotate(106.0 69.3 76.6)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2769.3%27 y1=%2776.6%27 x2=%2768.2%27 y2=%2780.5%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2768.5%27 cy=%2765.5%27 rx=%275.8%27 ry=%272.5%27 transform=%27rotate(168.0 68.5 65.5)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2768.5%27 y1=%2765.5%27 x2=%2764.7%27 y2=%2766.3%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2775.2%27 cy=%2771.1%27 rx=%275.8%27 ry=%272.5%27 transform=%27rotate(92.0 75.2 71.1)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2775.2%27 y1=%2771.1%27 x2=%2775.1%27 y2=%2775.0%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2771.7%27 cy=%2760.6%27 rx=%275.5%27 ry=%272.4%27 transform=%27rotate(154.0 71.7 60.6)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2771.7%27 y1=%2760.6%27 x2=%2768.4%27 y2=%2762.2%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2779.6%27 cy=%2764.4%27 rx=%275.5%27 ry=%272.4%27 transform=%27rotate(78.0 79.6 64.4)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2779.6%27 y1=%2764.4%27 x2=%2780.3%27 y2=%2768.0%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Ccircle cx=%2775.6%27 cy=%2762.5%27 r=%271.5%27 fill=%27%23ffe9a0%27 stroke=%27%237a4f14%27 stroke-width=%27.3%27/%3E%3Ccircle cx=%2775.2%27 cy=%2762.1%27 r=%27.5%27 fill=%27%23fff%27 opacity=%27.7%27/%3E%3Cellipse cx=%2773.6%27 cy=%2755.0%27 rx=%275.2%27 ry=%272.3%27 transform=%27rotate(140.0 73.6 55.0)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2773.6%27 y1=%2755.0%27 x2=%2770.9%27 y2=%2757.2%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2782.2%27 cy=%2756.8%27 rx=%275.2%27 ry=%272.3%27 transform=%27rotate(64.0 82.2 56.8)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2782.2%27 y1=%2756.8%27 x2=%2783.7%27 y2=%2760.0%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2774.1%27 cy=%2749.2%27 rx=%274.9%27 ry=%272.2%27 transform=%27rotate(126.0 74.1 49.2)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2774.1%27 y1=%2749.2%27 x2=%2772.2%27 y2=%2751.8%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2782.9%27 cy=%2748.9%27 rx=%274.9%27 ry=%272.2%27 transform=%27rotate(50.0 82.9 48.9)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2782.9%27 y1=%2748.9%27 x2=%2785.0%27 y2=%2751.4%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2773.2%27 cy=%2743.4%27 rx=%274.7%27 ry=%272.0%27 transform=%27rotate(112.0 73.2 43.4)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2773.2%27 y1=%2743.4%27 x2=%2772.0%27 y2=%2746.2%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2781.6%27 cy=%2740.9%27 rx=%274.7%27 ry=%272.0%27 transform=%27rotate(36.0 81.6 40.9)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2781.6%27 y1=%2740.9%27 x2=%2784.1%27 y2=%2742.8%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Ccircle cx=%2777.4%27 cy=%2742.1%27 r=%271.5%27 fill=%27%23ffe9a0%27 stroke=%27%237a4f14%27 stroke-width=%27.3%27/%3E%3Ccircle cx=%2777.0%27 cy=%2741.7%27 r=%27.5%27 fill=%27%23fff%27 opacity=%27.7%27/%3E%3Cellipse cx=%2770.9%27 cy=%2738.0%27 rx=%274.4%27 ry=%271.9%27 transform=%27rotate(98.0 70.9 38.0)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2770.9%27 y1=%2738.0%27 x2=%2770.5%27 y2=%2740.8%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2778.5%27 cy=%2733.6%27 rx=%274.4%27 ry=%271.9%27 transform=%27rotate(22.0 78.5 33.6)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2778.5%27 y1=%2733.6%27 x2=%2781.2%27 y2=%2734.6%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2767.3%27 cy=%2733.3%27 rx=%274.1%27 ry=%271.8%27 transform=%27rotate(84.0 67.3 33.3)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2767.3%27 y1=%2733.3%27 x2=%2767.6%27 y2=%2736.0%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2773.7%27 cy=%2727.1%27 rx=%274.1%27 ry=%271.8%27 transform=%27rotate(8.0 73.7 27.1)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2773.7%27 y1=%2727.1%27 x2=%2776.4%27 y2=%2727.5%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2762.8%27 cy=%2729.6%27 rx=%273.8%27 ry=%271.7%27 transform=%27rotate(70.0 62.8 29.6)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2762.8%27 y1=%2729.6%27 x2=%2763.6%27 y2=%2732.0%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2767.4%27 cy=%2722.1%27 rx=%273.8%27 ry=%271.7%27 transform=%27rotate(-6.0 67.4 22.1)%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.45%27/%3E%3Cline x1=%2767.4%27 y1=%2722.1%27 x2=%2770.0%27 y2=%2721.8%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Ccircle cx=%2765.1%27 cy=%2725.8%27 r=%271.5%27 fill=%27%23ffe9a0%27 stroke=%27%237a4f14%27 stroke-width=%27.3%27/%3E%3Ccircle cx=%2764.7%27 cy=%2725.4%27 r=%27.5%27 fill=%27%23fff%27 opacity=%27.7%27/%3E%3Ccircle cx=%2750%27 cy=%2779.5%27 r=%272.1%27 fill=%27url(%23lg)%27 stroke=%27%237a4f14%27 stroke-width=%27.4%27/%3E%3C/svg%3E"); }
.qb-hot-A .qb-seal-hot{ color:#fff8e6; text-shadow:0 1px 0 #7a5008, 0 -1px 0 #fff3c0, 0 2px 3px rgba(0,0,0,.55); -webkit-text-stroke:.5px #5a3a06; }
.qb-hot-A .qb-seal-hot::before{ background-image:url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 100 100%27%3E%3Cdefs%3E%3CradialGradient id=%27w%27 cx=%27.36%27 cy=%27.3%27 r=%27.8%27%3E%3Cstop offset=%270%27 stop-color=%27%23ffe08a%27/%3E%3Cstop offset=%27.4%27 stop-color=%27%23d4a017%27/%3E%3Cstop offset=%271%27 stop-color=%27%23664206%27/%3E%3C/radialGradient%3E%3ClinearGradient id=%27lg%27 x1=%270%27 y1=%270%27 x2=%271%27 y2=%271%27%3E%3Cstop offset=%270%27 stop-color=%27%23fff4c4%27/%3E%3Cstop offset=%27.5%27 stop-color=%27%235a3a06%27/%3E%3Cstop offset=%271%27 stop-color=%27%232a1a03%27/%3E%3C/linearGradient%3E%3CradialGradient id=%27hl%27 cx=%27.33%27 cy=%27.22%27 r=%27.45%27%3E%3Cstop offset=%270%27 stop-color=%27%23fff%27 stop-opacity=%27.7%27/%3E%3Cstop offset=%271%27 stop-color=%27%23fff%27 stop-opacity=%270%27/%3E%3C/radialGradient%3E%3CradialGradient id=%27hl2%27 cx=%27.75%27 cy=%27.8%27 r=%27.35%27%3E%3Cstop offset=%270%27 stop-color=%27%23fff%27 stop-opacity=%27.22%27/%3E%3Cstop offset=%271%27 stop-color=%27%23fff%27 stop-opacity=%270%27/%3E%3C/radialGradient%3E%3ClinearGradient id=%27streak%27 x1=%270%27 y1=%270%27 x2=%271%27 y2=%271%27%3E%3Cstop offset=%27.3%27 stop-color=%27%23fff%27 stop-opacity=%270%27/%3E%3Cstop offset=%27.5%27 stop-color=%27%23fff%27 stop-opacity=%27.28%27/%3E%3Cstop offset=%27.7%27 stop-color=%27%23fff%27 stop-opacity=%270%27/%3E%3C/linearGradient%3E%3Cfilter id=%27sh%27 x=%27-25%%27 y=%27-25%%27 width=%27150%%27 height=%27150%%27%3E%3CfeDropShadow dx=%270%27 dy=%273.5%27 stdDeviation=%272.4%27 flood-color=%27%23000%27 flood-opacity=%27.62%27/%3E%3C/filter%3E%3C/defs%3E%3Cpath d=%27M82 62 C 90 66, 92 76, 86 80 C 80 82, 76 74, 78 68 Z%27 fill=%27%23d4a017%27 stroke=%27%23664206%27 stroke-width=%27.8%27/%3E%3Cellipse cx=%2784%27 cy=%2769%27 rx=%271.6%27 ry=%272.6%27 fill=%27%23fff%27 opacity=%27.35%27 transform=%27rotate(25 84 69)%27/%3E%3Cpath d=%27M20 26 C 12 28, 8 36, 14 40 C 20 42, 24 34, 22 30 Z%27 fill=%27%23d4a017%27 stroke=%27%23664206%27 stroke-width=%27.8%27/%3E%3Cellipse cx=%2716%27 cy=%2732%27 rx=%271.3%27 ry=%272.2%27 fill=%27%23fff%27 opacity=%27.35%27 transform=%27rotate(-30 16 32)%27/%3E%3Ccircle cx=%2790%27 cy=%2738%27 r=%273%27 fill=%27%23d4a017%27 stroke=%27%23664206%27 stroke-width=%27.7%27/%3E%3Ccircle cx=%2789%27 cy=%2737%27 r=%27.9%27 fill=%27%23fff%27 opacity=%27.5%27/%3E%3Ccircle cx=%2730%27 cy=%2788%27 r=%272.4%27 fill=%27%23d4a017%27 stroke=%27%23664206%27 stroke-width=%27.7%27/%3E%3Cpath d=%27M95.0,52.6 L97.3,54.1 L98.2,55.6 L97.6,57.1 L96.7,58.5 L95.8,59.9 L94.8,61.1 L93.4,62.3 L92.0,63.4 L91.0,64.5 L90.0,65.6 L88.8,66.6 L87.6,67.5 L87.2,68.7 L87.6,70.3 L87.6,71.8 L86.4,72.6 L84.6,73.0 L83.1,73.6 L82.5,74.7 L82.3,76.1 L82.3,77.6 L82.4,79.4 L82.8,81.5 L82.8,83.4 L82.2,84.8 L81.2,85.8 L80.3,87.0 L79.5,88.3 L78.3,89.1 L76.2,88.7 L73.8,87.6 L71.9,87.2 L70.8,87.7 L69.9,88.8 L68.9,89.8 L68.0,90.8 L67.0,92.0 L65.9,92.7 L64.5,92.8 L63.0,92.6 L61.7,93.0 L60.7,94.3 L59.5,95.3 L58.2,95.4 L56.8,95.3 L55.5,96.1 L54.3,97.8 L52.9,99.3 L51.5,99.9 L50.0,99.8 L48.5,99.1 L47.2,97.6 L46.0,95.3 L44.9,93.1 L43.8,92.0 L42.5,91.9 L41.3,91.7 L40.2,90.9 L39.1,90.1 L37.8,90.1 L36.2,90.8 L34.6,91.4 L33.3,91.3 L32.1,90.7 L30.9,90.1 L29.7,89.5 L28.7,88.7 L27.4,88.3 L25.5,88.7 L23.1,89.6 L21.1,89.9 L20.0,88.9 L19.4,87.3 L18.7,85.9 L17.8,84.8 L17.3,83.3 L17.4,81.3 L17.7,79.3 L17.7,77.7 L17.4,76.3 L16.9,75.1 L15.9,74.2 L14.1,73.8 L11.8,73.6 L10.3,72.8 L10.1,71.4 L10.4,69.7 L10.0,68.4 L9.0,67.4 L8.1,66.2 L7.7,64.9 L7.4,63.5 L6.7,62.3 L6.1,61.0 L5.9,59.6 L5.8,58.2 L5.5,56.8 L5.4,55.4 L6.6,54.0 L9.0,52.6 L11.4,51.4 L12.3,50.2 L12.0,49.0 L11.3,47.7 L10.9,46.4 L10.3,45.0 L9.5,43.5 L8.7,42.0 L8.4,40.5 L8.3,39.0 L7.9,37.4 L7.6,35.8 L8.3,34.5 L9.8,33.7 L11.0,32.7 L11.1,31.2 L10.5,29.3 L10.5,27.5 L11.3,26.3 L12.7,25.5 L14.3,24.9 L16.2,24.6 L18.2,24.6 L20.1,24.6 L21.4,24.0 L22.3,23.1 L23.4,22.5 L24.7,22.1 L25.6,21.1 L25.6,19.1 L25.5,16.5 L25.9,14.6 L27.0,13.7 L28.4,13.4 L29.9,13.2 L31.4,13.0 L32.9,13.1 L34.2,12.8 L35.3,11.8 L36.4,10.8 L37.8,10.5 L39.3,11.0 L40.8,11.3 L42.1,10.9 L43.3,10.4 L44.7,10.8 L46.2,12.1 L47.5,13.5 L48.8,14.0 L50.0,13.8 L51.2,13.1 L52.6,11.8 L54.1,9.7 L55.7,7.8 L57.2,7.0 L58.6,7.4 L60.0,7.8 L61.6,7.6 L63.1,7.5 L64.4,8.3 L65.4,9.9 L66.3,11.5 L67.4,12.4 L68.7,12.9 L69.9,13.5 L71.2,14.1 L72.4,14.6 L73.5,15.6 L73.8,17.6 L73.7,20.0 L73.8,21.9 L74.8,22.6 L76.3,22.8 L77.6,23.3 L78.6,24.0 L80.0,24.4 L81.9,24.5 L83.9,24.5 L85.6,25.0 L87.0,25.7 L88.1,26.7 L88.6,28.1 L88.1,30.1 L87.2,32.2 L86.9,33.8 L87.9,34.8 L89.3,35.6 L90.0,36.8 L89.9,38.2 L89.9,39.6 L90.3,40.9 L90.7,42.2 L90.6,43.5 L90.6,44.9 L90.8,46.1 L91.1,47.4 L91.1,48.7 L91.3,50.0 L92.6,51.3 Z%27 fill=%27%23664206%27 filter=%27url(%23sh)%27/%3E%3Cpath d=%27M95.0,50.0 L97.3,51.5 L98.2,53.0 L97.6,54.5 L96.7,55.9 L95.8,57.3 L94.8,58.5 L93.4,59.7 L92.0,60.8 L91.0,61.9 L90.0,63.0 L88.8,64.0 L87.6,64.9 L87.2,66.1 L87.6,67.7 L87.6,69.2 L86.4,70.0 L84.6,70.4 L83.1,71.0 L82.5,72.1 L82.3,73.5 L82.3,75.0 L82.4,76.8 L82.8,78.9 L82.8,80.8 L82.2,82.2 L81.2,83.2 L80.3,84.4 L79.5,85.7 L78.3,86.5 L76.2,86.1 L73.8,85.0 L71.9,84.6 L70.8,85.1 L69.9,86.2 L68.9,87.2 L68.0,88.2 L67.0,89.4 L65.9,90.1 L64.5,90.2 L63.0,90.0 L61.7,90.4 L60.7,91.7 L59.5,92.7 L58.2,92.8 L56.8,92.7 L55.5,93.5 L54.3,95.2 L52.9,96.7 L51.5,97.3 L50.0,97.2 L48.5,96.5 L47.2,95.0 L46.0,92.7 L44.9,90.5 L43.8,89.4 L42.5,89.3 L41.3,89.1 L40.2,88.3 L39.1,87.5 L37.8,87.5 L36.2,88.2 L34.6,88.8 L33.3,88.7 L32.1,88.1 L30.9,87.5 L29.7,86.9 L28.7,86.1 L27.4,85.7 L25.5,86.1 L23.1,87.0 L21.1,87.3 L20.0,86.3 L19.4,84.7 L18.7,83.3 L17.8,82.2 L17.3,80.7 L17.4,78.7 L17.7,76.7 L17.7,75.1 L17.4,73.7 L16.9,72.5 L15.9,71.6 L14.1,71.2 L11.8,71.0 L10.3,70.2 L10.1,68.8 L10.4,67.1 L10.0,65.8 L9.0,64.8 L8.1,63.6 L7.7,62.3 L7.4,60.9 L6.7,59.7 L6.1,58.4 L5.9,57.0 L5.8,55.6 L5.5,54.2 L5.4,52.8 L6.6,51.4 L9.0,50.0 L11.4,48.8 L12.3,47.6 L12.0,46.4 L11.3,45.1 L10.9,43.8 L10.3,42.4 L9.5,40.9 L8.7,39.4 L8.4,37.9 L8.3,36.4 L7.9,34.8 L7.6,33.2 L8.3,31.9 L9.8,31.1 L11.0,30.1 L11.1,28.6 L10.5,26.7 L10.5,24.9 L11.3,23.7 L12.7,22.9 L14.3,22.3 L16.2,22.0 L18.2,22.0 L20.1,22.0 L21.4,21.4 L22.3,20.5 L23.4,19.9 L24.7,19.5 L25.6,18.5 L25.6,16.5 L25.5,13.9 L25.9,12.0 L27.0,11.1 L28.4,10.8 L29.9,10.6 L31.4,10.4 L32.9,10.5 L34.2,10.2 L35.3,9.2 L36.4,8.2 L37.8,7.9 L39.3,8.4 L40.8,8.7 L42.1,8.3 L43.3,7.8 L44.7,8.2 L46.2,9.5 L47.5,10.9 L48.8,11.4 L50.0,11.2 L51.2,10.5 L52.6,9.2 L54.1,7.1 L55.7,5.2 L57.2,4.4 L58.6,4.8 L60.0,5.2 L61.6,5.0 L63.1,4.9 L64.4,5.7 L65.4,7.3 L66.3,8.9 L67.4,9.8 L68.7,10.3 L69.9,10.9 L71.2,11.5 L72.4,12.0 L73.5,13.0 L73.8,15.0 L73.7,17.4 L73.8,19.3 L74.8,20.0 L76.3,20.2 L77.6,20.7 L78.6,21.4 L80.0,21.8 L81.9,21.9 L83.9,21.9 L85.6,22.4 L87.0,23.1 L88.1,24.1 L88.6,25.5 L88.1,27.5 L87.2,29.6 L86.9,31.2 L87.9,32.2 L89.3,33.0 L90.0,34.2 L89.9,35.6 L89.9,37.0 L90.3,38.3 L90.7,39.6 L90.6,40.9 L90.6,42.3 L90.8,43.5 L91.1,44.8 L91.1,46.1 L91.3,47.4 L92.6,48.7 Z%27 fill=%27url(%23w)%27 stroke=%27%23664206%27 stroke-width=%271%27/%3E%3Cpath d=%27M95.0,50.0 L97.3,51.5 L98.2,53.0 L97.6,54.5 L96.7,55.9 L95.8,57.3 L94.8,58.5 L93.4,59.7 L92.0,60.8 L91.0,61.9 L90.0,63.0 L88.8,64.0 L87.6,64.9 L87.2,66.1 L87.6,67.7 L87.6,69.2 L86.4,70.0 L84.6,70.4 L83.1,71.0 L82.5,72.1 L82.3,73.5 L82.3,75.0 L82.4,76.8 L82.8,78.9 L82.8,80.8 L82.2,82.2 L81.2,83.2 L80.3,84.4 L79.5,85.7 L78.3,86.5 L76.2,86.1 L73.8,85.0 L71.9,84.6 L70.8,85.1 L69.9,86.2 L68.9,87.2 L68.0,88.2 L67.0,89.4 L65.9,90.1 L64.5,90.2 L63.0,90.0 L61.7,90.4 L60.7,91.7 L59.5,92.7 L58.2,92.8 L56.8,92.7 L55.5,93.5 L54.3,95.2 L52.9,96.7 L51.5,97.3 L50.0,97.2 L48.5,96.5 L47.2,95.0 L46.0,92.7 L44.9,90.5 L43.8,89.4 L42.5,89.3 L41.3,89.1 L40.2,88.3 L39.1,87.5 L37.8,87.5 L36.2,88.2 L34.6,88.8 L33.3,88.7 L32.1,88.1 L30.9,87.5 L29.7,86.9 L28.7,86.1 L27.4,85.7 L25.5,86.1 L23.1,87.0 L21.1,87.3 L20.0,86.3 L19.4,84.7 L18.7,83.3 L17.8,82.2 L17.3,80.7 L17.4,78.7 L17.7,76.7 L17.7,75.1 L17.4,73.7 L16.9,72.5 L15.9,71.6 L14.1,71.2 L11.8,71.0 L10.3,70.2 L10.1,68.8 L10.4,67.1 L10.0,65.8 L9.0,64.8 L8.1,63.6 L7.7,62.3 L7.4,60.9 L6.7,59.7 L6.1,58.4 L5.9,57.0 L5.8,55.6 L5.5,54.2 L5.4,52.8 L6.6,51.4 L9.0,50.0 L11.4,48.8 L12.3,47.6 L12.0,46.4 L11.3,45.1 L10.9,43.8 L10.3,42.4 L9.5,40.9 L8.7,39.4 L8.4,37.9 L8.3,36.4 L7.9,34.8 L7.6,33.2 L8.3,31.9 L9.8,31.1 L11.0,30.1 L11.1,28.6 L10.5,26.7 L10.5,24.9 L11.3,23.7 L12.7,22.9 L14.3,22.3 L16.2,22.0 L18.2,22.0 L20.1,22.0 L21.4,21.4 L22.3,20.5 L23.4,19.9 L24.7,19.5 L25.6,18.5 L25.6,16.5 L25.5,13.9 L25.9,12.0 L27.0,11.1 L28.4,10.8 L29.9,10.6 L31.4,10.4 L32.9,10.5 L34.2,10.2 L35.3,9.2 L36.4,8.2 L37.8,7.9 L39.3,8.4 L40.8,8.7 L42.1,8.3 L43.3,7.8 L44.7,8.2 L46.2,9.5 L47.5,10.9 L48.8,11.4 L50.0,11.2 L51.2,10.5 L52.6,9.2 L54.1,7.1 L55.7,5.2 L57.2,4.4 L58.6,4.8 L60.0,5.2 L61.6,5.0 L63.1,4.9 L64.4,5.7 L65.4,7.3 L66.3,8.9 L67.4,9.8 L68.7,10.3 L69.9,10.9 L71.2,11.5 L72.4,12.0 L73.5,13.0 L73.8,15.0 L73.7,17.4 L73.8,19.3 L74.8,20.0 L76.3,20.2 L77.6,20.7 L78.6,21.4 L80.0,21.8 L81.9,21.9 L83.9,21.9 L85.6,22.4 L87.0,23.1 L88.1,24.1 L88.6,25.5 L88.1,27.5 L87.2,29.6 L86.9,31.2 L87.9,32.2 L89.3,33.0 L90.0,34.2 L89.9,35.6 L89.9,37.0 L90.3,38.3 L90.7,39.6 L90.6,40.9 L90.6,42.3 L90.8,43.5 L91.1,44.8 L91.1,46.1 L91.3,47.4 L92.6,48.7 Z%27 fill=%27url(%23hl)%27/%3E%3Cpath d=%27M95.0,50.0 L97.3,51.5 L98.2,53.0 L97.6,54.5 L96.7,55.9 L95.8,57.3 L94.8,58.5 L93.4,59.7 L92.0,60.8 L91.0,61.9 L90.0,63.0 L88.8,64.0 L87.6,64.9 L87.2,66.1 L87.6,67.7 L87.6,69.2 L86.4,70.0 L84.6,70.4 L83.1,71.0 L82.5,72.1 L82.3,73.5 L82.3,75.0 L82.4,76.8 L82.8,78.9 L82.8,80.8 L82.2,82.2 L81.2,83.2 L80.3,84.4 L79.5,85.7 L78.3,86.5 L76.2,86.1 L73.8,85.0 L71.9,84.6 L70.8,85.1 L69.9,86.2 L68.9,87.2 L68.0,88.2 L67.0,89.4 L65.9,90.1 L64.5,90.2 L63.0,90.0 L61.7,90.4 L60.7,91.7 L59.5,92.7 L58.2,92.8 L56.8,92.7 L55.5,93.5 L54.3,95.2 L52.9,96.7 L51.5,97.3 L50.0,97.2 L48.5,96.5 L47.2,95.0 L46.0,92.7 L44.9,90.5 L43.8,89.4 L42.5,89.3 L41.3,89.1 L40.2,88.3 L39.1,87.5 L37.8,87.5 L36.2,88.2 L34.6,88.8 L33.3,88.7 L32.1,88.1 L30.9,87.5 L29.7,86.9 L28.7,86.1 L27.4,85.7 L25.5,86.1 L23.1,87.0 L21.1,87.3 L20.0,86.3 L19.4,84.7 L18.7,83.3 L17.8,82.2 L17.3,80.7 L17.4,78.7 L17.7,76.7 L17.7,75.1 L17.4,73.7 L16.9,72.5 L15.9,71.6 L14.1,71.2 L11.8,71.0 L10.3,70.2 L10.1,68.8 L10.4,67.1 L10.0,65.8 L9.0,64.8 L8.1,63.6 L7.7,62.3 L7.4,60.9 L6.7,59.7 L6.1,58.4 L5.9,57.0 L5.8,55.6 L5.5,54.2 L5.4,52.8 L6.6,51.4 L9.0,50.0 L11.4,48.8 L12.3,47.6 L12.0,46.4 L11.3,45.1 L10.9,43.8 L10.3,42.4 L9.5,40.9 L8.7,39.4 L8.4,37.9 L8.3,36.4 L7.9,34.8 L7.6,33.2 L8.3,31.9 L9.8,31.1 L11.0,30.1 L11.1,28.6 L10.5,26.7 L10.5,24.9 L11.3,23.7 L12.7,22.9 L14.3,22.3 L16.2,22.0 L18.2,22.0 L20.1,22.0 L21.4,21.4 L22.3,20.5 L23.4,19.9 L24.7,19.5 L25.6,18.5 L25.6,16.5 L25.5,13.9 L25.9,12.0 L27.0,11.1 L28.4,10.8 L29.9,10.6 L31.4,10.4 L32.9,10.5 L34.2,10.2 L35.3,9.2 L36.4,8.2 L37.8,7.9 L39.3,8.4 L40.8,8.7 L42.1,8.3 L43.3,7.8 L44.7,8.2 L46.2,9.5 L47.5,10.9 L48.8,11.4 L50.0,11.2 L51.2,10.5 L52.6,9.2 L54.1,7.1 L55.7,5.2 L57.2,4.4 L58.6,4.8 L60.0,5.2 L61.6,5.0 L63.1,4.9 L64.4,5.7 L65.4,7.3 L66.3,8.9 L67.4,9.8 L68.7,10.3 L69.9,10.9 L71.2,11.5 L72.4,12.0 L73.5,13.0 L73.8,15.0 L73.7,17.4 L73.8,19.3 L74.8,20.0 L76.3,20.2 L77.6,20.7 L78.6,21.4 L80.0,21.8 L81.9,21.9 L83.9,21.9 L85.6,22.4 L87.0,23.1 L88.1,24.1 L88.6,25.5 L88.1,27.5 L87.2,29.6 L86.9,31.2 L87.9,32.2 L89.3,33.0 L90.0,34.2 L89.9,35.6 L89.9,37.0 L90.3,38.3 L90.7,39.6 L90.6,40.9 L90.6,42.3 L90.8,43.5 L91.1,44.8 L91.1,46.1 L91.3,47.4 L92.6,48.7 Z%27 fill=%27url(%23hl2)%27/%3E%3Cpath d=%27M95.0,50.0 L97.3,51.5 L98.2,53.0 L97.6,54.5 L96.7,55.9 L95.8,57.3 L94.8,58.5 L93.4,59.7 L92.0,60.8 L91.0,61.9 L90.0,63.0 L88.8,64.0 L87.6,64.9 L87.2,66.1 L87.6,67.7 L87.6,69.2 L86.4,70.0 L84.6,70.4 L83.1,71.0 L82.5,72.1 L82.3,73.5 L82.3,75.0 L82.4,76.8 L82.8,78.9 L82.8,80.8 L82.2,82.2 L81.2,83.2 L80.3,84.4 L79.5,85.7 L78.3,86.5 L76.2,86.1 L73.8,85.0 L71.9,84.6 L70.8,85.1 L69.9,86.2 L68.9,87.2 L68.0,88.2 L67.0,89.4 L65.9,90.1 L64.5,90.2 L63.0,90.0 L61.7,90.4 L60.7,91.7 L59.5,92.7 L58.2,92.8 L56.8,92.7 L55.5,93.5 L54.3,95.2 L52.9,96.7 L51.5,97.3 L50.0,97.2 L48.5,96.5 L47.2,95.0 L46.0,92.7 L44.9,90.5 L43.8,89.4 L42.5,89.3 L41.3,89.1 L40.2,88.3 L39.1,87.5 L37.8,87.5 L36.2,88.2 L34.6,88.8 L33.3,88.7 L32.1,88.1 L30.9,87.5 L29.7,86.9 L28.7,86.1 L27.4,85.7 L25.5,86.1 L23.1,87.0 L21.1,87.3 L20.0,86.3 L19.4,84.7 L18.7,83.3 L17.8,82.2 L17.3,80.7 L17.4,78.7 L17.7,76.7 L17.7,75.1 L17.4,73.7 L16.9,72.5 L15.9,71.6 L14.1,71.2 L11.8,71.0 L10.3,70.2 L10.1,68.8 L10.4,67.1 L10.0,65.8 L9.0,64.8 L8.1,63.6 L7.7,62.3 L7.4,60.9 L6.7,59.7 L6.1,58.4 L5.9,57.0 L5.8,55.6 L5.5,54.2 L5.4,52.8 L6.6,51.4 L9.0,50.0 L11.4,48.8 L12.3,47.6 L12.0,46.4 L11.3,45.1 L10.9,43.8 L10.3,42.4 L9.5,40.9 L8.7,39.4 L8.4,37.9 L8.3,36.4 L7.9,34.8 L7.6,33.2 L8.3,31.9 L9.8,31.1 L11.0,30.1 L11.1,28.6 L10.5,26.7 L10.5,24.9 L11.3,23.7 L12.7,22.9 L14.3,22.3 L16.2,22.0 L18.2,22.0 L20.1,22.0 L21.4,21.4 L22.3,20.5 L23.4,19.9 L24.7,19.5 L25.6,18.5 L25.6,16.5 L25.5,13.9 L25.9,12.0 L27.0,11.1 L28.4,10.8 L29.9,10.6 L31.4,10.4 L32.9,10.5 L34.2,10.2 L35.3,9.2 L36.4,8.2 L37.8,7.9 L39.3,8.4 L40.8,8.7 L42.1,8.3 L43.3,7.8 L44.7,8.2 L46.2,9.5 L47.5,10.9 L48.8,11.4 L50.0,11.2 L51.2,10.5 L52.6,9.2 L54.1,7.1 L55.7,5.2 L57.2,4.4 L58.6,4.8 L60.0,5.2 L61.6,5.0 L63.1,4.9 L64.4,5.7 L65.4,7.3 L66.3,8.9 L67.4,9.8 L68.7,10.3 L69.9,10.9 L71.2,11.5 L72.4,12.0 L73.5,13.0 L73.8,15.0 L73.7,17.4 L73.8,19.3 L74.8,20.0 L76.3,20.2 L77.6,20.7 L78.6,21.4 L80.0,21.8 L81.9,21.9 L83.9,21.9 L85.6,22.4 L87.0,23.1 L88.1,24.1 L88.6,25.5 L88.1,27.5 L87.2,29.6 L86.9,31.2 L87.9,32.2 L89.3,33.0 L90.0,34.2 L89.9,35.6 L89.9,37.0 L90.3,38.3 L90.7,39.6 L90.6,40.9 L90.6,42.3 L90.8,43.5 L91.1,44.8 L91.1,46.1 L91.3,47.4 L92.6,48.7 Z%27 fill=%27url(%23streak)%27/%3E%3Ccircle cx=%2791.0%27 cy=%2750.0%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2790.6%27 cy=%2755.4%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2789.6%27 cy=%2760.6%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2787.9%27 cy=%2765.7%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2785.5%27 cy=%2770.5%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2782.5%27 cy=%2775.0%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2779.0%27 cy=%2779.0%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2775.0%27 cy=%2782.5%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2770.5%27 cy=%2785.5%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2765.7%27 cy=%2787.9%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2760.6%27 cy=%2789.6%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2755.4%27 cy=%2790.6%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2750.0%27 cy=%2791.0%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2744.6%27 cy=%2790.6%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2739.4%27 cy=%2789.6%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2734.3%27 cy=%2787.9%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2729.5%27 cy=%2785.5%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2725.0%27 cy=%2782.5%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2721.0%27 cy=%2779.0%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2717.5%27 cy=%2775.0%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2714.5%27 cy=%2770.5%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2712.1%27 cy=%2765.7%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2710.4%27 cy=%2760.6%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%279.4%27 cy=%2755.4%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%279.0%27 cy=%2750.0%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%279.4%27 cy=%2744.6%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2710.4%27 cy=%2739.4%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2712.1%27 cy=%2734.3%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2714.5%27 cy=%2729.5%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2717.5%27 cy=%2725.0%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2721.0%27 cy=%2721.0%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2725.0%27 cy=%2717.5%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2729.5%27 cy=%2714.5%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2734.3%27 cy=%2712.1%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2739.4%27 cy=%2710.4%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2744.6%27 cy=%279.4%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2750.0%27 cy=%279.0%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2755.4%27 cy=%279.4%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2760.6%27 cy=%2710.4%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2765.7%27 cy=%2712.1%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2770.5%27 cy=%2714.5%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2775.0%27 cy=%2717.5%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2779.0%27 cy=%2721.0%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2782.5%27 cy=%2725.0%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2785.5%27 cy=%2729.5%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2787.9%27 cy=%2734.3%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2789.6%27 cy=%2739.4%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2790.6%27 cy=%2744.6%27 r=%27.9%27 fill=%27%23ffe08a%27 opacity=%27.5%27/%3E%3Ccircle cx=%2750%27 cy=%2750%27 r=%2736%27 fill=%27none%27 stroke=%27%23664206%27 stroke-width=%272.8%27 opacity=%27.85%27/%3E%3Cpath d=%27M87.2 50.0 L84.5 53.0%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M86.8 55.2 L83.7 57.8%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M85.8 60.3 L82.3 62.4%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M84.0 65.1 L80.3 66.8%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M81.5 69.7 L77.6 70.8%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M78.5 73.9 L74.5 74.5%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M74.9 77.6 L70.8 77.6%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M70.8 80.8 L66.8 80.3%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M66.3 83.4 L62.4 82.3%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M61.5 85.4 L57.8 83.7%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M56.5 86.6 L53.0 84.5%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M51.3 87.2 L48.2 84.6%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M46.1 87.0 L43.4 84.0%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M41.0 86.1 L38.7 82.7%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M36.1 84.5 L34.3 80.8%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M31.4 82.2 L30.2 78.3%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M27.1 79.3 L26.4 75.3%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M23.2 75.8 L23.1 71.8%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M19.9 71.9 L20.3 67.8%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M17.2 67.5 L18.2 63.5%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M15.0 62.7 L16.6 59.0%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M13.6 57.7 L15.7 54.2%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M12.9 52.6 L15.4 49.4%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M12.9 47.4 L15.8 44.6%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M13.6 42.3 L16.9 39.9%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M15.0 37.3 L18.6 35.4%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M17.2 32.5 L21.0 31.2%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M19.9 28.1 L23.9 27.3%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M23.2 24.2 L27.3 23.9%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M27.1 20.7 L31.2 21.0%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M31.4 17.8 L35.4 18.6%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M36.1 15.5 L39.9 16.9%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M41.0 13.9 L44.6 15.8%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M46.1 13.0 L49.4 15.4%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M51.3 12.8 L54.2 15.7%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M56.5 13.4 L59.0 16.6%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M61.5 14.6 L63.5 18.2%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M66.3 16.6 L67.8 20.3%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M70.8 19.2 L71.8 23.1%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M74.9 22.4 L75.3 26.4%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M78.5 26.1 L78.3 30.2%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M81.5 30.3 L80.8 34.3%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M84.0 34.9 L82.7 38.7%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M85.8 39.7 L84.0 43.4%27 stroke=%27%23664206%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Cpath d=%27M86.8 44.8 L84.6 48.2%27 stroke=%27%23ffe08a%27 stroke-width=%271.1%27 opacity=%27.8%27/%3E%3Ccircle cx=%2750%27 cy=%2750%27 r=%2733%27 fill=%27none%27 stroke=%27%23ffe08a%27 stroke-width=%27.9%27 opacity=%27.6%27/%3E%3Ccircle cx=%2750%27 cy=%2750%27 r=%2739%27 fill=%27none%27 stroke=%27%23ffe08a%27 stroke-width=%27.7%27 opacity=%27.4%27/%3E%3Cpath d=%27M50 50 L82.0 50.0 L81.8 53.3 Z%27 fill=%27%23ffe08a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L80.1 60.9 L78.8 64.0 Z%27 fill=%27%23ffe08a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L74.5 70.6 L72.2 73.0 Z%27 fill=%27%23ffe08a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L66.0 77.7 L63.0 79.2 Z%27 fill=%27%23ffe08a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L55.6 81.5 L52.2 81.9 Z%27 fill=%27%23ffe08a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L44.4 81.5 L41.2 80.8 Z%27 fill=%27%23ffe08a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L34.0 77.7 L31.2 75.9 Z%27 fill=%27%23ffe08a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L25.5 70.6 L23.5 67.9 Z%27 fill=%27%23ffe08a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L19.9 60.9 L19.0 57.7 Z%27 fill=%27%23ffe08a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L18.0 50.0 L18.2 46.7 Z%27 fill=%27%23ffe08a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L19.9 39.1 L21.2 36.0 Z%27 fill=%27%23ffe08a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L25.5 29.4 L27.8 27.0 Z%27 fill=%27%23ffe08a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L34.0 22.3 L37.0 20.8 Z%27 fill=%27%23ffe08a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L44.4 18.5 L47.8 18.1 Z%27 fill=%27%23ffe08a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L55.6 18.5 L58.8 19.2 Z%27 fill=%27%23ffe08a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L66.0 22.3 L68.8 24.1 Z%27 fill=%27%23ffe08a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L74.5 29.4 L76.5 32.1 Z%27 fill=%27%23ffe08a%27 opacity=%27.13%27/%3E%3Cpath d=%27M50 50 L80.1 39.1 L81.0 42.3 Z%27 fill=%27%23ffe08a%27 opacity=%27.13%27/%3E%3Cellipse cx=%2746.6%27 cy=%2773.9%27 rx=%276.6%27 ry=%272.9%27 transform=%27rotate(150.0 46.6 73.9)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2746.6%27 y1=%2773.9%27 x2=%2742.8%27 y2=%2776.1%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2745.4%27 cy=%2782.6%27 rx=%276.6%27 ry=%272.9%27 transform=%27rotate(226.0 45.4 82.6)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2745.4%27 y1=%2782.6%27 x2=%2742.4%27 y2=%2779.4%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2741.0%27 cy=%2772.3%27 rx=%276.3%27 ry=%272.8%27 transform=%27rotate(164.0 41.0 72.3)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2741.0%27 y1=%2772.3%27 x2=%2736.9%27 y2=%2773.5%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2737.7%27 cy=%2780.5%27 rx=%276.3%27 ry=%272.8%27 transform=%27rotate(240.0 37.7 80.5)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2737.7%27 y1=%2780.5%27 x2=%2735.6%27 y2=%2776.9%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Ccircle cx=%2739.3%27 cy=%2776.4%27 r=%271.5%27 fill=%27%238a1a1a%27 stroke=%27%232a1a03%27 stroke-width=%27.3%27/%3E%3Ccircle cx=%2738.9%27 cy=%2776.0%27 r=%27.5%27 fill=%27%23fff%27 opacity=%27.7%27/%3E%3Cellipse cx=%2735.8%27 cy=%2769.5%27 rx=%276.0%27 ry=%272.7%27 transform=%27rotate(178.0 35.8 69.5)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2735.8%27 y1=%2769.5%27 x2=%2731.8%27 y2=%2769.6%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2730.7%27 cy=%2776.6%27 rx=%276.0%27 ry=%272.7%27 transform=%27rotate(254.0 30.7 76.6)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2730.7%27 y1=%2776.6%27 x2=%2729.6%27 y2=%2772.7%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2731.5%27 cy=%2765.5%27 rx=%275.8%27 ry=%272.5%27 transform=%27rotate(192.0 31.5 65.5)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2731.5%27 y1=%2765.5%27 x2=%2727.8%27 y2=%2764.7%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2724.8%27 cy=%2771.1%27 rx=%275.8%27 ry=%272.5%27 transform=%27rotate(268.0 24.8 71.1)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2724.8%27 y1=%2771.1%27 x2=%2724.7%27 y2=%2767.3%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2728.3%27 cy=%2760.6%27 rx=%275.5%27 ry=%272.4%27 transform=%27rotate(206.0 28.3 60.6)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2728.3%27 y1=%2760.6%27 x2=%2725.0%27 y2=%2759.0%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2720.4%27 cy=%2764.4%27 rx=%275.5%27 ry=%272.4%27 transform=%27rotate(282.0 20.4 64.4)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2720.4%27 y1=%2764.4%27 x2=%2721.2%27 y2=%2760.8%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Ccircle cx=%2724.4%27 cy=%2762.5%27 r=%271.5%27 fill=%27%238a1a1a%27 stroke=%27%232a1a03%27 stroke-width=%27.3%27/%3E%3Ccircle cx=%2724.0%27 cy=%2762.1%27 r=%27.5%27 fill=%27%23fff%27 opacity=%27.7%27/%3E%3Cellipse cx=%2726.4%27 cy=%2755.0%27 rx=%275.2%27 ry=%272.3%27 transform=%27rotate(220.0 26.4 55.0)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2726.4%27 y1=%2755.0%27 x2=%2723.8%27 y2=%2752.8%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2717.8%27 cy=%2756.8%27 rx=%275.2%27 ry=%272.3%27 transform=%27rotate(296.0 17.8 56.8)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2717.8%27 y1=%2756.8%27 x2=%2719.3%27 y2=%2753.7%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2725.9%27 cy=%2749.2%27 rx=%274.9%27 ry=%272.2%27 transform=%27rotate(234.0 25.9 49.2)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2725.9%27 y1=%2749.2%27 x2=%2724.0%27 y2=%2746.5%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2717.1%27 cy=%2748.9%27 rx=%274.9%27 ry=%272.2%27 transform=%27rotate(310.0 17.1 48.9)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2717.1%27 y1=%2748.9%27 x2=%2719.2%27 y2=%2746.3%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2726.8%27 cy=%2743.4%27 rx=%274.7%27 ry=%272.0%27 transform=%27rotate(248.0 26.8 43.4)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2726.8%27 y1=%2743.4%27 x2=%2725.7%27 y2=%2740.5%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2718.4%27 cy=%2740.9%27 rx=%274.7%27 ry=%272.0%27 transform=%27rotate(324.0 18.4 40.9)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2718.4%27 y1=%2740.9%27 x2=%2720.9%27 y2=%2739.1%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Ccircle cx=%2722.6%27 cy=%2742.1%27 r=%271.5%27 fill=%27%238a1a1a%27 stroke=%27%232a1a03%27 stroke-width=%27.3%27/%3E%3Ccircle cx=%2722.2%27 cy=%2741.7%27 r=%27.5%27 fill=%27%23fff%27 opacity=%27.7%27/%3E%3Cellipse cx=%2729.1%27 cy=%2737.9%27 rx=%274.4%27 ry=%271.9%27 transform=%27rotate(262.0 29.1 37.9)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2729.1%27 y1=%2737.9%27 x2=%2728.7%27 y2=%2735.1%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2721.5%27 cy=%2733.5%27 rx=%274.4%27 ry=%271.9%27 transform=%27rotate(338.0 21.5 33.5)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2721.5%27 y1=%2733.5%27 x2=%2724.2%27 y2=%2732.5%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2732.7%27 cy=%2733.3%27 rx=%274.1%27 ry=%271.8%27 transform=%27rotate(276.0 32.7 33.3)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2732.7%27 y1=%2733.3%27 x2=%2732.9%27 y2=%2730.5%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2726.3%27 cy=%2727.1%27 rx=%274.1%27 ry=%271.8%27 transform=%27rotate(352.0 26.3 27.1)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2726.3%27 y1=%2727.1%27 x2=%2729.0%27 y2=%2726.8%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2737.2%27 cy=%2729.6%27 rx=%273.8%27 ry=%271.7%27 transform=%27rotate(290.0 37.2 29.6)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2737.2%27 y1=%2729.6%27 x2=%2738.1%27 y2=%2727.2%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2732.6%27 cy=%2722.1%27 rx=%273.8%27 ry=%271.7%27 transform=%27rotate(366.0 32.6 22.1)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2732.6%27 y1=%2722.1%27 x2=%2735.1%27 y2=%2722.4%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Ccircle cx=%2734.9%27 cy=%2725.8%27 r=%271.5%27 fill=%27%238a1a1a%27 stroke=%27%232a1a03%27 stroke-width=%27.3%27/%3E%3Ccircle cx=%2734.5%27 cy=%2725.4%27 r=%27.5%27 fill=%27%23fff%27 opacity=%27.7%27/%3E%3Cellipse cx=%2753.4%27 cy=%2773.9%27 rx=%276.6%27 ry=%272.9%27 transform=%27rotate(210.0 53.4 73.9)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2753.4%27 y1=%2773.9%27 x2=%2749.5%27 y2=%2771.7%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2754.6%27 cy=%2782.6%27 rx=%276.6%27 ry=%272.9%27 transform=%27rotate(134.0 54.6 82.6)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2754.6%27 y1=%2782.6%27 x2=%2751.5%27 y2=%2785.7%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2759.0%27 cy=%2772.3%27 rx=%276.3%27 ry=%272.8%27 transform=%27rotate(196.0 59.0 72.3)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2759.0%27 y1=%2772.3%27 x2=%2755.0%27 y2=%2771.2%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2762.3%27 cy=%2780.5%27 rx=%276.3%27 ry=%272.8%27 transform=%27rotate(120.0 62.3 80.5)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2762.3%27 y1=%2780.5%27 x2=%2760.2%27 y2=%2784.2%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Ccircle cx=%2760.7%27 cy=%2776.4%27 r=%271.5%27 fill=%27%238a1a1a%27 stroke=%27%232a1a03%27 stroke-width=%27.3%27/%3E%3Ccircle cx=%2760.3%27 cy=%2776.0%27 r=%27.5%27 fill=%27%23fff%27 opacity=%27.7%27/%3E%3Cellipse cx=%2764.2%27 cy=%2769.5%27 rx=%276.0%27 ry=%272.7%27 transform=%27rotate(182.0 64.2 69.5)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2764.2%27 y1=%2769.5%27 x2=%2760.1%27 y2=%2769.4%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2769.3%27 cy=%2776.6%27 rx=%276.0%27 ry=%272.7%27 transform=%27rotate(106.0 69.3 76.6)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2769.3%27 y1=%2776.6%27 x2=%2768.2%27 y2=%2780.5%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2768.5%27 cy=%2765.5%27 rx=%275.8%27 ry=%272.5%27 transform=%27rotate(168.0 68.5 65.5)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2768.5%27 y1=%2765.5%27 x2=%2764.7%27 y2=%2766.3%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2775.2%27 cy=%2771.1%27 rx=%275.8%27 ry=%272.5%27 transform=%27rotate(92.0 75.2 71.1)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2775.2%27 y1=%2771.1%27 x2=%2775.1%27 y2=%2775.0%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2771.7%27 cy=%2760.6%27 rx=%275.5%27 ry=%272.4%27 transform=%27rotate(154.0 71.7 60.6)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2771.7%27 y1=%2760.6%27 x2=%2768.4%27 y2=%2762.2%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2779.6%27 cy=%2764.4%27 rx=%275.5%27 ry=%272.4%27 transform=%27rotate(78.0 79.6 64.4)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2779.6%27 y1=%2764.4%27 x2=%2780.3%27 y2=%2768.0%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Ccircle cx=%2775.6%27 cy=%2762.5%27 r=%271.5%27 fill=%27%238a1a1a%27 stroke=%27%232a1a03%27 stroke-width=%27.3%27/%3E%3Ccircle cx=%2775.2%27 cy=%2762.1%27 r=%27.5%27 fill=%27%23fff%27 opacity=%27.7%27/%3E%3Cellipse cx=%2773.6%27 cy=%2755.0%27 rx=%275.2%27 ry=%272.3%27 transform=%27rotate(140.0 73.6 55.0)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2773.6%27 y1=%2755.0%27 x2=%2770.9%27 y2=%2757.2%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2782.2%27 cy=%2756.8%27 rx=%275.2%27 ry=%272.3%27 transform=%27rotate(64.0 82.2 56.8)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2782.2%27 y1=%2756.8%27 x2=%2783.7%27 y2=%2760.0%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2774.1%27 cy=%2749.2%27 rx=%274.9%27 ry=%272.2%27 transform=%27rotate(126.0 74.1 49.2)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2774.1%27 y1=%2749.2%27 x2=%2772.2%27 y2=%2751.8%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2782.9%27 cy=%2748.9%27 rx=%274.9%27 ry=%272.2%27 transform=%27rotate(50.0 82.9 48.9)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2782.9%27 y1=%2748.9%27 x2=%2785.0%27 y2=%2751.4%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2773.2%27 cy=%2743.4%27 rx=%274.7%27 ry=%272.0%27 transform=%27rotate(112.0 73.2 43.4)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2773.2%27 y1=%2743.4%27 x2=%2772.0%27 y2=%2746.2%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2781.6%27 cy=%2740.9%27 rx=%274.7%27 ry=%272.0%27 transform=%27rotate(36.0 81.6 40.9)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2781.6%27 y1=%2740.9%27 x2=%2784.1%27 y2=%2742.8%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Ccircle cx=%2777.4%27 cy=%2742.1%27 r=%271.5%27 fill=%27%238a1a1a%27 stroke=%27%232a1a03%27 stroke-width=%27.3%27/%3E%3Ccircle cx=%2777.0%27 cy=%2741.7%27 r=%27.5%27 fill=%27%23fff%27 opacity=%27.7%27/%3E%3Cellipse cx=%2770.9%27 cy=%2738.0%27 rx=%274.4%27 ry=%271.9%27 transform=%27rotate(98.0 70.9 38.0)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2770.9%27 y1=%2738.0%27 x2=%2770.5%27 y2=%2740.8%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2778.5%27 cy=%2733.6%27 rx=%274.4%27 ry=%271.9%27 transform=%27rotate(22.0 78.5 33.6)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2778.5%27 y1=%2733.6%27 x2=%2781.2%27 y2=%2734.6%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2767.3%27 cy=%2733.3%27 rx=%274.1%27 ry=%271.8%27 transform=%27rotate(84.0 67.3 33.3)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2767.3%27 y1=%2733.3%27 x2=%2767.6%27 y2=%2736.0%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2773.7%27 cy=%2727.1%27 rx=%274.1%27 ry=%271.8%27 transform=%27rotate(8.0 73.7 27.1)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2773.7%27 y1=%2727.1%27 x2=%2776.4%27 y2=%2727.5%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2762.8%27 cy=%2729.6%27 rx=%273.8%27 ry=%271.7%27 transform=%27rotate(70.0 62.8 29.6)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2762.8%27 y1=%2729.6%27 x2=%2763.6%27 y2=%2732.0%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Cellipse cx=%2767.4%27 cy=%2722.1%27 rx=%273.8%27 ry=%271.7%27 transform=%27rotate(-6.0 67.4 22.1)%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.45%27/%3E%3Cline x1=%2767.4%27 y1=%2722.1%27 x2=%2770.0%27 y2=%2721.8%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27 opacity=%27.8%27/%3E%3Ccircle cx=%2765.1%27 cy=%2725.8%27 r=%271.5%27 fill=%27%238a1a1a%27 stroke=%27%232a1a03%27 stroke-width=%27.3%27/%3E%3Ccircle cx=%2764.7%27 cy=%2725.4%27 r=%27.5%27 fill=%27%23fff%27 opacity=%27.7%27/%3E%3Ccircle cx=%2750%27 cy=%2779.5%27 r=%272.1%27 fill=%27url(%23lg)%27 stroke=%27%232a1a03%27 stroke-width=%27.4%27/%3E%3C/svg%3E"); }
/* Ruban à queues sous le sceau */
.qb-hot .qb-seal-hot::after{ content:''; position:absolute; left:50%; top:66%; right:auto; bottom:auto; width:36px; height:44px; transform:translateX(-50%); z-index:-2; border:none !important; border-radius:0;
  clip-path:polygon(0 0,100% 0,100% 100%,50% 76%,0 100%); box-shadow:0 3px 4px rgba(0,0,0,.4); }
.qb-hot-S .qb-seal-hot::after{ background:
  radial-gradient(circle at 22% 62%, #f3d97a 1.8px, #8a5f12 2.3px, transparent 3px),
  radial-gradient(circle at 78% 62%, #f3d97a 1.8px, #8a5f12 2.3px, transparent 3px),
  radial-gradient(circle at 50% 86%, #f3d97a 1.6px, #8a5f12 2.1px, transparent 2.8px),
  linear-gradient(90deg,#7a0f16,#c81e28 30%,#e0343f 50%,#c81e28 70%,#7a0f16); }
.qb-hot-A .qb-seal-hot::after{ display:none; }
@keyframes qbSealPulse{ 0%,100%{ transform:scale(1); } 50%{ transform:scale(1.05); } }

/* Éclats scintillants sur la tiare */
.qb-crown::before,.qb-crown::after{ content:'✦'; position:absolute; color:#fff8dc; font-size:14px; text-shadow:0 0 6px #ffe680, 0 0 12px #f59e0b; animation:qbSpark 2.2s ease-in-out infinite; pointer-events:none; }
.qb-crown::before{ left:14%; top:18%; font-size:10px; } .qb-crown::after{ right:16%; top:40%; animation-delay:1.1s; font-size:8px; }
@keyframes qbSpark{ 0%,100%{ opacity:0; transform:scale(.4) rotate(0deg); } 50%{ opacity:1; transform:scale(1.1) rotate(45deg); } }
/* Liseré perlé intérieur (S) + filet double (A) */
.qb-hot-S::after{ border:2px dotted #e2bd55 !important; box-shadow:inset 0 0 0 3px rgba(255,240,200,.35), inset 0 0 0 4px #b8862a, 0 0 0 1px rgba(122,85,16,.45) !important; }
/* Clous d'or aux milieux des bords (S) */
.qb-hot-S .qb-cnr-tl::after,.qb-hot-S .qb-cnr-tr::after,.qb-hot-S .qb-cnr-bl::after,.qb-hot-S .qb-cnr-br::after{ content:none; }
/* Boutons ornés : cadre or chanfreiné + cuir sombre */
.qb-card .btn{ position:relative; clip-path:polygon(7px 0,calc(100% - 7px) 0,100% 7px,100% calc(100% - 7px),calc(100% - 7px) 100%,7px 100%,0 calc(100% - 7px),0 7px);
  border:none !important; box-shadow:inset 0 0 0 2px #d9b34a, inset 0 0 0 3px #6e4a0d, inset 0 1px 0 4px rgba(255,240,200,.25) !important; padding-left:16px; padding-right:16px; font-family:'EB Garamond',Georgia,serif; font-weight:700; letter-spacing:.3px; }
.qb-card .btn-primary{ background:linear-gradient(180deg,#8f1218,#6a0c12 60%,#4a080d) !important; color:#fff3d6 !important; text-shadow:0 1px 0 rgba(0,0,0,.6); }
.qb-card .btn-primary:hover{ background:linear-gradient(180deg,#a8161d,#7a0f15 60%,#560a10) !important; }
.qb-card .btn-ghost{ background:linear-gradient(180deg,#5a3a1c,#3d2612 65%,#2c1a0c) !important; color:#f3e2b8 !important; }
.qb-card .btn-ghost:hover{ background:linear-gradient(180deg,#6b4622,#4a2e16 65%,#34200f) !important; }
.qb-card .btn-success{ background:linear-gradient(180deg,#4a6a2a,#2f4519) !important; color:#f2f7dd !important; }
/* Titre S : or gravé */
.qb-hot-S .qb-title{ color:#4a2a05; text-shadow:0 1px 0 rgba(255,245,220,.95), 0 -1px 0 rgba(90,50,10,.25), 0 0 12px rgba(217,179,74,.35); }
.qb-hot .qb-meta{ font-size:12.5px; }
/* Séparateur : double filet + losange serti */
.qb-hot .qb-divider::before{ background:linear-gradient(90deg,transparent,#b8862a 12%,#f3d97a 50%,#b8862a 88%,transparent); height:2px; box-shadow:0 2px 0 rgba(184,134,42,.35); }

/* Cadre de velours rouge texturé (S) : pseudo ::before sous la carte, filets d'or et clous aux milieux */
.qb-card.qb-hot-S::before{ content:'' !important; position:absolute; inset:-12px; z-index:-1; border-radius:9px; pointer-events:none;
  background:
    radial-gradient(circle, #fff1b8 2.2px, #8a5f12 2.6px, transparent 3.4px) 50% 2px/10px 10px no-repeat,
    radial-gradient(circle, #fff1b8 2.2px, #8a5f12 2.6px, transparent 3.4px) 50% calc(100% - 2px)/10px 10px no-repeat,
    radial-gradient(circle, #fff1b8 2.2px, #8a5f12 2.6px, transparent 3.4px) 2px 50%/10px 10px no-repeat,
    radial-gradient(circle, #fff1b8 2.2px, #8a5f12 2.6px, transparent 3.4px) calc(100% - 2px) 50%/10px 10px no-repeat,
    repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 2px, rgba(0,0,0,0) 2px 5px),
    repeating-linear-gradient(45deg, rgba(0,0,0,.10) 0 1px, rgba(0,0,0,0) 1px 4px),
    radial-gradient(120% 80% at 50% 0%, rgba(255,120,120,.28), transparent 60%),
    linear-gradient(180deg,#a51a27,#7a0f18 55%,#5b0a12);
  box-shadow:0 0 0 2px #d9b34a, 0 0 0 3px #6e4a0d, inset 0 0 0 2px #d9b34a, inset 0 0 0 3px #6e4a0d, inset 0 0 18px rgba(0,0,0,.55);
  /* anneau seulement : le centre est masqué pour laisser le parchemin visible */
  padding:12px; box-sizing:border-box;
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite:xor;
  mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite:exclude;
}
.qb-card.qb-hot-S{ transition:transform .25s ease; }
.qb-card.qb-hot-S:hover{ transform:translateY(-3px); }
.qb-card.qb-hot-A{ transition:transform .25s ease; } .qb-card.qb-hot-A:hover{ transform:translateY(-2px); }
/* Crest de lauriers + étoile (rang A) posé sur le bord haut */
.qb-crest{ position:absolute; top:-34px; left:50%; width:96px; height:72px; transform:translateX(-50%); z-index:7; pointer-events:none;
  background:url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 120 92%27%3E%3Cdefs%3E%3ClinearGradient id=%27lg%27 x1=%270%27 y1=%270%27 x2=%271%27 y2=%271%27%3E%3Cstop offset=%270%27 stop-color=%27%23fff1b8%27/%3E%3Cstop offset=%27.5%27 stop-color=%27%23e2bd55%27/%3E%3Cstop offset=%271%27 stop-color=%27%239c6d18%27/%3E%3C/linearGradient%3E%3CradialGradient id=%27cg%27 cx=%27.5%27 cy=%27.5%27 r=%27.5%27%3E%3Cstop offset=%270%27 stop-color=%27%23ffe680%27 stop-opacity=%27.45%27/%3E%3Cstop offset=%271%27 stop-color=%27%23ffe680%27 stop-opacity=%270%27/%3E%3C/radialGradient%3E%3CradialGradient id=%27rs%27 cx=%27.4%27 cy=%27.35%27 r=%27.7%27%3E%3Cstop offset=%270%27 stop-color=%27%23fff6cc%27/%3E%3Cstop offset=%27.6%27 stop-color=%27%23e2bd55%27/%3E%3Cstop offset=%271%27 stop-color=%27%238a5f12%27/%3E%3C/radialGradient%3E%3C/defs%3E%3Ccircle cx=%2760%27 cy=%2746%27 r=%2744%27 fill=%27url(%23cg)%27/%3E%3Cpath d=%27M42 80 L60 72 L78 80 L74 90 L60 82 L46 90 Z%27 fill=%27%23c8202a%27 stroke=%27%234a0a0d%27 stroke-width=%27.8%27/%3E%3Cpath d=%27M52 76 L60 72 L68 76%27 stroke=%27%23f3d97a%27 stroke-width=%27.8%27 fill=%27none%27/%3E%3Cellipse cx=%2755.1%27 cy=%2774.1%27 rx=%278.0%27 ry=%273.3%27 transform=%27rotate(154.0 55.1 74.1)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2755.1%27 y1=%2774.1%27 x2=%2750.6%27 y2=%2776.3%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2753.1%27 cy=%2784.9%27 rx=%278.0%27 ry=%273.3%27 transform=%27rotate(226.0 53.1 84.9)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2753.1%27 y1=%2784.9%27 x2=%2749.7%27 y2=%2781.3%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2749.1%27 cy=%2772.3%27 rx=%277.7%27 ry=%273.2%27 transform=%27rotate(166.5 49.1 72.3)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2749.1%27 y1=%2772.3%27 x2=%2744.4%27 y2=%2773.4%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2744.9%27 cy=%2782.5%27 rx=%277.7%27 ry=%273.2%27 transform=%27rotate(238.5 44.9 82.5)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2744.9%27 y1=%2782.5%27 x2=%2742.4%27 y2=%2778.4%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Ccircle cx=%2747.0%27 cy=%2777.4%27 r=%271.6%27 fill=%27%23c8202a%27 stroke=%27%234a0a0d%27 stroke-width=%27.4%27/%3E%3Cellipse cx=%2743.6%27 cy=%2769.3%27 rx=%277.3%27 ry=%273.0%27 transform=%27rotate(179.1 43.6 69.3)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2743.6%27 y1=%2769.3%27 x2=%2739.0%27 y2=%2769.4%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2737.3%27 cy=%2778.3%27 rx=%277.3%27 ry=%273.0%27 transform=%27rotate(251.1 37.3 78.3)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2737.3%27 y1=%2778.3%27 x2=%2735.8%27 y2=%2774.0%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2738.9%27 cy=%2765.2%27 rx=%277.0%27 ry=%272.9%27 transform=%27rotate(191.6 38.9 65.2)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2738.9%27 y1=%2765.2%27 x2=%2734.6%27 y2=%2764.3%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2730.8%27 cy=%2772.6%27 rx=%277.0%27 ry=%272.9%27 transform=%27rotate(263.6 30.8 72.6)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2730.8%27 y1=%2772.6%27 x2=%2730.3%27 y2=%2768.3%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2735.3%27 cy=%2760.2%27 rx=%276.7%27 ry=%272.8%27 transform=%27rotate(204.2 35.3 60.2)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2735.3%27 y1=%2760.2%27 x2=%2731.5%27 y2=%2758.5%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2725.7%27 cy=%2765.6%27 rx=%276.7%27 ry=%272.8%27 transform=%27rotate(276.2 25.7 65.6)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2725.7%27 y1=%2765.6%27 x2=%2726.2%27 y2=%2761.5%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Ccircle cx=%2730.5%27 cy=%2762.9%27 r=%271.6%27 fill=%27%23c8202a%27 stroke=%27%234a0a0d%27 stroke-width=%27.4%27/%3E%3Cellipse cx=%2732.8%27 cy=%2754.5%27 rx=%276.4%27 ry=%272.6%27 transform=%27rotate(216.7 32.8 54.5)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2732.8%27 y1=%2754.5%27 x2=%2729.6%27 y2=%2752.1%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2722.3%27 cy=%2757.7%27 rx=%276.4%27 ry=%272.6%27 transform=%27rotate(288.7 22.3 57.7)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2722.3%27 y1=%2757.7%27 x2=%2723.6%27 y2=%2754.0%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2731.6%27 cy=%2748.3%27 rx=%276.0%27 ry=%272.5%27 transform=%27rotate(229.3 31.6 48.3)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2731.6%27 y1=%2748.3%27 x2=%2729.1%27 y2=%2745.5%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2720.6%27 cy=%2749.3%27 rx=%276.0%27 ry=%272.5%27 transform=%27rotate(301.3 20.6 49.3)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2720.6%27 y1=%2749.3%27 x2=%2722.6%27 y2=%2746.0%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2731.8%27 cy=%2742.1%27 rx=%275.7%27 ry=%272.4%27 transform=%27rotate(241.8 31.8 42.1)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2731.8%27 y1=%2742.1%27 x2=%2730.1%27 y2=%2739.0%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2720.9%27 cy=%2740.6%27 rx=%275.7%27 ry=%272.4%27 transform=%27rotate(313.8 20.9 40.6)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2720.9%27 y1=%2740.6%27 x2=%2723.3%27 y2=%2738.1%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Ccircle cx=%2726.3%27 cy=%2741.4%27 r=%271.6%27 fill=%27%23c8202a%27 stroke=%27%234a0a0d%27 stroke-width=%27.4%27/%3E%3Cellipse cx=%2733.3%27 cy=%2736.1%27 rx=%275.4%27 ry=%272.2%27 transform=%27rotate(254.4 33.3 36.1)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2733.3%27 y1=%2736.1%27 x2=%2732.4%27 y2=%2732.8%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2723.0%27 cy=%2732.3%27 rx=%275.4%27 ry=%272.2%27 transform=%27rotate(326.4 23.0 32.3)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2723.0%27 y1=%2732.3%27 x2=%2725.8%27 y2=%2730.4%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2736.1%27 cy=%2730.5%27 rx=%275.1%27 ry=%272.1%27 transform=%27rotate(266.9 36.1 30.5)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2736.1%27 y1=%2730.5%27 x2=%2735.9%27 y2=%2727.4%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2726.8%27 cy=%2724.5%27 rx=%275.1%27 ry=%272.1%27 transform=%27rotate(338.9 26.8 24.5)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2726.8%27 y1=%2724.5%27 x2=%2729.8%27 y2=%2723.4%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2740.0%27 cy=%2725.7%27 rx=%274.7%27 ry=%271.9%27 transform=%27rotate(279.5 40.0 25.7)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2740.0%27 y1=%2725.7%27 x2=%2740.5%27 y2=%2722.8%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2732.3%27 cy=%2717.8%27 rx=%274.7%27 ry=%271.9%27 transform=%27rotate(351.5 32.3 17.8)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2732.3%27 y1=%2717.8%27 x2=%2735.2%27 y2=%2717.4%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Ccircle cx=%2736.1%27 cy=%2721.8%27 r=%271.6%27 fill=%27%23c8202a%27 stroke=%27%234a0a0d%27 stroke-width=%27.4%27/%3E%3Cellipse cx=%2744.9%27 cy=%2721.8%27 rx=%274.4%27 ry=%271.8%27 transform=%27rotate(292.0 44.9 21.8)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2744.9%27 y1=%2721.8%27 x2=%2745.9%27 y2=%2719.3%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2739.1%27 cy=%2712.5%27 rx=%274.4%27 ry=%271.8%27 transform=%27rotate(364.0 39.1 12.5)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2739.1%27 y1=%2712.5%27 x2=%2741.8%27 y2=%2712.7%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2764.9%27 cy=%2774.1%27 rx=%278.0%27 ry=%273.3%27 transform=%27rotate(206.0 64.9 74.1)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2764.9%27 y1=%2774.1%27 x2=%2760.5%27 y2=%2771.9%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2766.9%27 cy=%2784.9%27 rx=%278.0%27 ry=%273.3%27 transform=%27rotate(134.0 66.9 84.9)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2766.9%27 y1=%2784.9%27 x2=%2763.4%27 y2=%2788.5%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2770.9%27 cy=%2772.3%27 rx=%277.7%27 ry=%273.2%27 transform=%27rotate(193.5 70.9 72.3)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2770.9%27 y1=%2772.3%27 x2=%2766.3%27 y2=%2771.2%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2775.1%27 cy=%2782.5%27 rx=%277.7%27 ry=%273.2%27 transform=%27rotate(121.5 75.1 82.5)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2775.1%27 y1=%2782.5%27 x2=%2772.6%27 y2=%2786.6%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Ccircle cx=%2773.0%27 cy=%2777.4%27 r=%271.6%27 fill=%27%23c8202a%27 stroke=%27%234a0a0d%27 stroke-width=%27.4%27/%3E%3Cellipse cx=%2776.4%27 cy=%2769.3%27 rx=%277.3%27 ry=%273.0%27 transform=%27rotate(180.9 76.4 69.3)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2776.4%27 y1=%2769.3%27 x2=%2771.8%27 y2=%2769.2%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2782.7%27 cy=%2778.3%27 rx=%277.3%27 ry=%273.0%27 transform=%27rotate(108.9 82.7 78.3)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2782.7%27 y1=%2778.3%27 x2=%2781.2%27 y2=%2782.7%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2781.1%27 cy=%2765.2%27 rx=%277.0%27 ry=%272.9%27 transform=%27rotate(168.4 81.1 65.2)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2781.1%27 y1=%2765.2%27 x2=%2776.8%27 y2=%2766.1%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2789.2%27 cy=%2772.6%27 rx=%277.0%27 ry=%272.9%27 transform=%27rotate(96.4 89.2 72.6)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2789.2%27 y1=%2772.6%27 x2=%2788.7%27 y2=%2777.0%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2784.7%27 cy=%2760.2%27 rx=%276.7%27 ry=%272.8%27 transform=%27rotate(155.8 84.7 60.2)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2784.7%27 y1=%2760.2%27 x2=%2780.9%27 y2=%2761.9%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2794.3%27 cy=%2765.6%27 rx=%276.7%27 ry=%272.8%27 transform=%27rotate(83.8 94.3 65.6)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2794.3%27 y1=%2765.6%27 x2=%2794.7%27 y2=%2769.8%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Ccircle cx=%2789.5%27 cy=%2762.9%27 r=%271.6%27 fill=%27%23c8202a%27 stroke=%27%234a0a0d%27 stroke-width=%27.4%27/%3E%3Cellipse cx=%2787.2%27 cy=%2754.5%27 rx=%276.4%27 ry=%272.6%27 transform=%27rotate(143.3 87.2 54.5)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2787.2%27 y1=%2754.5%27 x2=%2784.0%27 y2=%2756.8%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2797.7%27 cy=%2757.7%27 rx=%276.4%27 ry=%272.6%27 transform=%27rotate(71.3 97.7 57.7)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2797.7%27 y1=%2757.7%27 x2=%2799.0%27 y2=%2761.5%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2788.4%27 cy=%2748.3%27 rx=%276.0%27 ry=%272.5%27 transform=%27rotate(130.7 88.4 48.3)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2788.4%27 y1=%2748.3%27 x2=%2785.9%27 y2=%2751.2%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2799.4%27 cy=%2749.3%27 rx=%276.0%27 ry=%272.5%27 transform=%27rotate(58.7 99.4 49.3)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2799.4%27 y1=%2749.3%27 x2=%27101.3%27 y2=%2752.5%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2788.2%27 cy=%2742.1%27 rx=%275.7%27 ry=%272.4%27 transform=%27rotate(118.2 88.2 42.1)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2788.2%27 y1=%2742.1%27 x2=%2786.5%27 y2=%2745.3%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2799.1%27 cy=%2740.6%27 rx=%275.7%27 ry=%272.4%27 transform=%27rotate(46.2 99.1 40.6)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2799.1%27 y1=%2740.6%27 x2=%27101.6%27 y2=%2743.2%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Ccircle cx=%2793.7%27 cy=%2741.4%27 r=%271.6%27 fill=%27%23c8202a%27 stroke=%27%234a0a0d%27 stroke-width=%27.4%27/%3E%3Cellipse cx=%2786.7%27 cy=%2736.1%27 rx=%275.4%27 ry=%272.2%27 transform=%27rotate(105.6 86.7 36.1)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2786.7%27 y1=%2736.1%27 x2=%2785.8%27 y2=%2739.3%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2797.0%27 cy=%2732.3%27 rx=%275.4%27 ry=%272.2%27 transform=%27rotate(33.6 97.0 32.3)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2797.0%27 y1=%2732.3%27 x2=%2799.8%27 y2=%2734.1%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2783.9%27 cy=%2730.5%27 rx=%275.1%27 ry=%272.1%27 transform=%27rotate(93.1 83.9 30.5)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2783.9%27 y1=%2730.5%27 x2=%2783.8%27 y2=%2733.7%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2793.2%27 cy=%2724.5%27 rx=%275.1%27 ry=%272.1%27 transform=%27rotate(21.1 93.2 24.5)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2793.2%27 y1=%2724.5%27 x2=%2796.1%27 y2=%2725.7%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2780.0%27 cy=%2725.7%27 rx=%274.7%27 ry=%271.9%27 transform=%27rotate(80.5 80.0 25.7)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2780.0%27 y1=%2725.7%27 x2=%2780.5%27 y2=%2728.6%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2787.7%27 cy=%2717.8%27 rx=%274.7%27 ry=%271.9%27 transform=%27rotate(8.5 87.7 17.8)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2787.7%27 y1=%2717.8%27 x2=%2790.6%27 y2=%2718.3%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Ccircle cx=%2783.9%27 cy=%2721.8%27 r=%271.6%27 fill=%27%23c8202a%27 stroke=%27%234a0a0d%27 stroke-width=%27.4%27/%3E%3Cellipse cx=%2775.1%27 cy=%2721.8%27 rx=%274.4%27 ry=%271.8%27 transform=%27rotate(68.0 75.1 21.8)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2775.1%27 y1=%2721.8%27 x2=%2776.1%27 y2=%2724.4%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Cellipse cx=%2780.9%27 cy=%2712.5%27 rx=%274.4%27 ry=%271.8%27 transform=%27rotate(-4.0 80.9 12.5)%27 fill=%27url(%23lg)%27 stroke=%27%236e4a0d%27 stroke-width=%27.55%27/%3E%3Cline x1=%2780.9%27 y1=%2712.5%27 x2=%2783.7%27 y2=%2712.3%27 stroke=%27%238a5f12%27 stroke-width=%27.5%27 opacity=%27.8%27/%3E%3Ccircle cx=%2760%27 cy=%2746%27 r=%277%27 fill=%27url(%23rs)%27 stroke=%27%236e4a0d%27 stroke-width=%27.9%27/%3E%3Ccircle cx=%2760%27 cy=%2746%27 r=%273%27 fill=%27%23c8202a%27 stroke=%27%234a0a0d%27 stroke-width=%27.5%27/%3E%3Ccircle cx=%2758.8%27 cy=%2744.8%27 r=%271%27 fill=%27%23fff%27 opacity=%27.8%27/%3E%3C/svg%3E") center bottom/contain no-repeat; filter:drop-shadow(0 3px 4px rgba(0,0,0,.55)); animation:qbCrown 3s ease-in-out infinite; }

/* Lettre du sceau : or métallique */
.qb-hot .qb-seal-hot{ background:none !important; text-shadow:none; font-size:32px; }
/* S : or chaud brillant sur cire rouge, contour rouge sombre */
.qb-hot-S .qb-seal-hot{ color:#fffaf0 !important; -webkit-text-stroke:1px #4a0a0d; text-shadow:0 1px 0 #7a0f16, 0 2px 2px rgba(0,0,0,.6);
  filter:drop-shadow(0 1px 0 rgba(255,250,220,.9)) drop-shadow(0 2px 3px rgba(60,0,0,.8)) drop-shadow(0 0 7px rgba(255,220,120,.6)); }
/* A : rouge carmin profond sur cire d'or, contour or sombre */
.qb-hot-A .qb-seal-hot{ color:#fffaf0 !important; -webkit-text-stroke:1px #4a2e04; text-shadow:0 1px 0 #8a5f12, 0 2px 2px rgba(0,0,0,.55);
  filter:drop-shadow(0 1px 0 rgba(255,240,200,.9)) drop-shadow(0 2px 3px rgba(40,20,0,.75)) drop-shadow(0 0 6px rgba(255,120,120,.45)); }
/* Barres de progression serties d'or (S/A) */
.qb-hot .qb-prog-bar{ height:10px; border:1.5px solid #b8862a; box-shadow:inset 0 0 0 1px rgba(255,240,200,.5), inset 0 2px 4px rgba(0,0,0,.35); background:rgba(60,35,10,.35); }
.qb-hot .qb-prog-fill{ background-image:linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,0) 50%, rgba(0,0,0,.15)) !important; background-blend-mode:normal; }
/* Séparateur : fleurons aux extrémités */
.qb-hot .qb-divider{ background:radial-gradient(circle, #f3d97a 1.6px, #8a6a1c 2px, transparent 2.6px) left center/8px 8px no-repeat, radial-gradient(circle, #f3d97a 1.6px, #8a6a1c 2px, transparent 2.6px) right center/8px 8px no-repeat; }
/* Description : lettrine dorée sur les S */
.qb-hot-S .qb-desc::first-letter{ font-family:'Cinzel',Georgia,serif; font-size:1.55em; font-weight:800; color:#a11a20; line-height:1; padding-right:1px; }

/* Titre & méta en or sombre */
.qb-hot .qb-title{ color:#3b2410; text-shadow:0 1px 0 rgba(255,245,220,.8), 0 0 10px rgba(217,179,74,.25); letter-spacing:.3px; }
.qb-hot .qb-meta{ color:#8a5a1e; }
.qb-hot .qb-head{ align-items:center; }
.qb-hot-S .qb-head{ margin-bottom:14px; }

/* Séparateur doré avec losange central */
.qb-divider{ position:relative; height:12px; margin:2px 0 -2px; }
.qb-divider::before{ content:''; position:absolute; left:0; right:0; top:50%; height:2px;
  background:linear-gradient(90deg, transparent, #d9b34a 18%, #f3d97a 50%, #d9b34a 82%, transparent); }
.qb-divider::after{ content:''; position:absolute; left:50%; top:50%; width:9px; height:9px;
  transform:translate(-50%,-50%) rotate(45deg); background:#f3d97a; border:1.5px solid #8a6a1c;
  box-shadow:0 0 0 3px #f7ecd2, 0 0 6px rgba(217,179,74,.8); }
.qb-hot .qb-foot{ border-top:none; padding-top:12px; }

/* Boutons encadrés d'or sur fond brun */
.qb-hot .qb-foot .btn-ghost{ background:linear-gradient(180deg,#5a3a22,#3d2614) !important; color:#f6dfae !important;
  border:2px solid #d9b34a !important; box-shadow:inset 0 0 0 1px rgba(0,0,0,.4), 0 2px 4px rgba(0,0,0,.45); }
.qb-hot .qb-foot .btn-ghost:hover{ border-color:#f3d97a !important; filter:brightness(1.12); }
.qb-hot .qb-foot .btn-primary{ border:2px solid #d9b34a !important; box-shadow:0 2px 6px rgba(0,0,0,.5), 0 0 10px rgba(217,179,74,.35); }
.qb-hot .qb-foot .btn-success{ border:2px solid #d9b34a !important; }

@media (prefers-reduced-motion: reduce){
  .qb-hot,.qb-hot-S,.qb-hot-A,.qb-seal-hot,.qb-crown{ animation:none; }
}
.qb-card .qb-title{font-weight:700; font-size:17px; line-height:1.15; font-family:'Cinzel',Georgia,serif; color:var(--qb-ink);}
.qb-head{display:flex; align-items:flex-start; gap:12px;}
.qb-meta{font-size:12px; font-weight:700; color:#8a5a1e; letter-spacing:.3px;}
.qb-desc{font-size:13.5px; color:#4a3418; line-height:1.5; white-space:pre-wrap;}
.qb-obj{font-size:12.5px; color:var(--qb-ink2); font-style:italic;}
.qb-sep{border:none; border-top:1px dashed rgba(120,85,40,.4); margin:3px 0 0;}
.qb-foot{display:flex; align-items:center; gap:8px; flex-wrap:wrap; padding-top:9px; border-top:1px dashed rgba(120,85,40,.45); margin-top:auto;}
/* Pied de carte toujours collé en bas (les cartes d'une ligne ont la même hauteur) ;
   si un séparateur doré précède le pied, c'est lui qui absorbe l'espace. */
.qb-divider{margin-top:auto !important;}
.qb-divider + .qb-foot{margin-top:0;}
.qb-deadline{font-size:11.5px; color:#9a5a12; font-weight:600;}
/* Pointage convocation - contrôle segmenté compact */
.cvseg{display:inline-flex;border:1px solid var(--border2);border-radius:8px;overflow:hidden;flex-shrink:0}
.cvseg button{border:none;background:transparent;color:var(--text2);padding:6px 10px;font-size:12px;font-weight:600;cursor:pointer;display:inline-flex;align-items:center;gap:4px;border-left:1px solid var(--border);white-space:nowrap;transition:background .12s}
.cvseg button:first-child{border-left:none}
.cvseg button:hover{background:var(--bg4);color:var(--text)}
.cvseg button.on-absent{background:var(--red);color:#fff}
.cvseg button.on-present{background:var(--green);color:#fff}
.cvseg button.on-late{background:var(--amber);color:#111}
.cvseg button.on-ad{background:#c026d3;color:#fff}
.convoc-mrow{display:flex;align-items:center;gap:10px;padding:8px 10px;border-radius:var(--r-sm);margin-bottom:6px;background:var(--bg3);border:1px solid var(--border);border-left-width:3px}
.convoc-mrow.st-present{border-left-color:var(--green)}
.convoc-mrow.st-late{border-left-color:var(--amber)}
.convoc-mrow.st-ad{border-left-color:#c026d3}
.convoc-mrow.st-absent{border-left-color:var(--red)}

.qb-rank-chip{width:30px;height:30px;border-radius:7px;font-family:'Cinzel',Georgia,serif;font-weight:900;font-size:14px;cursor:pointer;
  background:rgba(246,232,200,.06); color:#e6d3a8; border:1.5px solid rgba(202,163,95,.45); transition:all .12s; line-height:1;}
.qb-rank-chip:hover{background:rgba(246,232,200,.16);}
.qb-rank-chip.qb-rank-on{background:var(--rc); color:#fff; border-color:var(--rc); box-shadow:0 0 0 2px rgba(0,0,0,.25) inset, 0 2px 6px rgba(0,0,0,.4);}
.qb-cd{font-weight:800; font-variant-numeric:tabular-nums;}
.qb-cd-soon{color:#c0561a;}
.qb-cd-over{color:#a3341f;}
.qb-mgr{border-top:1px dashed rgba(120,85,40,.45); padding-top:9px;}
.qb-mgr-lbl{font-size:11px; color:var(--qb-ink2); text-transform:uppercase; letter-spacing:1px; margin-bottom:6px; font-weight:700;}
.qb-mgr-row{display:flex; align-items:center; gap:8px; padding:3px 0; font-size:12.5px;}

/* Sceau de cire (rang) */
.qb-seal{
  width:42px; height:42px; flex-shrink:0; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:'Cinzel',Georgia,serif; font-weight:900; font-size:18px; color:#fbe9c6;
  background:var(--seal); background-image:radial-gradient(circle at 34% 28%, rgba(255,255,255,.5), rgba(255,255,255,0) 42%), radial-gradient(circle at 70% 80%, rgba(0,0,0,.42), rgba(0,0,0,0) 55%);
  box-shadow:0 3px 6px rgba(0,0,0,.5), inset 0 2px 4px rgba(255,255,255,.35), inset 0 -3px 6px rgba(0,0,0,.4);
  text-shadow:0 1px 2px rgba(0,0,0,.5); border:1px solid rgba(0,0,0,.25);
  position:relative;
  /* cire : bord irrégulier (masque) + relief */
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 100 100%27%3E%3Cpath d=%27M95.7,50.0 L97.1,51.8 L97.8,53.8 L97.7,55.6 L96.7,57.4 L95.1,59.0 L93.4,60.4 L91.8,61.8 L90.7,63.2 L89.9,64.7 L89.4,66.3 L88.8,67.9 L87.9,69.3 L86.7,70.6 L85.5,71.7 L84.3,72.9 L83.5,74.4 L83.2,76.2 L83.1,78.3 L83.1,80.6 L82.8,82.8 L81.9,84.5 L80.5,85.7 L78.5,86.1 L76.3,86.2 L74.2,86.2 L72.3,86.4 L70.7,87.0 L69.4,88.0 L68.1,89.3 L66.7,90.4 L65.2,91.3 L63.6,91.8 L61.9,92.0 L60.2,92.4 L58.6,93.0 L57.0,94.0 L55.4,95.3 L53.7,96.6 L51.9,97.3 L50.0,97.3 L48.2,96.4 L46.5,94.8 L44.9,93.0 L43.5,91.2 L42.0,90.0 L40.5,89.5 L38.9,89.5 L37.1,89.7 L35.3,89.9 L33.6,89.7 L32.0,89.1 L30.4,88.4 L28.9,87.7 L27.2,87.3 L25.2,87.1 L23.1,87.0 L21.0,86.7 L19.2,86.0 L17.9,84.7 L17.3,82.7 L17.0,80.5 L17.0,78.2 L16.9,76.1 L16.3,74.5 L15.2,73.3 L13.6,72.3 L11.9,71.3 L10.4,70.2 L9.3,68.8 L8.6,67.2 L8.2,65.4 L7.8,63.7 L7.2,62.1 L6.4,60.5 L5.4,58.9 L4.7,57.2 L4.5,55.4 L4.9,53.5 L6.1,51.7 L7.7,50.0 L9.1,48.4 L10.1,46.9 L10.3,45.3 L9.8,43.6 L8.8,41.8 L7.8,39.9 L7.1,37.9 L7.0,36.0 L7.4,34.3 L8.1,32.6 L8.8,31.0 L9.5,29.4 L10.0,27.6 L10.4,25.8 L11.2,24.0 L12.4,22.6 L14.1,21.7 L16.2,21.2 L18.5,20.9 L20.6,20.6 L22.2,19.9 L23.3,18.7 L24.0,17.0 L24.6,15.0 L25.3,13.0 L26.3,11.3 L27.7,10.2 L29.4,9.6 L31.3,9.3 L33.1,9.1 L34.8,8.7 L36.4,8.1 L38.0,7.3 L39.6,6.8 L41.4,6.7 L43.2,7.1 L45.0,7.9 L46.8,8.8 L48.4,9.4 L50.0,9.3 L51.6,8.5 L53.4,7.1 L55.3,5.6 L57.2,4.3 L59.2,3.7 L61.1,3.9 L62.7,4.8 L64.3,6.0 L65.8,7.3 L67.3,8.3 L68.8,9.2 L70.4,10.0 L71.9,10.9 L73.1,12.2 L74.1,13.9 L74.8,15.8 L75.5,17.6 L76.4,19.1 L77.7,20.1 L79.5,20.5 L81.7,20.7 L83.9,21.0 L86.0,21.6 L87.5,22.8 L88.3,24.4 L88.6,26.3 L88.7,28.3 L88.8,30.2 L89.2,31.9 L89.9,33.5 L90.7,35.0 L91.5,36.5 L91.9,38.2 L91.9,39.9 L91.7,41.7 L91.6,43.4 L91.8,45.0 L92.7,46.6 L94.0,48.3 Z%27 fill=%27%23000%27/%3E%3C/svg%3E") center/108% 108% no-repeat; mask:url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 100 100%27%3E%3Cpath d=%27M95.7,50.0 L97.1,51.8 L97.8,53.8 L97.7,55.6 L96.7,57.4 L95.1,59.0 L93.4,60.4 L91.8,61.8 L90.7,63.2 L89.9,64.7 L89.4,66.3 L88.8,67.9 L87.9,69.3 L86.7,70.6 L85.5,71.7 L84.3,72.9 L83.5,74.4 L83.2,76.2 L83.1,78.3 L83.1,80.6 L82.8,82.8 L81.9,84.5 L80.5,85.7 L78.5,86.1 L76.3,86.2 L74.2,86.2 L72.3,86.4 L70.7,87.0 L69.4,88.0 L68.1,89.3 L66.7,90.4 L65.2,91.3 L63.6,91.8 L61.9,92.0 L60.2,92.4 L58.6,93.0 L57.0,94.0 L55.4,95.3 L53.7,96.6 L51.9,97.3 L50.0,97.3 L48.2,96.4 L46.5,94.8 L44.9,93.0 L43.5,91.2 L42.0,90.0 L40.5,89.5 L38.9,89.5 L37.1,89.7 L35.3,89.9 L33.6,89.7 L32.0,89.1 L30.4,88.4 L28.9,87.7 L27.2,87.3 L25.2,87.1 L23.1,87.0 L21.0,86.7 L19.2,86.0 L17.9,84.7 L17.3,82.7 L17.0,80.5 L17.0,78.2 L16.9,76.1 L16.3,74.5 L15.2,73.3 L13.6,72.3 L11.9,71.3 L10.4,70.2 L9.3,68.8 L8.6,67.2 L8.2,65.4 L7.8,63.7 L7.2,62.1 L6.4,60.5 L5.4,58.9 L4.7,57.2 L4.5,55.4 L4.9,53.5 L6.1,51.7 L7.7,50.0 L9.1,48.4 L10.1,46.9 L10.3,45.3 L9.8,43.6 L8.8,41.8 L7.8,39.9 L7.1,37.9 L7.0,36.0 L7.4,34.3 L8.1,32.6 L8.8,31.0 L9.5,29.4 L10.0,27.6 L10.4,25.8 L11.2,24.0 L12.4,22.6 L14.1,21.7 L16.2,21.2 L18.5,20.9 L20.6,20.6 L22.2,19.9 L23.3,18.7 L24.0,17.0 L24.6,15.0 L25.3,13.0 L26.3,11.3 L27.7,10.2 L29.4,9.6 L31.3,9.3 L33.1,9.1 L34.8,8.7 L36.4,8.1 L38.0,7.3 L39.6,6.8 L41.4,6.7 L43.2,7.1 L45.0,7.9 L46.8,8.8 L48.4,9.4 L50.0,9.3 L51.6,8.5 L53.4,7.1 L55.3,5.6 L57.2,4.3 L59.2,3.7 L61.1,3.9 L62.7,4.8 L64.3,6.0 L65.8,7.3 L67.3,8.3 L68.8,9.2 L70.4,10.0 L71.9,10.9 L73.1,12.2 L74.1,13.9 L74.8,15.8 L75.5,17.6 L76.4,19.1 L77.7,20.1 L79.5,20.5 L81.7,20.7 L83.9,21.0 L86.0,21.6 L87.5,22.8 L88.3,24.4 L88.6,26.3 L88.7,28.3 L88.8,30.2 L89.2,31.9 L89.9,33.5 L90.7,35.0 L91.5,36.5 L91.9,38.2 L91.9,39.9 L91.7,41.7 L91.6,43.4 L91.8,45.0 L92.7,46.6 L94.0,48.3 Z%27 fill=%27%23000%27/%3E%3C/svg%3E") center/108% 108% no-repeat;
  background-image:radial-gradient(circle at 34% 26%, rgba(255,255,255,.55), rgba(255,255,255,0) 40%), radial-gradient(circle at 72% 82%, rgba(0,0,0,.5), rgba(0,0,0,0) 55%), radial-gradient(circle, transparent 60%, rgba(0,0,0,.25) 100%);
  filter:drop-shadow(0 2px 3px rgba(0,0,0,.5));
}
.qb-seal::before{content:''; position:absolute; inset:5px; border-radius:50%; border:1.5px solid rgba(0,0,0,.28); box-shadow:inset 0 0 0 1px rgba(255,255,255,.35);}
.qb-seal::after{content:''; position:absolute; inset:9px; border-radius:50%; border:1px dashed rgba(255,255,255,.45);}
.qb-hot .qb-seal-hot{ -webkit-mask:none; mask:none; filter:drop-shadow(0 1px 0 rgba(255,246,204,.8)) drop-shadow(0 2px 3px rgba(0,0,0,.7)) drop-shadow(0 0 6px rgba(255,220,120,.5)); }

/* Barres de progression sur parchemin */
.qb-prog-lbl{display:flex; justify-content:space-between; font-size:11.5px; color:var(--qb-ink2); font-weight:600;}
.qb-prog-bar{height:8px; background:rgba(90,63,34,.28); border-radius:4px; overflow:hidden; margin-top:3px; border:1px solid rgba(120,85,40,.4);}
.qb-prog-fill{height:100%;}

/* Boutons d'action encre */






.qb-empty{grid-column:1/-1; text-align:center; padding:46px 20px; border-radius:4px; color:#5a3f22;
  background:linear-gradient(158deg,var(--qb-parch1),var(--qb-parch2)); border:1px dashed var(--qb-parch-edge);
  box-shadow:0 8px 18px rgba(0,0,0,.4);}
@media(max-width:520px){ .qb-sign{font-size:18px; padding:8px 16px;} }

/* Éditeur enrichi des notes de dossier */
.dan-toolbar{display:flex;flex-wrap:wrap;gap:4px;align-items:center;background:var(--bg3);border:1px solid var(--border);border-bottom:none;border-radius:var(--r-sm) var(--r-sm) 0 0;padding:6px;}
.dan-toolbar button{min-width:28px;height:28px;padding:0 7px;border:1px solid var(--border2);background:var(--bg2);color:var(--text);border-radius:5px;cursor:pointer;font-size:13px;line-height:1;}
.dan-toolbar button:hover{background:var(--bg4);}
.dan-sep{width:1px;height:20px;background:var(--border2);margin:0 2px;}
.dan-color{display:inline-flex;align-items:center;gap:3px;cursor:pointer;font-size:14px;}
.dan-color input{width:24px;height:24px;border:none;background:none;padding:0;cursor:pointer;}
.dan-emojis{display:flex;flex-wrap:wrap;gap:3px;background:var(--bg3);border:1px solid var(--border);border-top:none;padding:6px;}
.dan-emojis button{border:none;background:none;font-size:18px;cursor:pointer;padding:2px 4px;border-radius:5px;}
.dan-emojis button:hover{background:var(--bg4);}
.dan-editor{min-height:120px;max-height:320px;overflow-y:auto;border-radius:0 0 var(--r-sm) var(--r-sm)!important;line-height:1.5;}
.dan-editor:empty:before{content:attr(data-placeholder);color:var(--text3);}
.dan-editor:focus{outline:none;border-color:var(--accent);}
.dossier-note-body{line-height:1.5;}

/* ── Popup de notifications du projet (flottante, déplaçable) - DA parchemin / or / cire rouge ── */
.projet-notif-pop{ position:fixed; top:84px; right:22px; width:350px; max-width:calc(100vw - 24px); z-index:9000; font-size:13px; color:#3a2712;
  background:
    radial-gradient(ellipse 90% 80% at 50% 45%, transparent 55%, rgba(120,78,28,.14) 80%, rgba(96,58,18,.3) 100%),
    radial-gradient(30% 24% at 12% 88%, rgba(140,92,36,.22), transparent 70%),
    linear-gradient(158deg,#f5e6c6,#e6cd98 90%);
  border:3px solid #d9b34a; border-radius:8px; overflow:visible;
  box-shadow:inset 0 0 0 3px rgba(255,248,225,.55), inset 0 0 0 4px #a8781d, inset 0 0 30px rgba(150,110,50,.25), 0 0 0 1px #5a3a06, 0 18px 40px rgba(0,0,0,.65), 0 0 26px rgba(245,185,60,.55);
  animation:pnpGlow 1.5s ease-in-out infinite alternate, pnpNudge 6s ease-in-out infinite; }
.projet-notif-pop.dragging{ animation:none; cursor:grabbing; opacity:.96; }
.projet-notif-pop.pnp-pop{ animation:pnpIn .6s cubic-bezier(.2,1.4,.4,1), pnpGlow 1.5s .6s ease-in-out infinite alternate, pnpNudge 6s 1s ease-in-out infinite; }
@keyframes pnpIn{ 0%{ transform:translateY(-26px) scale(.9); opacity:0; } 60%{ transform:translateY(5px) scale(1.02); opacity:1; } 100%{ transform:none; } }
@keyframes pnpGlow{ from{ box-shadow:inset 0 0 0 3px rgba(255,248,225,.55), inset 0 0 0 4px #a8781d, inset 0 0 30px rgba(150,110,50,.25), 0 0 0 1px #5a3a06, 0 18px 40px rgba(0,0,0,.65), 0 0 14px rgba(245,185,60,.4); border-color:#c9a24a; }
                    to{ box-shadow:inset 0 0 0 3px rgba(255,248,225,.55), inset 0 0 0 4px #a8781d, inset 0 0 30px rgba(150,110,50,.25), 0 0 0 1px #5a3a06, 0 18px 40px rgba(0,0,0,.65), 0 0 40px rgba(255,200,80,.95), 0 0 70px rgba(239,68,68,.35); border-color:#fff0b0; } }
@keyframes pnpNudge{ 0%,88%,100%{ transform:none; } 90%{ transform:translateX(-4px) rotate(-.6deg); } 92%{ transform:translateX(4px) rotate(.6deg); } 94%{ transform:translateX(-3px); } 96%{ transform:translateX(3px); } 98%{ transform:translateX(-1px); } }
/* en-tête : velours rouge, filet or, sceau-cloche */
.pnp-head{ display:flex; align-items:center; gap:9px; padding:9px 12px 9px 12px; cursor:grab; user-select:none; border-radius:5px 5px 0 0;
  background:repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 2px, rgba(0,0,0,0) 2px 5px), linear-gradient(180deg,#a51a27,#7a0f18 60%,#5b0a12);
  border-bottom:2px solid #d9b34a; box-shadow:inset 0 1px 0 rgba(255,220,150,.3), inset 0 -3px 8px rgba(0,0,0,.35); color:#fff3d6; font-family:'Cinzel',Georgia,serif; font-weight:800; letter-spacing:1px; }
.pnp-head:active{ cursor:grabbing; }
.pnp-bell{ width:30px; height:30px; display:flex; align-items:center; justify-content:center; font-size:15px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, #ff7070, #c8202a 45%, #520810); border:2px solid #f3d97a; box-shadow:0 2px 4px rgba(0,0,0,.6), inset 0 2px 3px rgba(255,255,255,.35);
  animation:pnpRing 1.8s ease-in-out infinite; transform-origin:top center; }
@keyframes pnpRing{ 0%,60%,100%{ transform:rotate(0); } 65%{ transform:rotate(14deg); } 70%{ transform:rotate(-12deg); } 75%{ transform:rotate(10deg); } 80%{ transform:rotate(-8deg); } 85%{ transform:rotate(4deg); } }
.pnp-title{ flex:1; font-size:12.5px; text-transform:uppercase; text-shadow:0 1px 0 rgba(0,0,0,.6); }
.pnp-count{ background:linear-gradient(180deg,#fff0b0,#e2bd55 55%,#a8781d); color:#4a2a05; font-size:11.5px; font-weight:900; border-radius:10px; padding:1px 9px; border:1px solid #5a3a06;
  box-shadow:0 0 10px rgba(255,220,120,.9), inset 0 1px 0 #fff8dc; animation:pnpBadge 1s ease-in-out infinite alternate; }
@keyframes pnpBadge{ from{ transform:scale(1); } to{ transform:scale(1.12); } }
.pnp-grip{ opacity:.75; font-size:14px; letter-spacing:-2px; color:#f3d97a; }
/* liste */
.pnp-list{ max-height:50vh; overflow-y:auto; padding:10px; display:flex; flex-direction:column; gap:9px; font-family:'EB Garamond',Georgia,serif; font-size:14.5px; }
.pnp-item{ position:relative; background:rgba(255,250,235,.55); border:1px solid #c9a24a; border-left:5px solid #c8202a; border-radius:6px; padding:9px 11px 9px 12px; line-height:1.45;
  box-shadow:inset 0 0 0 1px rgba(255,248,225,.7), 0 2px 4px rgba(0,0,0,.18); }
.pnp-item::after{ content:''; position:absolute; right:8px; top:8px; width:6px; height:6px; border-radius:50%; background:#c8202a; box-shadow:0 0 6px #ff4a4a; animation:pnpDot 1s ease-in-out infinite alternate; }
@keyframes pnpDot{ from{ opacity:.35; } to{ opacity:1; } }
.pnp-msg{ color:#3a2712; padding-right:10px; }
.pnp-foot{ display:flex; justify-content:space-between; align-items:center; margin-top:7px; gap:8px; }
.pnp-date{ font-size:11px; color:#8a5a1e; font-style:italic; }
.pnp-read{ font-family:'EB Garamond',Georgia,serif; font-weight:800; font-size:13px; color:#fff3d6; cursor:pointer; padding:4px 14px; border:none;
  background:linear-gradient(180deg,#4a6a2a,#2f4519); clip-path:polygon(6px 0,calc(100% - 6px) 0,100% 6px,100% calc(100% - 6px),calc(100% - 6px) 100%,6px 100%,0 calc(100% - 6px),0 6px);
  box-shadow:inset 0 0 0 2px #d9b34a, inset 0 0 0 3px #6e4a0d; text-shadow:0 1px 0 rgba(0,0,0,.6); transition:transform .12s, filter .12s; }
.pnp-read:hover{ transform:translateY(-1px) scale(1.04); filter:brightness(1.15); }
.pnp-read:active{ transform:translateY(1px); }
@media (max-width:600px){ .projet-notif-pop{ width:calc(100vw - 20px); right:10px; top:70px; } }

/* ── Mode léger (⚡) : zéro animation / filtre / texture dans le tableau des quêtes ── */
.questboard.qb-lite, .questboard.qb-lite *{ animation:none !important; transition:none !important; }
.questboard.qb-lite *, .questboard.qb-lite *::before, .questboard.qb-lite *::after{ filter:none !important; text-shadow:none !important; backdrop-filter:none !important; }
.questboard.qb-lite{ --qb-tex:none; --qb-age:none; }
.questboard.qb-lite .qb-card, .questboard.qb-lite .qb-vip, .questboard.qb-lite .qb-gift, .questboard.qb-lite .qb-stat{ box-shadow:0 2px 6px rgba(0,0,0,.35) !important; }
.questboard.qb-lite .qb-vip-fill{ background:linear-gradient(90deg,#b91c1c,#f59e0b) !important; box-shadow:none !important; }
.questboard.qb-lite .qb-vip-fill::before, .questboard.qb-lite .qb-vip-fill::after, .questboard.qb-lite .qb-vip-pennant, .questboard.qb-lite .qb-orn, .questboard.qb-lite .qb-cnr{ display:none !important; }
.qb-lite-btn{ background:none !important; border:none !important; box-shadow:none !important; padding:2px 5px !important; font-size:11px !important; opacity:.28; color:#caa35f !important; align-self:center; }
.qb-lite-btn:hover{ opacity:.9; }
.qb-lite-btn.on{ opacity:.85; color:#fcd34d !important; }

/* ── Rendu GPU (compositeur) : éléments ANIMÉS promus en couches matérielles (transform 3D + will-change).
   Pas de `contain` (ça découpait la couronne / les équerres qui dépassent des cartes) et pas de promotion des
   cartes elles-mêmes (leur liseré ::before en z-index:-1 doit rester DERRIÈRE la carte). ── */
.questboard .qb-vip-pennant, .questboard .qb-vip-shield, .questboard .qb-vip-fill, .questboard .qb-vip-brazier,
.questboard .qb-gift-chest, .questboard .qb-streak-chest, .questboard .qb-vip-act-btn, .questboard .qb-claim-btn, .projet-notif-pop{
  transform:translateZ(0); backface-visibility:hidden; will-change:transform, opacity; }
.questboard .qb-crown{ transform:translateX(-50%) translateZ(0); backface-visibility:hidden; will-change:transform; } /* garde le centrage */
.questboard .qb-vip-brazier{ transform:translateY(-52%) translateZ(0); } /* garde le calage vertical (sinon, sans l'animation vipFlick - mode léger -, le brasero tombait sur le texte) */
.questboard .qb-hot .qb-seal-hot{ will-change:transform; }

/* ── Pôles (bibliothèques de permissions directes) ── */
.pdp-pole{ display:inline-flex; align-items:center; border:1px solid var(--border); border-radius:20px; background:var(--bg3); overflow:hidden; }
.pdp-pole > button{ background:none; border:none; color:var(--text2); font:inherit; font-size:12.5px; padding:5px 10px; cursor:pointer; display:inline-flex; align-items:center; gap:6px; }
.pdp-pole > button small{ font-size:10px; color:var(--text3); background:var(--bg2); border-radius:8px; padding:0 5px; }
.pdp-pole > button:disabled{ cursor:default; opacity:.6; }
.pdp-pole.on{ border-color:var(--accent); background:rgba(79,110,247,.18); } .pdp-pole.on > button{ color:var(--text); font-weight:700; }
.pdp-pole.part{ border-style:dashed; }
.pdp-pole-edit{ background:none; border:none; border-left:1px solid var(--border); color:var(--text3); padding:5px 7px; cursor:pointer; font-size:11px; } .pdp-pole-edit:hover{ color:var(--text); }
.pdp-pole-tag{ font-size:10.5px; font-weight:600; color:var(--accent); background:rgba(79,110,247,.12); border:1px solid rgba(79,110,247,.35); border-radius:10px; padding:0 6px; margin-left:4px; vertical-align:middle; }
