.tour100-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: rtl;
    font-family: inherit;
}
.tour100-modal-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
}
.tour100-modal-dialog {
    position: relative;
    background: #ffffff;
    width: 90%;
    max-width: 420px;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 2;
    text-align: center;
}
.tour100-modal-close {
    position: absolute;
    top: 14px; left: 16px;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    line-height: 1;
}
.tour100-auth-step h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #222;
    font-weight: 700;
}
.tour100-subtext {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}
.tour100-input-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    transition: 0.2s;
}
.tour100-input-group input:focus {
    border-color: #ff6b00;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}
.tour100-btn-submit {
    width: 100%;
    background: #ff6b00;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.2s;
}
.tour100-btn-submit:hover {
    background: #e05e00;
}
.tour100-btn-primary {
    background: #ff6b00;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}
.tour100-btn-primary:hover {
    background: #e05e00;
}
.tour100-user-menu-wrap {
    position: relative;
    display: inline-block;
}
.tour100-user-btn {
    background: #f1f5f9;
    color: #1e293b;
    border: 1px solid #cbd5e1;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}
.tour100-user-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 160px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 100;
}
.tour100-user-menu-wrap:hover .tour100-user-dropdown {
    display: block;
}
.tour100-user-dropdown a {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    text-align: right;
}
.tour100-user-dropdown a:hover {
    background: #f8fafc;
    color: #ff6b00;
}
.tour100-msg {
    margin-top: 12px;
    font-size: 13px;
}
.tour100-msg.error { color: #dc2626; }
.tour100-msg.success { color: #16a34a; }
.tour100-timer-wrap { margin-top: 12px; font-size: 12px; color: #888; }
.tour100-link-btn { background: none; border: none; color: #ff6b00; cursor: pointer; font-size: 12px; margin-top: 8px; text-decoration: underline; }
