#navbar {
    position: fixed;
    top: 0;
    left: 1%;
    right: 1%;
    width: 95%;
    height: 10vh;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 20px;
    z-index: 2000;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255,255,255,0.3);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.15);
}

#title,
#live-score {
    position: relative;

    border: 2px solid black;
    color: #000;
    font-family: 'Courier New', Courier, monospace, Arial;
    font-weight: bolder;

    /* ⭐ Responsive text */
    font-size: clamp(14px, 2.5vw, 40px);

    background: rgba(255, 255, 255, 0.6);

    border-radius: 6px;
    user-select: none;
    pointer-events: none;

    padding: clamp(2px, 0.5vw, 6px) clamp(6px, 1vw, 12px);

    /* ⭐ Prevent overflow */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    /* ⭐ Allow flex shrinking */
    flex-shrink: 1;
    min-width: 0;
}
