/* Reset i podstawowe ustawienia */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Crimson Pro', serif;
  background-color: #111;
  color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Tło i canvas */
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#fireCanvas {
  display: block;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
  opacity: 0.05;
}

/* Kontener główny nad ogniem */
.container-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  max-width: 400px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #cfcfcf;
}

blockquote {
  font-style: italic;
  color: #999;
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.button {
  background-color: #222;
  color: #e0e0e0;
  padding: 0.8rem 1.5rem;
  border: 1px solid #444;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #333;
  border-color: #888;
  color: #fff;
}

.nfc-message {
  color: #777;
  font-size: 1rem;
}