
/* Trust Wallet इंस्ट्रक्शन स्टाइल */
.wallet-instruction {
    background: #1e293b;
    padding: 20px;
    border-radius: 12px;
    border: 2px dashed #475569;
}

.wallet-instruction h3 {
    color: #60a5fa;
    margin-bottom: 15px;
    text-align: center;
}

.instruction-step {
    background: #0f172a;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid #3b82f6;
}

.wallet-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.install-btn {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.install-btn:hover {
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
}

/* नोटिफिकेशन एनिमेशन */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-content button {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

/* मोबाइल रिस्पॉन्सिव */
@media (max-width: 768px) {
    .wallet-links {
        flex-direction: column;
    }
    
    .install-btn {
        text-align: center;
    }
}