li.additional_information_tab { display: none !important; }
* {
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    -khtml-user-select: none; /* Konqueror HTML */
    -webkit-user-select: none; /* Safari */
    -webkit-touch-callout: none; /* iOS Safari */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
}
.ticker-bar {
  position: sticky;
  top: 0;
  z-index: 9999;

  width: 100vw;
  margin-left: calc(-50vw + 50%);

  overflow: hidden;
  padding: 10px 0;
  font-size: 14px;

  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

.ticker-content {
  display: flex;
  width: max-content;
  animation: ticker-scroll 25s linear infinite;
  align-items: center;
}

.ticker-content p {
  white-space: nowrap;
  margin: 0;
  padding-right: 120px; /* space between repeats */
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* pause when hovered */
.ticker-bar:hover .ticker-content {
  animation-play-state: paused;
}

#sticky-cta {
  position: fixed;
  bottom: 40px;
  right: 70px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 9999;
}

#sticky-cta.show {
  opacity: 1;
  transform: translateY(0);
}

#sticky-cta a {
  background: #DECCF1;
  color: #543677;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  border: 1px solid #23005E;
  box-shadow: 0 15px 40px rgba(64, 26, 133, 0.35);
}

#sticky-cta a:hover {
  background: #23005E;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(64, 26, 133, 0.45);
  transition: all 0.2s ease;
}
/* /* =============================== */
/* AMETHYST RESEARCH LUXURY GATE  */
/* =============================== */

/* =============================== */
/* Site Gate Container + Background */
#site-gate {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  backdrop-filter: blur(6px);
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  background: radial-gradient(circle at 20% 20%, #5e3a8a 0%, #3a2a50 60%, #1f1230 100%);
}

#site-gate::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 1px, transparent 20px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 1px, transparent 20px);
  z-index: 0;
  pointer-events: none;
}

#site-gate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Floating luxury triangles */
#site-gate .lux-triangle {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(167,139,250,0.08);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 15px rgba(167,139,250,0.2));
  animation: floatLuxury linear infinite;
}

#site-gate .lux-triangle:nth-child(1) { top: 10%; left: 15%; animation-duration: 28s; }
#site-gate .lux-triangle:nth-child(2) { top: 50%; left: 70%; animation-duration: 32s; }
#site-gate .lux-triangle:nth-child(3) { top: 75%; left: 30%; animation-duration: 26s; }
#site-gate .lux-triangle:nth-child(4) { top: 25%; left: 50%; animation-duration: 30s; }

@keyframes floatLuxury {
  0% { transform: translateY(0px) rotate(0deg); opacity:0.08; }
  50% { transform: translateY(-30px) rotate(15deg); opacity:0.16; }
  100% { transform: translateY(0px) rotate(0deg); opacity:0.08; }
}

/* Particle overlay */
#gate-particles {
  position: absolute;
  inset: 0;
  z-index:0;
  pointer-events:none;
}

/* Gate Card */
.gate-card {
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, rgba(222,204,241,0.95), rgba(245,235,255,0.9));
  color: #4B2C7B;
  max-width: 540px;
  width: 92%;
  padding: 48px 48px 64px 48px; /* extra bottom padding for button */
  border-radius: 20px;
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(167,139,250,0.15),
    0 0 80px rgba(167,139,250,0.25),
    0 10px 20px rgba(124,58,237,0.2);
  border: 1px solid rgba(167,139,250,0.2);
  transform: translateY(10px);
  animation: cardRise 0.8s ease forwards;
  display: flex;
  flex-direction: column; /* stack content vertically */
  align-items: center;
}

@keyframes cardRise { to { transform: translateY(0); } }

.gate-logo {
  max-width: 160px;
  margin-bottom: 28px;
  opacity: 0.95;
  filter: drop-shadow(0 0 12px rgba(167,139,250,0.5));
}

.gate-card h2 {
  font-weight: 600;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
  color: #4B2C7B;
  text-shadow: 0 0 6px rgba(167,139,250,0.25);
}

.gate-subtext {
  font-size: 14px;
  color: #5D3A91;
  margin-bottom: 24px;
  line-height: 1.6;
  text-shadow: 0 0 4px rgba(167,139,250,0.15);
}

/* Scrollable Terms */
.terms-container {
  width: 100%;
  max-width: 520px;
  padding: 20px 22px;
  height: 140px;
  overflow-y: auto;
  font-size: 13px;
  text-align: left;
  color: #4B2C7B;
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  margin-bottom: 26px;
}

.terms-container::-webkit-scrollbar { width: 6px; }
.terms-container::-webkit-scrollbar-thumb { background: rgba(167,139,250,0.5); border-radius: 4px; }

/* Checkbox Options */
.gate-options {
  width: 100%;
  margin-bottom: 24px; /* spacing between checkboxes and button */
  text-align: left;
  font-size: 14px;
}

.gate-options label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  cursor: pointer;
  padding: 6px 0;
  user-select: none;
}

.gate-options input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #7c3aed;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.gate-options input[type="checkbox"]:checked {
  background-color: #7c3aed;
  border-color: #6d28d9;
}

.gate-options input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 8px;
  width: 5px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.gate-options input[type="checkbox"]:enabled:hover,
.gate-options input[type="checkbox"]:enabled:focus {
  box-shadow: 0 0 10px rgba(124,58,237,0.4), 0 0 20px rgba(124,58,237,0.2);
  transform: scale(1.05);
  border-radius: 4px;
}

/* Enter Button */
#enterSite {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg,#6d28d9,#7c3aed);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  opacity: 0.35;
  transition: all 0.25s ease;
  margin-top: auto; /* push button to bottom */
}

#enterSite.enabled {
  opacity: 1;
  animation: verifiedGlow 1.8s ease, pulseGlow 3s ease-in-out infinite;
}

#enterSite.enabled:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(167,139,250,0.35);
}

@keyframes verifiedGlow { 0%{box-shadow:0 0 0 rgba(124,58,237,0);} 50%{box-shadow:0 0 30px rgba(124,58,237,0.35);} 100%{box-shadow:0 0 0 rgba(124,58,237,0);} }
@keyframes pulseGlow { 0%{box-shadow:0 0 0 rgba(124,58,237,0.2);} 50%{box-shadow:0 0 25px rgba(124,58,237,0.35);} 100%{box-shadow:0 0 0 rgba(124,58,237,0.2);} }

/* Verification Micro-text */
.verification-status {
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 14px;
  color: #6B3EA5;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.verification-status.visible { opacity: 1; }

/* Fade in gate */
@keyframes fadeIn { to{ opacity:1; } }

/* Hide Search if Logged Out */
body.logged-out .dgwt-wcas-search-wrapp,
body.logged-out .dgwt-wcas-search-form {
    display: none !important;
}