/* Layout specific refinements */
.footer { background-color: #002244 !important; }
.bg-darker { background-color: #001122 !important; }

.visitor-digit-compact {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 5px;
    min-width: 28px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.visitor-separator-compact {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 1px;
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.visitor-digit-compact { animation: countUp 0.4s ease-out; }
