
/* Payment logos and active trade card updates */
.payment-logo-strip {
    width: min(1100px, calc(100% - 24px));
    margin: 18px auto 10px;
    padding: 10px 8px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
}
.payment-logo-strip h2 {
    margin: 0 0 10px;
    color: rgba(255,255,255,.72);
    font-size: clamp(.95rem, 3vw, 1.25rem);
    font-weight: 600;
}
.payment-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 8px 12px;
    align-items: center;
}


.payment-logo-card {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: transparent;
    border: 0;
    padding: 3px;
    opacity: .68;
    filter: saturate(.85);
}
.payment-logo-card img {
    max-width: 92px;
    max-height: 30px;
    object-fit: contain;
    display: block;
}
.payment-logo-card span,
.payment-logo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.76);
    font-weight: 700;
    font-size: .76rem;
    text-align: center;
}
.admin-logo-preview {
    max-width: 110px;
    max-height: 46px;
    object-fit: contain;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 6px;
}
.admin-logo-form {
    display: contents;
}

.active-trading-modern .dashboard-head {
    align-items: flex-start;
}
.active-trading-subtitle {
    color: rgba(255,255,255,.78);
    margin: .4rem 0 0;
    font-size: clamp(1rem, 3vw, 1.35rem);
}
.active-trade-card-grid {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}
@media (min-width: 900px) {
    .active-trade-card-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}
.active-trade-modern-card,
.active-trade-empty {
    background: #ffffff;
    color: #0f172a;
    border-radius: 28px;
    padding: clamp(18px, 4vw, 28px);
    box-shadow: 0 16px 50px rgba(2, 12, 28, .14);
    border: 1px solid rgba(13, 34, 72, .08);
}
.active-trade-modern-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}
.active-trade-modern-head h2 {
    font-size: clamp(1.2rem, 4vw, 1.7rem);
    margin: 0;
    color: #0b2248;
    font-weight: 900;
}
.active-trade-status {
    background: #e8fff3;
    color: #07834d;
    border-radius: 999px;
    padding: .5rem .9rem;
    font-weight: 900;
    font-size: .78rem;
    letter-spacing: .02em;
    white-space: nowrap;
}
.trade-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: baseline;
    margin: 10px 0;
}
.trade-detail-row span,
.expected-return-block span {
    color: #334155;
    font-size: clamp(.95rem, 3vw, 1.12rem);
}
.trade-detail-row strong {
    color: #0f172a;
    font-size: clamp(1rem, 3vw, 1.2rem);
    text-align: right;
}
.expected-return-block {
    margin-top: 14px;
    padding-top: 10px;
}
.expected-return-block strong {
    display: block;
    margin-top: 8px;
    color: #0b2248;
    font-size: clamp(1.45rem, 5vw, 2rem);
    font-weight: 900;
}
.trade-time-list {
    margin-top: 12px;
}
.trade-time-list p {
    margin: 4px 0;
    color: #1f2937;
    font-size: .95rem;
}
.active-trade-progress-modern {
    height: 14px;
    background: #e8eef8;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 16px;
}
.active-trade-progress-modern span {
    display: block;
    height: 100%;
    min-width: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0b2248, #f7c843);
}
.active-trade-empty h2 {
    color: #0b2248;
}
@media (max-width: 575px) {
    .trade-detail-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }
    .trade-detail-row strong { text-align: left; }
    .active-trade-modern-head {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* Final Payment Methods section: clean white inspiration layout */
.payment-logo-strip {
    width: min(100%, 1120px);
    margin: 34px auto 20px;
    padding: 30px 18px 32px;
    background: #ffffff;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    text-align: center;
    color: #374151;
}

.payment-logo-strip h2 {
    margin: 0 0 24px;
    color: #4b5563;
    font-size: clamp(1.35rem, 4vw, 2.15rem);
    line-height: 1.2;
    font-weight: 600;
}

.payment-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 28px;
    align-items: center;
    justify-items: center;
    max-width: 880px;
    margin: 0 auto;
}

.payment-logo-card {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0;
    opacity: 1;
    filter: none;
    overflow: visible;
}

.payment-logo-card img {
    max-width: 138px;
    max-height: 58px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.payment-logo-card span,
.payment-logo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    font-weight: 800;
    font-size: 15px;
    text-align: center;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

@media (max-width: 600px) {
    .payment-logo-strip {
        width: 100%;
        margin: 28px auto 14px;
        padding: 26px 12px 30px;
    }

    .payment-logo-strip h2 {
        margin-bottom: 20px;
        font-size: 1.35rem;
    }

    .payment-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px 14px;
        max-width: 100%;
    }

    .payment-logo-card {
        min-height: 50px;
    }

    .payment-logo-card img {
        max-width: 105px;
        max-height: 48px;
    }

    .payment-logo-card span,
    .payment-logo-placeholder {
        font-size: 12px;
    }
}


/* Dashboard priority sections: active investment and withdrawal journey */
.dashboard-priority-card {
    margin: 8px 0 14px !important;
    padding: 14px 16px !important;
    background: #edf5ff !important;
    border: 1px solid #dbe6f7 !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 24px rgba(13, 44, 92, .08) !important;
    color: #0b2248 !important;
}

.dashboard-priority-card + .dashboard-priority-card {
    margin-top: 0 !important;
}

.priority-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.priority-card-head h2 {
    margin: 0;
    font-size: clamp(1.05rem, 2.6vw, 1.35rem) !important;
    line-height: 1.1;
    color: #0b2248;
}

.priority-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.priority-metrics-grid span {
    display: block;
    min-width: 0;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(219, 230, 247, .92);
}

.priority-metrics-grid small {
    display: block;
    margin-bottom: 3px;
    color: #6b7280 !important;
    font-weight: 800;
    font-size: .78rem !important;
}

.priority-metrics-grid strong {
    display: block;
    color: #0b2248;
    font-size: .98rem !important;
    line-height: 1.2 !important;
    overflow-wrap: anywhere;
}

.dashboard-priority-progress {
    margin-top: 10px;
    width: 100%;
}

.priority-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.priority-note {
    margin-top: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    background: #fff7ed;
    color: #7c2d12;
    border: 1px solid #fed7aa;
    font-weight: 800;
    font-size: .9rem;
}

.withdrawal-priority {
    background: #f5f9ff !important;
}

@media (max-width: 900px) {
    .priority-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .dashboard-priority-card {
        padding: 12px !important;
        margin-top: 8px !important;
    }

    .priority-card-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .priority-metrics-grid,
    .withdrawal-priority-grid {
        grid-template-columns: 1fr;
    }

    .priority-actions,
    .priority-actions .btn {
        width: 100%;
    }
}



.app-download-page {
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 6vw, 64px) 16px;
    background: #f3f7ff;
}

.app-download-card {
    width: min(880px, 100%);
    background: #ffffff;
    border-radius: 28px;
    padding: clamp(22px, 5vw, 42px);
    box-shadow: 0 20px 60px rgba(13, 44, 92, .12);
    border: 1px solid #dbe6f7;
    color: #0b2248;
}

.app-download-icon {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    background: linear-gradient(135deg, #1764d8 0%, #25c2d1 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 26px;
    margin-bottom: 16px;
}

.app-download-card h1 {
    color: #0b2248;
    font-weight: 900;
    margin-bottom: 10px;
}

.app-download-lead {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 720px;
}

.app-bonus-explain {
    margin: 22px 0;
    padding: 18px;
    border-radius: 20px;
    background: #eaf2ff;
    border: 1px solid #dbe6f7;
}

.app-bonus-explain ol {
    margin: 10px 0 0;
    padding-left: 20px;
}

.app-download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.app-download-note {
    margin: 18px 0 0;
    color: #6b7280;
    font-size: .95rem;
}
