#info-text {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(123, 67, 148, 0.85), rgba(132, 195, 78, 0.85));
    color: white;
    border-radius: 12px;
    font-family: "Arial Black", "Helvetica Neue", Gadget, sans-serif;
    border: none;
    box-shadow: 0 4px 20px rgba(123, 67, 148, 0.4), 0 0 40px rgba(132, 195, 78, 0.2);
    font-size: clamp(18px, 3vw, 28px);
    text-align: center;
    z-index: 200;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: pulse 3s ease-in-out infinite;
    backdrop-filter: blur(4px);
}

#instructions {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%) scale(1.5);
    transform-origin: left center;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px 22px;
    background: rgba(10, 10, 30, 0.75);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    z-index: 200;
    min-width: 200px;
    pointer-events: none;
}

.inst-hand {
    font-weight: bold;
    font-size: 18px;
    color: #66ff99;
    margin-bottom: 2px;
}

.inst-row {
    padding-left: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.5;
}

.inst-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 6px 0;
}

.inst-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    font-style: italic;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.85; transform: translateX(-50%) scale(1.02); }
}
