/* =========================
   BIBLIOTEKA / KOMNATA SZYFRÓW
========================= */

.library-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0;
}

.library-tab {
  padding: 8px 12px;
  border: 1px solid #333;
  border-radius: 8px;
  text-decoration: none;
  color: #ddd;
  background: #141414;
}

.library-tab:hover {
  border-color: #555;
}

.library-tab.active {
  border-color: #d6b56d;
  color: #d6b56d;
  background: #1b1710;
}

.cipher-room-intro {
  border: 1px solid #333;
  border-radius: 12px;
  padding: 14px;
  background: #141414;
  margin-top: 10px;
}

.cipher-door-box {
  border: 1px solid #3a2f1f;
  border-radius: 14px;
  padding: 18px;
  background: radial-gradient(circle at top, #2a2116 0%, #141414 55%, #0c0c0c 100%);
  text-align: center;
  margin-top: 12px;
}

.cipher-door-icon {
  font-size: 48px;
  margin-bottom: 8px;
}

.cipher-door-form {
  display: grid;
  gap: 8px;
  max-width: 360px;
  margin: 14px auto 0;
}

.cipher-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 14px;
}

.cipher-box-card {
  border: 1px solid #333;
  border-radius: 12px;
  padding: 12px;
  background: #141414;
  position: relative;
  overflow: hidden;
}

.cipher-box-card.opened {
  border-color: #4caf70;
  box-shadow: 0 0 12px rgba(76, 175, 112, 0.25);
}

.cipher-box-card.unlocked-now {
  animation: cipherUnlock 1.1s ease-out;
  border-color: #7dff9c;
  box-shadow: 0 0 18px rgba(125, 255, 156, 0.45);
}

@keyframes cipherUnlock {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(125, 255, 156, 0);
  }

  35% {
    transform: scale(1.045);
    box-shadow: 0 0 32px rgba(125, 255, 156, 0.85);
  }

  70% {
    transform: scale(0.99);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 18px rgba(125, 255, 156, 0.45);
  }
}


.cipher-box-img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  background: #0c0c0c;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.cipher-box-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.cipher-box-title {
  margin: 4px 0;
}

.cipher-box-desc {
  color: #aaa;
  font-size: 13px;
  min-height: 38px;
}

.cipher-box-status {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid #444;
  color: #aaa;
}

.cipher-box-status.opened {
  color: #9fdc9f;
  border-color: #4caf70;
  background: rgba(76, 175, 112, 0.12);
}

.cipher-box-reward {
  color: #d6b56d;
  font-size: 13px;
  margin-top: 8px;
  line-height: 1.4;
}

.cipher-box-form {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.cipher-room-progress {
  margin: 12px 0;
  color: #d6b56d;
}

.cipher-opened-date {
  font-size: 11px;
  color: #777;
  margin-top: 6px;
}

.cipher-muted {
  color: #aaa;
}

.cipher-flash {
  margin: 10px 0;
}
