/* -------------------------------------------*/
/*    Copyright 2025 AllroundRadio            */
/*    You are not allowed or permitted to     */
/*    copy or modify this file in anyway.     */
/* -------------------------------------------*/

body {
    overflow-x: hidden; /* voorkomt horizontale scroll */
}

#santa {
  position: fixed;
  top: 200px; /* startpunt, JS verandert dit */
  right: -500px; /* buiten beeld */
  z-index: 1000001;
  pointer-events: none; /* blokkeert niets */
  transition: top 3s ease; /* vloeiende hoogte-wissel */
}

@keyframes run {
  0% { right: -30%; }
  100% { right: 100%; }
}

.santa-trail {
    position: fixed;
    width: 20px;              /* GROTER */
    height: 20px;             /* GROTER */
    background: radial-gradient(
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 0)
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999999;
    opacity: 1;
    transform: translate(-50%, -50%);
    animation: fadeOut 1.5s linear forwards;
}

@keyframes fadeOut {
    0%   { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.2); }
}
