.tbr-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.tbr-modal-overlay.tbr-show {
    opacity: 1;
}

.tbr-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.tbr-arrow-container {
    position: absolute;
    top: 40px;
    right: 30px;
    color: white;
    width: 60px;
    height: 60px;
    animation: tbr-bounce-diagonal 1.5s infinite;
}

.tbr-bounce-arrow {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.4));
}

@keyframes tbr-bounce-diagonal {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(15px, -15px);
    }
}

.tbr-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    max-width: 320px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.tbr-modal-overlay.tbr-show .tbr-card {
    transform: translateY(0);
}

.tbr-logo-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.tbr-site-logo {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.tbr-icon-wrapper {
    background-color: #f3f4f6;
    color: #111827;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.tbr-card h2 {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.tbr-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #4b5563;
}
