/* Contatore */
@import url('https://fonts.googleapis.com/css2?family=VT323:wght@400&display=swap');

.nostalgic-counter {
    display: inline-block;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #00ff00;
    border-radius: 8px;
    padding: 8px 12px;
    font-family: 'VT323', monospace;
    font-size: 1.2em;
    color: #00ff00;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.8);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin: 5px;
}

.nostalgic-counter::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: repeating-linear-gradient(0deg,transparent,transparent 1px,rgba(0,255,0,0.05) 1px,rgba(0,255,0,0.05) 2px);
    pointer-events: none;
}

.counter-label { font-size: 0.8em; color: #00ffff; margin-right: 5px; text-shadow: 0 0 5px rgba(0,255,255,0.6); }
.counter-number { font-weight: bold; animation: subtle-glow 3s ease-in-out infinite alternate; }
@keyframes subtle-glow { from{text-shadow: 0 0 8px rgba(0,255,0,0.8);} to{text-shadow: 0 0 12px rgba(0,255,0,1);} }
.counter-status { font-size: 0.7em; color: #ffff00; margin-left: 8px; opacity: 0.8; }
.nostalgic-counter.mini { padding: 4px 8px; font-size: 1em; border-width: 1px; margin: 30px 0px 0px !important; }
