*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink:    #1a3d2a;
  --paper:  #f0faf4;
  --g-dark: #1e8c4a;
  --g-mid:  #2eaa5e;
  --g-btn:  #3dba70;
  --green1: #d4f5e2;
  --green2: #b8edcc;
  --green3: #e8f8f0;
  --coral:  #ff6b6b;
  --sun:    #ffd93d;
  --sky:    #4fc3f7;
  --lav:    #b39ddb;
  --card-r: 16px;
}
html { scroll-behavior: smooth; }
/* Prevent Chrome faux-italic on display fonts */
.btn, .step-num, .scard-num, .qcard-label, .qcard-place,
.print-header h2, .scan-tap, .footer strong {
  font-style: normal;
}
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

/* RTL */
html[dir="rtl"] .hero-parade { direction: ltr; }
html[dir="rtl"] .scard { direction: rtl; }
html[dir="rtl"] .hero h1,
html[dir="rtl"] .hero-tagline,
html[dir="rtl"] .how h2,
html[dir="rtl"] .builder-header h2 { font-family: 'Rubik Dirt', Arial Black, Arial, sans-serif; font-style: normal; font-weight: 400; }

/* ── LANG TOGGLE ── */
.lang-toggle {
  position: fixed; top: 16px; right: 16px; z-index: 1000;
}
.lang-select-wrap {
  position: relative; display: inline-block;
}
.lang-selected {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.92);
  border: 1.5px solid rgba(30,140,74,.25); border-radius: 30px;
  padding: 6px 14px 6px 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
  backdrop-filter: blur(8px);
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: .82rem; font-weight: 700; color: #444;
  user-select: none; transition: background .15s;
  white-space: nowrap;
}
.lang-selected:hover { background: rgba(255,255,255,1); }
.lang-flag { font-size: 1.15rem; line-height: 1; display:inline-flex; align-items:center; }
.lang-flag img { width:20px; height:15px; object-fit:cover; border-radius:2px; vertical-align:middle; }
.lang-chevron { font-size: .6rem; color: #888; margin-left: 2px; transition: transform .2s; }
.lang-select-wrap.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: #fff; border: 1.5px solid rgba(30,140,74,.2);
  border-radius: 14px; padding: 5px;
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
  min-width: 130px;
  animation: pickerPop .15s cubic-bezier(.34,1.5,.64,1) both;
}
.lang-select-wrap.open .lang-dropdown { display: block; }
.lang-option {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 12px; border-radius: 9px;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: .82rem; font-weight: 600; color: #444;
  transition: background .12s;
  white-space: nowrap;
}
.lang-option:hover { background: var(--green1); }
.lang-option.active { background: var(--green1); color: var(--g-dark); }

/* ── SCAN PAGE ── */
#scan-page {
  display: none; position: fixed; inset: 0; background: #0a1a0f;
  flex-direction: column; align-items: center; justify-content: center;
  z-index: 9999; cursor: pointer; overflow: hidden;
}
#scan-page.show { display: flex; }
.scan-bg-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(46,170,94,.18) 0%, transparent 65%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.1)} }
.scan-emoji {
  font-size: clamp(130px,38vw,300px); line-height: 1; user-select: none;
  position: relative; z-index: 2;
  animation: scanPop .7s cubic-bezier(.34,1.6,.64,1) both, scanBob 3.5s ease-in-out infinite .7s;
  filter: drop-shadow(0 0 60px rgba(100,255,150,.12));
}
@keyframes scanPop { 0%{transform:scale(0) rotate(-15deg);opacity:0} 100%{transform:scale(1) rotate(0deg);opacity:1} }
@keyframes scanBob { 0%,100%{transform:translateY(0) rotate(0deg)} 40%{transform:translateY(-20px) rotate(3deg)} 70%{transform:translateY(-8px) rotate(-1deg)} }
.scan-tap {
  position: absolute; bottom: 44px;
  font-family: 'Bungee', Arial Black, Arial, sans-serif; font-size: .9rem;
  color: rgba(255,255,255,.2); letter-spacing: 2px; text-transform: uppercase;
  animation: fadeUp 1s ease 2.5s both; z-index: 2;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

/* ── FINALE PAGE ── */
#finale-page {
  display: none; position: fixed; inset: 0;
  background: linear-gradient(160deg, #0a1a0f 0%, #1a3d2a 50%, #0d2416 100%);
  flex-direction: column; align-items: center; justify-content: center;
  z-index: 9999; overflow: hidden; padding: 24px;
}
#finale-page.show { display: flex; }
.finale-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 40%, rgba(255,215,0,.09) 0%, transparent 65%);
  animation: glowPulse 4s ease-in-out infinite;
}
.finale-trophy {
  font-size: clamp(72px, 22vw, 120px); line-height: 1;
  animation: scanPop .8s cubic-bezier(.34,1.6,.64,1) both,
             scanBob 4s ease-in-out infinite .8s;
  position: relative; z-index: 2;
  filter: drop-shadow(0 0 40px rgba(255,215,0,.25));
}
.finale-title {
  font-family: 'Bungee', Arial Black, Arial, sans-serif;
  font-size: clamp(1.5rem, 6vw, 2.6rem); color: #fff;
  text-align: center; margin: 18px 0 6px;
  position: relative; z-index: 2;
  animation: fadeUp .7s ease .5s both;
  letter-spacing: .5px;
}
.finale-sub {
  font-family: 'DM Sans', sans-serif; font-size: clamp(.9rem, 3vw, 1.1rem);
  color: rgba(255,255,255,.55); text-align: center;
  margin-bottom: 32px; position: relative; z-index: 2;
  animation: fadeUp .7s ease .7s both;
}
.finale-divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  margin: 0 auto 28px; animation: fadeUp .7s ease .75s both;
  position: relative; z-index: 2;
}
.finale-question {
  font-family: 'Bungee', Arial Black, Arial, sans-serif;
  font-size: clamp(.75rem, 2.5vw, .9rem); letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 16px; text-align: center;
  position: relative; z-index: 2;
  animation: fadeUp .7s ease .85s both;
}
.finale-btns {
  display: flex; flex-direction: column; gap: 12px;
  width: 100%; max-width: 300px;
  position: relative; z-index: 2;
  animation: fadeUp .7s ease 1s both;
}
.finale-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 24px; border-radius: 50px; border: none; cursor: pointer;
  font-family: 'Bungee', Arial Black, Arial, sans-serif;
  font-size: clamp(.82rem, 2.8vw, .95rem); letter-spacing: .4px;
  transition: transform .15s, box-shadow .15s; text-decoration: none;
}
.finale-btn:active { transform: scale(.96); }
.finale-btn-share {
  background: linear-gradient(135deg, #3dba70, #2ea85e);
  color: #fff;
  box-shadow: 0 6px 28px rgba(61,186,112,.4);
}
.finale-btn-share:hover { box-shadow: 0 8px 36px rgba(61,186,112,.55); transform: translateY(-1px); }
.finale-btn-coffee {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.15);
  box-shadow: 0 4px 18px rgba(0,0,0,.2);
}
.finale-btn-coffee:hover { background: rgba(255,255,255,.12); transform: translateY(-1px); }
.finale-btn-emoji { font-size: 1.2rem; }
.share-toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: rgba(61,186,112,.95); color: #fff;
  font-family: 'Bungee', sans-serif; font-size: .78rem; letter-spacing: 1px;
  padding: 10px 22px; border-radius: 50px;
  opacity: 0; transition: opacity .3s, transform .3s;
  pointer-events: none; z-index: 10000; white-space: nowrap;
}
.share-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.confetti-field { position:fixed; inset:0; pointer-events:none; overflow:hidden; z-index:1; }
.cf { position:absolute; top:-30px; border-radius:2px; animation:cfFall linear forwards; }
@keyframes cfFall { to{transform:translateY(115vh) rotate(900deg);opacity:0} }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #d4f5e2 0%, #b8edcc 40%, #e8f8f0 70%, #c2f0d8 100%);
  padding: 88px 24px 72px; text-align: center;
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-blob { position:absolute; border-radius:50%; filter:blur(90px); opacity:.3; }
.hero-blob-1 { width:400px; height:400px; background:#52c97a; top:-120px; left:-100px; }
.hero-blob-2 { width:320px; height:320px; background:#a8e6c0; bottom:-80px; right:-60px; }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.88); color: #1a6b3a;
  font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px;
  border: 1.5px solid rgba(60,160,90,.2);
  margin-bottom: 24px; position: relative; z-index: 1;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.hero h1 {
  font-family: 'Bungee', Arial Black, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 5rem);
  color: #1a3d2a; line-height: 1.08;
  position: relative; z-index: 1;
  margin-bottom: 20px; letter-spacing: 0px;
}
.hero h1 span { color: var(--g-dark); }
.hero > p {
  font-size: clamp(.95rem, 2vw, 1.12rem);
  color: #2d5a3d; max-width: 520px; margin: 0 auto 10px;
  position: relative; z-index: 1;
  line-height: 1.7; font-weight: 500;
}

/* Emoji parade */
.hero-parade {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: flex-end;
  gap: clamp(6px, 2vw, 18px);
  margin-top: 36px; padding-bottom: 4px;
}
.parade-emoji {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  display: inline-block; line-height: 1;
  animation: paradeJump 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.1));
}
.parade-emoji:nth-child(1)  { animation-delay: 0s; }
.parade-emoji:nth-child(2)  { animation-delay: .13s; }
.parade-emoji:nth-child(3)  { animation-delay: .26s; }
.parade-emoji:nth-child(4)  { animation-delay: .39s; }
.parade-emoji:nth-child(5)  { animation-delay: .52s; }
.parade-emoji:nth-child(6)  { animation-delay: .65s; }
.parade-emoji:nth-child(7)  { animation-delay: .78s; }
.parade-emoji:nth-child(8)  { animation-delay: .91s; }
.parade-emoji:nth-child(9)  { animation-delay: 1.04s; }
.parade-emoji:nth-child(10) { animation-delay: 1.17s; }
@keyframes paradeJump {
  0%,100% { transform: translateY(0) rotate(0deg) scale(1); }
  35%      { transform: translateY(-22px) rotate(-5deg) scale(1.12); }
  55%      { transform: translateY(-14px) rotate(4deg) scale(1.06); }
  75%      { transform: translateY(-4px) rotate(-1deg) scale(1.02); }
}
.hero-tagline {
  position: relative; z-index: 1;
  font-family: 'Bungee', Arial Black, Arial, sans-serif;
  font-style: normal; font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--g-dark);
  margin-top: 18px; letter-spacing: .5px;
}

/* ── HOW IT WORKS ── */
.how { padding: 64px 24px; max-width: 900px; margin: 0 auto; text-align: center; }
.how h2 {
  font-family: 'Bungee', Arial Black, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 10px;
}
.how-sub { color: #888; margin-bottom: 48px; font-size: .95rem; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; }
.step {
  background: #fff; border: 1.5px solid #e8e8e8; border-radius: 20px;
  padding: 32px 24px; box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: transform .2s, box-shadow .2s;
}
.step:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.step-icon { font-size: 2.4rem; margin-bottom: 14px; }
.step-num {
  font-family: 'Bungee', Arial Black, Arial, sans-serif; font-size: .72rem;
  letter-spacing: 2px; text-transform: uppercase; color: #bbb; margin-bottom: 6px;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.step p  { font-size: .85rem; color: #666; line-height: 1.5; }

/* ── BUILDER SECTION ── */
.builder-section {
  background: linear-gradient(160deg, #c2f0d8 0%, #a8e6c0 35%, #d4f5e2 70%, #b8edcc 100%);
  padding: 64px 24px 80px; position: relative;
}
.builder-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: repeating-linear-gradient(90deg,
    #3dba70 0 50px, #52c97a 50px 100px,
    #6bcb77 100px 150px, #2eaa5e 150px 200px, #1e8c4a 200px 250px);
  opacity: .5;
}
.builder-inner { max-width: 760px; margin: 0 auto; }
.builder-header { text-align: center; margin-bottom: 40px; }
.builder-header h2 {
  font-family: 'Bungee', Arial Black, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--ink); margin-bottom: 8px;
}
.builder-header p { color: #2d5a3d; font-size: .9rem; font-weight: 500; }

/* Station cards */
#station-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.scard {
  background: rgba(255,255,255,.92);
  border: 1.5px solid rgba(30,140,74,.2); border-radius: var(--card-r);
  padding: 14px 16px;
  display: grid; grid-template-columns: 24px 36px 60px 1fr auto;
  gap: 10px; align-items: center;
  animation: slideIn .25s cubic-bezier(.34,1.4,.64,1) both;
  transition: box-shadow .15s, opacity .15s;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.scard.dragging { opacity: .45; box-shadow: 0 12px 40px rgba(0,0,0,.18); transform: scale(1.01); }
.scard.drag-over { border-color: var(--g-dark); box-shadow: 0 0 0 3px rgba(30,140,74,.2); }
.scard:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
@keyframes slideIn { from{opacity:0;transform:translateX(-16px)} to{opacity:1;transform:translateX(0)} }
.drag-handle {
  cursor: grab; color: #b0c8b8; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  padding: 4px; border-radius: 6px; transition: color .2s, background .2s;
  user-select: none; flex-shrink: 0;
}
.drag-handle:hover { color: var(--g-dark); background: rgba(30,140,74,.08); }
.drag-handle:active { cursor: grabbing; }
.scard-num {
  width:32px; height:32px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:'Bungee', Arial Black, Arial, sans-serif; font-size:.85rem; flex-shrink:0;
}
.scard-emoji {
  font-size:1.8rem; text-align:center;
  background:var(--paper); border:2px solid #c8e8d2;
  border-radius:10px; padding:6px 4px; cursor:text;
  transition:border-color .2s; line-height:1.3;
  min-height:48px; display:flex; align-items:center; justify-content:center;
}
.scard-emoji:focus { outline:none; border-color:var(--g-dark); }
.scard-emoji[contenteditable]:empty::before { content:attr(data-placeholder); color:#ccc; font-size:1rem; }
.scard-location {
  font-family:'DM Sans',sans-serif; font-size:.9rem; font-weight:500;
  border:2px solid #c8e8d2; border-radius:10px;
  padding:10px 12px; color:var(--ink);
  transition:border-color .2s; background:var(--paper); width:100%;
}
.scard-location:focus { outline:none; border-color:var(--g-dark); }
.scard-location::placeholder { color:#9fc4ad; font-weight:400; }
.scard-del {
  background:none; border:none; cursor:pointer;
  font-size:1.1rem; opacity:.3; transition:opacity .2s, transform .2s;
  padding:6px; border-radius:8px; flex-shrink:0;
}
.scard-del:hover { opacity:1; background:rgba(255,100,100,.1); transform:scale(1.1); }

/* ── EMOJI PICKER ── */
.emoji-picker-wrap {
  position: absolute; z-index: 500;
  background: #fff; border: 1.5px solid #d0ead8;
  border-radius: 18px; padding: 12px;
  box-shadow: 0 12px 48px rgba(0,0,0,.16);
  width: 300px; animation: pickerPop .18s cubic-bezier(.34,1.5,.64,1) both;
}
@keyframes pickerPop { from{opacity:0;transform:scale(.92) translateY(6px)} to{opacity:1;transform:scale(1) translateY(0)} }
.emoji-picker-tabs {
  display: flex; gap: 4px; margin-bottom: 10px; flex-wrap: wrap;
}
.emoji-tab {
  font-size: 1.1rem; padding: 5px 8px; border-radius: 8px;
  border: none; background: none; cursor: pointer;
  transition: background .15s; line-height: 1;
}
.emoji-tab:hover, .emoji-tab.active { background: var(--green1); }
.emoji-picker-search {
  width: 100%; padding: 7px 12px; border-radius: 10px;
  border: 1.5px solid #d0ead8; font-size: .85rem;
  font-family: 'DM Sans', sans-serif; margin-bottom: 8px;
  outline: none; transition: border-color .2s;
}
.emoji-picker-search:focus { border-color: var(--g-dark); }
.emoji-grid {
  display: grid; grid-template-columns: repeat(8, 1fr);
  gap: 2px; max-height: 200px; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: #cce8d4 transparent;
}
.emoji-grid button {
  font-size: 1.3rem; padding: 5px; border: none; background: none;
  border-radius: 8px; cursor: pointer; line-height: 1;
  transition: background .1s, transform .1s;
}
.emoji-grid button:hover { background: var(--green1); transform: scale(1.2); }

/* ── Buttons */
.btn {
  font-family: 'Bungee', Arial Black, Arial, sans-serif;
  border-radius: 12px; padding: 11px 24px;
  font-size: .95rem; cursor: pointer;
  transition: transform .12s, box-shadow .12s;
  white-space: nowrap; border: none;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); }
.btn-add {
  background: #fff; color: var(--g-dark);
  border: 2px solid var(--g-dark);
  box-shadow: 0 2px 12px rgba(30,140,74,.15);
}
.btn-add:hover { background: var(--green1); box-shadow: 0 6px 20px rgba(30,140,74,.2); }
.btn-ideas {
  background: #fff8e6; color: #8a5c00;
  border: 2px solid #f0c040;
  box-shadow: 0 2px 12px rgba(240,192,64,.2);
}
.btn-ideas:hover { background: #fff0c0; box-shadow: 0 6px 20px rgba(240,192,64,.3); }

.btn-generate {
  background: var(--g-dark); color: #fff;
  border: 2px solid #16703a;
  font-size: 1rem; padding: 13px 30px;
  box-shadow: 0 4px 20px rgba(30,140,74,.35);
}
.btn-generate:hover { background: #16703a; box-shadow: 0 8px 28px rgba(30,140,74,.45); }
.btn-back    { background:#fff; color:var(--ink); border:2px solid #ccc; box-shadow:0 2px 8px rgba(0,0,0,.08); }
.btn-back:hover { border-color:var(--g-dark); }
.btn-print   { background:var(--g-btn); color:#fff; border:2px solid var(--g-dark); box-shadow:0 3px 14px rgba(61,186,112,.3); }
.btn-print:hover { background:var(--g-dark); }
.btn-restart { background:#fff; color:var(--coral); border:2px solid var(--coral); box-shadow:0 2px 8px rgba(255,107,107,.15); }
.btn-restart:hover { background:#fff5f5; }
.builder-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:8px; }

/* ── PRINT VIEW ── */
#print-view { display:none; padding:32px 20px 60px; }
#print-view.show { display:block; }
.print-header { text-align:center; margin-bottom:28px; padding-bottom:24px; border-bottom:2px dashed #ddd; }
.print-header h2 { font-family:'Bungee', Arial Black, Arial, sans-serif; font-size:1.8rem; margin-bottom:6px; }
.print-header p { color:#888; font-size:.9rem; }
.print-actions { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:36px; }
.qr-grid {
  display:grid; grid-template-columns:repeat(auto-fill, minmax(200px,1fr));
  gap:20px; max-width:900px; margin:0 auto;
}
.qcard {
  background:#fff; border:2px solid #dde8e2; border-radius:18px;
  padding:16px 16px 14px; text-align:center;
  box-shadow:0 4px 20px rgba(0,0,0,.07);
  display:flex; flex-direction:column; align-items:center; gap:6px;
}
.qcard-num {
  font-family:'Bungee', Arial Black, Arial, sans-serif;
  font-style: normal; font-weight: 400;
  font-size: 2rem; color: var(--ink); line-height: 1;
  letter-spacing: .5px;
}
.qcard-label { font-family:'Bungee', Arial Black, Arial, sans-serif; font-size:.62rem; letter-spacing:1.5px; text-transform:uppercase; color:#bbb; margin-top:-2px; }
.qcard-qr { width:160px; height:160px; display:flex; align-items:center; justify-content:center; margin: 4px 0; }
.qcard-qr canvas, .qcard-qr img { width:160px !important; height:160px !important; border-radius:6px; }
.qcard-location {
  font-family:'DM Sans', sans-serif; font-weight:400;
  line-height:1.3; max-width:180px; text-align:center;
}
.qcard-location-label {
  font-size:.55rem; font-weight:700; letter-spacing:1.5px; color:#888;
  text-transform:uppercase;
}
.qcard-location-name {
  font-size:.78rem; color:#444; font-style:italic;
}
.qcard-location-note {
  font-size:.65rem; color:#aaa; font-style:italic;
}
.qcard-starter {
  border-color: var(--g-btn); background: linear-gradient(160deg, #f0faf4, #fff);
  box-shadow: 0 4px 20px rgba(61,186,112,.15);
}
.qcard-starter .qcard-num { color: var(--g-btn); }

/* ── ABOUT SECTION ── */
.about-section {
  background: linear-gradient(160deg, #f0faf4, #f7f7f7);
  padding: 48px 24px;
  text-align: center;
}
.about-inner {
  max-width: 600px;
  margin: 0 auto;
}
.about-section h2 {
  font-family: 'Bungee', Arial Black, Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: .3px;
}
.about-section p {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 10px;
}

/* ── FOOTER ── */
.footer {
  background: linear-gradient(145deg, #1a3d2a, #0f2a1a);
  color: rgba(255,255,255,.7);
  text-align:center; padding:28px; font-size:.8rem; line-height:1.8;
}
.footer strong { color:#fff; font-family:'Bungee', Arial Black, Arial, sans-serif; font-size:.85rem; letter-spacing:.5px; }
.footer .heart { color: #ff6b6b; font-size: 1rem; }

/* ── PRINT ── */
@media print {
  @page { size: A4 portrait; margin: 10mm; }
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  .hero,.how,.builder-section,.print-actions,.print-header,.footer,.lang-toggle,.about-section { display:none !important; }
  #print-view { display:block !important; padding:0; margin:0; }
  .qr-grid {
    display:grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6mm !important;
    width: 100% !important;
  }
  .qcard {
    box-shadow: none !important;
    border: 1px dashed #aaa !important;
    border-radius: 8px !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    padding: 8mm !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: #fff !important;
  }
  .qcard-num { font-size: 2rem !important; }
  .qcard-label { font-size: 0.55rem !important; }
  .qcard-qr { width: 140px !important; height: 140px !important; }
  .qcard-qr svg { width: 140px !important; height: 140px !important; }
  .qcard-location { display: block !important; font-size: 0.65rem !important; }
}
@media (max-width:560px) {
  .scard { grid-template-columns: 20px 28px 46px 1fr auto; gap:6px; padding: 10px 10px; }
  .scard-emoji { font-size:1.4rem; }
  .qr-grid { grid-template-columns: repeat(2,1fr); }
  .hero-parade { gap:5px; }
  .emoji-picker-wrap { width: 260px; }
  .emoji-grid { grid-template-columns: repeat(7,1fr); }
}
</style>
