@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Syne+Mono&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body { min-height: 100vh; background: #101018; font-family: 'Syne Mono', monospace; color: #e0e0e0; user-select: none; }
#lc-app { min-height: 100vh; padding: 16px; position: relative; }
#lc-hud { display: flex; flex-wrap: wrap; gap: 12px; max-width: 520px; margin: 0 auto 16px; font-size: 0.75rem; }
#lc-rule { font-family: 'Bungee', cursive; color: #f0d880; width: 100%; }
#lc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: 520px; margin: 0 auto; }
.lc-pkg {
  aspect-ratio: 1; border: 2px solid #3a3a50; border-radius: 8px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  font-size: 0.65rem; transition: transform 0.1s;
}
.lc-pkg:hover { transform: scale(1.05); }
.lc-shape { width: 36px; height: 36px; }
.lc-shape.square { border-radius: 4px; }
.lc-shape.circle { border-radius: 50%; }
.lc-shape.triangle { width: 0; height: 0; border-left: 18px solid transparent; border-right: 18px solid transparent; border-bottom: 36px solid currentColor; background: none !important; }
.lc-screen { position: fixed; inset: 0; z-index: 20; display: none; flex-direction: column; align-items: center; justify-content: center; padding: 24px; text-align: center; background: rgba(8,8,16,0.96); }
.lc-screen.active { display: flex; }
.lc-credit { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; opacity: 0.7; margin-bottom: 12px; color: #c8a84b; }
h1 { font-family: 'Bungee', cursive; font-size: clamp(1.4rem, 5vw, 2.2rem); color: #f0d880; margin-bottom: 12px; }
.lc-tagline { font-size: 0.85rem; margin-bottom: 20px; }
button { font-family: 'Syne Mono', monospace; font-size: 0.75rem; padding: 12px 28px; color: #fff; background: #2a2040; border: 1px solid rgba(200,168,75,0.4); border-radius: 6px; cursor: pointer; }
.lc-exit { position: fixed; bottom: 12px; right: 14px; font-size: 0.7rem; color: rgba(200,168,75,0.6); text-decoration: none; }
