body {
    margin: 0;
    overflow: hidden;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 100vh;
    font-family: monospace, sans-serif;
    color: white;
}

#v1 {
    position: fixed;
    bottom: 20px;
    width: 90%;
    max-width: 700px;
    background-color: black;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 0; /* Ensures no corners */

    /* Initial hidden state with animation start point */
    opacity: 0;
    transform: translateY(50px) scale(0.9); /* Starts slightly below and smaller */
    transition: opacity 0.35s ease-out, transform 0.35s ease-out; /* Smooth pop animation */
    display: none; /* Initially hidden from layout flow */

    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8); /* Nice, subtle shadow */
}

#v1.active {
    opacity: 1;
    transform: translateY(0) scale(1); /* Pops up to normal position and size */
}

#v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

#v3 {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 15px;
}

#v4 {
    font-size: 1.2em;
    font-weight: bold;
    flex-grow: 1;
    text-align: right;
    color: #FFF;
}

#v5 {
    min-height: 50px;
    font-size: 1.1em;
    line-height: 1.4;
    white-space: pre-wrap;
    color: #EEE;
}
