html {
  scroll-behavior: smooth;
}

body {
  background-color: #12100D;
}

::selection {
  background: #C6A15B;
  color: #12100D;
}

/* subtle scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #12100D;
}
::-webkit-scrollbar-thumb {
  background: #2a251d;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C6A15B;
}

/* reveal-on-scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#mobile-menu.open {
  display: flex;
}

/* Patrika article prose */
.prose-antare p {
  margin-bottom: 1.5rem;
}
.prose-antare blockquote {
  margin: 2.5rem 0;
}

/* ---- Copy-protection deterrent ----
   Disables text selection/drag across the site as a visible notice of our
   copyright (see /copyright). Deliberately left ENABLED on form fields so
   the Join form remains usable, and on the copyright policy text itself so
   visitors can still select/copy that specific page to read our terms. */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
input, textarea, select, option,
[data-selectable], [data-selectable] * {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

/* Copy-protection toast */
#copy-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1A150D;
  border: 1px solid rgba(203, 161, 53, 0.4);
  color: #F5EEDD;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  max-width: 92vw;
  text-align: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
#copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
