/* APE My Garage — Guest Prompt Banner */

.ape-guest-prompt {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 24px;
    background: #1a1a1a;
    color: #fff;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}

.ape-guest-prompt__message {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.ape-guest-prompt__link {
    color: #e8a000;
    text-decoration: underline;
    font-weight: 600;
}

.ape-guest-prompt__link:hover {
    color: #ffb833;
}

.ape-guest-prompt__dismiss {
    background: none;
    border: none;
    color: #aaa;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    flex-shrink: 0;
    margin-left: 8px;
}

.ape-guest-prompt__dismiss:hover {
    color: #fff;
}

@media ( max-width: 600px ) {
    .ape-guest-prompt {
        flex-direction: column;
        gap: 10px;
        padding: 16px;
        text-align: center;
    }

    .ape-guest-prompt__dismiss {
        position: absolute;
        top: 10px;
        right: 14px;
    }
}
