/* ShreeWin Premium Withdrawal Verification & KYC Popups */

.sw-withdraw-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 2, 18, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sw-withdraw-modal-overlay.sw-show {
    opacity: 1;
    visibility: visible;
}

.sw-withdraw-modal-card {
    background: radial-gradient(130% 100% at 50% 0%, #1a0f44 0%, #0d0729 60%, #080418 100%);
    border: 1px solid rgba(168, 85, 247, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(139, 92, 246, 0.25);
    border-radius: 26px;
    width: 100%;
    max-width: 410px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    padding: 22px 18px 18px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-sizing: border-box;
}

.sw-withdraw-modal-overlay.sw-show .sw-withdraw-modal-card {
    transform: scale(1) translateY(0);
}

.sw-withdraw-modal-card::-webkit-scrollbar {
    width: 4px;
}
.sw-withdraw-modal-card::-webkit-scrollbar-thumb {
    background: rgba(168, 85, 247, 0.4);
    border-radius: 4px;
}

/* Header & Close */
.sw-modal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 14px;
}

.sw-brand-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.sw-brand-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sw-brand-text {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(180deg, #ffc837 0%, #ff8008 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(255, 150, 0, 0.4));
}

.sw-brand-text span {
    background: linear-gradient(180deg, #38bdf8 0%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sw-brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    background: rgba(139, 92, 246, 0.18);
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #c084fc;
    text-transform: uppercase;
}

.sw-modal-close-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sw-modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: rotate(90deg);
}

/* Hero Center Icon */
.sw-hero-icon-wrap {
    display: flex;
    justify-content: center;
    margin: 10px 0 12px;
}

.sw-hero-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle, #5b21b6 0%, #1e1045 80%);
    border: 2px solid #8b5cf6;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.6), inset 0 0 15px rgba(168, 85, 247, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: swPulse 2.5s infinite ease-in-out;
}

@keyframes swPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.5), inset 0 0 12px rgba(168, 85, 247, 0.3);
    }
    50% {
        box-shadow: 0 0 35px rgba(168, 85, 247, 0.85), inset 0 0 20px rgba(216, 180, 254, 0.6);
    }
}

/* Titles & Subtitles */
.sw-modal-title {
    text-align: center;
    font-size: 21px;
    font-weight: 800;
    margin: 0 0 6px;
    letter-spacing: 0.5px;
}

.sw-modal-title .sw-highlight-blue {
    color: #60a5fa;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.6);
}

.sw-modal-title .sw-highlight-purple {
    color: #a855f7;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

.sw-modal-desc {
    text-align: center;
    font-size: 12.5px;
    line-height: 1.45;
    color: #94a3b8;
    margin: 0 8px 16px;
}

.sw-modal-desc strong {
    color: #fbbf24;
    font-weight: 700;
}

/* Stats list */
.sw-stats-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 14px;
}

.sw-stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(22, 13, 56, 0.7);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 14px;
    padding: 10px 14px;
    backdrop-filter: blur(4px);
}

.sw-stat-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sw-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.sw-stat-icon.sw-icon-wallet {
    background: linear-gradient(135deg, #6366f1, #4338ca);
}

.sw-stat-icon.sw-icon-req {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.sw-stat-icon.sw-icon-rem {
    background: linear-gradient(135deg, #f97316, #c2410c);
}

.sw-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
}

.sw-stat-value {
    font-size: 15px;
    font-weight: 800;
}

.sw-stat-value.sw-green {
    color: #22c55e;
}

.sw-stat-value.sw-white {
    color: #ffffff;
}

.sw-stat-value.sw-orange {
    color: #ef4444;
}

/* Progress bar */
.sw-progress-section {
    margin-bottom: 14px;
}

.sw-progress-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.sw-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    border-radius: 6px;
    transition: width 0.6s ease;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.7);
}

.sw-progress-caption {
    font-size: 11.5px;
    color: #94a3b8;
    text-align: center;
    margin-top: 6px;
}

/* Feature 3-Grid for KYC */
.sw-kyc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.sw-kyc-grid-card {
    background: rgba(22, 13, 56, 0.7);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: 10px 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sw-kyc-grid-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.25);
    border: 1px solid rgba(168, 85, 247, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 6px;
    color: #c084fc;
}

.sw-kyc-grid-title {
    font-size: 11px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 3px;
}

.sw-kyc-grid-desc {
    font-size: 9.5px;
    color: #94a3b8;
    line-height: 1.25;
}

/* Banner Card (Step 1) */
.sw-promo-card {
    background: linear-gradient(135deg, rgba(29, 14, 77, 0.9) 0%, rgba(13, 7, 43, 0.9) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
}

.sw-promo-left {
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.sw-promo-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #818cf8;
    text-transform: uppercase;
}

.sw-promo-amount {
    font-size: 28px;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1.1;
    margin: 2px 0;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.sw-promo-sub {
    font-size: 11px;
    color: #94a3b8;
}

.sw-promo-art {
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1;
}

.sw-promo-art img,
.sw-promo-art svg {
    max-height: 52px;
}

/* Verification Amount Card (Step 2) */
.sw-verify-card {
    background: linear-gradient(135deg, rgba(29, 14, 77, 0.9) 0%, rgba(13, 7, 43, 0.9) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sw-verify-left {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sw-verify-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #cbd5e1;
    text-transform: uppercase;
}

.sw-verify-amount {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin: 2px 0 6px;
}

.sw-verify-safe-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 9.5px;
    font-weight: 700;
    color: #c084fc;
    width: fit-content;
}

.sw-verify-right-note {
    flex: 1;
    font-size: 10.5px;
    color: #94a3b8;
    line-height: 1.35;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 10px;
}

/* Info Callout Box */
.sw-info-box {
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    line-height: 1.4;
    color: #cbd5e1;
    margin-bottom: 14px;
}

.sw-info-icon {
    color: #a855f7;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* CTA Action Button */
.sw-cta-btn {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 13px 18px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.4px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.45);
    text-transform: uppercase;
}

.sw-cta-btn.sw-btn-step1 {
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
}

.sw-cta-btn.sw-btn-step2 {
    background: linear-gradient(90deg, #8b5cf6 0%, #c026d3 100%);
}

.sw-cta-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.65);
}

.sw-cta-btn:active {
    transform: translateY(1px);
}

/* Footer note */
.sw-modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: #64748b;
    margin-top: 12px;
    text-align: center;
}

/* Back button in QR modal */
.sw-modal-back-btn {
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sw-modal-back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* QR Modal Specific Styles */
.sw-qr-modal-card {
    text-align: center;
}

.sw-qr-title {
    font-size: 15px;
    font-weight: 800;
    color: #f1f5f9;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.sw-qr-amt-box {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.35) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 14px;
    padding: 10px 14px;
    margin-bottom: 12px;
}

.sw-qr-amt-label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}

.sw-qr-amt-value {
    font-size: 26px;
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.45);
}

.sw-qr-frame-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.sw-qr-frame {
    background: #ffffff;
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.5), 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid #8b5cf6;
    display: inline-block;
}

.sw-qr-img {
    width: 170px;
    height: 170px;
    display: block;
    border-radius: 8px;
}

.sw-qr-scan-hint {
    font-size: 11px;
    color: #cbd5e1;
    margin-top: 8px;
    font-weight: 600;
}

.sw-upi-copy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(22, 13, 56, 0.85);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 8px 12px;
    margin-bottom: 10px;
}

.sw-upi-copy-left {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
}

.sw-upi-label {
    font-size: 11px;
    color: #a855f7;
    font-weight: 700;
}

.sw-upi-text {
    font-size: 12.5px;
    font-weight: 700;
    color: #f1f5f9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 190px;
}

.sw-copy-btn {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sw-copy-btn:hover {
    filter: brightness(1.15);
}

.sw-pay-app-btn {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #059669 0%, #10b981 100%);
    border-radius: 12px;
    padding: 11px 14px;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
    transition: all 0.2s ease;
}

.sw-pay-app-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.sw-utr-section {
    background: rgba(13, 7, 43, 0.7);
    border: 1px dashed rgba(168, 85, 247, 0.4);
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 6px;
}

.sw-utr-label {
    font-size: 11.5px;
    font-weight: 700;
    color: #cbd5e1;
    margin-bottom: 8px;
    text-align: left;
}

.sw-utr-input-wrap {
    display: flex;
    gap: 8px;
}

.sw-utr-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    color: #ffffff;
    outline: none;
    box-sizing: border-box;
}

.sw-utr-input:focus {
    border-color: #a855f7;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.sw-utr-submit-btn {
    background: linear-gradient(90deg, #8b5cf6, #d946ef);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 0 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sw-utr-submit-btn:hover {
    filter: brightness(1.15);
}

.sw-utr-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.sw-utr-status {
    font-size: 11.5px;
    font-weight: 600;
    margin-top: 6px;
    min-height: 16px;
    text-align: center;
}

/* Toast notifications */
.sw-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-30px);
    background: rgba(15, 10, 35, 0.95);
    border: 1px solid rgba(168, 85, 247, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(139, 92, 246, 0.4);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    z-index: 1000000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.sw-toast.sw-toast-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.sw-toast.sw-toast-success {
    border-color: #22c55e;
    color: #86efac;
}

.sw-toast.sw-toast-info {
    border-color: #38bdf8;
    color: #bae6fd;
}

/* ============================================================
   Step 2: Premium Complete Digital KYC Modal (Reference Theme)
   ============================================================ */

.sw-step2-modal-card {
    background: radial-gradient(130% 90% at 50% 0%, #15093a 0%, #08031d 55%, #03010f 100%);
    border: 1.5px solid rgba(147, 51, 234, 0.45);
    box-shadow: 0 0 35px rgba(124, 58, 237, 0.3), 0 25px 60px rgba(0, 0, 0, 0.85);
    border-radius: 24px;
    width: 95%;
    max-width: 380px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    padding: 16px 14px 12px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    transform: scale(0.92) translateY(18px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-sizing: border-box;
}

.sw-step2-modal-card::-webkit-scrollbar {
    width: 3px;
}
.sw-step2-modal-card::-webkit-scrollbar-thumb {
    background: rgba(168, 85, 247, 0.35);
    border-radius: 3px;
}

.sw-withdraw-modal-overlay.sw-show .sw-step2-modal-card {
    transform: scale(1) translateY(0);
}

/* Close Button */
.sw-step2-close-btn {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}
.sw-step2-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: rotate(90deg);
}

/* Header & Logo */
.sw-step2-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}

.sw-step2-logo {
    height: 34px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.sw-step2-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(88, 28, 135, 0.25);
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: 20px;
    padding: 2px 9px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #c084fc;
    text-transform: uppercase;
}

/* Hero Center Shield */
.sw-step2-hero-wrap {
    display: flex;
    justify-content: center;
    margin: 4px 0 6px;
}

.sw-step2-shield-halo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sw-step2-shield-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.65);
    animation: swStep2Pulse 2.8s infinite ease-in-out;
}

@keyframes swStep2Pulse {
    0%, 100% {
        box-shadow: 0 0 16px rgba(168, 85, 247, 0.55);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 28px rgba(192, 132, 252, 0.85);
        transform: scale(1.03);
    }
}

/* Heading & Subtitle */
.sw-step2-title {
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.2px;
    color: #ffffff;
    line-height: 1.2;
}

.sw-step2-title-purple {
    color: #c084fc;
    background: linear-gradient(90deg, #c084fc 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 12px rgba(168, 85, 247, 0.5);
}

.sw-step2-sub-shield {
    display: flex;
    justify-content: center;
    margin: 2px 0 4px;
}

.sw-step2-desc {
    text-align: center;
    font-size: 11px;
    line-height: 1.35;
    color: #94a3b8;
    margin: 0 auto 8px;
    padding: 0 6px;
    max-width: 320px;
}

/* 3-Feature Cards Grid */
.sw-step2-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 8px;
}

.sw-step2-feat-card {
    background: rgba(18, 10, 48, 0.7);
    border: 1px solid rgba(139, 92, 246, 0.22);
    border-radius: 11px;
    padding: 7px 4px 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sw-step2-feat-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.sw-step2-feat-title {
    font-size: 10px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 2px;
    line-height: 1.2;
}

.sw-step2-feat-desc {
    font-size: 8px;
    color: #94a3b8;
    line-height: 1.2;
}

/* Amount Verification Row & Cards (Identical to reference layout) */
.sw-step2-amount-row {
    display: flex;
    align-items: stretch;
    gap: 6px;
    margin-bottom: 7px;
    width: 100%;
    box-sizing: border-box;
}

.sw-step2-amount-card {
    flex: 2.3;
    min-width: 0;
    background: linear-gradient(135deg, rgba(32, 16, 80, 0.85) 0%, rgba(15, 7, 45, 0.95) 100%);
    border: 1.2px solid rgba(168, 85, 247, 0.45);
    border-radius: 14px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45), inset 0 0 14px rgba(168, 85, 247, 0.14);
    box-sizing: border-box;
}

.sw-step2-wallet-img {
    width: 58px;
    height: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.6));
}

.sw-step2-amount-middle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
}

.sw-step2-amount-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #cbd5e1;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 2px;
}

.sw-step2-amount-val {
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin: 2px 0 4px;
    letter-spacing: -0.5px;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 16px rgba(255, 255, 255, 0.25);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

.sw-step2-safe-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(139, 92, 246, 0.22);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 12px;
    padding: 2px 7px;
    font-size: 8px;
    font-weight: 700;
    color: #c084fc;
    width: fit-content;
    white-space: nowrap;
}

/* Right Note Card */
.sw-step2-note-card {
    flex: 1;
    min-width: 0;
    background: linear-gradient(135deg, rgba(25, 12, 60, 0.8) 0%, rgba(12, 6, 35, 0.9) 100%);
    border: 1.2px solid rgba(147, 51, 234, 0.35);
    border-radius: 14px;
    padding: 8px 7px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    box-sizing: border-box;
}

.sw-step2-note-shield {
    color: #a855f7;
    line-height: 1;
    display: flex;
    align-items: center;
}

.sw-step2-note-text {
    font-size: 8.5px;
    color: #94a3b8;
    line-height: 1.3;
    font-weight: 400;
}

/* Info Banner */
.sw-step2-info-banner {
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 10px;
    padding: 6px 9px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 8px;
}

.sw-step2-info-circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.3);
    border: 1px solid rgba(192, 132, 252, 0.5);
    color: #c084fc;
    font-size: 10px;
    font-weight: 800;
    font-style: italic;
    font-family: serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.sw-step2-info-text {
    font-size: 9.5px;
    line-height: 1.35;
    color: #cbd5e1;
}

/* Primary CTA Button */
.sw-step2-cta-btn {
    width: 100%;
    border: none;
    border-radius: 13px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(90deg, #d946ef 0%, #a855f7 50%, #7c3aed 100%);
    box-shadow: 0 4px 18px rgba(168, 85, 247, 0.5);
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.sw-step2-cta-btn:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(192, 132, 252, 0.65);
}

.sw-step2-cta-btn:active {
    transform: translateY(1px);
}

.sw-step2-btn-shield {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sw-step2-btn-title {
    flex: 1;
    text-align: center;
}

/* Footer note */
.sw-step2-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 9.5px;
    color: #94a3b8;
    margin-top: 7px;
    text-align: center;
}

.sw-step2-ssl-icon {
    font-size: 10px;
    filter: hue-rotate(85deg);
}

.sw-step2-ssl-title {
    color: #22c55e;
    font-weight: 600;
}

.sw-step2-footer-pipe {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 2px;
}

.sw-step2-safe-text {
    color: #94a3b8;
}

/* Mobile height adjustments for smaller phones (e.g. iPhone SE, height <= 640px) */
@media screen and (max-height: 640px) {
    .sw-step2-modal-card {
        padding: 10px 12px 8px;
        max-height: 96vh;
    }
    .sw-step2-logo {
        height: 28px;
    }
    .sw-step2-shield-img {
        width: 44px;
        height: 44px;
    }
    .sw-step2-title {
        font-size: 16px;
    }
    .sw-step2-desc {
        font-size: 10px;
        margin-bottom: 5px;
    }
    .sw-step2-wallet-img {
        width: 48px;
    }
    .sw-step2-amount-val {
        font-size: 27px;
    }
    .sw-step2-cta-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* WinGo Winning Popup: Hide 3-Second Auto Close Option */
.winning-wrap-l4,
[data-v-baa1fbd1] .winning-wrap-l4,
.winning-wrap-l4 .acitveBtn,
.WinningTip__C-body-l4,
[data-v-e44179e3] .WinningTip__C-body-l4,
.WinningTip__C-body-l4 .acitveBtn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

