body {
    padding-top: 60px;
}

/* HEADER STYLES (UNCHANGED) */

.app-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #0f172a;
    border-bottom: 1px solid #1e293b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-left .profile-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #334155;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e293b;
}

.nav-left .profile-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-img {
    height: 50px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
}

.wallet-box {
    display: flex;
    align-items: center;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 30px;
    padding: 4px 4px 4px 12px;
    gap: 8px;
    height: 36px;
}

.w-bal {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.w-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

/* =========================================
       🔥 GLOBAL POPUP STYLES (High End)
    ========================================= */

.secure-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
}

/* --- HACK ALERT CARD --- */

.security-card {
    background: #0f0f0f;
    width: 92%;
    max-width: 400px;
    border-radius: 12px;
    border: 1px solid #ef4444;
    box-shadow: 0 0 50px rgba(239, 68, 68, 0.25);
    overflow: hidden;
    position: relative;
}

.sec-header {
    background: linear-gradient(90deg, #7f1d1d, #450a0a);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #ef4444;
}

.sec-header i {
    font-size: 20px;
    color: #fff;
}

.sec-title {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.close-x {
    margin-left: auto;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    opacity: 0.7;
}

.sec-body {
    padding: 20px;
}

.alert-box {
    background: rgba(239, 68, 68, 0.08);
    border-left: 4px solid #ef4444;
    padding: 15px;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-en {
    color: #fff;
    margin-bottom: 12px;
    display: block;
}

.alert-hi {
    color: #fca5a5;
    display: block;
    font-size: 12px;
}

.tech-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #222;
    padding: 8px 0;
    font-size: 12px;
}

.tech-label {
    color: #666;
}

.tech-val {
    color: #ef4444;
    font-family: monospace;
    font-weight: bold;
}

.amount-display {
    background: #18181b;
    border: 1px dashed #ef4444;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin: 20px 0;
}

.amt-lbl {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
}

.amt-val {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    display: block;
    margin-top: 5px;
}

.action-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
    transition: 0.2s;
}

.action-btn:active {
    transform: scale(0.98);
}

.payment-note {
    text-align: center;
    margin-top: 15px;
    font-size: 11px;
    color: #888;
    border-top: 1px solid #222;
    padding-top: 10px;
}

.upi-section {
    background: #18181b;
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #333;
}

.upi-code {
    color: #fff;
    font-family: monospace;
    font-size: 13px;
}

.copy-sm {
    background: #333;
    color: #fff;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
}

/* --- TRACKING CARD (FLIPKART STYLE) --- */

.track-card {
    background: #fff;
    width: 92%;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.tc-head {
    background: #2874f0;
    padding: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tc-info div:first-child {
    font-size: 16px;
    font-weight: 700;
}

.tc-info div:last-child {
    font-size: 11px;
    opacity: 0.9;
    margin-top: 2px;
}

.tc-body {
    padding: 20px;
    background: #f1f3f6;
    max-height: 75vh;
    overflow-y: auto;
}

/* Timeline */

.step-list {
    margin-left: 10px;
    border-left: 2px solid #dfe6e9;
    padding-left: 25px;
    position: relative;
}

.step-item {
    position: relative;
    margin-bottom: 30px;
}

.step-item:last-child {
    margin-bottom: 0;
}

.s-dot {
    width: 14px;
    height: 14px;
    background: #dfe6e9;
    border-radius: 50%;
    position: absolute;
    left: -33px;
    top: 2px;
    border: 3px solid #fff;
    z-index: 2;
}

.step-item.done .s-dot {
    background: #26a541;
    box-shadow: 0 0 0 2px #c8e6c9;
}

.step-item.done::before {
    content: '';
    position: absolute;
    left: -27px;
    top: -30px;
    bottom: 15px;
    width: 2px;
    background: #26a541;
    z-index: 1;
}

.s-title {
    font-size: 14px;
    font-weight: 600;
    color: #212121;
}

.s-desc {
    font-size: 12px;
    color: #878787;
    margin-top: 2px;
    line-height: 1.4;
}

.s-time {
    font-size: 11px;
    color: #2874f0;
    font-weight: 500;
    margin-top: 4px;
}

.step-item.pending .s-title {
    color: #878787;
}

/* --- 🌟 FLOATING SUPPORT ICON (Draggable) --- */

.support-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.5);
    z-index: 9999;
    cursor: pointer;
    border: 2px solid #fff;
    transition: transform 0.1s;
}

.support-float:active {
    transform: scale(0.95);
}

.support-float img {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}