/* Intro Animation CSS */
#new-intro-container {
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.5px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    /* Allow shrink wrap */
    z-index: 9999;
    display: flex;
    justify-content: center;
    /* Center content */
    align-items: center;
    pointer-events: none;
}

#intro-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
}

#new-intro-container * {
    display: inline-block;
    /* Removed position: absolute to allow flow */
}

.txt1 {
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    /* Start at 0 for animation */
}

.bar {
    width: 3px;
    height: 40px;
    /* Match font height approx */
    background-color: #fff;
    margin-left: 5px;
    /* Spacing */
}