/* Wallet Page Styles - Premium Wallet UI */

/* ========================================
   Wallet Panel
   ======================================== */
.wallet-panel {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(51, 65, 85, 0.4);
    border-radius: 1.5rem;
}

/* ========================================
   Wallet Stat Card
   ======================================== */
.wallet-stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
}

.wallet-stat-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
}

/* ========================================
   Wallet Input
   ======================================== */
.wallet-input {
    width: 100%;
    background: rgba(2, 6, 23, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.4);
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    color: white;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.2s ease;
}

.wallet-input::placeholder {
    color: #334155;
}

.wallet-input:focus {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.1);
}

/* ========================================
   Wallet Buttons
   ======================================== */
.wallet-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.wallet-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.4);
}

.wallet-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    background: rgba(51, 65, 85, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.wallet-btn-secondary:hover {
    background: rgba(71, 85, 105, 0.5);
}

/* ========================================
   Asset Card
   ======================================== */
.asset-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(51, 65, 85, 0.4);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
}

.asset-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
}

.asset-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.25rem;
}

/* ========================================
   Quick Action Button
   ======================================== */
.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    background: rgba(51, 65, 85, 0.3);
    border: 1px solid rgba(51, 65, 85, 0.3);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.quick-action-btn:hover {
    background: rgba(51, 65, 85, 0.5);
    border-color: rgba(51, 65, 85, 0.5);
}

/* ========================================
   NFT Card (Wallet)
   ======================================== */
.wallet-nft-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(51, 65, 85, 0.4);
    border-radius: 0.75rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.wallet-nft-card:hover {
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
}

.wallet-nft-card img {
    border-radius: 0.5rem;
    aspect-ratio: 1;
    object-fit: cover;
    width: 100%;
}

/* ========================================
   Seed Word
   ======================================== */
.seed-word {
    background: rgba(2, 6, 23, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.4);
    border-radius: 0.5rem;
    padding: 0.5rem;
    text-align: center;
}

.seed-word .number {
    color: #64748b;
    font-size: 0.625rem;
    margin-right: 0.25rem;
}

.seed-word .word {
    color: white;
    font-weight: 700;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    .wallet-panel {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .wallet-btn-primary,
    .wallet-btn-secondary {
        padding: 0.875rem 1.25rem;
    }

    .asset-card {
        padding: 0.875rem 1rem;
    }

    .asset-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}