#bg-animation {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 0;
    pointer-events: none;
    background: #F6F9FF;
    overflow: hidden;
}

#particle-bg {
    position: fixed;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-particle {
    position: absolute;
    border-radius: 99px;
    pointer-events: none;
    filter: blur(0.3px);
    transition: background 1.2s;
}

#chartjs-bg-container {
    position: absolute;
    right: 3vw;
    top: 10vh;
    width: 400px;
    height: 320px;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

#loginStatsChart {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

#animated-numbers {
    position: absolute;
    bottom: 30px;
    left: 40px;
    display: flex;
    gap: 34px;
    z-index: 2;
}

.pulse-container {
    position: relative;
    display: inline-block;
}
.pulse-container::before {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    width: 130%;
    height: 160%;
    background: radial-gradient(circle, #f6a73c22 0%, #224aad1c 100%);
    border-radius: 50%;
    opacity: 0.56;
    animation: pulseRing 2.6s infinite;
    z-index: 0;
    pointer-events: none;
}
@keyframes pulseRing {
    0% { transform: translate(-50%,-50%) scale(1); opacity: 0.43; }
    65% { transform: translate(-50%,-50%) scale(1.23); opacity: 0.13; }
    100% { transform: translate(-50%,-50%) scale(1); opacity: 0.43; }
}

.animated-num {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1E3C6F;
    background: rgba(255,255,255,0.43);
    border-radius: 8px;
    padding: 5px 18px;
    box-shadow: 0 2px 10px 0 #1e3c6f0e;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

/* Ticker styles */
#ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
    border-top: 1px solid #ccc;
    font-size: 14px;
    font-weight: 500;
    position: fixed;
    bottom: 0;
    z-index: 1000;
  }
  
  #ticker {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: ticker-scroll 20s linear infinite;
  }
  
  @keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }
  
