/* ===========
   Particles
   =========== */

html,body{
    margin:0;padding:0;border:0;outline:0;font-size:100%;background:transparent}

/* ---- base ---- */
html,body{ 
	width:100%;
	height:100%;
	background:transparent;
}

html{
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* ---- particles.js container ---- */
#particles-js{
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #b61924;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  z-index: -2
}

/* ---- stats.js ---- */
.count-particles{
  background: transparent;
  position: relative;
  top: 80%;
  width: 16%;
  height: auto;
  color: white;
  left: 42%;
  text-align: center;
  align-content: center;
  line-height: 1;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 600;
  border-radius: 0 0 3px 3px;
  z-index: 0;
  cursor:inherit 
}

/* Smooth show/hide for count-particles */
.count-particles {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
  pointer-events: none;
}

/* Hidden state: transparent + leicht nach oben verschieben */
.count-particles.hidden {
  opacity: 0 !important;
  transform: translateY(-18px)!important;
  pointer-events: none !important;
}


.js-count-particles{
  padding-bottom: 10px;
  font-size: clamp(1.2rem, 3.5vw, 2rem);
  text-align: center;
  align-content: center;
}

.particles{
  width: auto;
  height: auto;
  position: relative;
  padding-bottom: clamp(.5rem, 1vw, .6rem);
  color: white;
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-align: center;
  align-content: center;
  line-height: clamp(1.5rem, 3vw, 1.8rem);
  font-family: Poppins, Helvetica, Arial, sans-serif;
  font-weight: 400;
}

#stats,
.count-particles{
  -webkit-user-select: none;
  bottom: 5px;
}




