.bmp-visitor-counter {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin-top: 24px;
    font-family: Inter, Barlow, system-ui, sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(13, 35, 68, 0.95), rgba(7, 24, 49, 0.95));
}

.bmp-visitor-counter__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bmp-visitor-counter__header-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 196, 0, 0.3);
    background: rgba(255, 196, 0, 0.1);
    border-radius: 8px;
    padding: 8px;
}

.bmp-visitor-counter__header-icon {
    width: 20px;
    height: 20px;
    color: #FFC400;
}

.bmp-visitor-counter__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #fff;
    text-transform: uppercase;
}

.bmp-visitor-counter__cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bmp-visitor-counter__card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background:
        repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.03) 2px,
            transparent 2px,
            transparent 10px),
        linear-gradient(135deg, rgba(18, 49, 91, 0.92), rgba(11, 38, 75, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 6px;
    padding-top: 6px;
    color: #fff;
}

.bmp-visitor-counter__card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bmp-visitor-counter__label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.bmp-visitor-counter__sublabel {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bmp-visitor-counter__value {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: rgb(250, 189, 13);
    font-variant-numeric: tabular-nums;
}

.bmp-visitor-counter__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.bmp-visitor-counter__footer-left {
    margin-top: 0.3rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bmp-visitor-counter__status-dot {
    width: 8px;
    height: 8px;
    background-color: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}