#block-e {
    position: absolute;
    top: -2px; /* Ensure Block E stays below the header */
    left: -2px;
    width: 100%; /* Cover the entire Block 1 */
    height: 100%; /* Cover the entire Block 1 */
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white background */
    border: 2px solid black; /* Black borders */
    border-radius: 15px; /* Rounded edges like Block 1 */
    z-index: 1; /* Ensure it appears above Block 1 */
    backdrop-filter: blur(20px); /* Strong blur effect to hide Block 1 */
    -webkit-backdrop-filter: blur(20px); /* Ensure compatibility with WebKit browsers */
    display: none; /* Initially hidden */
    pointer-events: auto !important; /* Prevent interaction with Block E */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px; /* Font size for all text */
    font-weight: bold; /* Bold font */
    color: black; /* Black font color */
}

#block-e .line-1 {
    margin-bottom: 20px; /* Gap between line 1 and line 2 */
}

#block-e .line-2 {
    margin-bottom: 75px; /* Gap between line 2 and line 3 */
}

#block-e .line-3 {
    font-size: 18px; /* Font size for the timer */
}
