body {
  background: #111;
  color: #eee;
  font-family: serif;
  text-align: center;
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#container {
  max-width: 800px;
  padding: 20px;
}
#glyph-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.glyph {
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s;
}
.glyph:hover {
  transform: scale(1.05);
}
.glyph-text {
  display: none;
  margin-top: 10px;
}
#lantern {
  font-size: 40px;
  margin: 30px auto;
}
#inscription {
  margin-top: 20px;
  font-style: italic;
  opacity: 0.7;
}
