/* ════════════════════════════════════════════════
   ENCHANT BUILDER — disclaimer.css
   Introductory Modal Disclaimer Pop-Up
   ════════════════════════════════════════════════ */

.disclaimer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.disclaimer-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.disclaimer-modal {
  width: 90%;
  max-width: 580px;
  background: #212121; /* Minecraft gray GUI background */
  border: 3px solid #555555;
  border-radius: 4px;
  box-shadow: inset -3px -3px 0 #181818, inset 3px 3px 0 #8b8b8b, 0 12px 32px rgba(0, 0, 0, 0.7);
  padding: 24px;
  box-sizing: border-box;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.disclaimer-backdrop.visible .disclaimer-modal {
  transform: scale(1);
}

.disclaimer-title {
  font-family: 'Minecraft', 'VT323', monospace;
  font-size: 20px;
  color: #ffaa00; /* Gold */
  text-shadow: 2px 2px 0 #3f2a00;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #3c3c3c;
  padding-bottom: 12px;
  -webkit-font-smoothing: none;
}

.disclaimer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 8px;
}

/* Custom scrollbar for disclaimer list */
.disclaimer-list::-webkit-scrollbar {
  width: 6px;
}
.disclaimer-list::-webkit-scrollbar-track {
  background: #181818;
}
.disclaimer-list::-webkit-scrollbar-thumb {
  background: #555555;
  border: 1px solid #3c3c3c;
}

.disclaimer-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.disclaimer-icon {
  font-family: 'Minecraft', 'VT323', monospace;
  font-size: 16px;
  color: #55ff55; /* Green point indicator */
  text-shadow: 1.5px 1.5px 0 #153f15;
  line-height: 1;
  padding-top: 2px;
  user-select: none;
}

.disclaimer-text {
  font-family: 'Minecraft', 'VT323', monospace;
  font-size: 13.5px;
  line-height: 1.5;
  color: #dddddd;
  text-shadow: 1px 1px 0 #1b1b1b;
  -webkit-font-smoothing: none;
}

.disclaimer-text strong {
  color: #ffffff;
  font-weight: normal;
}

.disclaimer-footer {
  display: flex;
  justify-content: center;
  border-top: 2px solid #3c3c3c;
  padding-top: 16px;
}

.disclaimer-btn {
  background: #555555;
  border: 3px solid #3c3c3c;
  box-shadow: inset -2px -2px 0 #222222, inset 2px 2px 0 #888888;
  color: #ffffff;
  font-family: 'Minecraft', 'VT323', monospace;
  font-size: 14px;
  padding: 8px 24px;
  cursor: pointer;
  outline: none;
  text-shadow: 1.5px 1.5px 0 #222222;
  transition: background 0.1s ease;
  image-rendering: pixelated;
  -webkit-font-smoothing: none;
}

.disclaimer-btn:hover {
  background: #777777;
  box-shadow: inset -2px -2px 0 #3c3c3c, inset 2px 2px 0 #aaaaaa;
}

.disclaimer-btn:active {
  box-shadow: inset 2px 2px 0 #222222, inset -2px -2px 0 #888888;
  padding-top: 10px;
  padding-left: 26px;
  padding-right: 22px;
  padding-bottom: 6px;
}
