@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

:root {
    --bg-color: #000;
    --panel-bg: #111;
    --digit-bg: #1a1a1a;
    --digit-text-neon: #39ff14;
    /* NEON GREEN Color for Digits */
    --digit-text-red: #ff3333;
    /* RED Color for Status */
    --border-color: #333;
}

.meter-container {
    /* Clean container without heavy borders for a pure display look */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* The Odometer Display */
.digit-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: #050505;
    border-radius: 12px;
    border: 1px solid #222;
}

.digit-box {
    width: 60px;
    height: 90px;
    background-color: var(--digit-bg);
    color: var(--digit-text-neon);
    /* Neon Green for Digits */
    font-family: 'Share Tech Mono', monospace;
    font-size: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

/* Glass Shine effect */
.digit-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), transparent);
    pointer-events: none;
}

.separator {
    color: var(--digit-text-neon);
    /* Neon Green for Separator */
    font-size: 60px;
    font-family: 'Share Tech Mono', monospace;
    font-weight: bold;
    margin: 0 5px;
    padding-bottom: 10px;
    /* Align with text baseline */
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.6);
    /* Green Shadow */
}

/* Container for Dot and LIVE text to keep them side-by-side */
.status-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    gap: 8px;
    border: 1px solid #f43232;
    padding: 4px 12px;
    border-radius: 15px 15px;
}

.status-indicator {
    margin: 0;
    /* Override margin-top from previous version */
    width: 8px;
    height: 8px;
    background-color: var(--digit-text-red);
    /* Red Color */
    border-radius: 50%;
    box-shadow: 0 0 10px var(--digit-text-red);
    /* Red Glow */
    animation: pulse 1s infinite;
}

.live-text {
    color: var(--digit-text-red);
    /* Red Color */
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    letter-spacing: 2px;
    margin: 0;
    /* Override margin-top from previous version */
    font-weight: bold;
    /* Bold Text */
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.8);
    /* Red Shadow */
}


@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}