/* ==========================================================
   FINAL FAR-LEFT ANALOG SIGNAL METER
   ========================================================== */

/*
 * Hide only the old meter elements in the left speaker column.
 * The speaker grille remains untouched.
 */
.speaker > .meter,
.speaker-panel > .meter,
.speaker > .vintage-meter-shell,
.speaker-panel > .vintage-meter-shell,
.speaker > .final-signal-meter,
.speaker-panel > .final-signal-meter,
.speaker .meter-face,
.speaker-panel .meter-face {
    display: none !important;
}

#la911FinalSignalMeter {
    display: block !important;
    width: calc(100% - 4px);
    margin: 18px auto 0;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
}

#la911FinalSignalMeter * {
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    text-shadow: none;
}

.la911-meter-heading {
    margin: 0 0 7px;
    color: #ded1a5;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.la911-meter-bezel {
    position: relative;
    width: 100%;
    aspect-ratio: 340 / 205;
    overflow: hidden;
    border: 7px ridge #786239;
    border-radius: 7px;
    background: #ead994;
    box-shadow:
        inset 0 0 4px rgba(0, 0, 0, 0.78),
        0 3px 8px rgba(0, 0, 0, 0.92);
}

.la911-meter-svg {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    shape-rendering: geometricPrecision;
    text-rendering: geometricPrecision;
}

.la911-meter-background {
    fill: #f4e0a0;
    stroke: #6e552c;
    stroke-width: 3;
}

.la911-meter-arc {
    fill: none;
    stroke: #171006;
    stroke-width: 3.5;
}

.la911-meter-hot-arc {
    fill: none;
    stroke: #a81f15;
    stroke-width: 5;
}

.la911-major-ticks line {
    stroke: #171006;
    stroke-width: 4;
    stroke-linecap: square;
}

.la911-minor-ticks line {
    stroke: #33220e;
    stroke-width: 2;
    stroke-linecap: square;
}

.la911-meter-numbers text {
    fill: #100b04;
    stroke: none;
    font-family: "Courier New", monospace;
    font-size: 19px;
    font-weight: 900;
}

.la911-meter-numbers .hot-number {
    fill: #a31e15;
}

.la911-meter-title-text {
    fill: #24190a;
    font-family: "Courier New", monospace;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 2px;
}

.la911-meter-units-text {
    fill: #4c381b;
    font-family: "Courier New", monospace;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.la911-low-label {
    fill: #2d210f;
    font-family: "Courier New", monospace;
    font-size: 13px;
    font-weight: 900;
}

.la911-high-label {
    fill: #a31e15;
    font-family: "Courier New", monospace;
    font-size: 13px;
    font-weight: 900;
}

#la911SignalNeedle {
    position: absolute;
    left: 50%;
    bottom: -23%;
    z-index: 7;
    width: 3px;
    height: 84%;
    background: #d52117;
    transform: translateX(-50%) rotate(-61deg);
    transform-origin: 50% 100%;
    transition: transform 55ms linear;
    box-shadow: none;
}

.la911-meter-hub {
    position: absolute;
    left: 50%;
    bottom: -10%;
    z-index: 8;
    width: 29px;
    height: 29px;
    transform: translateX(-50%);
    border: 3px solid #473214;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            #f5dd8a 0%,
            #9a7133 48%,
            #2c1d0b 100%
        );
}

.la911-meter-glass {
    position: absolute;
    top: 4px;
    right: 5%;
    left: 5%;
    z-index: 9;
    height: 17%;
    border-radius: 50%;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.22),
            rgba(255, 255, 255, 0)
        );
    pointer-events: none;
}

.la911-meter-readouts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-top: 7px;
}

.la911-meter-readouts div {
    padding: 6px 2px;
    border: 1px solid #514329;
    border-radius: 3px;
    background: #080a07;
    text-align: center;
}

.la911-meter-readouts span,
.la911-meter-readouts strong {
    display: block;
}

.la911-meter-readouts span {
    color: #9e967d;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

.la911-meter-readouts strong {
    margin-top: 3px;
    color: #ffc153;
    font-family: "Courier New", monospace;
    font-size: 12px;
    font-weight: 900;
}

@media (max-width: 1100px) {
    #la911FinalSignalMeter {
        max-width: 260px;
    }
}

/* ==========================================================
   VISITOR IP DISPLAY UNDER SIGNAL METER
   ========================================================== */

.la911-visitor-ip-box {
    margin-top: 8px;
    padding: 7px 8px;
    border: 1px solid #4f4228;
    border-radius: 3px;
    color: #a79d82;
    background:
        linear-gradient(
            145deg,
            rgba(198, 154, 69, 0.055),
            transparent
        ),
        #080a07;
    text-align: center;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.la911-visitor-ip-box span,
.la911-visitor-ip-box strong {
    display: block;
}

.la911-visitor-ip-box span {
    color: #827963;
}

.la911-visitor-ip-box strong {
    margin-top: 3px;
    color: #ffc153;
    font-family: "Courier New", monospace;
    font-size: 11px;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.la911-visitor-ip-box small {
    display: block;
    margin-top: 4px;
    color: #686457;
    font-size: 7px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.3;
}
