/* LXMUK Charity Festive Site - Custom Enhancements */

/* Performance & Base */
:root {
  --primary: #e11d48;
  --secondary: #22c55e;
  --accent: #f59e0b;
  --navy: #0b1220;
  --text: #e6f1ff;
}

/* Utilities */
.selection-primary::selection { background: var(--primary); color: white; }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.ticker {
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.ticker__inner {
  display: inline-block;
  animation: ticker 30s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Snow Canvas Overlay Adjust */
#snow-canvas, #starfield {
  pointer-events: none;
}

/* Custom Button Glow */
.btn-glow {
  box-shadow: 0 0 0 3px rgba(225,29,72,.25), 0 10px 25px rgba(0,0,0,.35);
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* Scroll snap for hero sections */
section { scroll-margin-top: 5rem; }

/* Mobile tweaks */
@media (max-width: 640px) {
  .ticker__inner { animation-duration: 40s; }
}