#gmt-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* CRITICAL: Allows clicks to pass through */
    z-index: 99999;
    overflow: hidden;
}

.gmt-items-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gmt-item {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 35px;
    line-height: 1;
    opacity: 0;
    will-change: transform;
    pointer-events: none;
    user-select: none;
    display: block;
    /* Optional: Add glow */
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}