/* ========= Inter-Region Travel Overlay ========= */
.travel-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0a0a14;
    overflow: hidden;
}
.travel-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--travel-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    filter: blur(2px);
}
.travel-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 30px;
    max-width: 400px;
    width: 90%;
}
.travel-icon {
    font-size: 56px;
    margin-bottom: 12px;
    animation: travelBob 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(200,160,80,0.3));
}
@keyframes travelBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.travel-title {
    font-size: 20px;
    font-weight: 700;
    color: #e8d5a8;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.travel-dest {
    font-size: 14px;
    color: #a09080;
    margin-bottom: 24px;
}
.travel-timer-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}
.travel-timer-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 8px;
}
.travel-timer {
    font-size: 42px;
    font-weight: 700;
    color: #e8d5a8;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 2px 20px rgba(200,160,80,0.3);
}
.travel-progress-track {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    margin-top: 14px;
    overflow: hidden;
}
.travel-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #c8a050, #e8d5a8);
    border-radius: 2px;
    transition: width 1s linear;
}
.travel-flavor {
    font-size: 12px;
    color: #666;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 16px;
}
.travel-cancel-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: #888;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s;
}
.travel-cancel-btn:hover {
    border-color: #a04040;
    color: #c06060;
}
