@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");
@font-face { font-family: "Poppins Local"; src: local("Poppins"), local("Poppins Regular"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Poppins Local"; src: local("Poppins Medium"), local("Poppins-Medium"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Poppins Local"; src: local("Poppins SemiBold"), local("Poppins-SemiBold"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Poppins Local"; src: local("Poppins Bold"), local("Poppins-Bold"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Poppins Local"; src: local("Poppins ExtraBold"), local("Poppins-ExtraBold"); font-style: normal; font-weight: 800; font-display: swap; }
:root {
  --bg: #070b12;
  --bg-soft: #0a1019;
  --surface: #0d1420;
  --surface-2: #111b2a;
  --surface-3: #172337;
  --text: #ecf8ff;
  --muted: #91a6b8;
  --line: #26384c;
  --accent: #2de2e6;
  --accent-2: #8b5cf6;
  --success: #51f29a;
  --warning: #ffd166;
  --danger: #ff6b8a;
  --max: 1180px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 18px 45px rgba(0, 0, 0, .28);
  --glow: 0 0 0 1px rgba(45, 226, 230, .28), 0 0 28px rgba(45, 226, 230, .14);
  --space-1: .35rem;
  --space-2: .65rem;
  --space-3: 1rem;
  --space-4: 1.4rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --font-main: "Poppins", "Poppins Local", Arial, sans-serif;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; font-family: var(--font-main) !important; }
html, body, button, input, select, textarea, code, pre { font-family: var(--font-main) !important; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    linear-gradient(rgba(45, 226, 230, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 226, 230, .028) 1px, transparent 1px),
    var(--bg);
  background-size: 34px 34px;
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: var(--accent); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: #b9ffff; }
img, canvas, svg { max-width: 100%; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--warning); outline-offset: 3px; }
::selection { background: rgba(45, 226, 230, .25); color: #fff; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  padding: .7rem 1rem;
  background: var(--accent);
  color: #001014;
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.mono, code, .eyebrow, .chip, .control-label, .panel-label, .stat-label {
  font-family: var(--font-main);
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
[hidden], .hidden { display: none !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(45, 226, 230, .22);
  background: rgba(7, 11, 18, .92);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.15rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(45,226,230,.14), rgba(139,92,246,.14));
  box-shadow: var(--glow);
  font-size: 1.7rem;
}
.brand-text { font-size: 1.06rem; text-transform: none; }
.site-nav { justify-self: center; }
.nav-list { display: flex; align-items: center; flex-wrap: wrap; gap: .18rem; margin: 0; padding: 0; list-style: none; }
.nav-link {
  display: inline-flex;
  padding: .55rem .62rem;
  border-radius: 6px;
  color: #c9d7e4;
  font-size: .84rem;
  font-weight: 650;
  text-decoration: none;
}
.nav-link:hover, .nav-link[aria-current="page"] { background: rgba(45, 226, 230, .08); color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: .45rem; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 7px;
}
.menu-lines, .menu-lines::before, .menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  content: "";
  transition: transform .2s ease;
}
.menu-lines::before { transform: translateY(-6px); }
.menu-lines::after { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] .menu-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-lines::before { transform: translateY(0) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-lines::after { transform: translateY(-2px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 44px;
  padding: .7rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 780;
  line-height: 1.1;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #021114;
  box-shadow: 0 0 22px rgba(45, 226, 230, .22);
}
.btn-primary:hover { color: #001014; box-shadow: 0 0 32px rgba(45, 226, 230, .36); }
.btn-secondary { border-color: var(--accent-2); background: rgba(139, 92, 246, .14); color: #efeaff; }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,.02); color: var(--text); }
.btn-danger { border-color: rgba(255,107,138,.55); background: rgba(255,107,138,.1); color: #ffdce4; }
.btn-small { min-height: 36px; padding: .52rem .68rem; font-size: .8rem; }
.icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-2);
  color: var(--text);
}
.icon-btn[aria-pressed="true"] { border-color: var(--warning); color: var(--warning); background: rgba(255,209,102,.08); }

.hero-section { padding: clamp(2.2rem, 6vw, 5rem) 0 var(--space-6); }
.hero-console {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, .75fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.hero-copy, .hero-visual, .toolbar, .console-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(17,27,42,.96), rgba(7,11,18,.97));
  box-shadow: var(--shadow);
}
.hero-copy { padding: clamp(1.35rem, 4vw, 3.2rem); position: relative; overflow: hidden; }
.hero-copy::before {
  content: "SYS://Shh Emoji";
  position: absolute;
  right: 1rem;
  top: .8rem;
  color: rgba(45,226,230,.26);
  font: 700 .68rem/1 var(--font-main);
  letter-spacing: .13em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0 0 .8rem;
  color: var(--success);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ">"; color: var(--accent); }
h1, h2, h3 { line-height: 1.18; text-wrap: balance; }
h1 { margin: 0 0 1rem; font-size: clamp(2.1rem, 5.5vw, 4.75rem); letter-spacing: -.055em; }
h2 { margin: 0 0 .7rem; font-size: clamp(1.7rem, 3.8vw, 2.65rem); letter-spacing: -.035em; }
h3 { margin: 0 0 .55rem; font-size: clamp(1.05rem, 2vw, 1.35rem); }
p { margin-top: 0; }
.hero-lead { max-width: 760px; margin-bottom: 1.35rem; color: #b6c7d6; font-size: clamp(1rem, 1.8vw, 1.16rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.35rem; }
.code-chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .42rem .62rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #08111d;
  color: #cce8ef;
  font-size: .76rem;
}
.chip strong { color: var(--accent); margin-right: .35rem; }
.hero-visual { min-height: 380px; padding: 1rem; display: grid; grid-template-rows: auto 1fr auto; }
.console-topbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-bottom: .8rem; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .72rem; }
.console-dots { display: flex; gap: .35rem; }
.console-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.console-dot:nth-child(1) { background: var(--danger); }
.console-dot:nth-child(2) { background: var(--warning); }
.console-dot:nth-child(3) { background: var(--success); }
.featured-orb { display: grid; place-items: center; position: relative; isolation: isolate; }
.featured-orb::before, .featured-orb::after {
  content: "";
  position: absolute;
  width: 210px;
  aspect-ratio: 1;
  border: 1px solid rgba(45,226,230,.34);
  transform: rotate(45deg);
  z-index: -1;
}
.featured-orb::after { width: 165px; border-color: rgba(139,92,246,.5); transform: rotate(12deg); }
.featured-emoji { font-size: clamp(6rem, 12vw, 9rem); filter: drop-shadow(0 0 28px rgba(45,226,230,.22)); }
.terminal-line { padding-top: .8rem; border-top: 1px solid var(--line); color: var(--success); font: .77rem/1.5 var(--font-main); }
.terminal-line::before { content: "$ "; color: var(--accent); }

.toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(2, minmax(140px, .75fr)) minmax(130px, .7fr) auto;
  gap: .75rem;
  padding: 1rem;
  margin-bottom: 1rem;
  align-items: end;
}
.control-group { min-width: 0; }
.control-label { display: block; margin-bottom: .35rem; color: var(--muted); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.input, .select, .textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #08111d;
  color: var(--text);
  padding: .68rem .78rem;
}
.input::placeholder, .textarea::placeholder { color: #71879a; }
.input:hover, .select:hover, .textarea:hover { border-color: #3d5872; }
.filter-row { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1rem; }
.filter-btn {
  min-height: 38px;
  padding: .5rem .72rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: #cbd9e4;
  font-size: .78rem;
  font-weight: 750;
}
.filter-btn[aria-pressed="true"], .filter-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(45,226,230,.08); box-shadow: inset 0 -2px 0 var(--accent); }
.results-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: .7rem 0 1rem; color: var(--muted); }
.result-count strong { color: var(--text); }

.emoji-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .85rem; }
.emoji-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.emoji-card:hover { transform: translateY(-4px); border-color: rgba(45,226,230,.65); box-shadow: var(--glow); }
.emoji-visual {
  min-height: 150px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    #0a111c;
  background-size: 16px 16px;
}
.emoji-visual::after {
  content: attr(data-style);
  position: absolute;
  top: .55rem;
  left: .55rem;
  padding: .22rem .4rem;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(0,0,0,.35);
  color: #dce8f0;
  font: 700 .58rem/1.1 var(--font-main);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.emoji-glyph { font-size: 4.15rem; line-height: 1; transition: transform .18s ease; }
.emoji-card:hover .emoji-glyph { transform: scale(1.06); }
.emoji-card.neon .emoji-glyph { filter: drop-shadow(0 0 12px var(--accent)); }
.emoji-card.outline .emoji-glyph { text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff; }
.emoji-card.sticker .emoji-glyph { filter: drop-shadow(0 0 2px #fff) drop-shadow(4px 5px 0 rgba(0,0,0,.35)); transform: rotate(-4deg); }
.emoji-card.pixel .emoji-visual { image-rendering: pixelated; background-size: 10px 10px; }
.emoji-card.pixel .emoji-glyph { filter: contrast(1.18) saturate(.9); }
.emoji-card.metallic .emoji-visual { background: linear-gradient(135deg,#101722,#39485b,#0a1018); }
.emoji-card.metallic .emoji-glyph { filter: grayscale(.25) contrast(1.16) drop-shadow(0 7px 2px rgba(0,0,0,.4)); }
.emoji-card.minimal .emoji-visual { background: #f4f7fa; }
.emoji-card.glass .emoji-visual { background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.18), transparent 34%), linear-gradient(135deg,rgba(45,226,230,.18),rgba(139,92,246,.22)); }
.emoji-card.gradient .emoji-visual { background: linear-gradient(135deg,rgba(45,226,230,.22),rgba(139,92,246,.32),rgba(255,107,138,.19)); }
.emoji-card.shadow .emoji-glyph { filter: drop-shadow(10px 13px 2px rgba(0,0,0,.48)); }
.emoji-card.terminal .emoji-visual { background: repeating-linear-gradient(0deg,rgba(81,242,154,.035),rgba(81,242,154,.035) 1px,transparent 1px,transparent 4px),#030907; }
.emoji-card.terminal .emoji-visual::after { color: var(--success); }
.emoji-card.color-violet .emoji-visual { box-shadow: inset 0 -3px 0 #8b5cf6; }
.emoji-card.color-blue .emoji-visual { box-shadow: inset 0 -3px 0 #4ea1ff; }
.emoji-card.color-green .emoji-visual { box-shadow: inset 0 -3px 0 #51f29a; }
.emoji-card.color-amber .emoji-visual { box-shadow: inset 0 -3px 0 #ffd166; }
.emoji-card.color-rose .emoji-visual { box-shadow: inset 0 -3px 0 #ff6b8a; }
.emoji-card.color-silver .emoji-visual { box-shadow: inset 0 -3px 0 #b9c5d0; }
.emoji-card.color-mono .emoji-visual { box-shadow: inset 0 -3px 0 #fff; }
.emoji-card.color-teal .emoji-visual { box-shadow: inset 0 -3px 0 #19c6a7; }
.emoji-card.color-indigo .emoji-visual { box-shadow: inset 0 -3px 0 #6e7bff; }
.emoji-body { padding: .85rem; }
.emoji-name { margin: 0; font-size: .97rem; overflow-wrap: anywhere; }
.emoji-meta { display: flex; flex-wrap: wrap; gap: .35rem; margin: .4rem 0 .7rem; color: var(--muted); font-size: .68rem; }
.emoji-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem; }
.load-more-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: .65rem; margin-top: 1.35rem; }

.section { padding: var(--space-7) 0; border-top: 1px solid rgba(38,56,76,.58); }
.section:nth-of-type(even), .section-alt { background: rgba(17,27,42,.35); }
.section-heading { max-width: 760px; margin: 0 auto var(--space-5); text-align: center; }
.section-heading p { margin-bottom: 0; color: var(--muted); }
.section-kicker { display: block; margin-bottom: .45rem; color: var(--accent); font: 800 .72rem/1.2 var(--font-main); letter-spacing: .12em; text-transform: uppercase; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.card-grid.four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.info-card, .category-card, .use-card, .platform-card, .support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.25rem;
}
.info-card p:last-child, .category-card p:last-child, .use-card p:last-child, .platform-card p:last-child { margin-bottom: 0; }
.card-icon { display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: .8rem; border: 1px solid var(--line); background: #08111d; font-size: 1.7rem; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .8rem; margin-top: 1rem; }
.stat { border: 1px solid var(--line); background: #08111d; padding: 1rem; }
.stat-value { display: block; color: var(--accent); font-size: 1.5rem; font-weight: 850; }
.stat-label { color: var(--muted); font-size: .7rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: start; }
.copy-panel { border: 1px solid var(--line); background: var(--surface); padding: 1rem; }
.copy-row { display: grid; grid-template-columns: 1fr auto; gap: .6rem; align-items: center; padding: .7rem; border: 1px solid var(--line); background: #08111d; }
.copy-row + .copy-row { margin-top: .55rem; }
.copy-value { min-width: 0; overflow-wrap: anywhere; color: #dbeaf2; font-family: var(--font-main); }
.mini-library { display: grid; grid-template-columns: repeat(6,1fr); gap: .7rem; }
.mini-emoji { display: grid; place-items: center; min-height: 92px; border: 1px solid var(--line); background: var(--surface); font-size: 2.2rem; }
.category-card { position: relative; overflow: hidden; }
.category-samples { font-size: 1.8rem; letter-spacing: .16em; white-space: nowrap; }
.category-count { color: var(--success); font: 700 .72rem var(--font-main); }
.use-list { margin: .7rem 0 0; padding-left: 1.1rem; color: var(--muted); }

.combination-filters { justify-content: center; margin-bottom: 1rem; }
.combination-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; }
.combination-card { border: 1px solid var(--line); background: var(--surface); padding: 1rem; }
.combination-code { font-size: 2rem; letter-spacing: .1em; }
.combination-card p { color: var(--muted); margin-bottom: .8rem; }
.conversation-list { display: grid; gap: .8rem; max-width: 880px; margin: 0 auto; }
.chat-bubble { max-width: 78%; border: 1px solid var(--line); background: var(--surface); padding: .85rem 1rem; }
.chat-bubble:nth-child(even) { margin-left: auto; border-color: rgba(45,226,230,.45); background: rgba(45,226,230,.07); }
.chat-label { display: block; color: var(--accent); font: 700 .67rem var(--font-main); text-transform: uppercase; }
.text-art-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; }
.text-art-card { border: 1px solid var(--line); background: #08111d; padding: 1rem; }
.text-art { white-space: pre-wrap; font-family: var(--font-main); color: #d7eff2; min-height: 90px; }

.png-gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: .8rem; }
.png-tile {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid var(--line);
  background-image: linear-gradient(45deg,#18202a 25%,transparent 25%),linear-gradient(-45deg,#18202a 25%,transparent 25%),linear-gradient(45deg,transparent 75%,#18202a 75%),linear-gradient(-45deg,transparent 75%,#18202a 75%);
  background-size: 22px 22px;
  background-position: 0 0,0 11px,11px -11px,-11px 0;
  background-color: #0b1119;
  overflow: hidden;
}
.png-tile span { font-size: clamp(3.6rem,8vw,6rem); filter: drop-shadow(0 10px 12px rgba(0,0,0,.32)); }
.png-tile button { position: absolute; right: .5rem; bottom: .5rem; }

.generator-shell { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr); gap: 1rem; }
.generator-controls { border: 1px solid var(--line); background: var(--surface); padding: 1.15rem; }
.generator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.checkbox-row { display: flex; flex-wrap: wrap; gap: .8rem; padding: .75rem 0; }
.check-label { display: inline-flex; align-items: center; gap: .45rem; color: #d0dfeb; }
.generator-preview { min-height: 500px; display: grid; place-items: center; border: 1px solid var(--line); background: #08111d; padding: 1rem; }
#pngCanvas { width: min(100%, 480px); height: auto; border: 1px solid rgba(255,255,255,.08); }
.generator-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .85rem; }

.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); }
.comparison-table { width: 100%; min-width: 720px; border-collapse: collapse; background: var(--surface); }
.comparison-table th, .comparison-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--line); text-align: left; }
.comparison-table th { background: #08111d; color: var(--accent); font-family: var(--font-main); }
.comparison-table tr:last-child td { border-bottom: 0; }
.related-row { display: grid; grid-template-columns: repeat(8,1fr); gap: .65rem; }
.related-item { display: grid; place-items: center; min-height: 100px; border: 1px solid var(--line); background: var(--surface); font-size: 2.3rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.blog-card { border: 1px solid var(--line); background: var(--surface); overflow: hidden; }
.blog-cover {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg,#0a1522,#132740 55%,#10101e);
}
.blog-cover::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(45,226,230,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(45,226,230,.07) 1px,transparent 1px); background-size: 22px 22px; }
.blog-cover::after { content: attr(data-label); position: absolute; left: .8rem; bottom: .65rem; color: var(--accent); font: 800 .68rem var(--font-main); letter-spacing: .1em; text-transform: uppercase; }
.blog-cover .cover-emoji { position: relative; font-size: clamp(3.5rem,7vw,6rem); filter: drop-shadow(0 0 25px rgba(45,226,230,.3)); }
.blog-body { padding: 1.05rem; }
.blog-date { color: var(--success); font: 700 .68rem var(--font-main); }
.blog-title { margin: .35rem 0 .55rem; font-size: 1.15rem; }
.blog-title a { color: var(--text); text-decoration: none; }
.blog-title a:hover { color: var(--accent); }
.blog-excerpt { color: var(--muted); font-size: .9rem; }

.faq-tools { max-width: 760px; margin: 0 auto 1rem; }
.faq-list { display: grid; gap: .65rem; max-width: 900px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); background: var(--surface); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem; border: 0; background: transparent; color: var(--text); text-align: left; font-weight: 780; }
.faq-question::after { content: "+"; color: var(--accent); font: 800 1.25rem var(--font-main); }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { padding: 0 1rem 1rem; color: var(--muted); }
.faq-answer[hidden] { display: none; }

.page-hero { padding: clamp(2.5rem,6vw,5rem) 0 2.6rem; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 20%,rgba(45,226,230,.08),transparent 28%); }
.page-hero .hero-lead { max-width: 780px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; color: var(--muted); font-size: .8rem; }
.breadcrumbs a { color: var(--accent); }
.page-content { padding: var(--space-6) 0 var(--space-7); }
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 2.2rem; font-size: 1.75rem; }
.prose h3 { margin-top: 1.5rem; }
.prose p, .prose li { color: #bacbd8; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.note-box { border-left: 3px solid var(--accent); background: rgba(45,226,230,.06); padding: 1rem; margin: 1rem 0; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 1.5rem; align-items: start; }
.article-main { min-width: 0; }
.article-main .blog-cover { margin-bottom: 1.5rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: .8rem; color: var(--muted); font-size: .8rem; }
.article-sidebar { position: sticky; top: 96px; display: grid; gap: .8rem; }
.sidebar-card { border: 1px solid var(--line); background: var(--surface); padding: 1rem; }
.sidebar-card ul { margin: .6rem 0 0; padding-left: 1rem; }
.related-posts { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }

.directory-toolbar { display: grid; grid-template-columns: minmax(220px,1.4fr) minmax(150px,.7fr) auto auto; gap: .75rem; align-items: end; margin-bottom: 1rem; }
.directory-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.empty-state { border: 1px dashed var(--line); padding: 2rem; text-align: center; color: var(--muted); }
.category-directory { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1rem; }
.contact-card, .contact-form { border: 1px solid var(--line); background: var(--surface); padding: 1.2rem; }
.form-grid { display: grid; gap: .8rem; }
.textarea { min-height: 150px; resize: vertical; }
.form-note { color: var(--muted); font-size: .8rem; }

.site-footer { border-top: 1px solid rgba(45,226,230,.25); background: #05080d; padding: 3rem 0 1.2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 1.5rem; }
.footer-intro p { color: var(--muted); max-width: 360px; }
.footer-heading { margin: 0 0 .75rem; color: var(--accent); font: 800 .72rem var(--font-main); text-transform: uppercase; letter-spacing: .1em; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-links a { color: #b9cad7; text-decoration: none; font-size: .88rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: center; text-align: center; gap: 1rem; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }

.modal-backdrop { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 1rem; background: rgba(0,0,0,.72); }
.modal-backdrop[hidden] { display: none; }
.modal { width: min(620px,100%); max-height: min(88vh,760px); overflow: auto; border: 1px solid var(--accent); background: var(--surface); box-shadow: 0 0 60px rgba(45,226,230,.18); }
.modal-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem; border-bottom: 1px solid var(--line); }
.modal-content { padding: 1rem; }
.modal-preview { min-height: 210px; display: grid; place-items: center; border: 1px solid var(--line); background: #08111d; font-size: 6rem; }
.modal-details { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; margin: 1rem 0; }
.detail-cell { border: 1px solid var(--line); background: #08111d; padding: .65rem; }
.detail-cell span { display: block; color: var(--muted); font-size: .68rem; }
.modal-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.toast { position: fixed; z-index: 3000; left: 50%; bottom: 1.2rem; transform: translate(-50%,150%); min-width: min(90vw,300px); padding: .8rem 1rem; border: 1px solid var(--accent); background: #071018; color: var(--text); text-align: center; transition: transform .2s ease; }
.toast.show { transform: translate(-50%,0); }
.scroll-top { position: fixed; z-index: 900; right: 1rem; bottom: 1rem; width: 44px; height: 44px; border: 1px solid var(--accent); background: var(--surface); color: var(--accent); opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; }
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: none; }

/* Seed system: layout, card, header, filter, button and mobile changes */
body[data-seed="1"] { --bg:#f7f7fb; --surface:#fff; --surface-2:#f1efff; --text:#191528; --muted:#6a6577; --line:#ded9ec; --accent:#7057e8; --accent-2:#9d7cf5; color-scheme:light; background:#f7f7fb; }
body[data-seed="1"] .header-inner { grid-template-columns:auto 1fr auto; }
body[data-seed="1"] .hero-console { grid-template-columns:1fr; text-align:center; }
body[data-seed="1"] .hero-visual { min-height:260px; }
body[data-seed="1"] .toolbar { grid-template-columns:240px 1fr 1fr 1fr auto; }
body[data-seed="1"] .emoji-card { border-radius:14px; box-shadow:0 10px 26px rgba(50,35,110,.08); }
body[data-seed="1"] .btn { border-radius:999px; }
body[data-seed="1"] .section:nth-of-type(even) { background:#f0eef8; }

body[data-seed="2"] { --bg:#05010a; --surface:#11071a; --surface-2:#1d0b2c; --accent:#00f5ff; --accent-2:#ff2bd6; background:#05010a; }
body[data-seed="2"] .hero-console { grid-template-columns:1fr 1fr; }
body[data-seed="2"] .hero-copy { border-color:var(--accent-2); }
body[data-seed="2"] .toolbar { grid-template-columns:repeat(5,1fr); border-color:var(--accent-2); }
body[data-seed="2"] .emoji-card { border-radius:0; box-shadow:0 0 18px rgba(255,43,214,.12); }
body[data-seed="2"] .btn { transform:skew(-4deg); }
body[data-seed="2"] .site-header { border-bottom-color:var(--accent-2); }

body[data-seed="3"] { --bg:#141126; --surface:rgba(255,255,255,.08); --surface-2:rgba(255,255,255,.12); --line:rgba(255,255,255,.2); --accent:#9cf7ff; --accent-2:#d3a7ff; background:radial-gradient(circle at 15% 20%,#4259a0 0,transparent 30%),radial-gradient(circle at 85% 15%,#6d3a89 0,transparent 28%),#141126; }
body[data-seed="3"] .hero-copy, body[data-seed="3"] .hero-visual, body[data-seed="3"] .toolbar, body[data-seed="3"] .emoji-card { backdrop-filter:blur(16px); border-radius:24px; }
body[data-seed="3"] .hero-console { grid-template-columns:1fr .8fr; }
body[data-seed="3"] .emoji-grid { gap:1.15rem; }
body[data-seed="3"] .btn { border-radius:999px; }
body[data-seed="3"] .section:nth-of-type(even) { background:rgba(255,255,255,.025); }

body[data-seed="4"] .hero-console { grid-template-columns:1.15fr .85fr; grid-template-rows:auto auto; }
body[data-seed="4"] .hero-copy { grid-row:span 2; }
body[data-seed="4"] .hero-visual { min-height:260px; }
body[data-seed="4"] .toolbar { grid-column:2; grid-template-columns:1fr 1fr; }
body[data-seed="4"] .emoji-card:nth-child(7n+1) { grid-column:span 2; }
body[data-seed="4"] .emoji-card { border-radius:18px; }
body[data-seed="4"] .btn { border-radius:12px; }

body[data-seed="5"] { --bg:#fbfaf7; --surface:#fff; --surface-2:#f4f1eb; --text:#1f1c18; --muted:#746f67; --line:#dcd7ce; --accent:#b5362d; --accent-2:#6c5b45; color-scheme:light; background:#fbfaf7; }
body[data-seed="5"] .site-header { position:relative; background:#fbfaf7; }
body[data-seed="5"] .header-inner { grid-template-columns:1fr; padding:1rem 0; }
body[data-seed="5"] .site-nav { justify-self:start; }
body[data-seed="5"] .header-actions { position:absolute; right:0; top:1rem; }
body[data-seed="5"] .hero-console { grid-template-columns:1fr; }
body[data-seed="5"] .hero-copy { padding-left:0; border:0; box-shadow:none; background:transparent; }
body[data-seed="5"] .hero-visual { display:none; }
body[data-seed="5"] .emoji-card { border-radius:0; box-shadow:none; }
body[data-seed="5"] .blog-card { display:grid; grid-template-columns:160px 1fr; }
body[data-seed="5"] .btn { border-radius:0; }

body[data-seed="6"] { --bg:#fff; --surface:#fff; --surface-2:#f5f5f5; --text:#0b0b0b; --muted:#626262; --line:#222; --accent:#e60023; --accent-2:#111; color-scheme:light; background:#fff; }
body[data-seed="6"] .site-header { background:#fff; border-bottom:2px solid #111; }
body[data-seed="6"] .header-inner { min-height:58px; }
body[data-seed="6"] .hero-console { grid-template-columns:1fr 300px; }
body[data-seed="6"] .hero-copy, body[data-seed="6"] .hero-visual, body[data-seed="6"] .toolbar, body[data-seed="6"] .emoji-card { border-radius:0; box-shadow:none; background:#fff; }
body[data-seed="6"] .emoji-grid { gap:0; }
body[data-seed="6"] .btn, body[data-seed="6"] .filter-btn { border-radius:0; }
body[data-seed="6"] .section:nth-of-type(even) { background:#f5f5f5; }

body[data-seed="7"] { --bg:#fff7fb; --surface:#fff; --surface-2:#f3eafa; --text:#35293d; --muted:#7e7185; --line:#ead8ee; --accent:#d34e9a; --accent-2:#7c63d6; color-scheme:light; background:#fff7fb; }
body[data-seed="7"] .hero-console { grid-template-columns:1fr .8fr; }
body[data-seed="7"] .hero-copy, body[data-seed="7"] .hero-visual, body[data-seed="7"] .toolbar, body[data-seed="7"] .emoji-card { border-radius:30px; }
body[data-seed="7"] .emoji-visual { border-radius:24px; margin:.55rem; }
body[data-seed="7"] .btn, body[data-seed="7"] .filter-btn { border-radius:999px; }
body[data-seed="7"] .section:nth-of-type(even) { background:#f9ebf4; }

body[data-seed="8"] .hero-console { align-items:stretch; gap:1.15rem; }
body[data-seed="8"] .hero-copy,
body[data-seed="8"] .hero-visual {
  border-color:rgba(45,226,230,.34);
  border-radius:18px;
  box-shadow:0 24px 64px rgba(0,0,0,.34), 0 0 0 1px rgba(139,92,246,.08);
}
body[data-seed="8"] .hero-copy {
  background:
    radial-gradient(circle at 86% 12%,rgba(139,92,246,.18),transparent 34%),
    radial-gradient(circle at 12% 88%,rgba(45,226,230,.1),transparent 34%),
    linear-gradient(145deg,rgba(17,27,42,.98),rgba(7,11,18,.98));
}
body[data-seed="8"] .hero-copy::after {
  content:"";
  position:absolute;
  right:-72px;
  bottom:-92px;
  width:220px;
  aspect-ratio:1;
  border:1px solid rgba(45,226,230,.18);
  border-radius:50%;
  box-shadow:0 0 55px rgba(45,226,230,.08);
  pointer-events:none;
}
body[data-seed="8"] .hero-copy h1 {
  background:linear-gradient(90deg,#ffffff 0%,#c9fbff 58%,#c7b8ff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
body[data-seed="8"] .hero-visual {
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 48%,rgba(45,226,230,.14),transparent 46%),
    radial-gradient(circle at 82% 14%,rgba(139,92,246,.17),transparent 30%),
    linear-gradient(145deg,rgba(17,27,42,.98),rgba(7,11,18,.98));
}
body[data-seed="8"] .hero-visual::before {
  content:"";
  position:absolute;
  inset:18% 14%;
  border:1px dashed rgba(45,226,230,.16);
  border-radius:50%;
  pointer-events:none;
}
body[data-seed="8"] .featured-orb::before {
  box-shadow:0 0 38px rgba(45,226,230,.12);
}
body[data-seed="8"] .featured-emoji {
  filter:drop-shadow(0 0 38px rgba(45,226,230,.28));
  transform:scale(1.04);
}
body[data-seed="8"] .code-chips .chip {
  border-color:rgba(45,226,230,.22);
  background:rgba(8,17,29,.82);
}
body[data-seed="8"] .emoji-grid { grid-auto-flow:row; }
body[data-seed="8"] .filter-row { border-left:2px solid var(--accent); padding-left:.75rem; }
body[data-seed="8"] .blog-card { clip-path:polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,0 100%); }

body[data-seed="9"] { --bg:#fff7e8; --surface:#fff; --surface-2:#fff2cd; --text:#2e2318; --muted:#77695d; --line:#e8d6b5; --accent:#ff5630; --accent-2:#6c5ce7; color-scheme:light; background:#fff7e8; }
body[data-seed="9"] .hero-console { grid-template-columns:1fr .8fr; }
body[data-seed="9"] .emoji-card { border:3px solid #fff; border-radius:18px; box-shadow:6px 7px 0 rgba(46,35,24,.15); transform:rotate(-1deg); }
body[data-seed="9"] .emoji-card:nth-child(even) { transform:rotate(1deg); }
body[data-seed="9"] .emoji-card:hover { transform:rotate(0) translateY(-5px); }
body[data-seed="9"] .btn, body[data-seed="9"] .filter-btn { border-radius:12px; box-shadow:3px 3px 0 rgba(0,0,0,.14); }
body[data-seed="9"] .section:nth-of-type(even) { background:#fff0d4; }

body[data-seed="10"] { --bg:#0a0b24; --surface:#121634; --surface-2:#1c2451; --accent:#57f1ff; --accent-2:#ff67c8; background:linear-gradient(135deg,#090a24,#1c1744 50%,#10244c); }
body[data-seed="10"] .hero-section { padding-top:6rem; padding-bottom:6rem; }
body[data-seed="10"] .hero-console { grid-template-columns:1.15fr .85fr; }
body[data-seed="10"] .hero-copy, body[data-seed="10"] .hero-visual { border:0; border-radius:28px; background:linear-gradient(135deg,rgba(87,241,255,.1),rgba(255,103,200,.12)); }
body[data-seed="10"] .toolbar, body[data-seed="10"] .emoji-card { border-radius:18px; }
body[data-seed="10"] .btn { border-radius:999px; }
body[data-seed="10"] .section:nth-of-type(even) { background:rgba(255,255,255,.035); }

body[data-seed="11"] .header-inner { min-height:58px; }
body[data-seed="11"] .hero-console { grid-template-columns:1fr 260px; }
body[data-seed="11"] .hero-copy { padding:1.4rem; }
body[data-seed="11"] h1 { font-size:clamp(2rem,4vw,3.2rem); }
body[data-seed="11"] .toolbar { position:sticky; top:60px; z-index:20; grid-template-columns:1.5fr repeat(3,1fr) auto; }
body[data-seed="11"] .emoji-grid { grid-template-columns:repeat(5,1fr); gap:.45rem; }
body[data-seed="11"] .emoji-visual { min-height:120px; }
body[data-seed="11"] .emoji-card, body[data-seed="11"] .btn { border-radius:4px; }

body[data-seed="12"] .hero-console { grid-template-columns:1fr; }
body[data-seed="12"] .hero-copy { text-align:center; }
body[data-seed="12"] .hero-actions, body[data-seed="12"] .code-chips { justify-content:center; }
body[data-seed="12"] .hero-visual { min-height:430px; border-radius:50% 50% 18px 18px; }
body[data-seed="12"] .featured-orb::before { width:300px; border-radius:50%; transform:none; }
body[data-seed="12"] .featured-orb::after { width:210px; border-radius:50%; transform:none; }
body[data-seed="12"] .emoji-grid { grid-template-columns:repeat(5,1fr); }
body[data-seed="12"] .emoji-card { border-radius:50% 50% 12px 12px; }

@media (max-width: 1120px) {
  .header-actions .btn-secondary { display:none; }
  .nav-link { padding-inline:.48rem; }
  .emoji-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .card-grid.four, .category-directory { grid-template-columns:repeat(2,1fr); }
  .related-row { grid-template-columns:repeat(4,1fr); }
  body[data-seed="11"] .emoji-grid, body[data-seed="12"] .emoji-grid { grid-template-columns:repeat(4,1fr); }
}

@media (max-width: 960px) {
  .header-inner { grid-template-columns:auto auto 1fr; }
  .menu-toggle { display:block; justify-self:end; grid-column:3; }
  .site-nav {
    position:fixed;
    inset:76px 0 auto 0;
    max-height:calc(100vh - 76px);
    overflow:auto;
    padding:1rem;
    border-bottom:1px solid var(--line);
    background:var(--bg);
    transform:translateY(-130%);
    opacity:0;
    visibility:hidden;
    transition:transform .2s ease,opacity .2s ease;
  }
  .site-nav.open { transform:none; opacity:1; visibility:visible; }
  .nav-list { display:grid; gap:.35rem; }
  .nav-link { min-height:44px; align-items:center; padding:.7rem; border:1px solid var(--line); }
  .header-actions { justify-self:end; }
  .header-actions .btn { display:none; }
  .hero-console { grid-template-columns:1fr; }
  .hero-visual { min-height:300px; }
  .toolbar { grid-template-columns:repeat(2,1fr); }
  .toolbar .control-group:first-child { grid-column:1 / -1; }
  .toolbar .btn { width:100%; }
  .card-grid, .blog-grid { grid-template-columns:repeat(2,1fr); }
  .combination-grid, .text-art-grid { grid-template-columns:repeat(2,1fr); }
  .png-gallery { grid-template-columns:repeat(3,1fr); }
  .generator-shell, .contact-grid { grid-template-columns:1fr; }
  .article-layout { grid-template-columns:1fr; }
  .article-sidebar { position:static; grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1.3fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column:2 / 4; }
  body[data-seed="4"] .hero-copy, body[data-seed="4"] .toolbar { grid-column:auto; grid-row:auto; }
  body[data-seed="5"] .header-actions { position:static; }
  body[data-seed="11"] .toolbar { top:76px; }
}

@media (max-width: 768px) {
  :root { --space-7:3.4rem; }
  .container { width:min(100% - 1.2rem,var(--max)); }
  .hero-copy { padding:1.2rem; }
  .emoji-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:.65rem; }
  .emoji-visual { min-height:132px; }
  .card-grid, .blog-grid, .card-grid.four, .category-directory { grid-template-columns:1fr 1fr; }
  .two-col { grid-template-columns:1fr; }
  .mini-library { grid-template-columns:repeat(4,1fr); }
  .stat-grid { grid-template-columns:1fr 1fr; }
  .png-gallery { grid-template-columns:repeat(2,1fr); }
  .generator-preview { min-height:360px; }
  .related-row { grid-template-columns:repeat(4,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > :last-child { grid-column:auto; }
  .footer-intro { grid-column:1 / -1; }
  .footer-bottom { flex-direction:column; }
  .directory-toolbar { grid-template-columns:1fr 1fr; }
  .directory-toolbar .control-group:first-child { grid-column:1 / -1; }
  body[data-seed="11"] .emoji-grid, body[data-seed="12"] .emoji-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 560px) {
  .header-inner { min-height:66px; }
  .brand-mark { width:38px; }
  .brand-text { font-size:.95rem; }
  .site-nav { inset:66px 0 auto; max-height:calc(100vh - 66px); }
  .hero-section { padding-top:1.5rem; }
  h1 { font-size:clamp(2rem,12vw,3rem); }
  .hero-actions { display:grid; }
  .hero-actions .btn { width:100%; }
  .code-chips { display:grid; }
  .toolbar { grid-template-columns:1fr; }
  .toolbar .control-group:first-child { grid-column:auto; }
  .filter-row { flex-wrap:nowrap; overflow-x:auto; padding-bottom:.4rem; scrollbar-width:thin; }
  .filter-btn { flex:0 0 auto; }
  .results-bar { align-items:flex-start; flex-direction:column; }
  .emoji-grid { grid-template-columns:1fr; }
  .emoji-visual { min-height:158px; }
  .card-grid, .blog-grid, .card-grid.four, .category-directory, .combination-grid, .text-art-grid { grid-template-columns:1fr; }
  .mini-library { grid-template-columns:repeat(3,1fr); }
  .chat-bubble { max-width:92%; }
  .generator-grid { grid-template-columns:1fr; }
  .related-row { grid-template-columns:repeat(2,1fr); }
  .article-sidebar { grid-template-columns:1fr; }
  .directory-toolbar { grid-template-columns:1fr; }
  .directory-toolbar .control-group:first-child { grid-column:auto; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-intro { grid-column:auto; }
  .modal-details { grid-template-columns:1fr; }
  .modal-actions .btn { flex:1 1 auto; }
  body[data-seed="5"] .blog-card { display:block; }
  body[data-seed="11"] .toolbar { position:static; }
}

@media (max-width: 390px) {
  .container { width:min(100% - .8rem,var(--max)); }
  .brand-text { max-width:105px; overflow:hidden; text-overflow:ellipsis; }
  .hero-copy, .hero-visual, .toolbar { padding:.85rem; }
  .emoji-actions { grid-template-columns:1fr 1fr; }
  .mini-library { grid-template-columns:repeat(2,1fr); }
  .png-gallery { grid-template-columns:1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; transition-duration:.001ms !important; animation-duration:.001ms !important; animation-iteration-count:1 !important; }
}

.contact-email { color: var(--accent); font-weight: 700; overflow-wrap: anywhere; }
.contact-grid-single { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 760px) { .contact-grid-single { grid-template-columns: 1fr; } }

.emoji-visual { width: 100%; color: inherit; border: 0; padding: 0; cursor: pointer; font: inherit; }
.emoji-visual:focus-visible { outline: 3px solid var(--warning); outline-offset: -3px; }
.download-hint { position: absolute; left: .55rem; right: .55rem; bottom: .45rem; z-index: 2; color: #c8f9fb; font-size: .62rem; font-weight: 700; letter-spacing: .02em; opacity: 0; transform: translateY(4px); transition: opacity .18s ease, transform .18s ease; }
.emoji-visual:hover .download-hint, .emoji-visual:focus-visible .download-hint { opacity: 1; transform: none; }
.site-footer { overflow: hidden; }
.footer-bottom { border-bottom: 0; }
